.orgchart {
  box-sizing: border-box;
  display: inline-block;
  min-height: 502px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /*background-image: linear-gradient(90deg, rgba(200, 0, 0, 0.15) 10%, rgba(0, 0, 0, 0) 10%), linear-gradient(rgba(200, 0, 0, 0.15) 10%, rgba(0, 0, 0, 0) 10%);*/
  background-size: 20px 20px;
  border: 1px dashed rgba(0,0,0,0);
  padding: 100px;
}
.orgchart .hidden, .orgchart~.hidden {
  display: none;
}

.orgchart.b2t {
  transform: rotate(180deg);
}

.orgchart.l2r {
  position: absolute;
  transform: rotate(-90deg) rotateY(180deg);
  transform-origin: left top;
}

.orgchart .verticalNodes ul {
  list-style: none;
  margin: 0;
  padding-left: 18px;
  text-align: left;
}
.orgchart .verticalNodes ul:first-child {
  margin-top: 2px;
}
.orgchart .verticalNodes>td::before {
  content: '';
  border: 1px solid rgba(217, 83, 79, 0.8) !important;
}
.orgchart .verticalNodes>td>ul>li:first-child::before
  box-sizing: border-box;
  top: -4px;
  height: 30px;
  width: calc(50% - 2px);
  border-width: 2px 0 0 2px;
}
.orgchart .verticalNodes ul>li {
  position: relative;
}
.orgchart .verticalNodes ul>li::before,
.orgchart .verticalNodes ul>li::after {
  box-sizing: border-box;
  content: '';
  position: absolute;
  left: -6px;
  border-color: rgba(217, 83, 79, 0.8);
  border-style: solid;
  border-width: 0 0 2px 2px;
}
.orgchart .verticalNodes ul>li::before {
  top: -4px;
  height: 30px;
  width: 11px;
}
.orgchart .verticalNodes ul>li::after {
  top: 1px;
  height: 100%;

}
.orgchart .verticalNodes ul>li:first-child::after {
  box-sizing: border-box;
  top: 24px;
  width: 30px;
  border-width: 2px 0 0 2px;
}
.orgchart .verticalNodes ul>li:last-child::after {
  box-sizing: border-box;
  border-width: 2px 0 0;
}

.orgchart.r2l {
  position: absolute;
  transform: rotate(90deg);
  transform-origin: left top;
}

.orgchart>.spinner::before {
  width: 100px;
  height: 100px;
  border-width: 10px;
  border-radius: 50px;
  margin-top: 30px;
  border-top-color: rgba(68, 157, 68, 0.8);
  border-bottom-color: rgba(68, 157, 68, 0.8);
  border-left-color: rgba(68, 157, 68, 0.8);
}

.orgchart table {
  border-spacing: 0;
  border-collapse: separate;
}

.orgchart>table:first-child{
  margin: 20px auto;
}

.orgchart td {
  text-align: center;
  vertical-align: top;
  padding: 0;
}

.orgchart .lines:nth-child(3) td {
  box-sizing: border-box;
  height: 20px;
}

.orgchart .lines .topLine {
  border-top: 3px solid #fff;
}

.orgchart .lines .rightLine {
  border-right: 2px solid #fff;
  float: none;
  border-radius: 0;
}

.orgchart .lines .leftLine {
  border-left: 2px solid #fff;
  float: none;
  border-radius: 0;
}

.orgchart .lines .downLine {
  background-color: #fff;
  margin: 0 auto;
  height: 20px;
  width: 2px;
  float: none;
}

/* node styling */
.orgchart .node {
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 3px;
  border: 2px dashed transparent;
  text-align: center;
}

.orgchart.l2r .node, .orgchart.r2l .node {
  width: 50px;
  height: 140px;
}

.orgchart .node>.spinner {
  position: absolute;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
}

.orgchart .node>.spinner::before {
  width: 2rem;
  height: 2rem;
  border-width: 0.2rem;
  border-radius: 1rem;
  border-top-color: rgba(68, 157, 68, 0.8);
  border-bottom-color: rgba(68, 157, 68, 0.8);
  border-left-color: rgba(68, 157, 68, 0.8);
}

.orgchart .node:hover {
  background-color: #fff;
  transition: .5s;
  cursor: default;
  z-index: 20;
}

.orgchart .node.focused {
  background-color: #fff;
}

.orgchart .ghost-node {
  position: fixed;
  left: -10000px;
  top: -10000px;
}

.orgchart .ghost-node rect {
  fill: #ffffff;
  stroke: #bf0000;
}

