@font-face {
  font-family: "Montserrat";
  src: url("montserrat-regular.25710f0e.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("montserrat-bold.5295fa0f.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Golos Text";
  src: url("golos-text-regular.c0b644d0.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Golos Text";
  src: url("golos-text-medium.5ea2f56b.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Golos Text";
  src: url("golos-text-bold.ef968ba0.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
*, *::after, *::before {
  box-sizing: border-box;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html,
body {
  position: fixed;
  margin: 0;
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  margin: 0;
  color: #000000;
  font-family: "Golos Text";
  font-weight: 400;
  flex-direction: column;
  overflow: hidden;
}

main {
  flex: 1 0 auto;
}

canvas {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
}

a {
  color: #000000;
  text-decoration: none;
}

.canvas-container {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  justify-content: center;
  touch-action: none;
}

a.hidden, div.hidden, input.hidden {
  display: none;
  pointer-events: none;
}

a.invisible, div.invisible {
  opacity: 0;
  pointer-events: none;
}

.reusable-elements {
  display: none;
}

input:focus, textarea:focus, select:focus {
  outline: none;
}

::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

::-webkit-scrollbar-track {
  display: none;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  display: none;
  background-color: transparent;
}

::placeholder { /* Firefox, Chrome, Opera */
  color: #949494;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #949494;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #949494;
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOutOpacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.section {
  display: flex;
  position: absolute;
  z-index: 1;
  width: 100%;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section.hidden {
  display: none;
  opacity: 0;
}

.cesium-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 960px), print {
  .cesium-container {
    bottom: auto;
  }
}

.cesium-viewer-bottom {
  display: none;
}

.cesium-viewer-toolbar {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.cesium-home-button {
  display: none;
}

span.cesium-sceneModePicker-wrapper {
  display: none;
}

.cesium-baseLayerPicker-dropDown {
  display: flex;
  top: 0;
  z-index: 4;
  flex-direction: column;
}

.cesium-navigationHelpButton-wrapper {
  display: none;
}

.cesium-viewer-infoBoxContainer {
  display: none;
}

.cesium-viewer-selectionIndicatorContainer {
  display: none;
}

.cesium-viewer-animationContainer {
  display: none;
}

.cesium-viewer-timelineContainer {
  display: none;
}

.cesium-viewer-fullscreenContainer {
  display: none !important;
}

.button {
  cursor: pointer;
  user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}
.button:hover {
  background-color: #282828;
}
.button:active {
  background-color: #444454;
}
.button.active {
  background-color: #000000;
}
.button.active * path, .button.active text, .button.active polygon {
  fill: #7AF5F5;
}
.button.active:hover {
  background-color: #282828;
}

.primary-button {
  display: flex;
  padding: 4px 14px;
  color: #ffffff;
  background-color: #0078d7;
  border-radius: 6px;
}
.primary-button.disabled {
  background-color: #444454;
  pointer-events: none;
}

.joystick-button {
  cursor: pointer;
  user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}
.joystick-button path {
  fill: #ffffff;
}
.joystick-button:hover path:hover {
  fill: #7AF5F5;
}

.menu-button {
  cursor: pointer;
  fill: white;
}
.menu-button:hover {
  fill: #282828;
}

.svg-red {
  filter: invert(20%) sepia(97%) saturate(4013%) hue-rotate(353deg) brightness(93%) contrast(127%);
}

.svg-active-blue {
  filter: invert(57%) sepia(36%) saturate(7352%) hue-rotate(180deg) brightness(95%) contrast(91%);
}

.left-side {
  display: flex;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  color: #ffffff;
  background-color: #373737;
  justify-content: center;
  transition: transform 0.5s;
  will-change: transform;
  opacity: 0.9;
}
@media screen and (min-width: 960px), print {
  .left-side {
    width: 325px;
  }
}
.left-side.closed {
  transform: translate3d(-100%, 0, 0);
}

.left_side__hr {
  width: 100%;
}

.input {
  margin: 2px 0;
  padding: 6px;
  width: 120px;
  color: #ffffff;
  font-size: 14px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #ffffff;
  transition: border-bottom 0.3s;
  resize: vertical;
}
.input:focus {
  border-bottom: 1px solid #1292e8;
}
.input--select {
  width: auto;
}
.input--select option {
  color: #ffffff;
  background-color: #2f2f2f;
}
.input--select option:disabled {
  color: #aaaaaa;
}

.modal-window {
  display: flex;
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  transition: opacity 0.5s;
}

.modal-window__container {
  padding-bottom: 10px;
  padding-left: 10px;
  width: 400px;
  height: 200px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 6px;
  pointer-events: auto;
}

.modal-window__header {
  display: flex;
  height: 40px;
  justify-content: flex-end;
}

.button.modal-window__close-button {
  display: flex;
  padding: 14px;
}
.button.modal-window__close-button:hover {
  border-top-right-radius: 6px;
}

.modal-window__body {
  display: flex;
  flex-direction: column;
  height: calc(100% - 40px);
  color: #ffffff;
  overflow-y: scroll;
  overflow-wrap: anywhere;
}

.modal-window__body-text {
  display: flex;
  flex-direction: column;
  height: calc(100% - 40px);
  color: #ffffff;
  overflow-y: scroll;
  overflow-wrap: anywhere;
}

.modal-window__body-checkbox {
  display: flex;
  justify-content: center;
}

.modal-window__body-buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.modal-window__button {
  margin: 4px;
  padding: 5px 8px;
  font-size: 16px;
  border-radius: 6px;
  align-items: center;
  cursor: pointer;
  align-self: center;
  border: 2px solid #00FFFF;
  min-width: 60px;
}
.modal-window__button:hover {
  background-color: #00FFFF;
}
.modal-window__button.active {
  background-color: #7AF5F5;
}

.modal-window__button-text {
  text-align: center;
}

.modal-window__interaction {
  height: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
}

.modal-window-tandc {
  display: flex;
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  align-items: center;
  pointer-events: none;
  transition: opacity 0.5s;
  flex-direction: column;
  justify-content: space-between;
}

.modal-window-tandc__container {
  padding-left: 10px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 6px;
  pointer-events: auto;
}

.modal-window-tandc__header {
  display: flex;
  height: 40px;
  justify-content: space-around;
  align-items: center;
  color: #ffffff;
}

.modal-window-tandc__body {
  display: flex;
  flex-direction: column;
  height: calc(100% - 40px - 40px);
  color: #ffffff;
  overflow-y: scroll;
  overflow-wrap: anywhere;
}

::-webkit-scrollbar {
  width: 1em;
}

.modal-window-tandc__footer {
  display: flex;
  height: 40px;
  justify-content: space-around;
  align-items: center;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.8);
}

.button.modal-window__accept-button {
  display: flex;
  padding: 14px;
}
.button.modal-window__accept-button:hover {
  border-top-right-radius: 6px;
}

.modal-alerts {
  display: flex;
  flex-direction: column-reverse;
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  pointer-events: none;
  transition: opacity 0.5s;
  font-size: smaller;
}

.modal-alert__container {
  padding-bottom: 10px;
  padding-left: 10px;
  width: 400px;
  height: auto;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 6px;
  border: 1px solid #646464;
  pointer-events: auto;
}

.modal-alert__header {
  display: flex;
  min-height: 40px;
  justify-content: space-between;
}

.modal-alert__header-text {
  display: flex;
  color: #ffffff;
  align-items: center;
}

.button.modal-alert__close-button {
  display: flex;
  padding: 14px;
}
.button.modal-alert__close-button:hover {
  border-top-right-radius: 6px;
}

.modal-alert__body {
  display: flex;
  flex-direction: column;
  height: calc(100% - 40px);
  color: #ffffff;
  overflow-y: scroll;
  overflow-wrap: anywhere;
}

.info-panels {
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  pointer-events: none;
  transition: opacity 0.5s;
  font-size: smaller;
}

.info-panel__container {
  padding-bottom: 10px;
  padding-left: 10px;
  max-width: 400px;
  height: auto;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 6px;
  border: 1px solid #646464;
  pointer-events: auto;
}

.info-panel__header {
  display: flex;
  margin-top: 6px;
  margin-right: 5px;
  padding: 4px 6px;
  border-radius: 6px;
  justify-content: center;
}
.info-panel__header:hover {
  background-color: #444454;
}
.info-panel__header:active {
  background-color: #282828;
}
.info-panel__header.active {
  background-color: #444454;
}

.info-panel__header-name {
  margin-right: 10px;
  color: #8f8f8f;
}

.info-panel__header-icon {
  transition: transform 0.5s;
  transform: rotate(180deg);
}
.active .info-panel__header-icon {
  transform: rotate(0deg);
}

.info-panel__body {
  display: flex;
  flex-direction: column;
  height: auto;
  max-height: 400px;
  color: #ffffff;
  overflow-y: scroll;
  overflow-wrap: anywhere;
}

.info-panel__body-line {
  margin: 0px;
}

.info-panel__body-text {
  display: inline-block;
  width: 100px;
}

.menu__collapsable-container {
  border-top: 1px solid #F7F7F7;
  padding: 4px;
  width: 100%;
}

.menu__collapsable-container__header {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding: 0.625rem;
}
.menu__collapsable-container__header span {
  text-transform: uppercase;
  font-size: 24px;
}

.menu__collapsable-container__header-arrow {
  margin-right: 10px;
  flex-shrink: 0;
  transform: rotate(-90deg);
}
.menu__collapsable-container__header-arrow.expanded {
  transform: rotate(0deg);
}

.menu__collapsable-container__header-online-icon {
  display: flex;
  position: absolute;
  right: 10px;
  z-index: 2;
  width: 25px;
  height: 30px;
}
.menu__collapsable-container__header-online-icon svg {
  width: 100%;
  height: auto;
}

.menu__collapsable-container__body {
  display: flex;
  flex-direction: column;
  row-gap: 0.625rem;
}

.menu__collapsable-container__buttons {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  column-gap: 0.625rem;
}

.menu__collapsable-container__body-container {
  display: flex;
  flex-direction: column;
  row-gap: 0.625rem;
  padding: 0.625rem;
  font-size: 14px;
  font-weight: 400;
}

.menu__collapsable-container__body-row {
  display: flex;
  justify-content: space-between;
}

.menu__collapsable-container__body-2-lines {
  min-height: 40px;
}

.collapsable-container__positive-color {
  color: #40E340;
}

.collapsable-container__negative-color {
  color: #FF0000;
}

.switch {
  display: flex;
  flex-direction: row;
  gap: 0.625rem;
  align-items: center;
  position: relative;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
  z-index: -1;
}
.switch .slider {
  position: relative;
  cursor: pointer;
  inset: 0;
  width: 2.8125rem;
  height: 1.5rem;
  border: 1px solid #ffffff;
  background-color: rgba(55, 55, 55, 0);
  transition: background-color 0.4s, box-shadow 0.4s;
}
.switch .slider::before {
  position: absolute;
  bottom: 0.21875rem;
  left: 0.21875rem;
  width: 1rem;
  height: 1rem;
  background-color: #30303B;
  border: 1px solid #ffffff;
  content: "";
  transition: transform 0.4s, background-color 0.4s;
}
.switch input:checked + .slider {
  background-color: #fff;
}
.switch input:checked + .slider::before {
  background-color: #000;
  transform: translateX(1.375rem);
}
.switch input:focus + .slider {
  box-shadow: 0 0 1px #fff;
}
.switch .slider.round {
  border-radius: 1.5rem;
}
.switch .slider.round::before {
  border-radius: 50%;
}
.switch .switch__status {
  width: 1.5625rem;
  font-size: 12px;
  font-weight: 500;
}
.switch .switch__status--off {
  opacity: 1;
  display: block;
}
.switch .switch__status--on {
  opacity: 0;
  display: none;
}
.switch input:checked ~ .switch__status--off {
  opacity: 0;
  display: none;
}
.switch input:checked ~ .switch__status--on {
  opacity: 1;
  display: block;
}

.loader {
  z-index: 999;
  background-color: #373737;
}

.loader__image {
  margin-bottom: 30px;
}
.loader__image img {
  height: 70px;
}

.loader__progress-bar {
  width: 150px;
  background: #909090;
  border-radius: 6px;
}

.loader__progress-bar-fill {
  width: 0%;
  height: 6px;
  background-color: #000000;
  border-radius: 20px;
  transition: width 0.5s;
}

.unauthorized {
  z-index: 999;
  background-color: #ffffff;
}

.unauthorized__title {
  font-size: 30px;
}

.menu {
  width: 100%;
}

.menu__title {
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
  justify-content: space-between;
  align-items: center;
}

.menu__title-logo-text {
  display: flex;
}

.menu__title-logo {
  margin-right: 10px;
  height: 20px;
}
.menu__title-logo img {
  height: 100%;
}

.menu__title-text {
  color: rgb(89, 200, 226);
}

.menu__buttons {
  display: flex;
  padding-bottom: 2px;
  justify-content: flex-end;
}

.menu__buttons-open {
  position: absolute;
  top: 10px;
  right: -40px;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.5s;
}
.menu:not(.closed) .menu__buttons-open {
  opacity: 0;
}

.menu__buttons-close {
  display: flex;
  padding: 8px;
  border-radius: 6px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  cursor: pointer;
  transition: opacity 0.5s;
}
.menu.closed .menu__buttons-close {
  opacity: 0;
}

.menu__buttons-options {
  display: flex;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.5s;
}
.menu.closed .menu__buttons-options {
  opacity: 0;
}

.menu__buttons-logout {
  display: flex;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.5s;
}
.menu.closed .menu__buttons-logout {
  opacity: 0;
}

.menu__tabs {
  display: flex;
  justify-content: space-evenly;
}

.menu__tabs-tab {
  padding: 5px 10px;
  letter-spacing: 1px;
  border-radius: 8px;
  cursor: pointer;
}
.menu__tabs-tab.selected {
  background-color: #282828;
}

.menu__container {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-around;
}

.menu__body {
  display: flex;
  position: relative;
  height: 95%;
  max-height: 95%;
  background-color: #282828;
  overflow: hidden;
}

.menu__body-container {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  overflow-x: hidden;
  overflow-y: scroll;
}
@media screen and (min-width: 960px), print {
  .menu__body-container {
    width: calc(100% - 15px);
    justify-content: flex-end;
  }
}

.menu__body-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.menu__body-event_calendar {
  display: flex;
  margin-top: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  color: #8f8f8f;
  cursor: pointer;
}
.menu__body-event_calendar:hover {
  background-color: #444454;
}

.menu__body-options {
  display: flex;
  margin-top: 6px;
  margin-right: 5px;
  padding: 4px 6px;
  border-radius: 6px;
  justify-content: flex-end;
}
.menu__body-options:hover {
  background-color: #444454;
}
.menu__body-options:active {
  background-color: #282828;
}
.menu__body-options.active {
  background-color: #444454;
}

.menu__body-options-name {
  margin-right: 10px;
  color: #8f8f8f;
}

.menu__body-options-icon {
  transition: transform 0.5s;
}
.active .menu__body-options-icon {
  transform: rotate(180deg);
}

.menu__live {
  width: 100%;
}

.menu__recordings {
  width: 100%;
}

.menu__selected-camera {
  display: flex;
  margin-top: 20px;
  width: 100%;
  justify-content: center;
}

.menu__delete-container {
  display: flex;
  margin-top: 1px;
  width: 100%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.menu__import-container {
  display: flex;
  margin-top: 1px;
  width: 100%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.menu__import-item {
  display: flex;
  flex-direction: row;
  width: 200px;
  justify-content: space-between;
}

.menu__import-button {
  display: flex;
  justify-content: center;
  padding: 5px;
  border-radius: 8px;
  background-color: #414242;
}

.menu__import-button-red {
  background-color: #ff0000;
}

.menu__import-button:hover {
  background-color: #6f7272;
}

.menu__import-status {
  display: flex;
  padding: 0 10px;
  height: 50px;
  font-size: 13px;
  background-color: rgba(40, 167, 69, 0.75);
  align-items: center;
}

.menu__cameras {
  display: flex;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
  min-height: 90%;
  flex-wrap: wrap;
  align-items: stretch;
  align-content: center;
}
.menu__cameras.hidden {
  display: flex;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.menu__cameras-camera {
  display: flex;
  flex: 1 0 50%;
  max-width: 330px;
  justify-content: center;
}

.menu__cameras-camera-roi {
  display: flex;
  flex: 1 0 100%;
  max-width: 100%;
  justify-content: center;
}

.menu__cameras-camera__container {
  display: flex;
  position: relative;
  margin: 4px;
  padding: 3px;
  background-color: #373737;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.menu__cameras-camera__container:hover {
  box-shadow: none;
}
.menu__cameras-camera__container.selected {
  background-color: #000000;
  box-shadow: none;
}

.menu__cameras-camera-rec-icon {
  display: flex;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  width: 5%;
  height: 5%;
  max-width: 20px;
  min-width: 7px;
}
.menu__cameras-camera-rec-icon svg {
  width: 100%;
  height: 100%;
}

.menu__cameras-footer {
  display: flex;
  margin-top: 3px;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.menu__cameras-camera-line {
  margin-bottom: 6px;
  width: 100%;
  height: 1px;
  background-color: #404040;
}

.menu__cameras-camera-title {
  font-size: 12px;
}

.menu__cameras-camera-title-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.menu__cameras-camera-title-left {
  display: flex;
  padding-left: 8px;
  align-items: center;
}

.menu__cameras-camera-title {
  display: flex;
  font-size: 12px;
  align-items: center;
}

.menu__cameras-camera-title-right {
  display: flex;
  padding-right: 8px;
  align-items: center;
  font-size: 8px;
}

.menu__cameras-camera-tandem {
  display: flex;
  padding: 0 20px;
  width: 100%;
  justify-content: space-evenly;
  height: 20px;
}

.menu__cameras-camera-tandem-text {
  font-size: 12px;
}

.active .menu__cameras-tandem-icon--toggle * path {
  fill: #2F4F4F;
}
.active .menu__cameras-tandem-icon--toggle * circle {
  transform: translate(13px);
}

.menu__cameras-camera-map_view {
  display: flex;
  padding: 0 20px;
  width: 100%;
  justify-content: space-evenly;
  height: 20px;
}

.menu__cameras-camera-map_view-text {
  font-size: 12px;
}

.active .menu__cameras-map_view-icon--toggle * path {
  fill: #2F4F4F;
}
.active .menu__cameras-map_view-icon--toggle * circle {
  transform: translate(13px);
}

.menu__cameras-camera-image {
  display: flex;
  position: relative;
  height: auto;
  margin: auto;
}

.menu__cameras-camera-indicators-left-container {
  display: flex;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  color: #00ff00;
  font-size: 16px;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  margin-left: 2px;
}

.menu__cameras-camera-indicators-container {
  display: flex;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  color: #00ff00;
  font-size: 12px;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: column;
}

.menu__cameras-camera-indicators-indicator {
  margin-right: 2px;
}
.menu__cameras-camera-indicators-indicator.hidden {
  display: flex;
  opacity: 0;
}

.menu__cameras-camera-indicators-indicator-br {
  display: flex;
  color: #8f8f8f;
}

.menu__cameras-camera-indicators-indicator--rtk.hidden {
  display: none;
}

.menu__cameras-camera-play {
  display: flex;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  align-content: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.menu__cameras-camera-play svg {
  width: 60px;
  height: 60px;
}

.menu__cameras-camera-pause {
  display: flex;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  align-content: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.menu__cameras-camera-pause svg {
  width: 60px;
  height: 60px;
}

.menu__cameras-camera-pause:hover .menu__cameras-camera-pause-button {
  display: block;
}

.menu__cameras-camera-image-video-container {
  display: flex;
  padding: 2px;
  width: 100%;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-height: 500px;
  min-width: 300px;
}

.menu__cameras-camera-image-video {
  width: 100%;
  height: 100%;
}

.menu__cameras-camera-image-video-image-container {
  display: flex;
  position: absolute;
  width: 100%;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-height: 500px;
}

.menu__cameras-camera-image-video-image {
  width: 100%;
  height: 100%;
}

.menu__cameras-camera-image-video-text {
  display: flex;
  padding: 2px;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-height: 500px;
}

.menu__cameras-camera-image-img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: auto;
}
.menu__cameras-camera-image-img svg {
  width: 100%;
  height: auto;
}
.menu__cameras-camera-image-img.selected * path {
  fill: #000000;
}

.menu__handle {
  display: none;
  width: 15px;
  background: #373737;
  cursor: col-resize;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 960px), print {
  .menu__handle {
    display: flex;
  }
}

.menu__handle-line {
  z-index: 2;
  width: 4px;
  height: 60px;
  background-color: #565656;
  border-radius: 4px;
}

.menu__pagination {
  display: flex;
  padding-right: 20px;
  padding-left: 20px;
  font-size: 9px;
  justify-content: space-between;
  align-items: center;
}

.menu__pagination-back {
  display: flex;
  padding: 10px;
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 6px;
  align-items: center;
}

.menu__pagination-next {
  display: flex;
  padding: 10px;
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 6px;
  align-items: center;
}

.menu__pagination-back-image {
  display: flex;
  padding-right: 8px;
  align-items: center;
}

.menu__pagination-next-image {
  display: flex;
  padding-left: 8px;
  align-items: center;
}

.menu__pagination-dots {
  display: flex;
}

.menu__pagination-dot {
  padding: 0 2px;
}
.menu__pagination-dot.active * circle {
  fill: #9c9494;
}

.menu__options-item-input {
  width: auto;
}

.top-left-side {
  display: flex;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  color: #ffffff;
  background: linear-gradient(98.28deg, #0C0C16 4.4%, #1E1C2D 285.52%);
  justify-content: center;
  transition: transform 0.5s;
  will-change: transform;
  opacity: 0.9;
}
@media screen and (min-width: 960px), print {
  .top-left-side {
    width: 25rem;
  }
}
.top-left-side.closed {
  transform: translate3d(-100%, 0, 0);
}

.drone {
  max-width: 54.3125rem;
  min-width: 25rem;
}

.drone__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.875rem;
  color: #ffffff;
  padding: 0.625rem;
}

.drone__title-logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.625rem;
}

.drone__title-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 120%;
}

.drone__title-logo {
  padding-top: 0.3125rem;
  height: 1.875rem;
  align-self: flex-start;
}
.drone__title-logo img {
  width: auto;
  height: 100%;
}

.drone__buttons {
  display: flex;
  padding-bottom: 0.125rem;
  justify-content: flex-end;
}

.drone__buttons-open {
  position: absolute;
  top: 0.625rem;
  right: -4.375rem;
  padding: 0.5rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: opacity 0.5s;
}
.drone:not(.closed) .drone__buttons-open {
  opacity: 0;
}

.drone__buttons-open__offset-logo {
  right: -10.625rem;
}

.drone__buttons-close {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.375rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  cursor: pointer;
  transition: opacity 0.5s;
}
.menu.closed .drone__buttons-close {
  opacity: 0;
}

.drone__container {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-around;
}

.drone__body {
  display: flex;
  position: relative;
  height: 95%;
  max-height: 95%;
  overflow: hidden;
  padding-left: 0.3125rem;
}

.drone__menu-title {
  font-size: 1rem;
  font-weight: 500;
}

.drone__body-uav__container {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
}

.drone__body-container {
  display: flex;
  row-gap: 0.625rem;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-x: hidden;
  overflow-y: scroll;
}
@media screen and (min-width: 960px), print {
  .drone__body-container {
    width: calc(100% - 0.9375rem);
    justify-content: flex-start;
  }
}

.drone__body-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 0.625rem;
}

.drone__header-right {
  min-width: 4.375rem;
}

.drone__header-option-sim {
  display: flex;
  align-items: center;
  column-gap: 0.3125rem;
}

.drone_header-option-text {
  font-weight: 400;
}

.drone__title-option-sim-button {
  cursor: pointer;
}
.drone__title-option-sim-button:hover {
  background-color: #444454;
  color: #FF0000;
}

.drone__options-item-icon {
  cursor: pointer;
}
.drone__options-item-icon * path {
  transition: fill 0.5s;
}
.drone__options-item-icon * circle {
  transition: all 0.5s;
}

.active .drone__options-item-icon--toggle * path {
  fill: #FF0000;
}
.active .drone__options-item-icon--toggle * circle {
  transform: translate(0.8125rem);
}

.drone__body-status-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 0.9375rem;
  border: 0.0625rem solid #ffffff;
  padding: 0.625rem;
  border-radius: 0.625rem;
}

.drone__status-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.drone__status-header-text {
  font-size: 1rem;
  font-weight: 600;
}

.drone__status-header-state {
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #40E340;
}
.drone__status-header-state--disconnected {
  color: #FF0000;
}
.drone__status-header-state--white {
  color: #ffffff;
}

.drone__status-header-icon {
  cursor: pointer;
  transition: transform 0.5s;
}
.drone__status-header-icon--up {
  transform: rotate(180deg);
}

.drone__body-status {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  row-gap: 0.3125rem;
  inline-size: 100%;
  overflow-wrap: break-word;
  min-height: 9.6875rem;
  transition: transform 0.5s, height 0.5s;
  transform-origin: top;
}
.drone__body-status--closed {
  transform: scaleY(0);
  min-height: 0;
  height: 0;
  overflow: hidden;
}

.drone__body-status-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  column-gap: 0.3125rem;
  width: 100%;
  text-align: left;
}

.drone__body-messages {
  width: 100%;
  font-size: small;
  padding: 0.625rem;
  border-top: 0.0625rem solid #ffffff;
  border-bottom: 0.0625rem solid #ffffff;
}

.drone__body-messages__header {
  display: flex;
  justify-content: space-between;
  color: rgb(89, 200, 226);
  margin-bottom: 0.3125rem;
}

.drone__body-messages__header-clear {
  cursor: pointer;
}
.drone__body-messages__header-clear:hover {
  color: #7AF5F5;
}

.drone__body-messages__body {
  inline-size: 100%;
  overflow-wrap: break-word;
  min-height: 5rem;
  font-size: small;
}

.drone__body-controls {
  display: flex;
  width: 100%;
  justify-content: space-between;
  column-gap: 0.625rem;
}

.drone__body-controls-group {
  display: flex;
  width: 100%;
  flex-direction: column;
  row-gap: 0.625rem;
}

.drone__body-controls__alt {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  border-top: 0.0625rem solid #7AF5F5;
  border: 0.0625rem solid #7AF5F5;
  border-radius: 0.625rem;
}

.drone__body-controls__alt-value-container {
  display: flex;
  flex-direction: row;
  column-gap: 0.625rem;
  justify-content: center;
  padding: 0.625rem;
  border-top: 0.0625rem solid #7AF5F5;
}

.drone__body-controls__alt-value {
  text-align: center;
}
.drone__body-controls__alt-slider {
  border-bottom: 0.0625rem solid #7AF5F5;
  padding: 0.625rem;
  min-height: 13.125rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.drone__body-controls__commands {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.625rem;
  padding: 0.625rem;
  border: 0.0625rem solid #F7F7F7;
  border-radius: 0.625rem;
}

.drone__body-controls-orientation {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.625rem;
  padding: 0.625rem;
  border: 0.0625rem solid #F7F7F7;
  border-radius: 0.625rem;
}

.drone__body-controls__power {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.625rem;
  padding: 0.625rem;
  border: 0.0625rem solid #F7F7F7;
  border-radius: 0.625rem;
}

.drone__body-controls__modes {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.625rem;
  padding: 0.625rem;
  border: 0.0625rem solid #F7F7F7;
  border-radius: 0.625rem;
}

.drone__body-controls__title-text {
  text-align: center;
  font-size: 1.125rem;
}
.drone__body-controls__title-text--alt {
  padding: 0.625rem;
}

.drone__body-controls__input {
  display: flex;
  align-items: center;
  justify-content: center;
}
.drone__body-controls__input input {
  width: 3.75rem;
  text-align: center;
}

.drone__body-controls__alt-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.625rem;
}

.drone__button {
  padding: 0.4375rem 0.9375rem;
  font-size: 1rem;
  align-items: center;
  cursor: pointer;
  align-self: center;
  border: 0.125rem solid #ffffff;
  width: 100%;
  max-width: 7.5rem;
}
.drone__button:hover {
  background-color: rgba(0, 238, 255, 0.2705882353);
}
.drone__button.active {
  background-color: rgba(0, 238, 255, 0.2705882353);
}
.drone__button.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.drone__button--control {
  border: 0.0625rem solid #7AF5F5;
  border-radius: 0.3125rem;
}
.drone__button--control .drone__button-text {
  font-weight: 400;
  font-size: 0.875rem;
}

.drone__button-command {
  border: 0.0625rem solid #7AF5F5;
  border-radius: 0.3125rem;
}
.drone__button-command .drone__button-text {
  font-weight: 400;
  font-size: 0.875rem;
}

.drone__button-orange {
  border: 0.0625rem solid #D86E77;
}
.drone__button-orange.active {
  border: 0.0625rem solid #FF0000;
  background: rgba(255, 0, 0, 0.2705882353);
}
.drone__button-orange:hover {
  background: rgba(255, 0, 0, 0.2705882353);
}

.drone__button-disarmed {
  border: 0.0625rem solid #D86E77;
}
.drone__button-disarmed.active {
  border: 0.0625rem solid #FF0000;
  background: rgba(255, 0, 0, 0.2705882353);
}
.drone__button-disarmed:hover {
  background: rgba(255, 0, 0, 0.2705882353);
}

.drone__button-text {
  text-align: center;
  font-weight: 600;
}

.drone__button-system {
  border: 0.125rem solid #ffffff;
  min-width: 4.375rem;
}
.drone__button-system.active {
  color: #000000;
  background: #F5C2ED;
}

.drone__body-truck-cover__controls {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 0.625rem;
}
.drone__body-truck-cover__controls .drone__button {
  width: 9.375rem;
}

body.drone {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.slider-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

input.vertical-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 13.125rem; /* slider length - horizontal space after rotation */
  height: 0.375rem; /* slider thickness - vertical space after rotation */
  background-color: transparent;
  transform: rotate(-90deg);
  transform-origin: center;
  opacity: 0.7;
  cursor: pointer;
  border-radius: 0.25rem;
  position: absolute;
}

.vertical-slider:hover {
  opacity: 1;
}

input.vertical-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(to right, #7AF5F5 0%, #7AF5F5 var(--slider-fill, 0%), #ddd var(--slider-fill, 0%), #ddd 100%);
  border: none;
  border-radius: 0.1875rem;
}

input.vertical-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1rem;
  height: 1rem;
  background: #7AF5F5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -0.375rem; /* to center thumb on track */
}

input.vertical-slider:focus {
  outline: none;
}

input.vertical-slider::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  background: linear-gradient(to right, #7AF5F5 0%, #7AF5F5 var(--slider-fill, 0%), #ddd var(--slider-fill, 0%), #ddd 100%);
  border: none;
  border-radius: 0.1875rem;
}

input.vertical-slider::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background: #7AF5F5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

input.vertical-slider::-ms-track {
  width: 100%;
  height: 0.5rem;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input.vertical-slider::-ms-fill-lower {
  background: #7AF5F5;
  border-radius: 0.1875rem;
}

input.vertical-slider::-ms-fill-upper {
  background: #ddd;
  border-radius: 0.1875rem;
}

input.vertical-slider::-ms-thumb {
  width: 1rem;
  height: 1rem;
  background: #7AF5F5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.drone__handle {
  display: none;
  width: 0.9375rem;
  background: #373737;
  cursor: col-resize;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 960px), print {
  .drone__handle {
    display: flex;
  }
}

.drone__handle-line {
  z-index: 2;
  width: 0.25rem;
  height: 3.75rem;
  background-color: #565656;
  border-radius: 0.25rem;
}

/* HUD Container */
.hud-container {
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

/* HUD Boxes */
.hud-container__hud-box {
  border: 1px solid #ffffff;
  padding: 15px;
  border-radius: 8px;
  min-width: 200px;
  text-shadow: 0 0 5px black;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.hud-container__hud-box .hud-box__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hud-box__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  text-align: left;
}

.hud-container__hud-box h3 {
  margin: 0;
  font-size: 16px;
}

.hud-container__hud-box p {
  margin: 5px 0;
  font-size: 14px;
}

/* Marker Graph HUD Box */
#marker-graph {
  align-self: center;
  width: 320px;
  height: 320px;
  background-color: #2e2e2e;
  border: 1px solid #555;
  border-radius: 4px;
}

/* Responsive Canvas */
@media (max-width: 800px) {
  #marker-graph-hud {
    width: 320px;
  }
  #marker-graph {
    width: 310px;
    height: 310px;
  }
}
.pharos {
  max-width: 54.3125rem;
  min-width: 25rem;
}

.pharos__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.875rem;
  color: #ffffff;
  padding: 0.625rem;
}

.pharos__title-logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.625rem;
}

.pharos__title-logo {
  padding-top: 0.3125rem;
  height: 1.875rem;
  align-self: flex-start;
}
.pharos__title-logo img {
  width: auto;
  height: 100%;
}

.pharos__title-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 400;
}

.pharos__title-text__SDR-transmitting-container {
  display: flex;
  align-items: center;
  column-gap: 0.625rem;
  padding: 0.625rem 0.625rem 0.625rem 2.1875rem;
  height: 2.1875rem;
  background-color: #052E31;
}

.pharos__title-text__SDR-transmitting {
  font-size: small;
}

.pharos__SDR-transmitting-indicator {
  height: 1.25rem;
}
.pharos__SDR-transmitting-indicator img {
  width: auto;
  height: 100%;
}
.pharos__SDR-transmitting-indicator.hidden {
  display: flex;
  opacity: 0;
}

.pharos__body-controls__alt-value {
  text-align: center;
}

.pharos__buttons {
  display: flex;
  padding-bottom: 0.125rem;
  justify-content: flex-end;
}

.pharos__buttons-open {
  position: absolute;
  top: 0.625rem;
  right: -6.25rem;
  padding: 0.5rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: opacity 0.5s;
}
.pharos:not(.closed) .pharos__buttons-open {
  opacity: 0;
}

.pharos__buttons-open__offset-logo {
  right: -12.5rem;
}

.pharos__buttons-close {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.375rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  cursor: pointer;
  transition: opacity 0.5s;
}
.menu.closed .pharos__buttons-close {
  opacity: 0;
}

.pharos__container {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-around;
}

.pharos__body {
  display: flex;
  position: relative;
  height: 95%;
  max-height: 95%;
  overflow: hidden;
  padding-left: 0.3125rem;
}

.pharos__menu-title {
  font-size: 1rem;
  font-weight: 500;
}

.pharos__body-container {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-x: hidden;
  overflow-y: scroll;
  font-size: 1rem;
  font-family: "Golos Text";
}
@media screen and (min-width: 960px), print {
  .pharos__body-container {
    width: calc(100% - 0.9375rem);
    justify-content: flex-start;
  }
}

.pharos__body-pharos__container {
  width: 100%;
}

.pharos__body-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.pharos__header-right {
  min-width: 4.375rem;
}

.pharos__header-option-enable {
  display: flex;
  align-items: center;
  column-gap: 0.3125rem;
}

.pharos__header-option-sim {
  display: flex;
  align-items: center;
  column-gap: 0.625rem;
}

.pharos__title-option-sim-button {
  cursor: pointer;
}
.pharos__title-option-sim-button:hover {
  background-color: #444454;
  color: red;
}

.pharos__options-item-icon {
  display: flex;
  cursor: pointer;
}
.pharos__options-item-icon * path {
  transition: fill 0.5s;
}
.pharos__options-item-icon * circle {
  transition: all 0.5s;
}

.pharos__options-item-icon--toggle {
  margin-left: 0.3125rem;
  margin-right: 0.3125rem;
}
.active .pharos__options-item-icon--toggle * path {
  fill: #ff0000;
}
.active .pharos__options-item-icon--toggle * circle {
  transform: translate(0.8125rem);
}

.pharos__body-status-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 0.9375rem;
  border: 0.0625rem solid #F7F7F7;
  padding: 0.625rem;
  border-radius: 0.625rem;
}

.pharos__body-status-header {
  display: flex;
  cursor: pointer;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.pharos__body-status-header-text {
  font-size: 1rem;
  font-weight: 600;
}

.pharos__body-status-header-state {
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #40E340;
}
.pharos__body-status-header-state--disconnected {
  color: #FF0000;
}
.pharos__body-status-header-state--white {
  color: #ffffff;
}

.pharos__body-status-header-icon {
  transition: transform 0.5s;
}
.pharos__body-status-header-icon--up {
  transform: rotate(180deg);
}

.pharos__body-status__base {
  font-size: 0.75rem;
}

.pharos__body-status {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  row-gap: 0.3125rem;
  inline-size: 100%;
  overflow-wrap: break-word;
  min-height: 9.6875rem;
  transition: transform 0.5s, height 0.5s;
  transform-origin: top;
}
.pharos__body-status--closed {
  transform: scaleY(0);
  min-height: 0;
  height: 0;
  overflow: hidden;
}

.pharos__body-status-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  column-gap: 0.3125rem;
  width: 100%;
  text-align: left;
}
.pharos__body-status-item--radar {
  font-size: 0.75rem;
}

.pharos__body-status__target-title {
  text-transform: uppercase;
  font-weight: 600;
}

.pharos__body-status__select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.pharos__body-status__select select {
  width: 100%;
  border: 0.0625rem solid #F7F7F7;
  background-color: #444454;
}
.pharos__body-status__select select:focus {
  border: 0.0625rem solid #F7F7F7;
}

.pharos__body-messages {
  width: 100%;
  font-size: small;
}

.pharos__body-messages__header {
  display: flex;
  justify-content: space-between;
  color: rgb(89, 200, 226);
  margin-bottom: 0.3125rem;
}

.pharos__body-messages__header-clear {
  cursor: pointer;
}
.pharos__body-messages__header-clear:hover {
  color: #7AF5F5;
}

.pharos__body-messages__body {
  inline-size: 100%;
  overflow-wrap: break-word;
  min-height: 5rem;
  font-size: small;
}

.pharos__body-radar__tracks-all {
  display: flex;
  justify-content: flex-start;
  column-gap: 1.875rem;
}

.pharos__body-radar__track-filter {
  display: flex;
  column-gap: 0.3125rem;
  min-width: 6.25rem;
  text-align: left;
}
.pharos__body-radar__track-filter input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 1rem;
  height: 1rem;
  border: 0.0625rem solid #7AF5F5;
  border-radius: 0.125rem;
}
.pharos__body-radar__track-filter input:checked {
  background-color: rgba(0, 238, 255, 0.3333333333);
}

