body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background-color: #1a1a1a;
  color: #ffffff;
  font-family: 'Montserrat', 'PT Root UI Web', sans-serif;
  touch-action: pan-x pan-y;
  overflow: hidden;
}
a {
  color: #ffffff;
}
a.btn,
button {
  padding: 5px 10px 5px 10px;
  display: inline-block;
  font-size: 14px;
  border: 1px solid #006094;
  background-color: #006094;
  color: #ffffff;
  cursor: pointer;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
}
a.btn:hover,
button:hover {
  background-color: #ffffff;
  color: #006094;
}
.text-red {
  color: #ff0000;
}
.text-green {
  color: #01c142;
}
.text-blue {
  color: #0092d5;
}
.text-yellow {
  color: #e39808;
}
.text-purple {
  color: #aa2cd3;
}
.text-grey {
  color: #a4e130;
}
.container {
  width: 100%;
}
.auth-login {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
.auth-login__block {
  max-width: 350px;
  margin-top: 20vh;
}
.auth-login__logo {
  max-width: 100%;
}
.auth-login__logo img {
  width: 100%;
}
.auth-login__form {
  margin-top: 25px;
  padding: 15px 25px 20px 25px;
  box-sizing: border-box;
  background-color: #414141;
}
.auth-login__form label {
  font-size: 24px;
  margin: 0 0 10px 0;
  display: block;
  text-align: center;
}
.auth-login__form input {
  width: 100%;
  display: block;
  margin: 8px 0 8px 0;
  padding: 6px 8px 6px 8px;
  box-sizing: border-box;
  font-size: 18px;
}
.auth-login__form button {
  padding: 8px 10px 8px 10px;
  display: inline-block;
  font-size: 18px;
  border: 1px solid #006094;
  background-color: #006094;
  color: #ffffff;
  cursor: pointer;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  width: 100%;
}
.auth-login__form button:hover {
  background-color: #ffffff;
  color: #006094;
}
.auth-login__social {
  margin: 10px 0 10px 0;
  text-align: right;
}
.auth-login__error {
  color: #ff0000;
  font-size: 14px;
}
.main-area {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.main-map {
  width: 100%;
  height: 70%;
  position: relative;
}
.main-map--full {
  height: 100%;
}
.main-map__map {
  width: 100%;
  height: 100%;
}
.main-altitude {
  height: 30%;
  background-color: #000000;
  padding: 5px 10px 5px 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.content {
  display: flex;
  flex-direction: row;
  height: 100%;
}
.content-loader {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.content-loader i {
  font-size: 72px;
}
.content-loader span {
  margin: 10px 0 10px 0;
}
.content-tooltip {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10100;
  transition: 0.5s all;
}
.content-tooltip i {
  font-size: 72px;
}
.content-tooltip span {
  margin: 10px 0 10px 0;
  text-align: center;
}
.content-tooltip__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  border-radius: 12px;
  padding: 20px 25px 15px 25px;
  box-sizing: border-box;
}
.content-tooltip.hidden {
  display: none;
  transition: 0.5s all;
}
.content-nodata {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.content-nodata i {
  font-size: 72px;
}
.content-nodata span {
  margin: 10px 0 10px 0;
  text-align: center;
}
.content-nodata__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.59);
  border-radius: 12px;
  padding: 20px 25px 15px 25px;
  box-sizing: border-box;
}
.content-nodata.hidden {
  display: none;
  transition: 0.5s all;
}
.header__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 8px 15px 8px 15px;
  box-sizing: border-box;
}
.header__logo {
  width: 160px;
}
.header__logo img {
  width: 100%;
}
.filter {
  margin: 8px 0 8px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.filter select {
  font-size: 16px;
  padding: 6px 5px 6px 5px;
  box-sizing: border-box;
  border-radius: 0;
  border: 1px solid #414141;
  width: 100%;
  outline: none;
  color: #ffffff;
  background-color: #414141;
}
.filter input {
  font-size: 16px;
  padding: 6px 5px 6px 5px;
  box-sizing: border-box;
  border-radius: 0;
  border: 1px solid #414141;
  width: 100%;
  outline: none;
  color: #ffffff;
  background-color: #414141;
}
.filter-mode {
  margin-right: 7px;
}
.filter-option {
  flex: 1;
}
.tracker-device {
  margin: 8px 0 8px 0;
  background-color: #414141;
  padding: 8px 12px 8px 12px;
}
.tracker-device__header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.tracker-device__name {
  font-weight: bold;
}
.tracker-device__name small {
  font-weight: normal;
  opacity: 0.8;
}
.tracker-device-message {
  margin: 8px 0 0 0;
  padding: 8px 0 0 0;
  border-top: 2px solid #ffffff;
  font-size: 0.8em;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.tracker-device-message__icon {
  display: none;
  margin-right: 8px;
  font-size: 25px;
}
.tracker-device-message__data {
  display: none;
  flex: 1;
}
.tracker-device-message__placeholder {
  flex: 1;
}
.tracker-device-message__time {
  font-size: 12px;
}
.tracker-device-message__time small {
  font-weight: normal;
  opacity: 0.8;
}
.tracker-device-message__coordinates {
  font-size: 14px;
}
.tracker-device__hidden {
  opacity: 0.7;
}
.tracker-device__hidden .tracker-device-message {
  display: none;
}
.tracker-group {
  margin-bottom: 15px;
}
.tracker-group label {
  text-transform: uppercase;
  font-weight: bold;
}
.tracker-group label a:hover {
  color: #93bff6;
}
.tracker-group__hidden .tracker-device {
  display: none;
}
#infowindow {
  color: #000000;
}
.map-baloon {
  font-family: 'Montserrat', 'Arial', sans-serif;
}
.map-baloon-status {
  color: #ffffff;
  text-decoration: none;
  border: 1px solid #ef0707;
  border-radius: 3px 0 0 3px;
  padding: 2px 4px 1px 5px;
  margin: 2px 0 0px 0;
  display: inline-block;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
  line-height: 1.3em;
  background-color: #ef0707;
}
.map-baloon-status-red {
  background-color: #ef0707;
  border: 1px solid #ef0707;
}
.map-baloon-status-green {
  background-color: #047117;
  border: 1px solid #047117;
}
.map-baloon-button {
  color: #005396;
  text-decoration: none;
  border: 1px solid #bcdbf2;
  border-radius: 0 3px 3px 0;
  padding: 2px 4px 1px 5px;
  margin: 2px 0 0 0;
  display: inline-block;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
}
.map-baloon-button-red {
  color: #a9031f;
  border: 1px solid #ffbbbb;
}
.map-baloon-button-green {
  color: #035311;
  border: 1px solid #4fb765;
}
.map-baloon-button:hover {
  opacity: 1;
}
.map-point__device b {
  font-size: 16px;
}
.map-point__date {
  font-size: 14px;
}
.map-point__position {
  margin: 8px 0 8px 0;
  font-size: 20px;
  font-weight: 500;
  border-top: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
  padding: 8px 0 8px 0;
  box-sizing: border-box;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: stretch;
  align-items: center;
}
.map-point__position .icon {
  font-size: 32px;
  margin-right: 8px;
}
.map-point__altitude {
  margin: 5px 0 5px 0;
  font-size: 16px;
}
.map-point__altitude span {
  font-weight: 600;
}
.map-point__type span {
  font-weight: 500;
}
.map-point__course,
.map-point__content {
  margin-top: 8px;
}
.map-point__content {
  max-width: 200px;
}
.map-point__reporters ul {
  margin: 6px;
  padding: 0;
}
.map-point__reporters li {
  margin: 0 0 4px 0;
}
.map-point-option {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  justify-items: center;
  align-items: center;
}
.map-point-option a {
  outline: none;
  text-decoration: none;
  margin-right: 5px;
}
.map-point-option a:last-child {
  margin-right: 0;
}
.map-point__incorrect {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: center;
}
.map-point__incorrect a {
  flex: 1;
  text-align: center;
  opacity: 0.6;
  border-radius: 6px;
}
.map-point--incorrect {
  color: #ff0000;
}
.map-point__correction {
  display: flex;
  flex-direction: row;
}
.map-point__correction a {
  opacity: 0.8;
  text-align: center;
  padding: 5px 6px 5px 6px;
}
.map-point__correction a.active {
  border-color: #ff0000;
  color: #ff0000;
}
.map-point__correction a:hover {
  opacity: 1;
}
.map-point--copy {
  border: 1px solid #4272db;
  border-radius: 19px;
  padding: 8px 8px 8px 11px;
  text-align: center;
  flex: 1;
  margin: 8px 0 8px 0;
  text-decoration: none;
  color: #4272db;
  font-weight: 600;
  display: block;
  box-sizing: border-box;
  margin-right: 8px;
}
.map-point--yandex {
  background-color: #b91c00;
  color: #ffffff !important;
  border-radius: 100px !important;
  text-align: center;
  border: 0 !important;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-point--google {
  background-color: #4285f4;
  color: #ffffff !important;
  border-radius: 100px !important;
  text-align: center;
  border: 0 !important;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
}
.xdsoft_datetimepicker {
  z-index: 100000 !important;
}
.sidebar {
  position: relative;
  max-width: 350px;
  min-width: 350px;
  z-index: 100000;
}
.sidebar__header {
  width: 100%;
  padding: 6px 15px 6px 15px;
  box-sizing: border-box;
  background-color: #1a1a1a;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: stretch;
}
.sidebar--close {
  margin-left: 22px;
  display: none !important;
  font-size: 28px;
  padding-left: 8px;
  padding-right: 8px;
}
.sidebar__logo img {
  width: 100%;
}
.sidebar__block {
  padding: 6px 8px 6px 8px;
}
.sidebar-data {
  position: absolute;
  left: 0;
  right: 0;
  top: 70px;
  bottom: 50px;
  margin-bottom: 10px;
  overflow-y: scroll;
  background-color: #000000;
  padding: 5px 5px 5px 5px;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.sidebar-data::-webkit-scrollbar {
  display: none;
}
.sidebar-options {
  position: absolute;
  box-sizing: border-box;
  bottom: 0;
  background-color: #1a1a1a;
  height: 60px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: stretch;
  padding: 0 10px 0 10px;
}
.sidebar-options a {
  flex: 1;
  margin: 0 4px 0 4px;
  display: block;
  box-sizing: border-box;
  width: 100%;
  font-size: 18px;
  padding: 8px 0 8px 0;
  border-radius: 6px;
  text-decoration: none;
  background-color: #006094;
  color: #ffffff;
  text-align: center;
}
.sidebar-options--open {
  display: none !important;
}
.sidebar-options--refresh .default {
  display: block;
}
.sidebar-options--refresh .active {
  display: none;
}
.sidebar-options--refresh-active {
  background-color: #db7706 !important;
}
.sidebar-options--refresh-active .default {
  display: none;
}
.sidebar-options--refresh-active .active {
  display: block;
}
.sidebar-options--guest.copied {
  background-color: #00921b !important;
}
.area {
  display: flex;
  font-family: "Kelson Sans RU", "PT Root UI Web", "Arial", sans-serif;
  justify-content: stretch;
}
.area-left {
  width: 25%;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
.area-left::-webkit-scrollbar {
  width: 4px;
}
.area-left::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}
.area-left::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
.area-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
  padding-bottom: 10px;
}
.area-right {
  width: 30%;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
.area-right::-webkit-scrollbar {
  width: 4px;
}
.area-right::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}
.area-right::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
.logo {
  box-sizing: border-box;
  padding: 10px 10px 0 10px;
  width: 100%;
}
.logo img {
  width: 100%;
}
.clock {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  background-color: #1F1E1E;
  padding: 15px 15px 8px 15px;
  margin: 6px 6px 6px 6px;
  font-weight: 400;
  align-items: center;
  justify-content: space-between;
}
.clock > .time {
  font-size: 1.5vw;
  color: #F27A0A;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.clock > .time small {
  font-size: 1.2vw;
  color: #F27A0A;
}
.clock > .time > .timezone {
  margin-left: 10px;
  font-size: 1.2vw;
  color: #A6A6A6;
  display: inline-block;
}
.clock > .date {
  font-size: 1.2vw;
  color: #A6A6A6;
}
.platform {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
.device {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  margin: 10px 6px 3px 6px;
  background-color: #1F1E1E;
  font-weight: 400;
  align-items: center;
  justify-content: flex-start;
}
.device-id {
  background-color: #0371AE;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 8px 15px 4px 15px;
  font-weight: bold;
}
.device-name {
  padding: 3px 15px 0 15px;
  font-weight: 400;
  font-size: 1vw;
  color: #c1c1c1;
}
.telemetry {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #181818;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
}
.telemetry-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 90%;
  box-sizing: border-box;
  background-color: #1F1E1E;
  padding: 15px 15px 8px 15px;
  margin: 6px 6px 6px 6px;
}
.telemetry-item label {
  font-weight: 400;
  font-size: 1.1vw;
  margin-bottom: 8px;
  color: #BEE0FF;
}
.telemetry-item-value {
  font-size: 1.6vw;
  color: #F27A0A;
}
.telemetry-item-value i {
  color: #5d5d5d;
}
.telemetry-item small {
  font-size: 1.2vw;
  color: #A6A6A6;
}
.telemetry-item-values {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: stretch;
}
.telemetry-item-values__item {
  flex: 1;
  text-align: center;
}
.telemetry-item .relay {
  gap: 5px;
}
.telemetry-item .relay-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex: 1;
  border: 1px solid #ffffff;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 7px 0 3px 0;
  font-size: 1vw;
}
.telemetry-item .relay-item--active {
  border: 1px solid #00862f;
  background-color: #00862f;
}
.telemetry-item--half {
  min-width: 40%;
}
.telemetry-item--large span {
  font-size: 2vw;
}
.telemetry-item--large small {
  font-size: 1.4vw;
}
.map-online {
  height: 65%;
  min-height: 65%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #5d5d5d;
}
.map-online-small {
  height: 25%;
  min-height: 25%;
}
.console {
  font-family: "Courier New", "Courier", "Arial", sans-serif;
  padding: 10px 10px 15px 10px;
  box-sizing: border-box;
  overflow-y: scroll;
}
.console::-webkit-scrollbar {
  width: 4px;
}
.console::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}
.console::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
.console-data {
  font-size: 1vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1 1 auto;
}
.console-data-time {
  background-color: #2b2b2b;
  font-size: 12px;
  margin: 2px 0 3px 0;
  padding: 1px 3px 1px 3px;
}
.console-data-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin: 1px 0 1px 0;
}
.console-data-item__source {
  background-color: #2b2b2b;
  color: #F27A0A;
  font-weight: bold;
  padding: 2px 4px 2px 4px;
  border-radius: 4px;
}
.console-data-item__content {
  padding: 2px 4px 2px 4px;
  word-break: break-all;
  font-weight: bold;
  color: #c1c1c1;
}
.console-data-item__content.strato_telemetry {
  color: #4abce8;
}
.console-data-item__content.strato_telemetry_extra {
  color: #7696e7;
}
.console-data-item__content.strato_response {
  color: #fd5c68;
}
.chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  overflow-y: scroll;
  padding: 10px 10px 10px 10px;
  flex: 1;
  gap: 10px;
}
.chart::-webkit-scrollbar {
  width: 4px;
}
.chart::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}
.chart::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
.chart-item {
  background-color: #1F1E1E;
  width: 100%;
  box-sizing: border-box;
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 25%;
}
.chart-item-title {
  padding: 5px 8px 5px 8px;
  box-sizing: border-box;
}
.chart-item-title label {
  font-weight: 400;
  font-size: 1.1vw;
  margin-bottom: 8px;
  color: #BEE0FF;
}
.chart-item canvas {
  flex: 1;
  max-height: 80%;
}
.live-stream {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  box-sizing: border-box;
}
.live-stream iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 960px) {
  .area {
    flex-direction: column;
    overflow-y: scroll;
  }
  .area-left {
    width: 100%;
    min-height: initial;
    flex: 1;
    overflow: initial;
  }
  .area-center {
    min-height: 80%;
  }
  .area-right {
    width: 100%;
    min-height: 80%;
  }
  .telemetry-item label {
    font-size: 2.5vh;
  }
  .telemetry-item-value {
    font-size: 3vh;
    color: #F27A0A;
  }
  .telemetry-item-value i {
    color: #5d5d5d;
  }
  .telemetry-item small {
    font-size: 2vh;
    color: #A6A6A6;
  }
  .telemetry-item--large span {
    font-size: 4vh;
  }
  .telemetry-item--large small {
    font-size: 3vh;
  }
  .telemetry-item .relay-item {
    font-size: 1.5vh;
  }
  .chart-item-title label {
    font-size: 2vh;
  }
  .console-data {
    font-size: 1.3vh;
  }
  .console-data-item {
    flex-direction: column;
  }
  .console-data-item__source {
    width: 100%;
  }
  .console-data-item__content {
    font-size: 1.5vh;
  }
  .clock > .time {
    font-size: 3vh;
  }
  .clock > .time small {
    font-size: 2vh;
  }
  .clock > .time > .timezone {
    font-size: 2vh;
  }
  .clock > .date {
    font-size: 2.2vh;
    color: #A6A6A6;
  }
}
@media screen and (max-width: 960px) {
  .content {
    flex-direction: column;
    height: 100vh;
  }
  .main-altitude {
    padding-bottom: 60px;
  }
  .sidebar {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    position: fixed;
    top: 20%;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.3s all;
  }
  .sidebar.hidden {
    top: 100%;
    transition: 0.3s all;
  }
  .sidebar__header {
    border-radius: 12px 12px 0 0;
  }
  .sidebar__logo {
    height: 60px;
    flex: 1;
    display: flex;
    align-items: center;
  }
  .sidebar__logo img {
    width: auto;
    height: 50px;
  }
  .sidebar--close {
    margin-left: 8px;
    display: block !important;
  }
  .sidebar-options--open {
    display: block !important;
    background-color: #ffffff;
  }
}