.orgchart .node.allowedDrop {
  border-color: rgba(68, 157, 68, 0.9);
}

.orgchart .node .title {
  box-sizing: border-box;
  padding: 2px;
  width: 150px;
  text-align: center;
  font-size: 0.90rem;
  font-weight: bold;
  height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: #1aa3ff;
  color: #fff;
  border-radius: 4px 4px 0 0; 
  padding-top: 20px;
}

.orgchart.b2t .node .title {
  transform: rotate(-180deg);
  transform-origin: center bottom;
}

.orgchart.l2r .node .title {
  transform: rotate(-90deg) translate(-45px, -45px) rotateY(180deg);
  transform-origin: bottom center;
}

.orgchart.r2l .node .title {
  transform: rotate(-90deg) translate(-45px, -45px);
  transform-origin: bottom center;
}

.orgchart .node .title .symbol {
  float: left;
  margin-top: 12px;
  margin-left: 2px;
}

.orgchart .node .title .symbol::before {
  background-color: #fff;
  border-color: rgba(217, 83, 79, 0.8);
}

.orgchart .node .title .symbol::after {
  background-color: #fff;
}

.orgchart .node .content {
  box-sizing: border-box;
  padding: 5px;
  height: 40px;
  padding-top: 10px;
  font-size: 0.755rem;
  font-weight:bold;
  border: 1px solid #1aa3ff;
  border-radius: 0 0 4px 4px;
  text-align: center;
  background-color: #fff;
  color: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.orgchart.b2t .node .content {
  transform: rotate(180deg);
  transform-origin: center top;
}

.orgchart.l2r .node .content {
  transform: rotate(-90deg) translate(-45px, -45px) rotateY(180deg);
  transform-origin: top center;
  width: 130px;
}

.orgchart.r2l .node .content {
  transform: rotate(-90deg) translate(-45px, -45px);
  transform-origin: top center;
  width: 130px;
}

.orgchart .node .edge {
  position: absolute;
  cursor: default;
  transition: .2s;
}

.orgchart .node .edge::before {
  border-color: rgba(68, 157, 68, 0.5);
}

.orgchart.noncollapsable .node .edge {
  display: none;
}

.orgchart .node .edge:hover {
  cursor: pointer;
}

.orgchart .edge:hover::before {
  border-color: #449d44;
}

.orgchart .node .verticalEdge {
  width: calc(100% - 6px);
  width: -webkit-calc(100% - 6px);
  width: -moz-calc(100% - 6px);
  height: 10px;
  left: 3px;
}

.orgchart .node .verticalEdge::before {
  position: absolute;
  left: calc(50% - 0.3125rem);
}

.orgchart .node .topEdge {
  top: -2px;
}

.orgchart .node .topEdge.oci-chevron-up::before {
  top: 2px;
}

.orgchart .node .topEdge.oci-chevron-down::before {
  bottom: 3px;
}

.orgchart .node .bottomEdge {
  bottom: -2px;
}

.orgchart .node .bottomEdge.oci-chevron-up::before {
  bottom: -3px;
}

.orgchart .node .bottomEdge.oci-chevron-down::before {
  bottom: 1px;
}

.orgchart .node .horizontalEdge {
  width: 10px;
  height: calc(100% - 6px);
  height: -webkit-calc(100% - 6px);
  height: -moz-calc(100% - 6px);
  top: 3px;
}

.orgchart .node .rightEdge {
  right: -2px;
}

.orgchart .node .leftEdge {
  left: -2px;
}

.orgchart .node .horizontalEdge::before {
  position: absolute;
  top: calc(50% - 0.3125rem);
}

.orgchart .node .rightEdge.oci-chevron-left::before {
  right: -3px;
}

.orgchart .node .rightEdge.oci-chevron-right::before {
  right: 1px;
}

.orgchart .node .leftEdge.oci-chevron-right::before {
  left: -3px;
}

.orgchart .node .leftEdge.oci-chevron-left::before {
  left: 1px;
}

.orgchart .node .toggleBtn {
  position: absolute;
  left: 5px;
  bottom: -2px;
}

.orgchart .node .toggleBtn::before {
  background-color: rgba(68, 157, 68, 0.6);
}

.orgchart .node .toggleBtn:hover::before {
  background-color: #449d44;
}

.oc-export-btn {
  display: inline-block;
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  color: #fff;
  background-color: #5cb85c;
  border: 1px solid transparent;
  border-color: #4cae4c;
  border-radius: 4px;
}

.oc-export-btn[disabled] {
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.3;
}

.oc-export-btn:hover,.oc-export-btn:focus,.oc-export-btn:active  {
  background-color: #449d44;
  border-color: #347a34;
}

.orgchart~.mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  text-align: center;
  background-color: rgba(0,0,0,0.3);
}

