#video-draw-area {
  z-index: 100;
  position: absolute;
}

#video-draw-area.enabled {
  cursor: cell;
}

#video {
  object-position: center;
  z-index: 98;
  width: 100%;
  height: 100vh;
  position: relative;
}

#blurred-video {
  z-index: 97;
  object-fit: cover;
  filter: brightness(.2) blur(4px);
  background-color: #000;
  width: 100%;
  height: 100vh;
  position: absolute;
}

#video-container, #device-select-container {
  height: 100vh;
  max-height: 100vh;
}

#video-container {
  background-color: #000;
}

#device-select-container {
  background-color: #111;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  display: flex;
}

#device-select-container label {
  color: var(--ui-color-grey-200);
  letter-spacing: .3px;
  font-family: var(--ui-font-Arial), serif;
  margin-bottom: 5px;
}

#device-select-container select {
  margin-bottom: 10px;
}

#device-select-buttons {
  justify-content: end;
  gap: 10px;
  margin-top: 15px;
  display: flex;
}

#device-select-container label, #device-select-container select, #device-select-buttons {
  width: 80vw;
  max-width: 500px;
}

#image-div {
  flex-direction: column;
  gap: 25px;
  width: 290px;
  display: flex;
  position: absolute;
  top: 20px;
  bottom: 110px;
  right: 20px;
  overflow: hidden;
}

#images {
  z-index: 101;
  flex-direction: column;
  gap: 15px;
  display: flex;
  overflow: hidden auto;
}

#images::-webkit-scrollbar {
  background-color: #0000;
  width: 6px;
}

#images::-webkit-scrollbar-thumb {
  background-color: #a1afba66;
  border-radius: 3px;
}

#images .image {
  cursor: zoom-in;
  border-radius: 3px;
  width: 278px;
}

#video-overlay {
  z-index: 99;
  width: 100%;
  height: 100vh;
  position: absolute;
}

#system-info {
  color: #fff;
  background-color: #000c;
  border-radius: 3px;
  flex-direction: column;
  padding: 10px;
  font-size: 12px;
  display: flex;
  position: absolute;
  top: 20px;
  left: 20px;
}

#controls {
  z-index: 101;
  background-color: #0003;
  justify-content: center;
  align-items: center;
  gap: 20px;
  height: 100px;
  display: flex;
  position: absolute;
  bottom: 1px;
  left: 1px;
  right: 1px;
}

#chat-input-container {
  z-index: 101;
  background-color: #0003;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
  position: absolute;
  bottom: 101px;
  left: 0;
  right: 0;
}

.chat-input, #chat-input {
  width: 100%;
  max-width: 700px;
}

.chat-input {
  flex-direction: row;
  display: flex;
}

#chat-input {
  border-right: 0;
  border-radius: .1875rem 0 0 .1875rem;
  margin: 0;
}

.rtc-btn {
  border-radius: 200px;
  height: 60px;
  padding: 1rem;
}

.rtc-btn:not(.disabled).active {
  background-color: var(--ui-color-blue-200);
}

.rtc-btn:not(.rtc-btn-wide) {
  width: 60px;
}

.blink-green a, .blink-green td {
  font-weight: bold;
  animation-name: blink-green;
  animation-duration: .6s;
  animation-iteration-count: infinite;
  animation-play-state: running;
  animation-fill-mode: forwards;
}

.accepted-green a, .accepted-green td {
  color: var(--ui-color-green-500) !important;
}

@keyframes blink-green {
  0% {
    color: var(--ui-color-green-500);
  }

  50% {
    color: var(--ui-color-grey-400);
  }

  100% {
    color: var(--ui-color-green-500);
  }
}

#chart-h-scroll-container {
  width: 100%;
  padding-bottom: 2rem;
  overflow: auto;
}

.bluenow-drawing {
  position: absolute;
}

.bluenow-drawing.finished {
  animation-name: bluenow-drawing-fadeout;
  animation-duration: 5s;
  animation-play-state: running;
  animation-fill-mode: forwards;
}

@keyframes bluenow-drawing-fadeout {
  0% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.bluenow-circle {
  border: 5px solid var(--ui-color-red-500);
  background: none;
  border-radius: 50%;
}

.bluenow-frame {
  border: 5px solid var(--ui-color-red-500);
  background: none;
}

.bluenow-arrow {
  transform-origin: top;
  width: 30px;
}

#call-status-text, #taking-picture-text {
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  font-size: 1.5rem;
  display: flex;
  position: absolute;
  inset: 0;
}

#call-status-text {
  background-color: #111;
}

#status-container {
  cursor: help;
}

#users-online-tooltip {
  background-color: var(--ui-color-grey-700);
  z-index: 9999;
  color: #fff;
  border-radius: 4px;
  flex-direction: column;
  margin-top: 3rem;
  padding: 10px;
  display: none;
  position: absolute;
  left: 0;
}

#users-online-tooltip.shown {
  display: flex;
}

#users-online-tooltip > span {
  color: #efefef;
  margin-bottom: 5px;
}

#image-queue {
  text-align: center;
  color: #fff;
  background: var(--ui-color-orange-500);
  border-radius: 3px;
  padding: 10px;
  font-size: 13px;
}

#image-queue.done {
  background: var(--ui-color-green-500);
}

#service-panel {
  background: #fff;
  border-radius: 3px;
  width: 300px;
  margin-bottom: 110px;
  margin-left: -135px;
  padding: 1rem;
  display: none;
  position: absolute;
  bottom: 0;
}

#service-panel.open {
  display: block;
}

#service-panel > * {
  width: 100%;
}

#service-panel:after {
  content: "";
  border-top: 14px solid #fff;
  border-left: 14px solid #0000;
  border-right: 14px solid #0000;
  width: 0;
  height: 0;
  margin-top: 1rem;
  display: block;
  position: absolute;
  left: calc(50% - 14px);
}
/*# sourceMappingURL=index.4d663569.css.map */
