#form2 {
	display:none;
}
.login__progress {
	color: var(--color-8);
	font-size: 1rem;
	text-align: center;
	width: 20rem;
	max-width: 20rem;
	margin-inline: auto;
}

#progress {
	padding:0px;
	height:4px;
}

.form {
	position: relative;
}

#form1 {
	left:0px;
}

#form2 {
	left:1000px;
	display: none;
}

.lifted {
	box-shadow:0 0 1.2em 0 #d9dce3;
	border:1px solid #d8d8d8;
}

.arriving {
	box-shadow:0 0 1.2em 0 #d9dce3;
	border:1px solid #d8d8d8;
}

.progdiv {
	height:40px;
	text-align:left;
}

#progress {
	padding-top: 10px;
	height:12px;
}

.left {
	float:left;
}

.right {
	float:right;
}

/* vars
-------------------------------------------------------------*/
:root {
  --color-1: #457cf6;
  --color-2: #ffffff;
  --color-3: #f0f0f0;
  --color-4: #66bb7a;
  --color-5: #ca9747;
  --color-6: #f7f7f7;
  --color-7: #b98430;
  --color-8: #888888;
  --color-9: #f5f5f5;
  --color-10: #dddddd;
  --color-11: #003399;
  --color-12: #cc9900;
  --color-13: #e2e2e2;
  --color-14: #fdf3ba;
  --color-15: #fdf3ba50;
  --color-16: #cccccc;
  --color-17: #f4f7fd;
  --color-18: #ff0701;
  --color-19: #199fd1;
  --color-20: #c08b38;
  --color-21: #777777;
  --color-22: #209c07;
  --color-23: #ab2bda;
  --color-24: #ff6633;
  --color-25: #f0f5ff;
  --color-26: #dfdfdf;
  --color-27: #d9ee4e;
  --color-28: #2964e7;
  --color-29: #000000;
}

/* reset
-------------------------------------------------------------*/
*,
*::after,
*::before {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
:focus {
  outline: 0;
}
:active {
  -webkit-tap-highlight-color: transparent;
}
:has(:target) {
  scroll-behavior: smooth;
  scroll-padding-top: 1rem;
}
::-moz-focus-inner {
  all: unset;
}
html {
  text-size-adjust: none;
  overscroll-behavior: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  line-height: 1.4;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "SFProDisplay", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}
header,
footer {
  flex: none;
}
main {
  flex-grow: 1;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}
img,
video,
picture {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
img {
  flex: none;
  height: auto;
  font-style: italic;
  shape-margin: 1rem;
  vertical-align: middle;
  background-size: cover;
  background-repeat: no-repeat;
}
img:not([src]) {
  visibility: hidden;
}
svg {
  width: 1em;
  height: 1em;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  user-select: none;
  fill: currentColor;
  pointer-events: none;
  display: inline-flex;
  flex-shrink: 0;
}
i.icon {
  display: inline-flex;
}
i.icon span {
  display: inline-flex;
}
a {
  text-decoration: none;
}
@media (pointer: fine) {
  a[href^="tel"] {
    pointer-events: none;
  }
}
a[href="javascript:void(0);"] {
  cursor: default;
}
table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
input,
select,
button,
textarea {
  border: 0;
  font: inherit;
  color: inherit;
  border-radius: 0;
  box-shadow: none;
  appearance: none;
  vertical-align: bottom;
  background-color: transparent;
}
button,
[role="button"] {
  cursor: pointer;
}
textarea {
  resize: none;
}
[type="number"] {
  -moz-appearance: textfield;
}
::-webkit-outer-spin-button,
::-webkit-inner-spin-button,
::-webkit-search-decoration,
::-webkit-search-cancel-button,
::-webkit-search-results-button,
::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
::-webkit-calendar-picker-indicator {
  opacity: 0;
  transform: scale(10);
}

/* .app
-------------------------------------------------------------*/
.app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: Arial;
  background-color: var(--color-3);
}

/* .container
-------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 120rem;
  padding: 1rem;
  margin-inline: auto;
}

@media (min-width: 50rem) {
  .container {
    padding: 2rem;
  }
}

.container__flex {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* .header
-------------------------------------------------------------*/
.header {
  background-color: var(--color-1);
}

.header__block {
  gap: 1rem;
  display: flex;
  align-items: center;
}

.header .container {
  gap: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: var(--color-2);
}

/* .main
-------------------------------------------------------------*/
.main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* .logo
-------------------------------------------------------------*/
.logo {
  display: inline-flex;
}

.logo svg {
  width: calc(218em / 47);
  font-size: 2.9375rem;
  color: var(--color-2);
}

/* .divider
-------------------------------------------------------------*/
.divider {
  flex: none;
  width: 0.0625rem;
  height: 2rem;
  background-color: currentColor;
}

/* .caption
-------------------------------------------------------------*/
.caption {
  color: var(--color-2);
  font-size: 1.125rem;
  font-weight: normal;
  text-transform: uppercase;
}

.caption:hover {
  text-decoration: underline;
}

/* .user
-------------------------------------------------------------*/
.user {
  gap: 0.5rem;
  display: flex;
  align-items: center;
  color: var(--color-2);
  transition: 0.3s;
}

.user svg {
  font-size: 1rem;
}

.user:hover {
  color: var(--color-27);
}

/* .section
-------------------------------------------------------------*/
.section {
  gap: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: var(--color-2);
}

.section__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  border-bottom: 0.0625rem solid var(--color-1);
}

