.user-timeline-container {
    height: 570px;
    overflow-y: auto;
}
.toast-container {
	background-color:white;
}
.progress-bar-success
{
	background-color: #5CB85C !important;
}
.sm-bd
{
	font-weight: 600 !important;
}
.progress-cr {
  width: 110px;
  height: 110px;
  line-height: 150px;
  background: none;
  margin: 0 auto;
  box-shadow: none;
  position: relative;
}
.progress-cr:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 7px solid #eee;
  position: absolute;
  top: 0;
  left: 0;
}
.progress-cr > span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}
.progress-cr .progress-cr-left {
  left: 0;
}
.progress-cr .progress-cr-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 7px;
  border-style: solid;
  position: absolute;
  top: 0;
  border-color: #5CB85C;
}
.progress-cr .progress-cr-left .progress-cr-bar {
  left: 100%;
  border-top-right-radius: 75px;
  border-bottom-right-radius: 75px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}
.progress-cr .progress-cr-right {
  right: 0;
}
.progress-cr .progress-cr-right .progress-cr-bar {
  left: -100%;
  border-top-left-radius: 75px;
  border-bottom-left-radius: 75px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}
.progress-cr .progress-cr-value {
  display: flex;
  border-radius: 50%;
  font-size: 26px;
  text-align: center;
  line-height: 20px;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-weight: 300;
}
.progress-cr .progress-cr-value div {
  margin-top: 10px;
}
.progress-cr .progress-cr-value span {
  font-size: 12px;
  text-transform: uppercase;
}

/* This for loop creates the 	necessary css animation names 
Due to the split circle of progress-left and progress right, we must use the animations on each side. 
*/
.progress-cr[data-percentage="10"] .progress-cr-right .progress-cr-bar {
  animation: loading-1 1.5s linear forwards;
}
.progress-cr[data-percentage="10"] .progress-cr-left .progress-cr-bar {
  animation: 0;
}

.progress-cr[data-percentage="20"] .progress-cr-right .progress-cr-bar {
  animation: loading-2 1.5s linear forwards;
}
.progress-cr[data-percentage="20"] .progress-cr-left .progress-cr-bar {
  animation: 0;
}

.progress-cr[data-percentage="30"] .progress-cr-right .progress-cr-bar {
  animation: loading-3 1.5s linear forwards;
}
.progress-cr[data-percentage="30"] .progress-cr-left .progress-cr-bar {
  animation: 0;
}

.progress-cr[data-percentage="40"] .progress-cr-right .progress-cr-bar {
  animation: loading-4 1.5s linear forwards;
}
.progress-cr[data-percentage="40"] .progress-cr-left .progress-cr-bar {
  animation: 0;
}

.progress-cr[data-percentage="50"] .progress-cr-right .progress-cr-bar {
  animation: loading-5 1.5s linear forwards;
}
.progress-cr[data-percentage="50"] .progress-cr-left .progress-cr-bar {
  animation: 0;
}

.progress-cr[data-percentage="60"] .progress-cr-right .progress-cr-bar {
  animation: loading-5 1.5s linear forwards;
}
.progress-cr[data-percentage="60"] .progress-cr-left .progress-cr-bar {
  animation: loading-1 1.5s linear forwards 1.5s;
}

.progress-cr[data-percentage="70"] .progress-cr-right .progress-cr-bar {
  animation: loading-5 1.5s linear forwards;
}
.progress-cr[data-percentage="70"] .progress-cr-left .progress-cr-bar {
  animation: loading-2 1.5s linear forwards 1.5s;
}

.progress-cr[data-percentage="80"] .progress-cr-right .progress-cr-bar {
  animation: loading-5 1.5s linear forwards;
}
.progress-cr[data-percentage="80"] .progress-cr-left .progress-cr-bar {
  animation: loading-3 1.5s linear forwards 1.5s;
}

.progress-cr[data-percentage="90"] .progress-cr-right .progress-cr-bar {
  animation: loading-5 1.5s linear forwards;
}
.progress-cr[data-percentage="90"] .progress-cr-left .progress-cr-bar {
  animation: loading-4 1.5s linear forwards 1.5s;
}