.pharos__body-radar__status {
  display: flex;
  flex-direction: column;
  row-gap: 0.3125rem;
}

.pharos__body-controls {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 0.625rem;
  margin-bottom: 0.9375rem;
}

.pharos__body-controls__alt {
  display: flex;
  width: 6.25rem;
  flex-direction: column;
}

.pharos__body-controls__commands {
  display: flex;
  flex-direction: column;
}

.pharos__body-controls__modes {
  display: flex;
  flex-direction: column;
}

.pharos__body-controls__title-text {
  text-align: center;
  margin-bottom: 0.625rem;
}

.pharos__button {
  padding: 0.3125rem 0.5rem;
  font-size: 1rem;
  align-items: center;
  cursor: pointer;
  align-self: center;
  border: 0.125rem solid #7AF5F5;
  min-width: 7.5rem;
}
.pharos__button:hover {
  background-color: rgba(0, 238, 255, 0.2705882353);
}
.pharos__button.active {
  background-color: rgba(0, 238, 255, 0.2705882353);
}
.pharos__button.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.pharos__button.set-follow {
  width: 100%;
  border-radius: 0.3125rem;
  border: 0.0625rem solid #7AF5F5;
}
.pharos__button--control {
  border: 0.0625rem solid #7AF5F5;
  border-radius: 0.3125rem;
}
.pharos__button--control .pharos__button-text {
  font-weight: 400;
  font-size: 0.875rem;
}

