body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f9fafc;
  color: #595354;
}

.content-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.active-users-panel {
  display: none;
}

.video-chat-container {
  padding: 20px;
  flex: 1;
  position: relative;
}

@media (max-width: 899px) {
    .remote-video {
      width: 100%;
      height: 40vh;
      border-radius: 5px;
      border: 1px solid #000;
    }

    .local-video {
        width: 100%;
        height: 40vh;
        border-radius: 5px;
        border: 1px solid #000;
    }

    #remote-video-nao-disponivel, #local-video-nao-disponivel {
        width: 98%;
        text-align: center;
        padding-top: 18%;
        position: absolute;
        display: none;
    }
    
    #remote-video-nao-disponivel span, #local-video-nao-disponivel span {
        font-size: 30px;
    }
    
    #aguardando-conexao {
        width: 98%;
        height: 40vh;
        position: absolute;
    }
}

@media (min-width: 900px) {
    .remote-video {
      width: 100%;
      height: 90vh;
      border-radius: 5px;
      border: 1px solid #000;
    }

    .local-video {
      position: absolute;
      border: 1px solid #fff;
      bottom: 60px;
      right: 60px;
      border-radius: 5px;
      max-width: 300px;
      max-height: 300px;
    }

    #remote-video-nao-disponivel {
        width: 98%;
        height: 100%;
        text-align: center;
        padding-top: 20%;
        position: absolute;
        display: none;
    }
    
    #remote-video-nao-disponivel span {
        font-size: 30px;
    }
    
    #local-video-nao-disponivel {
        bottom: 60px;
        right: 60px;
        border-radius: 5px;
        width: 300px;
        height: 225px;
        text-align: center;
        position: absolute;
        background-color: #f9fafc;
        border: 1px solid #fff;
        border-radius: 5px;
        z-index: 2;
        display: none;
    }
    
    #local-video-nao-disponivel span {
        font-size: 15px;
        position: absolute;
        width: 100%;
        left: 0;
        top: 40%;
    }
    
    #aguardando-conexao {
        width: 98%;
        height: 95%;
        position: absolute;
    }
}

.col-md-10 {
  width: 83.3%;
}

.col-md-2 {
  width: 16.7%;
}

.not-found {
    width: 100vw;
    height: 100vh;
    text-align: center;
    padding-top: 15%;
}

.not-found .number {
    display: block;
    font-size: 200px;
}

.not-found .text {
    display: block;
    font-size: 20px;
}

#div-erro-input {
    width: 100vw;
    height: 100vh;
    text-align: center;
    padding-top: 15%;
    display: none;
}

#div-erro-input .error {
    display: block;
    font-size: 50px;
}

#div-erro-input .message {
    display: block;
    font-size: 20px;
}

.pulse {
    height: 100px;
    width: 200px;
    overflow: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.pulse:after {
    content: '';
    display: block;
    background-image: url('img/pulse.svg');
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-animation: 2s pulse infinite linear;
    animation: 2s pulse infinite linear;
}

#div-erro-time {
    width: 100vw;
    height: 100vh;
    text-align: center;
    padding-top: 15%;
    display: block;
}

#div-erro-time .error {
    display: block;
    font-size: 50px;
}

#div-erro-time .message {
    display: block;
    font-size: 20px;
}

.doctor {
    margin-top:1%;
}

.count {
    margin-top:2%;
}

.msg {
    margin-top:2%;
    font-size: 15px !important;
}


@-webkit-keyframes pulse {
    0% {
        clip: rect(0, 0, 100px, 0);
    }

    10% {
        clip: rect(0, 66.6666666667px, 100px, 0);
    }

    38% {
        clip: rect(0, 133.3333333333px, 100px, 0);
    }

    48% {
        clip: rect(0, 200px, 100px, 0);
    }

    52% {
        clip: rect(0, 200px, 100px, 0);
    }

    62% {
        clip: rect(0, 200px, 100px, 66.6666666667px);
    }

    90% {
        clip: rect(0, 200px, 100px, 133.3333333333px);
    }

    100% {
        clip: rect(0, 200px, 100px, 200px);
    }
}

@keyframes pulse {
    0% {
        clip: rect(0, 0, 100px, 0);
    }

    10% {
        clip: rect(0, 66.6666666667px, 100px, 0);
    }

    38% {
        clip: rect(0, 133.3333333333px, 100px, 0);
    }

    48% {
        clip: rect(0, 200px, 100px, 0);
    }

    52% {
        clip: rect(0, 200px, 100px, 0);
    }

    62% {
        clip: rect(0, 200px, 100px, 66.6666666667px);
    }

    90% {
        clip: rect(0, 200px, 100px, 133.3333333333px);
    }

    100% {
        clip: rect(0, 200px, 100px, 200px);
    }
}