.progress-cr[data-percentage="100"] .progress-cr-right .progress-cr-bar {
  animation: loading-5 1.5s linear forwards;
}
.progress-cr[data-percentage="100"] .progress-cr-left .progress-cr-bar {
  animation: loading-5 1.5s linear forwards 1.5s;
}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(36);
    transform: rotate(36deg);
  }
}
@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(72);
    transform: rotate(72deg);
  }
}
@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(108);
    transform: rotate(108deg);
  }
}
@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(144);
    transform: rotate(144deg);
  }
}
@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180);
    transform: rotate(180deg);
  }
}
.progress-cr {
  margin-bottom: 1em;
}
/****************************************************/
input.custom-radio[type="radio"]:not(:checked),
input.custom-radio[type="radio"]:checked {
 position:absolute;
 left:-9999px;
 visibility:hidden
}
input.custom-radio[type="radio"]:not(:checked)+label,
input.custom-radio[type="radio"]:checked+label {
 position:relative;
 padding-left:26px;
 cursor:pointer;
 display:inline-block;
 height:25px;
 line-height:25px;
 font-size:1rem;
 transition:.28s ease;
 -webkit-user-select:none;
 -moz-user-select:none;
 -ms-user-select:none;
 user-select:none
}
input.custom-radio[type="radio"]+label:before,
input.custom-radio[type="radio"]+label:after {
 content:'';
 position:absolute;
 left:0;
 top:0;
 margin:4px;
 width:16px;
 height:16px;
 z-index:0;
 transition:.28s ease
}
input.custom-radio[type="radio"]:not(:checked)+label:before {
 border-radius:50%;
 border:2px solid #9477ae
}
input.custom-radio[type="radio"]:not(:checked)+label:after {
 border-radius:50%;
 border:2px solid #9477ae;
 z-index:-1;
 -webkit-transform:scale(0);
 transform:scale(0)
}
input.custom-radio[type="radio"]:checked+label:before {
 border-radius:50%;
 border:2px solid transparent
}
input.custom-radio[type="radio"]:checked+label:after {
 border-radius:50%;
 border:2px solid #9477ae;
 background-color:#9477ae;
 z-index:0;
 -webkit-transform:scale(1.02);
 transform:scale(1.02)
}
input.custom-radio[type="radio"].with-gap:checked+label:before {
 border-radius:50%;
 border:2px solid #9477ae
}
input.custom-radio[type="radio"].with-gap:checked+label:after {
 border-radius:50%;
 border:2px solid #9477ae;
 background-color:#9477ae;
 z-index:0;
 -webkit-transform:scale(0.5);
 transform:scale(0.5)
}
input.custom-radio[type="radio"].with-gap:disabled:checked+label:before {
 border:2px solid rgba(0,0,0,0.26)
}
input.custom-radio[type="radio"].with-gap:disabled:checked+label:after {
 border:none;
 background-color:rgba(0,0,0,0.26)
}
input.custom-radio[type="radio"]:disabled:not(:checked)+label:before,
input.custom-radio[type="radio"]:disabled:checked+label:before {
 background-color:transparent;
 border-color:rgba(0,0,0,0.26)
}
input.custom-radio[type="radio"]:disabled+label {
 color:rgba(0,0,0,0.26)
}
input.custom-radio[type="radio"]:disabled:not(:checked)+label:before {
 border-color:rgba(0,0,0,0.26)
}
input.custom-radio[type="radio"]:disabled:checked+label:after {
 background-color:rgba(0,0,0,0.26);
 border-color:#BDBDBD
}
.custom_select
{

  -webkit-appearance: none;  
  -moz-appearance: none; 
 background-color: #9477ae !important ;
 background-image:  url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 24 24\' fill=\'none\' stroke=\'%23fff\' stroke-width=\'2\' stroke-linecap=\'round\' stroke-linejoin=\'round\' class=\'feather feather-chevron-down\'%3E%3Cpolyline points=\'6 9 12 15 18 9\'%3E%3C/polyline%3E%3C/svg%3E');;
background-repeat: no-repeat;
background-position: 120px 9px;
background-size: 25px 25px;
color: #FFF !important;
  text-indent: 0.01px; 
  text-overflow: ""; 
display: inline-block;
font-weight: 400;
text-align: center;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-color: transparent;
border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
padding: 10px 37px 10px 15px;
font-size: 18px;
border-radius: .358rem;
-webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,background 0s,border 0s;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,background 0s,border 0s
 
}
.custom_select option
{
  background-color: #fff;
  color: #6E6B7B;
  padding: 10px;
  font-family: 'Montserrat', Helvetica, Arial, serif;
}

