.requiredField { font-weight: bold; }
small { font-size: 0.875rem; } 
.invalid-otp { border-color: #e74a3b; }

.people-list {
    -moz-transition: .5s;
    -o-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s
}

.people-list .chat-list li {
    padding: 10px 15px;
    list-style: none;
    border-radius: 3px
}

.people-list .chat-list li:hover {
    background: #efefef;
    cursor: pointer
}

.people-list .chat-list li.active {
    background: #efefef
}

.people-list .chat-list li {
    font-size: 0.95rem
}

.people-list .chat-list img {
    border-radius: 50%
}

.people-list img {
    float: left;
    max-width: 90px !important;
    border-radius: 50%
}

.people-list .status {
    color: #999;
    font-size: 0.85rem
}

.online,
.offline,
.me {
    margin-right: 2px;
    font-size: 8px;
    vertical-align: middle
}

.online {
    color: #86c541
}

.offline {
    color: #e47297
}

.me {
    color: #1d8ecd
}

.float-right {
    float: right
}


.card-actions {
    position: absolute;
    top: 0;
    right: 0;
} 

.select2-container--default .select2-selection--single .select2-selection__arrow { display: none !important;}
.select2-container .select2-selection--single { height: 40px !important;}


li.active > a.hidden-xs {
    display: block!important;
   }
   li.active > a.visible-xs {
       display: none!important; 
   }
   .nav-pills.nav-wizard > li {
     position: relative;
     overflow: visible;
     border-right: 10px solid #fff;
     border-left: 10px solid #fff;
   }
   .nav-pills.nav-wizard > li:first-child {
     border-left: 0;
   }
   .nav-pills.nav-wizard > li:first-child a {
     border-radius: 5px 0 0 5px;
   }
   .nav-pills.nav-wizard > li:last-child {
     border-right: 0;
   }
   .nav-pills.nav-wizard > li:last-child a {
     border-radius: 0 5px 5px 0;
   }
   .nav-pills.nav-wizard > li a {
     border-radius: 0;
     background-color: #eee;
     padding: 10px;
   }
   .nav-pills.nav-wizard > li .nav-arrow {
     position: absolute;
     top: 0px;
     right: -20px;
     width: 0px;
     height: 0px;
     border-style: solid;
     border-width: 20px 0 20px 20px;
     border-color: transparent transparent transparent #eee;
     z-index: 150;
   }
   .nav-pills.nav-wizard > li .nav-wedge {
     position: absolute;
     top: 0px;
     left: -20px;
     width: 0px;
     height: 0px;
     border-style: solid;
     border-width: 20px 0 20px 20px;
     border-color: #eee #eee #eee transparent;
     z-index: 150;
   }
   .nav-pills.nav-wizard > li:hover .nav-arrow {
     border-color: transparent transparent transparent #aaa;
   }
   .nav-pills.nav-wizard > li:hover .nav-wedge {
     border-color: #aaa #aaa #aaa transparent;
   }
   .nav-pills.nav-wizard > li:hover a {
     background-color: #aaa;
     color: #fff;
   }
   .nav-pills.nav-wizard > li.active .nav-arrow {
     border-color: transparent transparent transparent #428bca;
   }
   .nav-pills.nav-wizard > li.active .nav-wedge {
     border-color: #428bca #428bca #428bca transparent;
   }
   .nav-pills.nav-wizard > li.active a {
     background-color: #428bca;
   }


.numberCircle {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 8px;

    background: #fff;
    border: 2px solid #e12502;
    color: #e12502;
    text-align: center;
}

td { line-height: 1.25em; }




/* https://www.w3schools.com/howto/howto_css_flip_card.asp */

/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 250px;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #bbb;
  color: black;
}

/* Style the back side */
.flip-card-back {
  background-color: #e12502;
  color: white;
  transform: rotateY(180deg);
}


.fs-6 { font-size: 0.8rem !important; }


li.nav-item { font-size: 1.2rem; }


.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
  transform: scale(.7) !important;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}

.dataTables_filter { float: right !important;}