.pharos__button__radar-start, .pharos__button__sdr-start {
  width: 100%;
  border: 0.0625rem solid #7AF5F5;
  border-radius: 0.125rem;
}

.pharos__button__radar-stop, .pharos__button__sdr-stop {
  width: 100%;
  border: 0.0625rem solid #D86E77;
  border-radius: 0.125rem;
}
.pharos__button__radar-stop:hover, .pharos__button__sdr-stop:hover {
  background-color: rgba(255, 0, 0, 0.2705882353);
}
.pharos__button__radar-stop.active, .pharos__button__sdr-stop.active {
  background-color: rgba(255, 0, 0, 0.2705882353);
}

.pharos__button-command.active {
  background: #7AF5F5;
}

.pharos__button-orange {
  border: 0.25rem solid #ff8300;
}

.pharos__button-armed {
  background: rgb(255, 0, 0);
}

.pharos__button-disarmed {
  background: rgb(255, 255, 0);
  color: black;
}

.pharos__button-text {
  text-align: center;
}

.pharos__button-system {
  border: 0.125rem solid #48b;
  min-width: 4.375rem;
}
.pharos__button-system.active {
  background: rgba(255, 0, 0, 0.5);
}

body.pharos {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.pharos__body-sdr__control-inputs {
  display: flex;
  flex-direction: column;
  row-gap: 0.3125rem;
}

.drone__body-controls__input {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
}
.drone__body-controls__input input {
  width: 100%;
  border-bottom: 0.0625rem solid #444454;
}

.drone__body-controls__yaw-offset-container {
  display: flex;
  align-items: center;
  column-gap: 0.625rem;
}

.pharos__body-inputs__radar-yaw-offset {
  width: 3.125rem !important;
}

.pharos__body-inputs__radar-yaw-offset-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 0.375rem; /* slider thickness */
  background-color: transparent;
  opacity: 0.7;
  cursor: pointer;
  border-radius: 0.25rem;
  border-bottom: none;
}