.chat_icon {

    width: 38px;
    height: 17px;
    background-image: url('../images/chat_toggle.gif');
    /* float: left; */
    background-position: -36px -47px;
    margin: 0;
    display: inline-block;
    transition: -webkit-transform 0.25s ease;
    position: relative;
    top: 2px;

}
.chat_icon:hover {
    width: 38px;
    height: 17px;
    background-image: url('../images/chat_toggle.gif');
    /* float: left; */
    background-position: -36px  -63px;
    margin: 0;
    display: inline-block;
}
.report_icon {
    width: 38px;
    height: 17px;
    background-image: url('../images/chat_toggle.gif');
    /* float: left; */
    background-position: -36px  -63px;
    margin: 0;
    display: inline-block;
    transition: -webkit-transform 0.25s ease;
    position: relative;
    top: 2px;
}
.report_icon:hover {
    width: 38px;
    height: 17px;
    background-image: url('../images/chat_toggle.gif');
    /* float: left; */
    background-position: -36px -47px;
    margin: 0;
    display: inline-block;
  
    
}
/*table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:after
{
  right: 1rem !important;
}
table.dataTable thead .sorting:before, table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_desc:before
{
  right: 1rem !important;
}*/
table.dataTable thead>tr>th.sorting_asc, table.dataTable thead>tr>th.sorting_desc, table.dataTable thead>tr>th.sorting, table.dataTable thead>tr>td.sorting_asc, table.dataTable thead>tr>td.sorting_desc, table.dataTable thead>tr>td.sorting
{
  padding-right: 21px !important;
  padding-left: 11px;
}
/*******************mobile view**************************/
.break
{
  display: none;
}
.set-icon
{
  position: relative;
  display: block;
    width: 74px;
    height: 74px;
    margin: 0 auto;
}
.set-icon .award-icon {
    position: absolute;
    top: 0;
    right: 3px;
    background: #000;
    border-radius: 50%;
    width: 20px;
    text-align: center;
    height: 20px;
}
#image_set .col-md-5
{
  padding: 0 10px;
}
.slide-menu
{
  display: none;
}
@media (max-width: 768px) {
#image_set .col-xs-6
{
  width: 50% !important;
}
.user-name
{
font-size: 12px;
}

.header-navbar .navbar-container ul.navbar-nav li > a.nav-link
{
  padding: 0;
}
.mob-50
{
  width: 50%;
}
.mob-50 .custom_select
{
  padding: 10px;

  font-size: 16px;
}
.chat-left
{
position: relative; 
}
.chat-left .chat-avatar
{
  position: absolute;
  left: -15px;
  top: 12px;
}

.chat-right
{
position: relative; 
}
.chat-right .chat-avatar
{
  position: absolute;
  right: -10px;
  top: 12px;
}
.break
{
  display: block;
  margin-bottom: 12px;
}
.chat .chat-body .chat-content > p
{
  padding: 5px !important;
}
.chat-app-window .chats .chat-left .chat-body .chat-content
{
  margin: 0 0 10px 6px !important;
}
.chat-app-window .chats .chat-body .chat-content
{
  margin: 0 6px 10px 0 !important;
}
.chat-app-window .chats .chat-left .chat-body .chat-content p 
{
  text-indent: 5px;
}
.chat-header #headline {
      font-size: 13px !important;
    }
    .slide-menu
{
  display: block;
}
/*.chat-app-window .chats .chat-body .chat-content p
{
  text-align: justify;
}*/
/*.chat_icon,.report_icon
{
display: none;
}*/
}
@media (min-width: 320px) {
  .mob-50 .custom_select
  {
  background-position:right;
}

}

.chat-index
{
  z-index: 100000;
  position: relative;
}

/*********************glowing btn*************************/