.orgchart~.mask .spinner {
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
}

.orgchart~.mask .spinner::before {
  width: 100px;
  height: 100px;
  border-width: 10px;
  border-radius: 50px;
  border-top-color: rgba(68, 157, 68, 0.8);
  border-bottom-color: rgba(68, 157, 68, 0.8);
  border-left-color: rgba(68, 157, 68, 0.8);
}

.orgchart .node {
  transition: transform 0.3s, opacity 0.3s;
}

.orgchart .slide-down {
  opacity: 0;
  transform: translateY(40px);
}

.orgchart.l2r .node.slide-down, .orgchart.r2l .node.slide-down {
  transform: translateY(130px);
}

.orgchart .slide-up {
  opacity: 0;
  transform: translateY(-40px);
}

.orgchart.l2r .node.slide-up, .orgchart.r2l .node.slide-up {
  transform: translateY(-130px);
}

.orgchart .slide-right {
  opacity: 0;
  transform: translateX(130px);
}

.orgchart.l2r .node.slide-right, .orgchart.r2l .node.slide-right {
  transform: translateX(40px);
}

.orgchart .slide-left {
  opacity: 0;
  transform: translateX(-130px);
}

.orgchart.l2r .node.slide-left, .orgchart.r2l .node.slide-left {
  transform: translateX(-40px);
}

/* oci means organization chart icons */
.oci {
  display: inline-block;
  position: relative;
  font-style: normal;
  font-family: Arial;
}

.oci-chevron-up::before {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  vertical-align: text-bottom;
  width: 0.625rem;
  height: 0.625rem;
  border-width: 0 0.2rem 0.2rem 0;
  border-style: solid;
  border-color: #000;
  background: transparent;
  transform: rotate(-135deg);
}

.oci-chevron-right::before {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  width: 0.625rem;
  height: 0.625rem;
  border-width: 0 0.2rem 0.2rem 0;
  border-style: solid;
  border-color: #000;
  background: transparent;
  transform: rotate(-45deg);
}

.oci-chevron-down::before {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  width: 0.625rem;
  height: 0.625rem;
  border-width: 0 0.2rem 0.2rem 0;
  border-style: solid;
  border-color: #000;
  background: transparent;
  transform: rotate(45deg);
}

.oci-chevron-left::before {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  width: 0.625rem;
  height: 0.625rem;
  border-width: 0 0.2rem 0.2rem 0;
  border-style: solid;
  border-color: #000;
  background: transparent;
  transform: rotate(135deg);
}

.oci-leader::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 0.2rem;
  background: #000;
  top: -0.75rem;
  left: 0.1rem;
}

.oci-leader::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 0.750rem;
  height: 0.400rem;
  border-radius: 0.50rem 0.50rem 0 0;
  background: #000;
  top: -0.3rem;
  left: -0.125rem;
}

.oci-plus-square::before {
  content: "+";
  display: inline-block;
  vertical-align: text-bottom;
  text-align: center;
  width: 1rem;
  height: 1rem;
  background-color: #000;
  color: #fff;
}

.oci-plus-circle::before {
  content: "+";
  display: inline-block;
  vertical-align: text-bottom;
  text-align: center;
  width: 1rem;
  height: 1rem;
  border-radius: 0.5rem;
  background-color: #000;
  color: #fff;
}

.oci-minus-square::before {
  content: "−";
  display: inline-block;
  vertical-align: text-bottom;
  text-align: center;
  width: 1rem;
  height: 1rem;
  background-color: #000;
  color: #fff;
}

.oci-minus-circle::before {
  content: "−";
  display: inline-block;
  vertical-align: text-bottom;
  text-align: center;
  width: 1rem;
  height: 1rem;
  border-radius: 0.5rem;
  background-color: #000;
  color: #fff;
}

.oci-arrow-circle-up::before {
  content: "▲";
  display: inline-block;
  text-align: center;
  vertical-align: text-bottom;
  width: 1rem;
  height: 1rem;
  border-radius: 0.5rem;
  background-color: #000;
  color: #fff;
  font-size: 0.875rem;
}