.section__title {
  font-size: 1.125rem;
  text-transform: uppercase;
}

.section__top a {
  color: var(--color-1);
}

.section__top a:hover {
  text-decoration: underline;
}

.section__inactive {
  padding: 1rem;
  min-height: 24rem;
  border-radius: 0.5rem;
  background-color: var(--color-6);
}

.dashboard .section__top {
  border: 0;
}

.section__content {
  gap: 2rem 1rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.section__contentFlex {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  flex-direction: row;
}

.section__contentLeft,
.section__contentRight,
.section__contentCenter {
  min-width: 0;
}

.section__contentLeft,
.section__contentRight {
  gap: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 80rem) {
  .section__contentLeft,
  .section__contentRight {
    max-width: 13rem;
  }
}

@media (min-width: 80rem) {
  .section__contentRight {
    align-self: flex-start;
    padding-left: 1rem;
    border-left: 0.0625rem solid var(--color-10);
  }
}

.section__contentCenter {
  gap: 2rem 1rem;
  flex-grow: 1;
  display: flex;
}

@media (max-width: 61.9375rem) {
  .section__contentCenter {
    flex-direction: column;
  }
}

.section__contentColumn {
  gap: 1rem 2rem;
  display: flex;
  flex-direction: column;
}

.section__contentColumn:not(.section__contentGrow) {
  flex-shrink: 0;
}

.section__contentGrow {
  flex-grow: 1;
}

@media (max-width: 61.9375rem) {
  .section__contentGrow {
    order: 1;
  }
}

/* .tabGroup
-------------------------------------------------------------*/
.tabGroup {
  gap: 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* .tab
-------------------------------------------------------------*/
.tab {
  gap: 0.25rem;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 61.9375rem) {
  .tab {
    justify-content: flex-start;
  }
}

.tab__item {
  line-height: 1;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  transition: 0.3s;
}

.tab__item:not(.tab__itemActive):hover {
  background-color: var(--color-10);
}

.tab__itemActive {
  color: var(--color-2);
  cursor: not-allowed;
  background-color: var(--color-8);
}

/* .list
-------------------------------------------------------------*/
.list {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0.25rem;
  background-color: var(--color-9);
}

.list__caption {
  padding: 1rem;
  padding-bottom: 0.5rem;
  font-weight: bold;
}

.list__all {
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-bottom: 0.0625rem solid var(--color-10);
  transition: 0.3s;
}

.list__scroll {
  display: flex;
  flex-direction: column;
  max-height: 7.5rem;
  overflow: hidden auto;
  padding-block: 0.5rem;
}

.list__item {
  gap: 0.5rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0.25rem 1rem;
  transition: 0.3s;
}

.list__all:not(.list__active):hover,
.list__item:not(.list__active):hover {
  background-color: var(--color-10);
}

.list__item svg {
  font-size: 1rem;
}

.list__title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.list__active {
  cursor: not-allowed;
  color: var(--color-2);
  background-color: var(--color-8);
}

.list__active path {
  fill: var(--color-2);
}

.list__region {
  max-height: 40dvh;
}

.list__region .list__scroll {
  max-height: unset;
}

/* .dashboard
-------------------------------------------------------------*/
.dashboard {
  gap: 1rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 80rem) {
  .dashboard {
    gap: 2rem;
    display: grid;
    align-items: start;
    grid-template-columns: repeat(2, 1fr);
  }
}

.dashboard__column {
  gap: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 80rem) {
  .dashboard__column {
    gap: 2rem;
  }
}

/* .chart
-------------------------------------------------------------*/
.chart {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 40dvh;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 0.5rem;
  background-color: var(--color-3);
}

@media (min-width: 80rem) {
  .chart {
    aspect-ratio: 16 / 6;
  }
}

/* .chartPin
-------------------------------------------------------------*/
.chartPin {
  z-index: 1;
  position: absolute;
}

.chartPin::before {
  content: "";
  inset: -0.25rem -0.5rem;
  position: absolute;
}

.chartPin__icon {
  cursor: pointer;
  position: relative;
  filter: drop-shadow(0.0625rem 0.0625rem 0.125rem rgba(0, 0, 0, 0.5));
}

.chartPin__icon svg {
  width: calc(22.5em / 30);
  font-size: 2rem;
  transition: 0.2s;
}

.chartPin:hover .chartPin__icon svg {
  transform: scale(1.1);
}

.chartPin__count {
  display: flex;
  align-items: center;
  justify-content: center;
  top: -0.375rem;
  right: -0.375rem;
  min-width: 1rem;
  height: 1rem;
  color: var(--color-2);
  line-height: 1;
  font-size: 0.75rem;
  font-weight: bold;
  position: absolute;
  border-radius: 100%;
  background-color: var(--color-29);
}

.chartPin__dropdown {
  top: 84%;
  left: 74%;
  z-index: 9;
  width: max-content;
  min-width: 13.75rem;
  max-width: 16.25rem;
  overflow: hidden;
  position: absolute;
  border-radius: 0.25rem;
  background-color: var(--color-2);
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.2);
  transform: scale(0);
  transform-origin: top left;
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.chartPin:hover .chartPin__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: scale(1);
}

.chartPin__dropdownScroll {
  padding: 1rem;
  padding-top: 0;
  overflow: auto;
  max-height: 8.75rem;
}

.chartPin__dropdown th {
  top: 0;
  z-index: 1;
  position: sticky;
  text-align: left;
  font-weight: normal;
  background-color: var(--color-2);
}

.chartPin__dropdown th,
.chartPin__dropdown td {
  width: 100%;
  padding: 0.125rem 0.5rem;
}

.chartPin__dropdown th:first-child,
.chartPin__dropdown td:first-child {
  width: max-content;
  text-align: right;
  padding-inline: 0;
}

.chartPin__dropdown th:last-child {
  padding-inline: 0;
}

.chartPin__dropdown th {
  padding-top: 1rem;
  padding-bottom: 0.25rem;
}

.chartPin__dropdown td {
  border-top: 0.0625rem solid var(--color-13);
}

.chartPin__dropdown tbody td {
  color: var(--color-21);
}

.chartPin__dropdownExpand {
  display: flex;
  color: var(--color-21);
  min-width: 1rem;
  font-size: 1rem;
  transition: 0.2s;
}

.chartPin__dropdownExpand:hover {
  color: var(--color-29);
}

/* .networkCoverage
-------------------------------------------------------------*/
.networkCoverage {
  overflow: auto;
}

.networkCoverage tr td {
  padding: 1rem;
  line-height: 1.5;
  text-align: center;
}

.networkCoverage__title {
  color: var(--color-4);
  text-transform: uppercase;
}

.networkCoverage__value {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.networkCoverage__borders {
  border-left: 0.0625rem solid var(--color-4);
  border-right: 0.0625rem solid var(--color-4);
}

.networkCoverage__total {
  color: var(--color-2);
  border-radius: 0.25rem;
  background-color: var(--color-4);
}

.networkCoverage__total .networkCoverage__title {
  color: var(--color-2);
  text-transform: uppercase;
}

.networkCoverage__total .networkCoverage__value {
  color: var(--color-2);
  font-size: 3rem;
  margin-top: 0;
}

.networkCoverage__vertical tr {
  display: grid;
}

.networkCoverage__vertical .networkCoverage__borders {
  border: 0;
  border-top: 0.0625rem solid var(--color-4);
  border-bottom: 0.0625rem solid var(--color-4);
}

/* .reconcileScans
-------------------------------------------------------------*/
.reconcileScans {
  overflow: auto;
}

.reconcileScans tr td {
  line-height: 1.5;
  text-align: center;
  padding: 0.5rem 1rem;
}

.reconcileScans__caption {
  color: var(--color-7);
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 0.0625rem solid var(--color-5);
}

.reconcileScans__title {
  color: var(--color-7);
  text-transform: uppercase;
}

.reconcileScans__value {
  font-size: 1rem;
}

.reconcileScans__total {
  color: var(--color-2);
  border-radius: 0.25rem;
  background-color: var(--color-5);
}

.reconcileScans__total .reconcileScans__title {
  color: var(--color-2);
  text-transform: uppercase;
}

.reconcileScans__total .reconcileScans__value {
  color: var(--color-2);
  font-size: 3rem;
}

.reconcileScans__borders {
  border-left: 0.0625rem solid var(--color-5);
  border-right: 0.0625rem solid var(--color-5);
}

.reconcileScans__vertical tr {
  display: grid;
}

.reconcileScans__vertical .reconcileScans__borders {
  border: 0;
}

/* .table
-------------------------------------------------------------*/
.table {
  gap: 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.table th,
.table td {
  padding: 0.25rem 0.5rem;
}

.table th,
.table td {
  border-block: 0.0625rem solid var(--color-13);
}

.table th svg,
.table td svg {
  min-width: 0.875rem;
  transform: translateY(0.125rem);
}

.table thead th {
  cursor: pointer;
  line-height: 1.5;
  text-align: left;
  background-color: var(--color-9);
  transition: 0.3s;
}

.table thead th:not(.active):hover {
  background-color: var(--color-10);
}

.table thead th.active {
  color: var(--color-2);
  cursor: not-allowed;
  border-color: var(--color-8);
  background-color: var(--color-8);
}

.table thead th[colspan] {
  text-align: center;
  pointer-events: none;
}

.table thead th[rowspan] {
  vertical-align: bottom;
}

.table [align="center"] {
  text-align: center;
}

.table [align="center"] i {
  display: inline-flex;
  justify-content: flex-end;
  min-width: 3rem;
  max-width: 3rem;
  font-style: normal;
  margin-inline: auto;
  white-space: nowrap;
}

.table tbody tr {
  cursor: pointer;
  transition: 0.3s;
}

.table tbody tr:not(.active):hover {
  background-color: var(--color-15);
}

.table tbody tr.active {
  cursor: not-allowed;
  background-color: var(--color-14);
}

.table tfoot {
  font-weight: bold;
  border-top: 0.125rem solid var(--color-8);
}

.table__scroll {
  gap: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow: auto;
  max-height: 30dvh;
}

@media (min-width: 80rem) {
  .table__scroll {
    inset: 0;
    max-height: 60dvh;
    position: absolute;
  }
}

.table__scroll thead th {
  top: -0.0625rem;
  z-index: 1;
  position: sticky;
}

.table__scroll thead th.table__top28 {
  top: 1.75rem;
}

.table__caption {
  gap: 0.5rem;
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: bold;
  white-space: nowrap;
}

.table__caption span {
  height: 1.125rem;
  min-width: 0.0625rem;
  background-color: var(--color-16);
}

.table__bl {
  border-left: 0.0625rem solid var(--color-13);
}

.table__br {
  border-right: 0.0625rem solid var(--color-13);
}

.table textarea {
  width: 100%;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  border: 0.0625rem solid var(--color-16);
  background-color: var(--color-17);
}

.table__textoverflow {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 10rem;
}

.table__archived {
  gap: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  color: var(--color-1);
  cursor: pointer;
}

.table__archived:hover {
  text-decoration: underline;
}

.table__devices td:first-child {
  width: 30%;
}

/* .sort
-------------------------------------------------------------*/
.sort ul {
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.sort ul ul {
  padding-left: 1rem;
}

.sort li {
  list-style: none;
}

.sort label {
  gap: 0.5rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.sort label svg {
  font-size: 1rem;
  margin-right: -0.25rem;
}

.sort [type="radio"],
.sort [type="checkbox"] {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  border: 0.125rem solid var(--color-21);
}

.sort [type="radio"] {
  border-radius: 100%;
}

.sort [type="radio"]:checked {
  border-width: 0.375rem;
  background-color: var(--color-2);
}

.sort [type="checkbox"] {
  border-radius: 0.1875rem;
}

.sort [type="checkbox"]:checked {
  background-size: 75%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-21);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj4KICA8cGF0aCBmaWxsPSIjZmZmIiBkPSJNNDM4LjYgMTA1LjRjMTIuNSAxMi41IDEyLjUgMzIuOCAwIDQ1LjNsLTI1NiAyNTZjLTEyLjUgMTIuNS0zMi44IDEyLjUtNDUuMyAwbC0xMjgtMTI4Yy0xMi41LTEyLjUtMTIuNS0zMi44IDAtNDUuM3MzMi44LTEyLjUgNDUuMyAwTDE2MCAzMzguNyAzOTMuNCAxMDUuNGMxMi41LTEyLjUgMzIuOC0xMi41IDQ1LjMgMHoiIC8+Cjwvc3ZnPgo=");
}

@media (min-width: 48rem) {
  .sortMt48 {
    margin-top: 3rem;
  }
}

/* .area
-------------------------------------------------------------*/
.area {
  gap: 2rem;
  display: flex;
  align-items: flex-start;
}

.area__map,
.area__chart {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 28rem;
  border-radius: 0.5rem;
  background-color: var(--color-3);
}

/* .login
-------------------------------------------------------------*/
.login {
  gap: 1.5rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 35rem;
  padding: 2rem;
  border-radius: 0.5rem;
  margin-inline: auto;
  background-color: var(--color-2);
}

@media (min-width: 50rem) {
  .login {
    margin-top: 2.5rem;
  }
}

.login__caption {
  font-size: 1.5rem;
  text-align: center;
}

.login__label {
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.login__title {
  color: var(--color-8);
  font-size: 1rem;
  text-align: center;
}

.login__input {
  width: 100%;
  max-width: 20rem;
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: 0.25rem;
  margin-inline: auto;
  border: 0.0625rem solid var(--color-26);
  background-color: var(--color-2);
  transition: background-color 0.3s;
}

.login__input:focus {
  outline: 0.0625rem solid var(--color-26);
}

.login__input:placeholder-shown {
  background-color: var(--color-25);
}

.login__button {
  display: inline-flex;
  align-items: center;
  height: 2.5rem;
  color: var(--color-27);
  font-size: 1.125rem;
  font-weight: bold;
  margin-top: 1rem;
  margin-inline: auto;
  padding-inline: 3.5rem;
  border-radius: 0.25rem;
  background-color: var(--color-1);
  transition: 0.3s;
}

.login__button:hover {
  background-color: var(--color-28);
}

.login__forgot {
  color: var(--color-28);
  text-align: center;
}

.login__forgot:hover {
  text-decoration: underline;
}

/* .dataGroup
-------------------------------------------------------------*/
.dataGroup {
  gap: 2rem;
  flex-grow: 1;
  display: grid;
}

@media (min-width: 80rem) {
  .dataGroup {
    grid-template-columns: 15rem 1fr;
  }
}

/* .data
-------------------------------------------------------------*/
.data {
  flex-grow: 1;
  position: relative;
}

@media (min-width: 80rem) {
  .data__absolute {
    gap: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    inset: 0;
    position: absolute;
  }
}