.thumb-green {
  background-color: rgba(0, 255, 0, 0.4);
  width: 50px;
  height: 50px;
  padding: 2px;
  border:1px solid rgba(0, 255, 0, 0.4);;
  border-radius: 50%;      
       -webkit-animation: glowing-polygon 1300ms infinite;
        -moz-animation: glowing-polygon 1300ms infinite;
        -o-animation: glowing-polygon 1300ms infinite;
        animation: glowing-polygon 1300ms infinite;
      }
      @-webkit-keyframes glowing-polygon {
        0% {
          background-color: rgba(0, 255, 0, 0.4);
          -webkit-box-shadow: 0 0 3px rgba(0, 255, 0, 0.4);
           transform: scale(1.2);
        }
        50% {
          background-color: rgba(0, 255, 0, 0.4);
          -webkit-box-shadow:  0 0 0.2em #0f0, 0 0 0.2em #0f0, 0 0 0.2em #0f0, 0 0.1em 0.04em #0f0, 0 0 1em #0f0, 0 0 1em #0f0, 0 0 1em #0f0;
           transform: scale(1.2);
        }
        100% {
          background-color: rgba(0, 255, 0, 0.4);
          -webkit-box-shadow:  0 0 0.2em #0f0, 0 0 0.2em #0f0, 0 0 0.2em #0f0, 0 0.1em 0.04em #0fo, 0 0 1em #0f0, 0 0 1em #0f0, 0 0 1em #0f0;
           transform: scale(1.2);
        }
      }
      @keyframes  glowingPolygon  {
        0% {
          background-color: rgba(0, 255, 0, 0.4);
          box-shadow: 0 0 0.2em #0f0, 0 0 0.2em #0f0, 0 0 0.2em #0f0, 0 0.1em 0.04em #000, 0 0 1em #0f0, 0 0 1em #0f0, 0 0 1em #0f0;
           transform: scale(1.2);
        }
        50% {
          background-color: rgba(0, 255, 0, 0.4);
          box-shadow: 0 0 0 0.2em #0f0, 0 0 0.2em #0f0, 0 0 0.2em #0f0, 0 0.1em 0.04em #000, 0 0 1em #0f0, 0 0 1em #0f0, 0 0 1em #0f0;
           transform: scale(1.2);
        }
        100% {
          background-color: rgba(0, 255, 0, 0.4);
          box-shadow:  0 0 0.2em #0f0, 0 0 0.2em #0f0, 0 0 0.2em #0f0, 0 0.1em 0.04em #000, 0 0 1em #0f0, 0 0 1em #0f0, 0 0 1em #0f0;
           transform: scale(1.2);
        }
      }