.pharos__body-inputs__radar-yaw-offset-range:hover {
  opacity: 1;
}

.pharos__body-inputs__radar-yaw-offset-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(to right, #7AF5F5 0%, #7AF5F5 var(--slider-fill, 0%), #ddd var(--slider-fill, 0%), #ddd 100%);
  border: none;
  border-radius: 0.1875rem;
}

.pharos__body-inputs__radar-yaw-offset-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1rem;
  height: 1rem;
  background: #7AF5F5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -0.375rem; /* to center thumb on track */
}

.pharos__body-inputs__radar-yaw-offset-range:focus {
  outline: none;
}

.pharos__body-inputs__radar-yaw-offset-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  background: linear-gradient(to right, #7AF5F5 0%, #7AF5F5 var(--slider-fill, 0%), #ddd var(--slider-fill, 0%), #ddd 100%);
  border: none;
  border-radius: 0.1875rem;
}

.pharos__body-inputs__radar-yaw-offset-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background: #7AF5F5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.pharos__body-inputs__radar-yaw-offset-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

.pharos__body-inputs__radar-yaw-offset-range::-ms-fill-lower {
  background: #7AF5F5;
  border-radius: 0.1875rem;
}

.pharos__body-inputs__radar-yaw-offset-range::-ms-fill-upper {
  background: #ddd;
  border-radius: 0.1875rem;
}

