.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link  {color: #999999;} 
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active  {color: #000000;} 


.dropdown-menu .dropdown-item.active  {color: #ffffff; background-color: #000000;} 


.text-red {
  color: #dd4b39 !important;
}
.text-yellow {
  color: #f39c12 !important;
}
.text-aqua {
  color: #00c0ef !important;
}
.text-blue {
  color: #0073b7 !important;
}
.text-black {
  color: #111111 !important;
}
.text-light-blue {
  color: #3c8dbc !important;
}
.text-green {
  color: #00a65a !important;
}
.text-gray {
  color: #d2d6de !important;
}
.text-navy {
  color: #001f3f !important;
}
.text-teal {
  color: #39cccc !important;
}
.text-olive {
  color: #3d9970 !important;
}
.text-lime {
  color: #01ff70 !important;
}
.text-orange {
  color: #ff851b !important;
}
.text-fuchsia {
  color: #f012be !important;
}
.text-purple {
  color: #605ca8 !important;
}
.text-maroon {
  color: #d81b60 !important;
}

.text-blink {
  animation: blinker 2s linear infinite;
}
@keyframes blinker {  
  50% { opacity: 0; }
}
.blink-one {
  animation: blinker-one 1s linear infinite;
}
@keyframes blinker-one {  
  0% { opacity: 0; }
}
.blink-two {
  animation: blinker-two 1.4s linear infinite;
}
@keyframes blinker-two {  
  100% { opacity: 0; }
}