.thumb-blue {
  background-color: rgba(88, 73, 245, 0.9);
  width: 50px;
  height: 50px;
  padding: 2px;
  border:1px solid rgba(88, 73, 245, 0.4);
  border-radius: 50%;      
       -webkit-animation: glowing-polygon 1300ms infinite;
        -moz-animation: glowing-polygon 1300ms infinite;
        -o-animation: glowing-polygon 1300ms infinite;
        animation: glowing-polygon 1300ms infinite;
      }
      @-webkit-keyframes glowing-polygon {
        0% {
          background-color: rgba(88, 73, 245, 0.9);
          -webkit-box-shadow: 0 0 3px rgba(88, 73, 245, 0.4);
           transform: scale(1.2);
        }
        50% {
          background-color: rgba(88, 73, 245,, 0.9);
          -webkit-box-shadow:  0 0 0.2em #4839eb, 0 0 0.2em #4839eb, 0 0 0.2em #4839eb, 0 0.1em 0.04em #4839eb, 0 0 1em #4839eb, 0 0 1em #4839eb, 0 0 1em #4839eb;
           transform: scale(1.2);
        }
        100% {
          background-color: rgba(88, 73, 245, 0.9);
          -webkit-box-shadow:  0 0 0.2em #4839eb, 0 0 0.2em #4839eb, 0 0 0.2em #4839eb, 0 0.1em 0.04em #4839eb, 0 0 1em #4839eb, 0 0 1em #4839eb, 0 0 1em #4839eb;
           transform: scale(1.2);
        }
      }
      @keyframes  glowingPolygon  {
        0% {
          background-color: rgba(88, 73, 245, 0.9);
          box-shadow: 0 0 0.2em #4839eb, 0 0 0.2em #4839eb, 0 0 0.2em #4839eb, 0 0.1em 0.04em #4839eb, 0 0 1em #4839eb, 0 0 1em #4839eb, 0 0 1em #4839eb;
           transform: scale(1.2);
        }
        50% {
          background-color: rgba(88, 73, 245, 0.9);
          box-shadow: 0 0 0 0.2em #4839eb, 0 0 0.2em #4839eb, 0 0 0.2em #4839eb, 0 0.1em 0.04em #4839eb, 0 0 1em #4839eb, 0 0 1em #4839eb, 0 0 1em #4839eb;
           transform: scale(1.2);
        }
        100% {
          background-color: rgba(88, 73, 245, 0.9);
          box-shadow:  0 0 0.2em #4839eb, 0 0 0.2em #4839eb, 0 0 0.2em #4839eb, 0 0.1em 0.04em #4839eb, 0 0 1em #4839eb, 0 0 1em #4839eb, 0 0 1em #4839eb;
           transform: scale(1.2);
        }
      }

      .thumb-red {
  background-color: rgba(255, 80, 46, 0.9);
  width: 50px;
  height: 50px;
  padding: 2px;
  border:1px solid rgba(255, 80, 46, 0.4);
  border-radius: 50%;      
       -webkit-animation: glowing-polygon 1300ms infinite;
        -moz-animation: glowing-polygon 1300ms infinite;
        -o-animation: glowing-polygon 1300ms infinite;
        animation: glowing-polygon 1300ms infinite;
      }
      @-webkit-keyframes glowing-polygon {
        0% {
          background-color: rgba(255, 80, 46, 0.9);
          -webkit-box-shadow: 0 0 3px rgba(255, 80, 46, 0.4);
           transform: scale(1.2);
        }
        50% {
          background-color: rgba(255, 80, 46, 0.9);
          -webkit-box-shadow:  0 0 0.2em #FF502E, 0 0 0.2em #FF502E, 0 0 0.2em #FF502E, 0 0.1em 0.04em #FF502E, 0 0 1em #FF502E, 0 0 1em #4839eb, 0 0 1em #FF502E;
           transform: scale(1.2);
        }
        100% {
          background-color: rgba(255, 80, 46, 0.9);
          -webkit-box-shadow:  0 0 0.2em #FF502E, 0 0 0.2em #FF502E, 0 0 0.2em #FF502E, 0 0.1em 0.04em #FF502E, 0 0 1em #FF502E, 0 0 1em #FF502E, 0 0 1em #FF502E;
           transform: scale(1.2);
        }
      }
      @keyframes  glowingPolygon  {
        0% {
          background-color: rgba(255, 80, 46, 0.9);
          box-shadow: 0 0 0.2em #FF502E, 0 0 0.2em #FF502E, 0 0 0.2em #FF502E, 0 0.1em 0.04em #FF502E, 0 0 1em #FF502E, 0 0 1em #FF502E, 0 0 1em #FF502E;
           transform: scale(1.2);
        }
        50% {
          background-color: rgba(255, 80, 46, 0.9);
          box-shadow: 0 0 0 0.2em #FF502E, 0 0 0.2em #FF502E, 0 0 0.2em #FF502E, 0 0.1em 0.04em #FF502E, 0 0 1em #FF502E, 0 0 1em #FF502E, 0 0 1em #FF502E;
           transform: scale(1.2);
        }
        100% {
          background-color: rgba(255, 80, 46, 0.9);
          box-shadow:  0 0 0.2em #FF502E, 0 0 0.2em #FF502E, 0 0 0.2em #FF502E, 0 0.1em 0.04em #FF502E, 0 0 1em #FF502E, 0 0 1em #FF502E, 0 0 1em #FF502E;
           transform: scale(1.2);
        }
      }
      
/*****************glowing btn end***************************/
.custom-control-input:checked ~ .custom-control-label::before {
    color: #FFFFFF;
    border-color: #9477AE;
    background-color: #9477AE;
  }
  .purple-line
  {
    border: 5px solid #7367F0;
  }
  .small-badge
  {
    padding: 3px 5px;
font-size: 8px;
  }