.oci-arrow-circle-down::before {
  content: "▼";
  text-align: center;
  display: inline-block;
  vertical-align: text-bottom;
  width: 1rem;
  height: 1rem;
  border-radius: 0.5rem;
  background-color: #000;
  color: #fff;
  font-size: 0.875rem;
}

.oci-info-circle::before {
  content: "i";
  display: inline-block;
  vertical-align: text-bottom;
  width: 1rem;
  height: 1rem;
  border-radius: 0.5rem;
  background-color: #000;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.oci-spinner::before {
  content: "";
  vertical-align: text-bottom;
  display: inline-block;
  box-sizing: border-box;
  width: 1rem;
  height: 1rem;
  border: 0.1rem solid #000;
  border-right-color: transparent;
  border-radius: 0.625rem;
  animation: oci-infinite-spinning .75s linear infinite;
}

@keyframes oci-infinite-spinning {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (min-width: 768px) {
  .sidebar.toggled .nav-item .nav-link i {
    margin-right: 0;
    font-size: 2rem;
  }
  .sidebar.toggled .nav-item .nav-link span {
    font-size: 0.8rem;
    display: block;
    font-weight: bold;
  }
  .sidebar .nav-item .nav-link span {
    font-size: 1rem;
    font-weight: bold;
    display: inline;
  }
}

@media (min-width: 768px) {
  .sidebar .nav-item .nav-link i {
    font-size: 1.4rem;
    margin-right: 0.25rem;
  }
}

.sidebar-dark .nav-item .nav-link i {
  color: rgb(255, 255, 255);
}

.bg-gradient-custom {
  background-color: #36b9cc;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(10%, #1cc88a),
    to(#36b9cc)
  );
  background-image: linear-gradient(180deg, #1cc88a 10%, #36b9cc 100%);
  background-size: cover;
}
.h5,h5 {
  color: #565656;
}

.table-condensed {
  font-size: 1rem;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  border-color: transparent;
}
.nav-tabs {
  border-bottom: none;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: transparent;
}
.nav-tabs .nav-link .active {
  border-bottom: 2px grey;
}
.nav-tabs .nav-link {
  border: none;
  font-size: 1.2rem;
  color: #565656;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #46c88b;
}

.modal-content {
  border: none;
  border-radius: none;
}
.modal-header {
  color: #484848;
  border: none;
  border-radius: 0px;
}

.btn {
  border-radius: 25px;
}

.process {
  display: table;
  width: 100%;
  position: relative;
}

.process-step {
  display: table-cell;
  text-align: center;
  position: relative;
}
.process .btn {
  color: white;
  background-color: #e15353;
  border: 1px solid #e15353;
}

.btn-circle {
  width: 80px;
  height: 80px;
  text-align: center;
  font-size: 12px;
  border-radius: 50%;
}

.toast-section {
  position: absolute;
  top: 60px;
  right: 10px;
  z-index: 99999;
}

.toast-header {
  border-bottom: none;
  padding: 0.5rem;
}

/* width */
::-webkit-scrollbar {
  width: 4px;
  height: 4px; /* height of horizontal scrollbar ← You're missing this */
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #fff;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #fff;
}

.name-wrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-body {
  padding: 1rem;
 
}

.text-success-dark {
  color: #33b183 !important;
}
.text-warning-dark {
  color: #efab00 !important;
}
.text-info-dark {
  color: #009eb5 !important;
}
.text-primary-dark {
  color: #002ba5 !important;
}

.text-teal-200 {
  color: #009688 !important;
}
.border-left-teal {
  border-left: 0.25rem solid #289688 !important;
}
.count {
}

.text-danger-dark {
  color: #c71302 !important;
}
.table-sm td,
.table-sm th {
  padding: 0.3rem;
  white-space: nowrap;
}


.input-group{
  width: 100% !important;
}
.keyword-section{
  overflow: auto;
  padding: 5px 0px;
}

.keyword-section::-webkit-scrollbar{
  display: none;
}

.keyword{
  padding: 7px 13px;
  color: #000;
  white-space: nowrap;
  background-color: #fff;
  margin: 0 5px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  border-radius: 20px;
}
.shadow-1{
  box-shadow: 0 2px 5px rgba(0,0,0,0.12), 0 3px 5px rgba(0,0,0,0.24);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.media-object-top-left{
  position: absolute;
    top: -20px;
    left: 0px;
    height: 75px;
    width: 75px;
    padding: 3px;
    background-color: #f8f9fc;
}
.badge.badge-success{
 background-color: grey;
 position: absolute; 
 top: 138px;
 right: -1px;
 width: 40px;
 border-radius: 60px;
}

.profile-card {
  font-family: 'Open Sans', Arial, sans-serif;
  position: relative;
  float: left;
  overflow: hidden;
  width: 200px;
  text-align: center;
  height:250px;
  border:none;
  border-radius: 5px;
  background-color: #fff;
}
.profile-card .background-block {
    float: left;
    width: 100%;
    height: 100px;
    overflow: hidden;
    background-color:#026292;
}
.profile-card .background-block .background {
  width:100%;
  vertical-align: top;
  background-color:#000;
  opacity: 0.6;
  -webkit-filter: blur(0.2px);
  filter: blur(0.2px);
   -webkit-transform: scale(1.6);
  transform: scale(1.6);
}
.profile-card .card-content {
  width: 100%;
  color:#232323;
  float:left;
  /*background:#fff;*/
  height:50%;
  border-radius:0 0 5px 5px;
  position: relative;
  z-index: 9999;
}
.profile-card .card-content::before {
    content: '';
    background: #fff;
    width: 120%;
    height: 100%;
    left: -6px;
    bottom: 40px;
    position: absolute;
    z-index: -1;
    transform: rotate(-193deg);
}
.profile-card .profile {
  border-radius: 50%;
  position: absolute;
  bottom: 58%;
  left: 50%;
  width: 80px;
  height: 80px;
  background-position: center;
  background-size: cover;
  background-repeat:no-repeat;
  opacity: 1;
  box-shadow: 3px 3px 20px rgba(1, 1, 1, 1.5);
  border: 2px solid rgba(255, 255, 255, 1);
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  z-index:99999;
}
.profile-card h4 {
margin-top:5px;
  font-weight: 600;
  font-size:0.9rem;
  color: #000;
}
.profile-card h5 {
  display: block;
  font-size: 15px;
  margin-top:10px;
  color:#000;
}
.profile-card i {
  display: inline-block;
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    margin:0 5px;
    text-shadow: 0px 0px 2px #000000;
}
.profile-card .icon-block{
    float:left;
    width:100%;
    margin-top:15px;
}
.profile-card .icon-block a{
    text-decoration:none;
}
.profile-card i:hover {
  color:#fff;
  text-decoration:none;
}


/** profile details**/
.profile-image{
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background-position: center;
    background-size: contain;
    margin: auto;
    -webkit-transform: translate3d(0,-50%,0);
    -moz-transform: translate3d(0,-50%,0);
    -o-transform: translate3d(0,-50%,0);
    -ms-transform: translate3d(0,-50%,0);
    /* transform: translate3d(0,-50%,0); */
}

.page-content{

    margin-top: -150px;
    background-color: #fff;
    border-radius:6px;
}

.hero-image{
    height: 450px;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    margin-top: -4.375rem;
    z-index:-3;
}

.profile-info{
    text-align:center;

    color: #232323;
    -webkit-transform: translate3d(0,-30%,0);
    -moz-transform: translate3d(0,-30%,0);
    -o-transform: translate3d(0,-30%,0);
    -ms-transform: translate3d(0,-30%,0);
    /* transform: translate3d(0,-30%,0); */
}
.profile-info span, p{
    color: #232323;
    text-decoration:none;
    font-size:1.1rem
}
.profile-info a {
    text-decoration:none;
}
.profile-info i {
    display: inline-block;
    font-size: 1.5rem;
    color: #232323;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    margin: 0 5px;
}

.title{
    font-family: "Roboto Slab","Times New Roman",serif;
}
.hero-layer{
    background-color: #36b9cca3;
    height: 100%;
    width: 100%;
}

.skype{
    color:#00aff0 !important;
}

.bg-skype{
    background-color:#00aff0 !important;
}
a{
    text-decoration :none !important;
}

.border-top-info{
    border-top: .40rem solid #36b9cc!important;
}

.border-top-warning{
    border-top: .40rem solid #f6c23e !important;
}

.border-top-success{
    border-top: .40rem solid #1cc88a !important;
}

.border-top-primary{
    border-top: .40rem solid #4e73df !important;
}

.border-top-danger{
    border-top: .40rem solid #e74a3b !important;
}



.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #3a3b45 !important;
}
.ng-cloak {
    display:none !important;
}

.table .table-fixed{
    overflow-y: auto;
    height:100px
}
.table .table-fixed th {
    position:sticky;
    top:0
}

/** color codes **/

/* text color */
.text-cloud{
    color:  #1D65A6 !important;
}

.text-fpga{
    color:  #DAA2DA !important;
}

.text-network{
    color:  #F4874B !important;
}


.text-unassinged{
    color: #DCD9C6 !important;
}

.text-vvdn{
    color: #D50B53 !important;
}

.text-itops{
    color: #0438A3 !important;
}

.text-excellence{
    color:  #0294A5 !important;
}

.text-camera{
    color:  #ABA6BF !important;
}

.text-industrial{
   color:  #BE9063 !important;
}

.text-automotive{
    color:  #F4874B !important;
}

.text-iot{
    color:  #5C4A72 !important;
}

.text-support{
    color:  #594346 !important;
}
.text-defense{
    color:  #D6618F !important;
}

/* bg color */
.bg-cloud{
    background-color: #1D65A6 !important;
}

.bg-fpga {
    background-color: #DAA2DA !important;
}

.bg-network {
    background-color:  #F4874B !important;
}

.bg-camera {
    background-color: #ABA6BF !important;
}

.bg-industrial {
    background-color: #BE9063 !important;
}

.bg-automotive {
    background-color: #F4874B !important;
}


.bg-iot {
    background-color: #5C4A72 !important;
}

.bg-defense {
    background-color: #D6618F !important;
}


.bg-excellence {
    background-color: #0294A5 !important;
}

.bg-itops {
    background-color: #0438A3 !important;
}


.bg-support {
    background-color: #594346 !important;
}


.bg-unassinged {
    background-color: #DCD9C6 !important;
}


.bg-vvdn {
    background-color: #D50B53 !important;
}

/* border top vvdn color*/
.border-top-iot {
    border-top: .40rem solid #5C4A72 !important;
}

.border-top-automotive {
    border-top: .40rem solid #F4874B !important;
}

.border-top-industrial {
    border-top: .40rem solid #BE9063 !important;
}

.border-top-fpga {
    border-top: .40rem solid #DAA2DA !important;
}

.border-top-network {
    border-top: .40rem solid #F4874B !important;
}

.border-top-camera {
    border-top: .40rem solid #ABA6BF !important;
}

.border-top-defense {
    border-top: .40rem solid #D6618F !important;
}

.border-top-excellence {
    border-top: .40rem solid #0294A5 !important;
}

.border-top-itops{
    border-top: .40rem solid #0438A3 !important;
}

.border-top-unassinged{
    border-top: .40rem solid #DCD9C6 !important;
}

.border-top-cloud {
    border-top: .40rem solid #1D65A6 !important;
}

.border-top-vvdn {
    border-top: .40rem solid #D50B53 !important;
}

.border-top-support {
    border-top: .40rem solid #594346 !important;
}




/* border left vvdn color*/
.border-left-iot {
    border-left: .25rem solid #5C4A72 !important;
}

.border-left-automotive {
    border-left: .25rem solid #F4874B !important;
}

.border-left-industrial {
    border-left: .25rem solid #BE9063 !important;
}

.border-left-fpga {
    border-left: .25rem solid #DAA2DA !important;
}

.border-left-network {
    border-left: .25rem solid #F4874B !important;
}

.border-left-camera {
    border-left: .25rem solid #ABA6BF !important;
}

.border-left-defense {
    border-left: .25rem solid #D6618F !important;
}

.border-left-excellence {
    border-left: .25rem solid #0294A5 !important;
}

.border-left-support{
    border-left: .25rem solid #594346 !important;
}

.border-left-unassinged{
    border-left: .25rem solid #DCD9C6 !important;
}

.border-left-cloud {
    border-left: .25rem solid #1D65A6 !important;
}

.border-left-vvdn {
    border-left: .25rem solid #D50B53 !important;
}

@media(min-width: 576px){
    .page-content {
        margin-top: -150px;
        background-color: #fff;
        border-radius:6px;
    }
}

.page-item.active .page-link{
    background-color: #1cc88a;
    border-color: #1cc88a;
    color:#fff !important;
}

.page-link{
    color: #1cc88a !important;
}
/*
.table-hover tbody tr:hover {
    color: #ffffff;
    display: inline-table;
    width: 95%;
    margin: 0 -10px;
    position: absolute;
    z-index: 100000;
    background-color: #1cc88a;
    transition:.1s;
}
*/
.badge {
  
  border-radius: 0;
  font-size: 12px;
  line-height: 1;
  padding: .375rem .5625rem;
  font-weight: normal
  
}

.badge-outline-primary {
  color: #405189;
  border: 1px solid #405189
}

.badge.badge-pill {
  border-radius: 10rem
}