.pharos__body-inputs__radar-yaw-offset-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  background: #7AF5F5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.pharos__handle {
  display: none;
  width: 0.9375rem;
  background: #373737;
  cursor: col-resize;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 960px), print {
  .pharos__handle {
    display: flex;
  }
}

.pharos__handle-line {
  z-index: 2;
  width: 0.25rem;
  height: 3.75rem;
  background-color: #565656;
  border-radius: 0.25rem;
}

.camera-settings {
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.camera-settings__lock {
  display: flex;
  position: absolute;
  z-index: 7;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  align-items: flex-end;
  justify-content: center;
}
.camera-settings__lock.enabled {
  opacity: 1;
  pointer-events: auto;
}

.camera-settings__lock-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.5;
}

.camera-settings__lock-title {
  margin-bottom: 10px;
  padding: 8px 20px;
  color: #ffffff;
  font-size: 23px;
  background: #949494;
  border-radius: 6px;
}

.camera-settings__form {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-evenly;
}

.camera-settings__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.camera-settings__header-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
  border-bottom-left-radius: 6px;
  cursor: pointer;
}

.camera-settings__header-title {
  margin-top: 15px;
  margin-bottom: 25px;
  font-size: 20px;
  letter-spacing: 1px;
}

.camera-settings__options {
  display: flex;
  margin-bottom: 15px;
  width: 100%;
  justify-content: space-around;
}

.button.camera-settings__options-new-camera {
  display: flex;
  padding: 5px 8px;
  font-size: 16px;
  border-radius: 6px;
  align-items: center;
}
.button.camera-settings__options-new-camera.active {
  background-color: #282828;
}

.camera-settings__options-new-camera-title {
  display: flex;
  margin-right: 10px;
}

.camera-settings__options-new-camera-icon {
  display: flex;
}

.camera-settings__cameras_select-container {
  display: flex;
  align-items: center;
}

.camera-settings__cameras_select.disabled {
  pointer-events: none;
  opacity: 0;
}

.button.camera-settings__options-delete-camera {
  display: flex;
  padding: 6px 8px;
  border-radius: 6px;
  align-items: center;
}

.camera-settings__options-delete-camera-icon {
  display: flex;
}

.camera-settings__no-selection {
  display: flex;
  width: 100%;
  height: 80%;
  overflow-y: scroll;
  flex-direction: column;
}

.camera-settings__inputs {
  display: flex;
  width: 100%;
  height: 80%;
  overflow-y: scroll;
  flex-direction: column;
}

.camera-settings__inputs-input {
  display: flex;
  padding: 0 20px 4px;
  align-items: center;
  justify-content: space-between;
}

.camera-settings__inputs-input-input {
  margin: 2px 0;
  padding: 6px;
  width: 120px;
  color: #ffffff;
  font-size: 14px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #ffffff;
  transition: border-bottom 0.3s;
  resize: vertical;
}
.camera-settings__inputs-input-input:focus {
  border-bottom: 1px solid #1292e8;
}
.camera-settings__inputs-input-input.-error {
  border-bottom: 1px solid #b00020;
}

.camera-settings__select {
  width: 132px;
}

.camera-settings__footer {
  display: flex;
  margin-top: 15px;
  margin-bottom: 15px;
  justify-content: center;
}

.camera-settings__footer-button {
  padding: 8px 12px;
  border-radius: 6px;
}

.camera-calibration {
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.camera-calibration__form {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-evenly;
}

.camera-calibration__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.camera-calibration__header-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
  border-bottom-left-radius: 6px;
  cursor: pointer;
}

.camera-calibration__header-title {
  margin-top: 15px;
  margin-bottom: 25px;
  font-size: 18px;
  letter-spacing: 1px;
}

.camera-calibration__options {
  display: flex;
  margin-bottom: 15px;
  width: 100%;
  justify-content: space-around;
}

.camera-calibration__hr {
  width: 90%;
}

.camera-calibration__inputs {
  display: flex;
  width: 100%;
  height: 80%;
  overflow-y: scroll;
  flex-direction: column;
}

.camera-calibration__options {
  display: flex;
  margin-bottom: 15px;
  width: 100%;
  justify-content: space-around;
}

.camera-calibration__cameras_select-container {
  display: flex;
  align-items: center;
}

.camera-calibration__cameras_select.disabled {
  pointer-events: none;
  opacity: 0;
}

.recordings-list__button {
  padding: 4px 8px;
  opacity: 0;
}
.recordings-list__button:hover {
  background-color: #282828;
}
.recordings-list__table-row:hover .recordings-list__button {
  opacity: 1;
}

.camera-calibration__button {
  padding: 5px 8px;
  font-size: 16px;
  border-radius: 6px;
  align-items: center;
  cursor: pointer;
  align-self: center;
  border: 2px solid #00FFFF;
}
.camera-calibration__button:hover {
  background-color: #282828;
}
.camera-calibration__button.active {
  background-color: #282828;
}

.camera-calibration__button-title {
  display: flex;
  margin-right: 10px;
}

.camera-calibration__inputs-input {
  display: flex;
  padding: 0 20px 4px;
  align-items: center;
  justify-content: space-between;
}

.camera-calibration__footer {
  display: flex;
  margin-top: 15px;
  margin-bottom: 15px;
  justify-content: center;
}

