/* careful about using un-namespaced bootstrap names like container */
.teletherapy {
  background-color: #eee;
  height: 100vh;
  width: 100vw;
}

.teletherapy #teletherapy-logo-main {
  display: block;
  height: 40px;
  width: 105px;
}

.teletherapy .content {
  align-items: center;
  display: flex;
  height: calc(100% - 90px);
  justify-content: center;
  overflow: auto;
  position: absolute;
  top: 56px;
  width: 100%;
}

.teletherapy .lobby {
  align-items: center;
  background-color: #ffffff;
  padding: 25px;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,0.302), 0 1px 3px 1px rgba(60,64,67,0.149);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.teletherapy .video-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.teletherapy .local_video_container {
  height: 100vh;
  max-width: 150px;
  padding: 5px;
  border-right: 2px solid #d0bfbf;
}

.teletherapy .janus-notifications-banner {
  background-color: yellow;
  padding: 15px;
  width: 100%;
}

.teletherapy .local_video_container video {
  width: 100%;
}

.teletherapy .remote_video_container {
  height: 100%;
  width: 100%;
  flex-wrap: wrap;
}

.div_for_style_video {
  padding: 5px;
}

.remote_stream_outer_container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.teletherapy_user_display {
  position: absolute;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  abottom: 15px;
  z-index: 999999;
  background-color: rgba(0,0,0,0.1);
  color: #ffffff;
  padding: 5px 10px;
  border-top-left-radius: 8px;
}

.video-bottom-bar {
  position: absolute;
  z-index: 9999;
  bottom: 5px;
  left: calc(50vw - 175px);
}

#localvideo {
  border-radius: 8px;
}

#localvideoBottom {
  width: 120px;
  height: 120px;
  border: 2px solid #979797;
}

#parent-container {
  margin: 0px !important;
}

.div_for_style_audio {
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 100% !important;
  border: 1px solid #9e9e9e;
  border-radius: 8px;
}

.teletherapy_height_50 {
  height: 50% !important;
}

.teletherapy_height_100 {
  height: 100% !important;
}

.teletherapy .remote_video_container video {
  awidth: 100%;
  aflex: 1 0 21%;
}

.teletherapy .remote_video_small_container {
  position: absolute;
  bottom: 0;
  height: 20%;
  margin-left: 23%;
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
}

.teletherapy .remote_video_small_container video {
  height: 100%;
  width: 25%;
  margin: 2px;
}

.teletherapy .local_video_controls {
  padding: 5px;
}

.teletherapy .local_video_controls a {
  margin-bottom: 2px;
}

.teletherapy .calling_patient {
  margin: 25% 25%;
  white-space: nowrap;
  font-size: 30px;
}

@keyframes wiggle {
  0% { transform: rotate(0deg); }
  5% { transform: rotate(9deg); }
  15% { transform: rotate(-9deg); }
  20% { transform: rotate(0deg); }
  80% { transform: rotate(0deg); }
  85% { transform: rotate(9deg); }
  95% { transform: rotate(-9deg); }
  100% { transform: rotate(0deg); }
}

.wiggle {
  display: inline-block;
  animation: wiggle 1.5s infinite;
}