/*.chat-content-full-grey {
    background: linear-gradient(263.32deg, #D3D3D3 -3.25%, #D3D3D3 33.99%, #D3D3D3 66.6%, #D3D3D3 82.39%, #D3D3D3 98.25%) !important;
    color: white !important;
    border-radius: .357rem;
    box-shadow: 0 4px 8px 0 rgba(34,41,47,.12);
    max-width: 100%;
    clear: both;
  }*/
  .chat.chat-right .chat-body .chat-content-full-grey {
    background: linear-gradient(
102.87deg, #D3D3D3 -15.21%, #D3D3D3 12.42%, #D3D3D3 45.21%, #a8a7a7 79.64%, #a8a7a7 106.33%) !important;
    float: right;
    padding: 5px 5px 0px 5px;
    margin: 0 0 10px 0;
    clear: both;
    color: #FFF;
    
    background-repeat: repeat-x;
    border-radius: 0.357rem;
    box-shadow: 0 4px 8px 0 rgb(34 41 47 / 12%);
    max-width: 100%;

}
 .chat.chat-right .chat-body .chat-content-full-grey > p
{
  background-color: white !important;
    color: black !important;
    padding: 10px;
}
.chat.chat-left .chat-body .chat-content-full-grey {
    background: linear-gradient(
102.87deg, #D3D3D3 -15.21%, #D3D3D3 12.42%, #D3D3D3 45.21%, #a8a7a7 79.64%, #a8a7a7 106.33%) !important;
    float: right;
    padding: 5px 5px 0px 5px;
    margin: 0 0 10px 0;
    clear: both;
    color: #FFF;
    
    background-repeat: repeat-x;
    border-radius: 0.357rem;
    box-shadow: 0 4px 8px 0 rgb(34 41 47 / 12%);
    max-width: 100%;
    width: 100%;

}
 .chat.chat-left .chat-body .chat-content-full-grey > p
{
  background-color: white !important;
    color: black !important;
    padding: 10px;
}
.full-width-box .chat-body
{
  margin-right: 0 !important;
}
.avatar_display
{
  position: relative;
}
.badge-absolute
{
      position: absolute;
    bottom: -6px;
    left: 3px;
    padding: 3px;
    font-size: 7px;
    width: 30px;
    text-align: center;
}
.badge-name
{
       position: absolute;
    bottom: -27px;
    left: -15px;
    padding: 3px;
    font-size: 10px;
    color: #000;
    width: 65px;
    font-weight: 500;
    text-align: center;
}
.animate_success_message{
  -webkit-animation: 3s ease 0s normal forwards 1 fadein;
  animation: 3s ease 0s normal forwards 1 fadein;
}

@keyframes fadein{
  60% { opacity:0.6; }
  100% { opacity:1; }
}

@-webkit-keyframes fadein{
  60% { opacity:0.6; }
  100% { opacity:1; }
}

.box-shadow-dark
{
  box-shadow: 1px 1px 9px 0px rgb(0, 0,0,0.7) !important;
}
.border-red
{
  border: 1px solid #FF4041;
}
.border-blue 
{
  border: 1px solid #1A2EF3;
}
.text-black
{
  color: black;
}
.radius-50
{
  border-radius: 20px;
}
.circle-red
{
  background-color:#D12C30;
  width: 13px;
  height:13px;
  border-radius: 50%;
  margin-right: 10px;
  display: inline-block;
}
.circle-blue
{
  background-color: #4E83B7;
 width: 13px;
  height:13px;
  border-radius: 50%;
   margin-right: 10px;
    display: inline-block;
}
.text-clr-blue
{
  color: #4E83B7;

}
.text-clr-red
{
  color: #D12C30;


}
.dash-blue
{
width: 24px;
height: 4px;
border-radius: 4px;
margin: 2px;
background-color: #4E83B7;
display: inline-block;
}
.dash-red
{
width: 24px;
height: 4px;
border-radius: 4px;
margin: 2px;
background-color:#D12C30; 
display: inline-block;
}
.mr-05
{
  margin-right: 5px;
}

.overlay-box
{
   /*background: linear-gradient(to bottom, #fff, #000);*/
    background-image: linear-gradient(to top, rgba(255,255,255,255), rgba(255,0,0,0));
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
}
.text-flow
{
  width: 100%;
  height: 75px;
 position: relative;
  white-space: normal; 
 
  overflow: hidden;
  text-overflow: clip; 
}
.colab-right
{
  float: right;
  margin: 0;
  padding: 0;
}
.colab-left
{
  float: left;
  margin: 0;
  padding: 0;
}

.colab-left li, .colab-right li
{
  float: left;
  padding: 0;
  margin: 0 2px;
}
.colab-left li img, .colab-right li img
{
  width: 24px;
  height: 24px;
  border-radius: 88px;
  border: 1px solid #636363;
}
@media (min-width: 320px){
.col-xs-4 {

    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}
}

.vertical-layout.vertical-menu-modern.menu-collapsed .app-content {
	margin-left:51px;
}
.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu {
	width:50px;
}
.main-menu.menu-light .navigation > li > a {
	margin:0px;
}

.carousel-item {
	padding:2px 4px;
	min-height:400px;
}