.camera-calibration__footer-button {
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.camera-location-calibration {
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.camera-location-calibration__form {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.camera-location-calibration__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.camera-location-calibration__header-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  border-bottom-left-radius: 6px;
  cursor: pointer;
}

.camera-location-calibration__header-title {
  margin-top: 40px;
  margin-bottom: 25px;
  font-size: 18px;
  letter-spacing: 1px;
}

.camera-location-calibration__options {
  display: flex;
  margin-bottom: 15px;
  width: 100%;
  justify-content: space-around;
}

.camera-location-calibration__hr {
  width: 90%;
}

.camera-location-calibration__inputs {
  display: flex;
  width: 100%;
  overflow-y: scroll;
  flex-direction: column;
}

.camera-location-calibration__inputs-title {
  display: flex;
  padding: 0 20px 4px;
  align-items: center;
  justify-content: space-between;
  align-self: center;
}

.camera-location-calibration__options {
  display: flex;
  margin-bottom: 15px;
  width: 100%;
  justify-content: space-around;
}

.camera-location-calibration__cameras_select-container {
  display: flex;
  align-items: center;
}

.camera-location-calibration__cameras_select.disabled {
  pointer-events: none;
  opacity: 0;
}

.recordings-list__button {
  padding: 4px 8px;
  opacity: 0;
}
.recordings-list__button:hover {
  background-color: #282828;
}
.recordings-list__table-row:hover .recordings-list__button {
  opacity: 1;
}

.camera-location-calibration__button {
  padding: 5px 8px;
  font-size: 16px;
  border-radius: 6px;
  align-items: center;
  cursor: pointer;
  align-self: center;
  border: 2px solid #00FFFF;
}
.camera-location-calibration__button:hover {
  background-color: #282828;
}
.camera-location-calibration__button.active {
  background-color: #282828;
}

.camera-location-calibration__button-title {
  display: flex;
  margin-right: 10px;
}

.camera-location-calibration__inputs-input {
  display: flex;
  padding: 0 20px 4px;
  align-items: center;
  justify-content: space-between;
}

.camera-location-calibration__footer {
  display: flex;
  margin-top: 15px;
  margin-bottom: 15px;
  justify-content: center;
}

.camera-location-calibration__footer-button {
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.camera-location-calibration__outputs {
  display: flex;
  width: 100%;
  overflow-y: scroll;
  flex-direction: column;
  padding-bottom: 60px;
}

.camera-location-calibration__outputs-title {
  display: flex;
  padding: 0 20px 4px;
  align-items: center;
  justify-content: space-between;
  align-self: center;
}

.camera-location-calibration__outputs-active-icon {
  display: flex;
  padding-left: 20px;
  z-index: 2;
  width: 20px;
  height: 20px;
  max-width: 20px;
  min-width: 7px;
}
.camera-location-calibration__outputs-active-icon svg {
  width: 100%;
  height: 100%;
}

.floating__cameras-camera-container {
  position: absolute;
  z-index: 9;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  background-color: #f1f1f1;
  text-align: center;
}

.floating__cameras-camera-container__header {
  padding: 2px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  cursor: move;
  z-index: 10;
  background-color: #373737;
  color: #fff;
  font-size: 14px;
}

.floating__cameras-camera-container__header-handle-nw {
  height: 20px;
  width: 20px;
  position: absolute;
  top: -10px;
  left: -10px;
  cursor: nw-resize;
}

.floating__cameras-camera-container__header-handle-ne {
  height: 20px;
  width: 20px;
  position: absolute;
  top: -10px;
  right: -10px;
  cursor: ne-resize;
}

.floating__cameras {
  display: flex;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
  min-height: 90%;
  flex-wrap: wrap;
  align-items: stretch;
  align-content: center;
}
.floating__cameras.hidden {
  display: flex;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.floating__cameras-camera {
  display: flex;
  flex: 1 0 50%;
  max-width: 700px;
  justify-content: center;
}

.floating__cameras-camera__container {
  display: flex;
  position: relative;
  background-color: #373737;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.floating__cameras-camera__container:hover {
  box-shadow: none;
}
.floating__cameras-camera__container.selected {
  background-color: #000000;
  box-shadow: none;
}

.floating__cameras-camera-rec-icon {
  display: flex;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  width: 5%;
  height: 5%;
  max-width: 20px;
  min-width: 7px;
}
.floating__cameras-camera-rec-icon svg {
  width: 100%;
  height: 100%;
}

.floating__cameras-footer {
  display: flex;
  margin-top: 3px;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.floating__cameras-camera-line {
  margin-bottom: 6px;
  width: 100%;
  height: 1px;
  background-color: #404040;
}

.floating__cameras-camera-title {
  font-size: 12px;
}

.floating__cameras-camera-tandem {
  display: flex;
  padding: 0 20px;
  width: 100%;
  justify-content: space-evenly;
  height: 20px;
}

.floating__cameras-camera-tandem-text {
  font-size: 12px;
}

.active .floating__cameras-tandem-icon--toggle * path {
  fill: #2F4F4F;
}
.active .floating__cameras-tandem-icon--toggle * circle {
  transform: translate(13px);
}

.floating__cameras-camera-map_view {
  display: flex;
  padding: 0 20px;
  width: 100%;
  justify-content: space-evenly;
  height: 20px;
}

.floating__cameras-camera-map_view-text {
  font-size: 12px;
}

.active .floating__cameras-map_view-icon--toggle * path {
  fill: #2F4F4F;
}
.active .floating__cameras-map_view-icon--toggle * circle {
  transform: translate(13px);
}

.floating__cameras-camera-image {
  display: flex;
  position: relative;
  height: 400px;
  width: 400px;
  margin: auto;
}

.floating__cameras-camera-indicators-left-container {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  color: #00ff00;
  font-size: 16px;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: column;
  margin-left: 2px;
}

.floating__cameras-camera-indicators-container {
  display: flex;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  color: #00ff00;
  font-size: 12px;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: column;
}

.floating__cameras-camera-indicators-indicator {
  margin-right: 2px;
  cursor: pointer;
  z-index: 11;
}
.floating__cameras-camera-indicators-indicator.hidden {
  display: flex;
  opacity: 0;
}

.floating__cameras-camera-play {
  display: flex;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  align-content: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.floating__cameras-camera-play svg {
  width: 60px;
  height: 60px;
}

.floating__cameras-camera-pause {
  display: flex;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  align-content: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.floating__cameras-camera-pause svg {
  width: 60px;
  height: 60px;
}

.floating__cameras-camera-pause:hover .floating__cameras-camera-pause-button {
  display: block;
}

#floating__cameras-camera-image-video-container__canvas {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating__cameras-camera-image-video-container {
  display: flex;
  padding: 2px;
  width: 100%;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 10;
}

.floating__cameras-camera-image-video {
  width: 100%;
  height: 100%;
}

.floating__cameras-camera-image-video-text {
  display: flex;
  padding: 2px;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-height: 500px;
}

.floating__cameras-camera-image-img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: auto;
}
.floating__cameras-camera-image-img svg {
  width: 100%;
  height: auto;
}
.floating__cameras-camera-image-img.selected * path {
  fill: #000000;
}

.menu__options {
  position: absolute;
  top: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background-color: rgba(40, 40, 40, 0.5);
  transition: opacity 0.3s;
}

.menu__options-container {
  position: absolute;
  top: 40px;
  right: 0;
  width: 230px;
  color: #bababa;
  background-color: #565656;
  border-radius: 10px;
  user-select: none;
}

.menu__options-close-button {
  position: absolute;
  right: 0;
  padding: 10px 12px 8px;
  border-bottom-left-radius: 6px;
}
.menu__options-close-button * path {
  fill: #bababa;
}

.menu__options-title {
  margin: 10px 20px 20px;
  font-size: 18px;
  font-weight: 600;
}

.menu__options-items {
  display: flex;
  padding: 0 20px;
  flex-direction: column;
}

.menu__options-item-group {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 4px;
}

.menu__options-item {
  display: flex;
  margin-bottom: 20px;
  height: 25px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.menu__options-item--thumbnail {
  height: auto;
  flex-direction: column;
  align-items: flex-start;
}

.menu__options-item-icon {
  cursor: pointer;
}
.menu__options-item-icon * path {
  transition: fill 0.5s;
}
.menu__options-item-icon * circle {
  transition: all 0.5s;
}

.active .menu__options-item-icon--toggle * path {
  fill: #000000;
}
.active .menu__options-item-icon--toggle * circle {
  transform: translate(13px);
}

.menu__options-item-icon--radio * circle:last-child {
  opacity: 0;
}
.active .menu__options-item-icon--radio * circle:first-child {
  fill: #000000;
}
.active .menu__options-item-icon--radio * circle:last-child {
  opacity: 1;
}

.menu__options-item-icon--settings {
  display: flex;
  margin-right: -5px;
  padding: 5px;
  border-radius: 6px;
}

.menu__body-search {
  display: flex;
  margin-top: 6px;
  padding: 4px 10px;
}

.menu__body-search-icon {
  display: flex;
  margin-right: 10px;
  align-items: center;
}

.menu__body-search-input-input {
  padding-left: 6px;
  height: 20px;
  color: #ffffff;
  background-color: #474849;
  border: 1px solid #b9b9b9;
  border-radius: 5px;
}

.menu__webrtc {
  display: flex;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
  min-height: 90%;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
  align-content: center;
}
.menu__webrtc.hidden {
  display: flex;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.menu__webrtc-camera {
  display: flex;
  flex: 1 0 100%;
  justify-content: center;
}

.menu__webrtc-camera__container {
  display: flex;
  position: relative;
  margin: 4px;
  padding: 3px;
  background-color: #373737;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.menu__webrtc-camera__container:hover {
  box-shadow: none;
}
.menu__webrtc-camera__container.selected {
  background-color: #000000;
  box-shadow: none;
}

.menu__webrtc-camera-rec-icon {
  display: flex;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  width: 5%;
  height: 5%;
  max-width: 20px;
  min-width: 7px;
}
.menu__webrtc-camera-rec-icon svg {
  width: 100%;
  height: 100%;
}

.menu__webrtc-footer {
  display: flex;
  margin-top: 3px;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.menu__webrtc-camera-line {
  margin-bottom: 6px;
  width: 100%;
  height: 1px;
  background-color: #404040;
}

.menu__webrtc-camera-title {
  font-size: 12px;
}

.menu__webrtc-camera-tandem {
  display: flex;
  padding: 0 20px;
  width: 100%;
  justify-content: space-evenly;
  height: 20px;
}

.menu__webrtc-camera-tandem-text {
  font-size: 12px;
}

.active .menu__webrtc-tandem-icon--toggle * path {
  fill: #2F4F4F;
}
.active .menu__webrtc-tandem-icon--toggle * circle {
  transform: translate(13px);
}

.menu__webrtc-camera-image {
  display: flex;
  position: relative;
  height: auto;
}

.menu__webrtc-camera-image-video-container {
  display: flex;
  padding: 2px;
  width: 100%;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.menu__webrtc-camera-image-video {
  width: 100%;
  height: auto;
}

.menu__webrtc-camera-image-img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: auto;
}
.menu__webrtc-camera-image-img svg {
  width: 100%;
  height: auto;
}
.menu__webrtc-camera-image-img.selected * path {
  fill: #000000;
}

.calendar {
  display: flex;
  margin: 0 auto;
  padding: 20px 13px 0;
  flex-direction: column;
}

.calendar__header {
  display: flex;
  padding-bottom: 10px;
  align-items: center;
  justify-content: space-between;
}

.calendar__back-button {
  cursor: pointer;
}

.calendar__title {
  display: flex;
  font-weight: bold;
  user-select: none;
}

.calendar__next-button {
  cursor: pointer;
}

.calendar__line {
  margin-bottom: 10px;
  height: 1px;
  background-color: #7b7b7b;
}

.calendar__body {
  display: flex;
  padding: 0 10px;
  flex-direction: column;
}

.calendar__months {
  display: flex;
  margin: 0 10px;
  padding-bottom: 10px;
  justify-content: space-between;
}

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

.calendar__days {
  display: flex;
  flex-direction: column;
}

.calendar__days-day {
  display: flex;
  margin: 5px;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.calendar__days-day.active {
  background-color: #009efb;
}
.calendar__days-day.active_event {
  background-color: #009efb;
  width: 20px;
  height: 20px;
  border: 5px solid #d74b4b;
  border-radius: 16px;
}
.calendar__days-day.active_event_only {
  background-color: #d74b4b;
}
.calendar__days-day.selected, .calendar__days-day:hover {
  width: 28px;
  height: 28px;
  border: 1px solid #009efb;
  border-radius: 16px;
  cursor: pointer;
}
.calendar__days-day.selected, .calendar__days-day:active {
  background: rgba(251, 251, 251, 0.22);
}
.calendar__days-day.disabled {
  pointer-events: none;
}

.calendar__loading {
  display: flex;
  padding: 0 10px;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

.calendar__loading-text {
  display: flex;
}

.calendar__loading-spinner {
  display: flex;
  border: 5px solid #f3f3f3; /* Light grey */
  border-top: 5px solid #696969; /* #3498db;  Blue */
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.recordings-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.recordings-list__header {
  margin-bottom: 20px;
}

.recordings-list__body {
  display: flex;
  width: 100%;
  justify-content: center;
  max-width: 330px;
}

.recordings-list__table {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.recordings-list__table-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recordings-list__table-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recordings-list__table-row {
  display: flex;
  margin-bottom: 10px;
  padding: 2px 1px;
  width: 99%;
  border-radius: 6px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.recordings-list__table-row:hover {
  background-color: #444454;
}

.recordings-list__table-row--header {
  cursor: auto;
}
.recordings-list__table-row--header:hover {
  background: none;
}

.recordings-list__table-column {
  display: flex;
  padding: 0 1px;
  width: 100%;
  font-size: 14px;
  white-space: nowrap;
  justify-content: center;
}
.recordings-list__table-column:first-child {
  padding-left: 0;
}
.recordings-list__table-column:last-child {
  padding-right: 0;
}

.recordings-list__play-column {
  width: 30px;
}
.recordings-list__table-header .recordings-list__play-column {
  width: 5%;
}

.recordings-list__button {
  padding: 4px 8px;
  opacity: 0;
}
.recordings-list__button:hover {
  background-color: #282828;
}
.recordings-list__table-row:hover .recordings-list__button {
  opacity: 1;
}

.recordings-list__play-button {
  display: flex;
  padding: 0 4px;
  max-width: 30px;
  min-width: 30px;
  border-radius: 6px;
  opacity: 1;
}
.recordings-list__play-button svg {
  width: 100%;
}

.events-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.events-list__search {
  display: flex;
  justify-content: space-evenly;
  margin-top: 6px;
  padding: 4px 10px;
  max-width: 330px;
  width: 100%;
}

.events-list__search-search__time-text {
  display: flex;
  margin-left: 6px;
  margin-right: 6px;
}

.events-list__search-input-input {
  padding-left: 6px;
  height: 20px;
  color: #ffffff;
  background-color: #474849;
  border: 1px solid #b9b9b9;
  border-radius: 5px;
}

.events-list__search-search__time-input {
  display: flex;
  width: 100px;
  color: #ffffff;
  font-size: 16px;
  background: transparent;
  background-color: #474849;
  border: 1px solid #b9b9b9;
  border-radius: 5px;
  text-align: center;
}

.events-list__search-button {
  cursor: pointer;
}

.events-list__header {
  margin-bottom: 20px;
}

.events-list__body {
  display: flex;
  width: 100%;
  max-width: 330px;
}

.events-list__table {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.events-list__table-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.events-list__table-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.events-list__table-row {
  display: flex;
  margin-bottom: 10px;
  padding: 2px 1px;
  width: 99%;
  border-radius: 6px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.events-list__table-row:hover {
  background-color: #444454;
}

.events-list__table-row--header {
  cursor: auto;
}
.events-list__table-row--header:hover {
  background: none;
}

.events-list__table-column {
  display: flex;
  padding: 0 1px;
  width: 100%;
  font-size: 14px;
  white-space: nowrap;
  justify-content: center;
}
.events-list__table-column:first-child {
  padding-left: 0;
}
.events-list__table-column:last-child {
  padding-right: 0;
}

.events-list__play-column {
  width: 30px;
}
.events-list__table-header .events-list__play-column {
  width: 5%;
}

.events-list__button {
  padding: 4px 8px;
  opacity: 0;
}
.events-list__button:hover {
  background-color: #282828;
}
.events-list__table-row:hover .events-list__button {
  opacity: 1;
}

.events-list__play-button {
  display: flex;
  padding: 0 4px;
  max-width: 30px;
  min-width: 30px;
  border-radius: 6px;
  opacity: 1;
}
.events-list__play-button svg {
  width: 100%;
}

.events-list__filter {
  display: flex;
  justify-content: space-evenly;
  margin-top: 6px;
  padding: 4px 10px;
  max-width: 330px;
  width: 90%;
}

.events-list__option-item {
  display: flex;
  margin-bottom: 20px;
  height: 25px;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

.events__pagination-container {
  display: flex;
  justify-content: center;
}

.events__pagination {
  display: flex;
  padding-right: 20px;
  font-size: 9px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 360px;
}

.events__pagination-back {
  display: flex;
  padding: 10px;
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 6px;
  align-items: center;
}

.events__pagination-next {
  display: flex;
  padding: 10px;
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 6px;
  align-items: center;
}

.events__pagination-back-image {
  display: flex;
  padding-right: 8px;
  align-items: center;
}

.events__pagination-next-image {
  display: flex;
  padding-left: 8px;
  align-items: center;
}

.events__pagination-dots {
  display: flex;
}

.events__pagination-dot {
  padding: 0 2px;
}
.events__pagination-dot.active * circle {
  fill: #9c9494;
}

.player-container {
  display: flex;
  position: absolute;
  right: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #000000;
  box-shadow: 0 2px 6px;
  transition: transform, opacity 0.5s;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.player-container-nga {
  display: flex;
  position: absolute;
  right: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #000000;
  box-shadow: 0 2px 6px;
  transition: transform, opacity 0.5s;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

@media screen and (min-width: 960px), print {
  .player-container--desktop-horizontal {
    right: auto;
    left: 0;
    width: 400px;
    height: 250px;
  }
}
@media screen and (min-width: 1366px), print {
  .player-container--desktop-horizontal {
    width: 700px;
    height: 400px;
  }
}

@media screen and (min-width: 960px), print {
  .player-container--desktop-horizontal-4-3 {
    right: auto;
    left: 0;
    width: 400px;
    height: 300px;
  }
}
@media screen and (min-width: 1366px), print {
  .player-container--desktop-horizontal-4-3 {
    width: 700px;
    height: 525px;
  }
}

@media screen and (min-width: 960px), print {
  .player-container--desktop-vertical {
    right: auto;
    left: 0;
    width: 350px;
    height: 400px;
  }
}
@media screen and (min-width: 1366px), print {
  .player-container--desktop-vertical {
    width: 400px;
    height: 700px;
  }
}

.player-container__loading {
  display: flex;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  color: #ffffff;
  letter-spacing: 1px;
  background-color: #000000;
  justify-content: center;
  align-items: center;
  transition: opacity 3s;
  opacity: 1;
}
.player-container__loading.hidden {
  display: flex;
  opacity: 0;
}
.player-container__loading video {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.cesium-toolbar__right {
  display: flex;
  color: #ffffff;
  margin-left: 5px;
}

.cesium-toolbar__select {
  display: flex;
  color: #000000;
  align-items: center;
}

.cesium-toolbar__select-taglock-select {
  margin: 0 5px;
  display: inline-block;
  padding: 4px 3px 3px 5px;
  font: inherit;
  font-size: 14px;
  outline: none;
  /* remove focus ring from Webkit */
  line-height: 1.2;
  background: #000;
  color: white;
  border: 0;
  opacity: 0.6;
  border-radius: 4px;
}

.cesium-toolbar__nga-container {
  display: flex;
}

.cesium-toolbar__select-nga-ai-model-select {
  margin: 0 5px;
  display: inline-block;
  padding: 4px 3px 3px 5px;
  font: inherit;
  font-size: 14px;
  outline: none;
  /* remove focus ring from Webkit */
  line-height: 1.2;
  background: #000;
  color: white;
  border: 0;
  opacity: 0.6;
  border-radius: 4px;
}

.cesium-toolbar__buttons {
  padding: 5px 10px;
  letter-spacing: 1px;
  border-radius: 8px;
  cursor: pointer;
}
.cesium-toolbar__buttons.selected {
  background-color: #282828;
}

.cesium-menu {
  position: absolute;
  display: none;
  background-color: white;
  border: 1px solid #ccc;
  padding: 2px;
  z-index: 1000;
  cursor: pointer;
  border-radius: 8px; /* Add rounded corners */
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Add subtle shadow for better look */
  background-color: #373737;
}

.cesium-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: small;
}

.cesium-menu__list-item {
  padding: 2px 4px;
  color: white;
  border-radius: 6px;
  font-size: 16px;
  align-items: center;
  align-self: center;
  min-width: 100px;
}
.cesium-menu__list-item.disabled {
  color: gray;
  pointer-events: none;
}
.cesium-menu__list-item:hover:not(.disabled) {
  background-color: #00FFFF;
}

/* Style for the separators */
.cesium-menu__list-separator {
  height: 1px;
  margin: 2px 0;
  background-color: #ccc;
  pointer-events: none; /* Prevent interaction with the separator */
  padding: 0; /* Remove padding */
}

.player {
  display: flex;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  color: #ffffff;
  flex-direction: column;
  justify-content: space-between;
  user-select: none;
  opacity: 1;
  transition: opacity 0.3s;
}

.player-nga {
  display: flex;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  color: #ffffff;
  flex-direction: column;
  justify-content: space-between;
  user-select: none;
  opacity: 1;
  transition: opacity 0.3s;
}

.player__header {
  display: flex;
  background-color: rgba(0, 0, 0, 0.44);
  justify-content: space-between;
  transition: opacity 0.5s;
  z-index: 1;
}

.player__header-left {
  display: flex;
}

.player__close-button {
  display: flex;
  padding: 10px;
  align-items: center;
}
@media screen and (min-width: 1366px), print {
  .player__close-button {
    padding: 14px;
  }
}

.player__select-target-select {
  margin: 0 10px;
}

.player__select-model-select {
  margin: 0 10px;
}

.player__header-right {
  display: flex;
}

.player__select {
  display: flex;
  align-items: center;
}

.player__button {
  display: flex;
  padding: 10px;
  align-items: center;
}
@media screen and (min-width: 1366px), print {
  .player__button {
    padding: 14px;
  }
}

.player__button-taglock {
  padding: 5px;
}

.player__button-taglock-auto-track {
  padding: 5px;
}

.player__button-move {
  display: none;
}
@media screen and (min-width: 960px), print {
  .player__button-move {
    display: flex;
  }
}

.player__body {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.player__body-labels {
  display: flex;
  height: 100%;
  align-content: space-between;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
}

.player__video {
  display: none;
  position: absolute;
  height: 100%;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.player__video--desktop-narrow {
  height: auto;
  width: 100%;
}

.plane__video {
  display: none;
  position: absolute;
}

.player__live-label {
  display: flex;
  position: absolute;
  margin: 4px;
  padding: 3px 6px;
  height: 10px;
  font-size: 8px;
  line-height: 1;
  letter-spacing: 0.5px;
  background-color: #e92929;
  border-radius: 3px;
  transition: transform 0.5s;
  align-items: center;
  z-index: 1;
}
@media screen and (min-width: 1366px), print {
  .player__live-label {
    padding: 7px 10px;
    height: 12px;
    font-size: 12px;
    letter-spacing: 1px;
  }
}
.player__live-label.hidden {
  display: flex;
  opacity: 0;
}

.player__selected_camera-label {
  display: flex;
  position: absolute;
  margin: 4px;
  padding: 3px 6px;
  height: 10px;
  font-size: 8px;
  line-height: 1;
  letter-spacing: 0.5px;
  border-radius: 3px;
  transition: transform 0.5s;
  background-color: #008e9b;
  align-items: center;
  z-index: 1;
  right: 0;
}
@media screen and (min-width: 1366px), print {
  .player__selected_camera-label {
    padding: 7px 10px;
    height: 12px;
    font-size: 12px;
    letter-spacing: 1px;
  }
}
.player__selected_camera-label.hidden {
  display: flex;
  opacity: 0;
}
.player__selected_camera-label:empty {
  display: none;
}

.player__body-labels-ai {
  display: flex;
  margin: 4px;
  font-size: 15px;
  letter-spacing: 1px;
  text-align: left;
  text-shadow: 0 0 5px #000000;
  align-items: flex-end;
  z-index: 1;
  padding-top: 30px;
}

.player__params-label {
  display: flex;
  margin: 4px;
  font-size: 15px;
  letter-spacing: 1px;
  text-align: left;
  text-shadow: 0 0 5px #000000;
  align-items: flex-end;
  z-index: 1;
}

.player__footer {
  display: flex;
  padding-top: 4px;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: space-between;
  transition: opacity 0.5s;
  z-index: 1;
}

.player__footer-left {
  display: flex;
  align-items: center;
}

.player__play-button {
  display: flex;
  padding: 10px;
  width: 14px;
  align-items: center;
}
@media screen and (min-width: 1366px), print {
  .player__play-button {
    padding: 14px;
  }
}

.player__pause-button {
  display: flex;
  padding: 10px;
  width: 14px;
  align-items: center;
}
@media screen and (min-width: 1366px), print {
  .player__pause-button {
    padding: 14px;
  }
}

.player__start-time {
  display: flex;
  width: 49px;
  font-size: 11px;
  align-items: center;
}
@media screen and (min-width: 1366px), print {
  .player__start-time {
    font-size: 12px;
  }
}

.player__footer-body {
  display: flex;
  width: 100%;
}

.player__playback-container {
  display: flex;
  position: relative;
  margin: 10px;
  width: 100%;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.player__playback-fragments {
  display: flex;
  position: absolute;
  left: 0;
  width: 100%;
  height: 5px;
  align-items: center;
  overflow: hidden;
}

.player__playback-fragments-fragment {
  position: absolute;
  width: 100%;
  #height: 5px;
  height: 10px;
  background-color: #1292e8;
  transform: translate3d(0, 0, 0);
  transform-origin: left;
}

.player__playback-fragments-fragment--2 {
  background-color: #1eff8d;
}

.player__playback-fragments-fragment--3 {
  background-color: #ff1e90;
}

.player__playback-fragments-fragment--4 {
  background-color: #ff8d1e;
}

.player__playback-telemetry-fragments {
  display: flex;
  position: absolute;
  top: 16px;
  left: 0;
  width: 100%;
  height: 5px;
  align-items: center;
  overflow: hidden;
}
.player__playback-telemetry-fragments .player__playback-fragments-fragment {
  background-color: #ffffff;
}

.player__playback-event-fragments {
  display: flex;
  position: absolute;
  #top: -5px;
  top: -10px;
  left: 0;
  width: 100%;
  #height: 5px;
  height: 10px;
  align-items: center;
  overflow: hidden;
}
.player__playback-event-fragments .player__playback-fragments-fragment {
  background-color: #ea0a2d;
}

.player__playback-bar {
  width: 100%;
  height: 5px;
  background-color: #707070;
  border-radius: 3px;
}

.player__playback-bar-progress {
  display: flex;
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  cursor: pointer;
}

.player__playback-time-label {
  position: absolute;
  top: -35px;
  left: -15px;
  font-size: 15px;
  transform: translate3d(-11px, -2px, 0);
  background-color: black;
}
@media screen and (min-width: 1366px), print {
  .player__playback-time-label {
    left: -20px;
    font-size: 12px;
  }
}

.player__playback-cursor {
  display: flex;
  position: absolute;
}

.player__detailed-playback-bar {
  display: flex;
  position: absolute;
  width: 100%;
  height: 5px;
  transform-origin: center;
  overflow: hidden;
  transition: opacity 0.5s;
}

.player__minute-lines {
  display: flex;
  position: absolute;
  width: 100%;
  height: 5px;
  align-items: center;
  justify-content: center;
  transition: transform 1s;
}

.player__minute-line {
  margin-right: 0.3675%;
  margin-left: 0.3675%;
  width: 1px;
  height: 5px;
  max-width: 1px;
  min-width: 1px;
  background-color: #ffffff;
}

.player__footer-right {
  display: flex;
  align-items: center;
}

.player__end-time {
  width: 49px;
  font-size: 11px;
}
@media screen and (min-width: 1366px), print {
  .player__end-time {
    font-size: 12px;
  }
}

.player__zoom-in-button {
  display: flex;
  padding: 10px;
  align-items: center;
}
@media screen and (min-width: 1366px), print {
  .player__zoom-in-button {
    padding: 5px;
  }
}

.player__control-buttons {
  display: flex;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  margin-right: 8px;
}
@media screen and (min-width: 1366px), print {
  .player__control-buttons {
    padding: 5px;
  }
}

.player__bottom-buttons {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
  align-items: center;
}
@media screen and (min-width: 1366px), print {
  .player__bottom-buttons {
    padding: 14px;
  }
}

.player__ai-hmn-button.active {
  background-color: #7AF5F5;
}

.player__ai-lpr-button.active {
  background-color: #7AF5F5;
}

.player__maximize-button {
  display: flex;
  padding: 10px;
  align-items: center;
}
@media screen and (min-width: 1366px), print {
  .player__maximize-button {
    padding: 14px;
  }
}

.player__minimize-button {
  display: flex;
  padding: 10px;
  align-items: center;
}
@media screen and (min-width: 1366px), print {
  .player__minimize-button {
    padding: 14px;
  }
}

.player__pointer-info-label {
  z-index: -1;
  position: absolute;
}

.player__footer-nav {
  display: flex;
  flex-direction: row-reverse;
  transition: opacity 0.5s;
  z-index: 1;
}

.player__footer-nav__ev-options {
  display: flex;
  flex-direction: row-reverse;
}
.player__footer-nav__ev-options .activator {
  padding: 1em;
  border-radius: 100%;
  cursor: pointer;
}
.player__footer-nav__ev-options .activator:hover {
  background: rgb(30, 33, 41);
}
.player__footer-nav__ev-options img {
  width: 100%;
  max-width: 25px;
}
.player__footer-nav__ev-options ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.player__footer-nav__ev-options nav {
  background: rgb(41, 46, 56);
  border-radius: 5em 0 0 5em;
  padding: 0.5em;
  clip-path: ellipse(50% 50% at 150% 50%);
}
.player__footer-nav__ev-options nav ul {
  display: flex;
}
.player__footer-nav__ev-options nav ul li a {
  display: block;
  padding: 0.5em;
  margin: 0 0.5em;
  border-radius: 50%;
}
.player__footer-nav__ev-options nav ul li a:hover {
  background: rgb(50, 56, 68);
}
.player__footer-nav__ev-options nav ul li a img {
  opacity: 0;
  transform: translateX(-10px);
}

.extract-recording {
  display: flex;
  flex-direction: column;
  transition: opacity 0.5s;
  z-index: 3;
}

.extract-recording__container {
  display: flex;
  padding: 0 14px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.75);
  justify-content: space-around;
  align-items: center;
}
@media screen and (min-width: 1366px), print {
  .extract-recording__container {
    padding: 0;
  }
}

.extract-recording__left {
  display: flex;
  font-size: 12px;
}
@media screen and (min-width: 1366px), print {
  .extract-recording__left {
    font-size: 16px;
  }
}

.extract-recording__right {
  display: flex;
  font-size: 12px;
}
@media screen and (min-width: 1366px), print {
  .extract-recording__right {
    font-size: 16px;
  }
}

.extract-recording__time {
  display: flex;
  align-items: center;
}

.extract-recording__time-text {
  display: flex;
  margin-right: 6px;
}
@media screen and (min-width: 1366px), print {
  .extract-recording__time-text {
    margin-right: 10px;
  }
}

.extract-recording__time-input {
  display: flex;
  width: 70px;
  color: #ffffff;
  font-size: 12px;
  background: transparent;
  border: 0;
}
@media screen and (min-width: 1366px), print {
  .extract-recording__time-input {
    width: 90px;
  }
}

.extract-recording-message {
  display: flex;
  padding: 0 10px;
  height: 50px;
  font-size: 13px;
  background-color: rgba(40, 167, 69, 0.75);
  align-items: center;
}

.extract-recording-message__close {
  display: flex;
  position: absolute;
  right: 0;
  padding: 18px 5px;
  align-items: center;
}
@media screen and (min-width: 1366px), print {
  .extract-recording-message__close {
    padding: 19px;
  }
}

.player__zoom {
  display: flex;
  margin-left: 5px;
}

.player__zoom-slider {
  display: flex;
  position: relative;
  width: 300px;
  margin: 10px;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}

.player-container.player-size-minimal .player__zoom-slider {
  width: 120px; /* Width when .player-container has the player-size-minimal class */
}

.player__zoom-slider-static-bar {
  display: flex;
  width: 100%;
  height: 6px;
  background-color: #e1e1e1;
  border-radius: 8px;
}

.player__zoom-slider-dynamic-bar {
  display: flex;
  width: 100%;
  position: absolute;
  height: 6px;
  background-color: #5c5f5e;
  border-radius: 8px;
  transform: scaleX(1);
  transform-origin: left;
}

.player__zoom-slider-circle {
  display: flex;
  position: absolute;
  transform: translateX(59px);
}

.player__audio {
  display: flex;
  margin-left: 5px;
}

.player__audio-icon {
  display: flex;
  margin-right: 10px;
  padding: 8px;
  border-radius: 6px;
}

.player__audio-icon--on {
  display: flex;
}

.player__audio-icon--off {
  display: flex;
}

.player__audio-volume {
  display: flex;
  position: relative;
  margin-right: 10px;
  align-items: center;
  justify-content: flex-start;
}

.player__audio-volume-static-bar {
  display: flex;
}

.player__audio-volume-dynamic-bar {
  display: flex;
  position: absolute;
  transform: scaleX(1);
  transform-origin: left;
}

.player__audio-volume-circle {
  display: flex;
  position: absolute;
  transform: translateX(59px);
}

.dot-marker {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  margin: -15px 0 0 -15px;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 100px;
  cursor: pointer;
}
.dot-marker__ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  margin: -50px 0 0 -50px;
  width: 100px;
  height: 100px;
  background-color: #ffffff;
  border-radius: 100px;
  box-shadow: 0 0 10px 5px #ffffff, 0 0 25px 12px #ffff00;
  opacity: 0;
  animation: ripple 1.8s infinite;
}
.dot-marker:hover .dot-marker__ripple {
  background-color: #aaaa00;
  box-shadow: 0 0 10px 5px #ffffff, 0 0 25px 12px #aaaa00;
}
.dot-marker__ripple:nth-child(2) {
  animation-delay: 0.3s;
}
.dot-marker__ripple:nth-child(3) {
  animation-delay: 0.6s;
}

.dot-marker__background {
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border-radius: 100px;
  box-shadow: 0 0 40px 20px #ffffff, 0 0 100px 50px #ffff00;
}
.dot-marker:hover .dot-marker__background {
  background-color: #ffffff;
  box-shadow: 0 0 40px 20px #ffffff, 0 0 100px 50px #aaaa00;
}

.dot-marker__text {
  display: flex;
  position: relative;
  top: 40px;
  width: auto;
  color: #ffffff;
  font-size: 13px;
  white-space: nowrap;
  justify-content: center;
}

@keyframes ripple {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.target-marker {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  margin: -15px 0 0 -15px;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 100px;
  cursor: pointer;
}
.target-marker__background {
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border-radius: 100px;
  box-shadow: 0 0 40px 20px #ffffff, 0 0 100px 50px #ffff00;
}
.target-marker:hover .target-marker__background {
  background-color: #ffffff;
  box-shadow: 0 0 40px 20px #ffffff, 0 0 100px 50px #aaaa00;
}

.target-marker__text {
  display: flex;
  position: relative;
  top: 30px;
  width: auto;
  color: #ffffff;
  font-size: 13px;
  white-space: nowrap;
  justify-content: center;
}

.player-marker-test {
  border: 1px solid #FF0000;
  position: absolute;
}

.player-object-marker {
  position: absolute;
}

.player-object-marker__text {
  position: absolute;
}

.player__object-container {
  position: absolute;
  height: 100%;
  width: 100%;
}

/*# sourceMappingURL=application_c2.744a1725.css.map */