
.Blink {
    animation: blinker 1s cubic-bezier(.5, 0, 1, 1) infinite alternate;  
  }
  @keyframes blinker {  
    from { opacity: 1; }
    to { opacity: 0; }
  }
  
body{
    overscroll-behavior: contain;
}

.inline-block{
    display: inline-block;
}

.wrap-video{
    position: relative;
    max-width: 100%;
    margin:0px auto;
}
video{
    object-fit: cover;
    width: 100%;
}
#remoteVideo{
    width: 100%;
}

.provider-item{
    
    height: 100%;   
}


.provider-item .card-title{
    padding-left: 0px;
}

a.disabled {
    /* Make the disabled links grayish*/
    color: gray;
    /* And disable the pointer events */
    pointer-events: none;
}
/* .select-participant{
    display: flex;
    align-items: center;
} */
.online-status{
    width: 12px;
    height: 12px;
    background-color: #8bc34a;
    border-radius: 100%;
    display: inline-block;
}

.offline-status{
    width: 12px;
    height: 12px;
    background-color: #888;
    border-radius: 100%;
    display: inline-block;
}
.pointer{
    cursor: pointer;
}
#list-streams{
    position: relative;
}

#list-streams.active{
    min-height: 100px;
}
#list-streams #my-video{
    position: fixed;
    left: 10px;
    top: 10px;
    max-width: 150px;
    max-height: 150px;
    border: 1px solid #ff9800;
    padding: 0px;
    margin: 0px;
    z-index: 2;
    border-radius: 10px;
}

video.full-screen{
    position: fixed !important;
    top: 0px  !important;
    left: 0px  !important;
    width: 100%  !important;
    height: 100%  !important;
    z-index: 3  !important;
    max-width: initial !important;
    max-height: initial !important;
    border: none !important;
    border-radius: 0px !important;
    object-fit: contain !important;
    background-color: #000000ba;
}

#guide-exit-full-screen-video{
    position: fixed;
    top: 0px;
    right: 0px;
    padding: 5px 10px;
    color: #FF9800;
    z-index: 4;
    background: #000;
    border-radius: 0px 0px 0px 14px;
    font-size: 14px;
}

.participant-stream{
    position: relative;
}

.participant-stream .details{
    position: absolute;
    right: 20px;
    z-index: 1;
    background: #333;
    top: 10px;
    padding: 5px;
    border-radius: 3px;
}
.participant-stream .details span{
    display: inline-block;
}
.participant-stream .details .name{
    color: #fff;
}
.participant-stream .rtt{
    display: none;
    margin-left: 4px;
}


.participant-stream video{
    background:url("../images/human.a60bff269401.jpg") no-repeat;
    background-size: cover;
    border:1px solid #eaeaea;
    object-fit: contain;
    max-height: 600px;
}

.user-member{
    display: inline-block;
    border: 1px solid #3f51b5;
    padding:4px 8px;
    border-radius: 14px;
    margin-right: 5px;
}
.user-member.me{
    border: 1px solid #ff9800;
    color: #ff9800;
}

@media only screen and (max-width: 768px) {
    #list-streams #my-video{
        max-width: 120px;
        max-height: 120px;
    }
}

@media only screen and (min-width: 1920px) {
    #list-streams #my-video{
        max-width: 300px;
        max-height: 300px;
    }
}


/* Override HIJACK style */
.djhj{
 left: 0% !important;   
 transform: none !important;
}


.alertify-notifier .ajs-message.ajs-visible{
    padding:10px;
}


#send-clip-image{
    position: absolute;
    right: 45px;
    top: -53px;
}

.errorlist{
    color:red;
    margin-bottom: 5px;
}


.d-initial{
    display: initial;
}

.d-flex-space-between{
    display: flex;
    justify-content:space-between;
}

.form-container form{
    background: #ffffff9e;
}

.white-transparent{
    background-color: #ffffff9e;
}
.transparent-alert.alert-primary{
    background-color: #cfe2ff42;
    border: none;
}

#participants .remove-participant{
    color: red;
}

.badge {
    display: inline-block;
    background-color: #0d6efd;
    border-radius: 50%;
    color: #fff;
    padding: 0.5em 0.75em;
    position: relative;
}
.badge.pulsate{
    background-color: #ff6666;
}
.pulsate::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: pulse 1s ease infinite;
    border-radius: 50%;
    border: 4px double #ff6666;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    60% {
      transform: scale(1.3);
      opacity: 0.4;
    }
    100% {
      transform: scale(1.4);
      opacity: 0;
    }
  }

.badge-wrapper{
    position: absolute;
    display: inline-block;
    top: -14px;
    right: -20px;
}


.delete-row{
    color:red;
    display: block;
}

.add-row{
    margin-top: 20px;
    display: block;
}
.formset_row{
    margin-top: 20px;    
}


.lds-dual-ring {
    display: inline-block;
    width: 60px;
    height: 60px;
    position: fixed;
    top: calc(50% - 60px);
    left: calc(50% - 60px);
  }
  .lds-dual-ring:after {
    content: " ";
    display: block;
    width: 44px;
    height: 44px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #333;
    border-color: #333 transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
  }
  @keyframes lds-dual-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  #loading-wrapper{
    position: fixed;
    display: none;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #41464b7a;
    z-index: 200;
  }

  form .helptext{
    font-size: 15px;
    color: #444;
  }


  .contact-info{
    text-align: right;
    font-size: 13px;
  }
  .contact-info a{
    text-decoration: none;
    color: #CFB779;
  }



.timer-text{
    margin-top:10px !important;
    display: none;
  }
  .timer-text.show{
    display: block;
  }
.timer-text.active i{
    color:red;
}

.ellipsis-text{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

img.captcha{
    margin-bottom: 5px;
}