@font-face {
  font-family: "Montserrat Regular";
  src: url("montserrat_regular.4a781d87.ttf") format("truetype");
  /* Safari, Android, iOS */
}
@font-face {
  font-family: "Montserrat Bold";
  src: url("montserrat_bold.21325ae9.ttf") format("truetype");
  /* Safari, Android, iOS */
}
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: "Montserrat Regular";
  font-weight: bold;
  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 {
  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: 6px;
  height: 8px;
}

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

::-webkit-scrollbar-thumb {
  background-color: #707070;
}

::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: #373737;
}
.button.active {
  background-color: #000000;
}
.button.active * path, .button.active text, .button.active polygon {
  fill: #1292e8;
}
.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: #373737;
  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: #1292e8;
}

.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);
}

.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.8);
  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-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;
  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: #373737;
}
.info-panel__header:active {
  background-color: #282828;
}
.info-panel__header.active {
  background-color: #373737;
}

.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;
}

.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: #59c8e2;
}

.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-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: #373737;
}

.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: #373737;
}
.menu__body-options:active {
  background-color: #282828;
}
.menu__body-options.active {
  background-color: #373737;
}

.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__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-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;
}

.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;
}

.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__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;
}

.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: #373737;
}

.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: #373737;
}

.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 {
  display: flex;
  padding-right: 20px;
  padding-left: 20px;
  font-size: 9px;
  justify-content: space-between;
  align-items: center;
  width: 90%;
}

.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;
}

.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: #1292e8;
}

.player__ai-lpr-button.active {
  background-color: #1292e8;
}

.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: #1e2129;
}
.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: #292e38;
  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: #323844;
}
.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__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.f7c05f3f.css.map */