@import url(https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;400;800&display=swap);
.font-firacode {
  font-family: "Fira Code", monospace;
}
.font.raleway {
  font-family: "Raleway", sans-serif;
}

* {
  --theme: #0f172a;
  --theme-accent-a: #ffffff06;
  --theme-accent-b: #ffffff0d;
  --theme-accent-c: #ffffff10;
  --theme-btn-primary: #0ca5e9;
  --theme-muted: #94a3b8;
  --theme-muted-dark: #737f90;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  font-family: var(--font-sans);
}

body {
  background-color: var(--theme);
  margin: 0;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6,
p, a, label,
strong {
  color: var(--gray-1);
}

h3, h4, h5, h6 {
  margin: 0.5em 0;
}

a > svg {
  height: 1em;
}
a > svg path {
  fill: var(--theme-muted);
}

small {
  color: var(--theme-muted);
}
small.muted {
  color: var(--theme-muted-dark);
}

.vp-max {
  max-width: 100vw;
  max-height: 100vh;
  overflow: hidden;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.f-right {
  float: right;
}

.wrapp {
  position: relative;
  display: block;
  padding: 10px;
}

.muted {
  color: var(--theme-muted);
}

.muted-dark {
  color: var(--theme-muted-dark);
}

.no-decoration {
  text-decoration: none;
}

.float-right {
  float: right;
}

.select-all {
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
}

@-webkit-keyframes outline-ripple {
  0% {
    outline: auto;
    outline-offset: 2px;
    outline-width: 4px;
  }
  100% {
    outline: none;
  }
}

@keyframes outline-ripple {
  0% {
    outline: auto;
    outline-offset: 2px;
    outline-width: 4px;
  }
  100% {
    outline: none;
  }
}
.stContainer {
  position: relative;
  display: block;
  height: 100%;
  padding-inline: var(--size-fluid-2);
  padding-block: var(--size-fluid-1);
}

.container {
  padding-inline: var(--size-fluid-6);
}
@media only screen and (max-width: 768px) {
  .container {
    padding-inline: var(--size-fluid-1);
  }
}

.btn-border {
  display: inline-flex;
  white-space: nowrap;
  font-size: var(--font-size-fluid-1);
  font-weight: var(--font-weight-5);
  padding-inline: var(--size-6);
  padding-block: var(--size-1);
  color: var(--theme);
  border: var(--border-size-2) solid var(--theme);
  background-color: transparent;
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-2);
  transition: color 0.3s var(--ease-1), background-color 0.2s var(--ease-1), box-shadow 0.3s var(--ease-1);
}
.btn-border.btn-norad {
  border-radius: 0 !important;
}
.btn-border:hover {
  cursor: pointer;
  color: var(--gray-1);
  background-color: var(--theme);
  box-shadow: var(--shadow-3);
}
.btn-border:active {
  position: relative;
  inset-block-start: 2px;
  box-shadow: var(--shadow-1);
}

.btn-return {
  position: relative;
  display: block;
  font-size: 0.75em;
  font-weight: 400;
  float: right;
  text-decoration: none;
}

.stBtn {
  display: inline-block;
  font-family: inherit;
  font-size: 100%;
  font-weight: 500;
  padding: 0.25em 1em;
  color: rgba(0, 0, 0, 0.8);
  border: none transparent;
  background-color: #e6e6e6;
  text-decoration: none;
  border-radius: 2px;
  line-height: normal;
  white-space: nowrap;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-sizing: border-box;
}
.stBtn.c-primary {
  background-color: var(--theme-btn-primary);
  color: white;
}

section.landing-page {
  position: relative;
  display: block;
  width: 100vw;
  height: 100vh;
}
section.landing-page article {
  position: relative;
  height: 100%;
}
section.landing-page article .background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: var(--gradient-7);
}
@media only screen and (min-width: 768px) {
  section.landing-page article .background {
    border-radius: var(--radius-blob-1);
    box-shadow: var(--shadow-4), var(--inner-shadow-3);
    transform: translate(-20%, -15%);
    /*
    height: 50%;
    width: 85%;
    */
  }
}
section.landing-page article .content {
  position: absolute;
  top: 6rem;
  left: 10rem;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  section.landing-page article .content {
    top: 50%;
    left: 2rem;
    width: 90%;
    transform: translateY(-50%);
  }
}
section.landing-page article .content h1 {
  color: var(--theme);
  line-height: var(--font-lineheight-00);
  font-size: var(--font-size-6);
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  section.landing-page article .content h1 {
    font-size: var(--font-size-6);
  }
}
section.landing-page article .content h6 {
  position: relative;
  color: var(--gray-3);
  font-size: var(--font-size-2);
  margin: 4rem 0 var(--size-3) 0;
  transform: translateX(-25%);
  white-space: nowrap;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  text-transform: uppercase;
}
section.landing-page article .content h6::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 50%;
  background-color: var(--theme);
  border-radius: 1px;
}
section.landing-page article .content p {
  color: var(--gray-4);
  font-family: "Fira Code", monospace;
}
section.landing-page article .content .btn-group {
  display: inline-block;
  margin-top: 4rem;
}
section.landing-page article .content .btn-group button {
  margin-right: var(--size-4);
}

section.form-login {
  position: relative;
  display: block;
  height: 100vh;
  width: 100vw;
}
section.form-login .outer {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: var(--gradient-7);
}
section.form-login .outer .inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 16rem;
}
section.form-login .outer .inner h1 {
  color: var(--theme);
}
section.form-login .outer .inner input {
  outline-color: rgba(26, 32, 44, 0.5);
}
@media only screen and (min-width: 768px) {
  section.form-login {
    padding: 10vh 10vw;
  }
  section.form-login .outer {
    border-radius: var(--radius-blob-3);
    box-shadow: var(--inner-shadow-4);
  }
  section.form-login .outer .inner {
    width: 24rem;
  }
}

section.osm {
  position: relative;
  display: block;
  width: 100vw;
  height: 100vh;
}
section.osm #mapOverlay {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  min-height: 50vh;
  max-height: 100vh;
  z-index: 1000;
}
section.osm #mapOverlay .map-overlay {
  position: relative;
  display: block;
  height: 100%;
  margin: 16px;
}
section.osm #mapOverlay .map-overlay .inner {
  position: relative;
  display: block;
  height: 100%;
}
section.osm #mapOverlay .map-overlay .inner .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme);
  opacity: 0.75;
  z-index: 500 !important;
  border-radius: 10px;
}
section.osm #mapOverlay .map-overlay .inner .map-overlay-content {
  position: relative;
  display: block;
  padding: 8px;
  z-index: 1010;
  height: 100%;
}
section.osm #mapOverlay .map-overlay .inner .map-overlay-content h1 {
  margin-top: 0;
}
section.osm #mapOverlay .map-overlay .inner .map-overlay-content .map-overlay-body {
  max-height: 45vh;
  overflow: scroll;
  padding: 0 16px 0 0;
}
section.osm #mapOverlay .map-overlay .inner .map-overlay-content .map-overlay-body ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
section.osm #mapOverlay .map-overlay .inner .map-overlay-content .map-overlay-body ul li {
  padding: 6px 0;
  cursor: pointer;
  color: var(--gray-3);
}
section.osm #map {
  height: 100%;
}
section.osm #map .mapboxgl-popup .mapboxgl-popup-tip {
  border-top-color: var(--theme);
}
section.osm #map .mapboxgl-popup .mapboxgl-popup-content {
  background-color: var(--theme);
}
section.osm #map .mapboxgl-popup .mapboxgl-popup-content button {
  color: var(--gray-3);
}

.block {
  position: relative;
  display: block;
}
.block-fullscreen {
  min-width: 100vw;
  min-height: 100vh;
  padding: 0 0 2rem 0;
}

.block-1 {
  margin: 1em 0;
}

.block-2 {
  margin: 2em 0;
}

.block-3 {
  margin: 3em 0;
}

.block-4 {
  margin: 4em 0;
}

.block {
  margin: 0.5em;
  padding: 0.25em;
}
.block-dim {
  background-color: var(--theme-accent-c);
  border-radius: 6px;
}

.alert-wrapper {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  bottom: 0;
  right: 0;
  width: 384px;
}
.alert-wrapper .alert {
  position: relative;
  display: block;
  padding: 8px;
  margin: 8px 16px 8px 0;
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-3);
  z-index: var(--layer-important);
  transition: box-shadow 0.3s ease;
}
.alert-wrapper .alert:hover {
  box-shadow: var(--shadow-4);
}
.alert-wrapper .alert.alert-success {
  background-image: var(--gradient-30);
  border: 1px solid var(--teal-6);
}
.alert-wrapper .alert.alert-info {
  background-image: var(--gradient-22);
  border: 1px solid var(--blue-6);
}
.alert-wrapper .alert.alert-warning {
  background-image: var(--gradient-19);
  border: 1px solid var(--yellow-6);
}
.alert-wrapper .alert.alert-error {
  background-image: var(--gradient-20);
  border: 1px solid var(--red-6);
}
.alert-wrapper .alert button {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background: none;
  width: 20px;
  height: 20px;
  line-height: 20px;
  cursor: pointer;
}
.alert-wrapper .alert p {
  margin: 8px 0 0 0;
  color: black;
}

.article-flex {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

article.location-single {
  position: relative;
  display: block;
}
article.location-single .latest-enviroment-data {
  position: relative;
  display: flex;
  flex-direction: row;
  background-image: var(--gradient-24);
  padding: 48px;
  margin: 80px 0;
  border-radius: var(--radius-3);
  align-items: center;
  justify-content: space-around;
}
@media only screen and (max-width: 768px) {
  article.location-single .latest-enviroment-data {
    flex-direction: column;
  }
}
article.location-single .latest-enviroment-data div:nth-child(2) {
  margin: 16px;
}
article.location-single .latest-enviroment-data div .led-key {
  position: relative;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 3em;
  text-align: center;
  color: var(--gray-8);
}
article.location-single .latest-enviroment-data div .led-value {
  position: relative;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 4em;
  text-align: center;
  color: var(--gray-8);
}
article.location-multi {
  position: relative;
  display: block;
  width: calc(33.3333333333% - 32px);
  margin: 0 0 32px 0;
  border-radius: var(--radius-3);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  cursor: pointer;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
  article.location-multi {
    width: 100%;
  }
}
article.location-multi:hover {
  box-shadow: var(--shadow-4);
  transform: scale(1.01);
}
article.location-multi:hover .article-body {
  box-shadow: var(--inner-shadow-1) !important;
}
article.location-multi .article-header {
  position: relative;
  display: block;
  height: 128px;
  box-shadow: var(--inner-shadow-4);
}
article.location-multi .article-header img {
  position: relative;
  display: block;
  height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
article.location-multi .article-header .wave-divided-temperature {
  position: absolute;
  display: block;
  top: 8px;
  right: 8px;
  width: 64px;
  height: 64px;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-2);
}
article.location-multi .article-header .wave-divided-temperature span {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  padding: 1px 0;
  color: white;
}
article.location-multi .article-body {
  position: relative;
  display: block;
  padding: 16px 8px;
  background-color: var(--gray-9);
  background-image: var(--gradient-23);
  height: 100%;
  box-shadow: var(--inner-shadow-2);
  transition: box-shadow 0.3s ease;
}

table.stTable, th, td {
  border-collapse: collapse;
}

table.stTable {
  position: relative;
  width: 100%;
}
table.stTable thead tr th {
  border-block: 1px solid var(--theme-accent-b);
  color: white;
  padding: 8px 10px;
  text-align: start;
}
table.stTable tbody tr {
  position: relative;
}
table.stTable tbody tr:nth-child(odd) {
  background-color: var(--theme-accent-a);
}
table.stTable tbody tr::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: -4px;
  width: 4px;
  height: 100%;
  background-color: transparent;
}
table.stTable tbody tr.mark-red::after {
  background-color: var(--red-6);
}
table.stTable tbody tr.mark-green::after {
  background-color: var(--green-6);
}
table.stTable tbody tr.mark-yellow::after {
  background-color: var(--yellow-6);
}
table.stTable tbody tr.mark-blue::after {
  background-color: var(--blue-6);
}
table.stTable tbody tr.mark-teal::after {
  background-color: var(--teal-6);
}
table.stTable tbody tr td {
  border-bottom: 1px solid var(--theme-accent-b);
  color: var(--theme-muted);
  padding: 14px 10px;
}
table.stTable tbody tr td.end {
  text-align: end;
}

table.stTable-info {
  position: relative;
  width: 100%;
}
table.stTable-info tr {
  border-bottom: 1px solid var(--theme-accent-b);
}
table.stTable-info tr td {
  color: white;
  padding: 6px 10px;
}
table.stTable-info tr td:nth-child(2) {
  color: var(--theme-muted);
  text-align: end;
}

.paginator {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 1em 1.5em;
}

hr {
  border-color: var(--theme-accent-b);
  margin: 1rem 0;
}

form.stForm h3 {
  position: relative;
}
form.stForm h3::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: -1.45em;
  width: 0.25em;
  height: 0.25em;
  background-color: red;
  border-radius: 0.125em;
  transform: translateY(-50%);
}
form.stForm h3:hover::before {
  transform: translateY(-50%) scale(1.25);
}
form.stForm .form-row {
  position: relative;
  display: block;
  margin-block: 1em;
  padding-inline: 0.5em;
}
form.stForm .form-row-fluid {
  padding-inline: 0;
}
form.stForm .form-row label {
  position: relative;
  display: block;
  margin-block: 0.5em;
  color: white;
  text-transform: capitalize;
  font-weight: 500;
}
form.stForm .form-row input, form.stForm .form-row textarea, form.stForm .form-row select {
  position: relative;
  display: block;
  border: none;
  background-color: #162033;
  color: white;
  padding: 0.5em 0.75em;
  margin-block: 0.5em;
  border-radius: 0.25em;
  width: 100%;
}
form.stForm .form-row input::-moz-placeholder, form.stForm .form-row textarea::-moz-placeholder, form.stForm .form-row select::-moz-placeholder {
  color: var(--theme-muted);
  opacity: 1;
}
form.stForm .form-row input:-ms-input-placeholder, form.stForm .form-row textarea:-ms-input-placeholder, form.stForm .form-row select:-ms-input-placeholder {
  color: var(--theme-muted);
  opacity: 1;
}
form.stForm .form-row input::placeholder, form.stForm .form-row textarea::placeholder, form.stForm .form-row select::placeholder {
  color: var(--theme-muted);
  opacity: 1;
}
form.stForm .form-row input:disabled, form.stForm .form-row textarea:disabled, form.stForm .form-row select:disabled {
  border: 1px solid red;
}
form.stForm .form-row small, form.stForm .form-row strong {
  position: relative;
  display: block;
  margin-block: 0.5em;
}
form.stForm .form-row small span.char-len {
  float: right;
}
form.stForm .form-row input[type=checkbox] {
  display: inline;
  background-color: pink;
  width: initial;
}
form.stForm .form-row input[type=checkbox] ~ label {
  display: inline;
}
form.stForm .form-row .form-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 2/1;
  background-color: #162033;
  border-radius: 0.25em;
  overflow: hidden;
}
form.stForm .form-row .form-image img {
  position: relative;
  display: block;
  flex-shrink: 0;
  max-width: 100%;
  max-height: 100%;
  text-transform: uppercase;
  color: white;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 2em;
}
form.stForm .form-row .form-image .text-select-image {
  position: absolute;
  display: none;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
  text-transform: uppercase;
  color: white;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 2em;
}
form.stForm .form-row .form-image .text-select-image span.frame {
  position: relative;
}
form.stForm .form-row .form-image .text-select-image span.frame:nth-of-type(1) {
  top: -18px;
}
form.stForm .form-row .form-image .text-select-image span.frame:nth-of-type(2) {
  top: 10px;
}
form.stForm .form-row .form-image .edit-btn {
  position: absolute;
  top: 1em;
  right: 1em;
  display: block;
}
form.stForm .form-row .form-image .edit-btn button {
  margin: 0;
  padding: 0.5em;
  background-color: #162033;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  aspect-ratio: 1;
}
form.stForm .form-spacer {
  position: relative;
  display: block;
  margin: 4px 0;
}

.location-banner {
  position: relative;
  display: block;
  max-height: 300px;
  overflow: hidden;
}
.location-banner img {
  position: relative;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

div.stLogin {
  position: relative;
  display: block;
  width: 100vw;
  height: 100vh;
  /*
  background-image: radial-gradient(rgba(148, 163, 184, 0.01) 2px, transparent 2px);
  background-size: 32px 32px;
  background-color: rgba(0, 0, 0, 0);
  */
}
div.stLogin .the-form {
  position: relative;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 18em;
  aspect-ratio: 2/1;
  background-color: var(--theme-accent-a);
  padding: 2em 1.5em;
  border-radius: 6px;
}
div.stLogin .the-form h2 {
  text-align: center;
  margin: 0 0 1em 0;
}
div.stLogin .the-form input[type=password],
div.stLogin .the-form input[type=text] {
  width: 100%;
}
div.stLogin .the-form label {
  color: var(--theme-muted);
}
div.stLogin .the-form .spacer {
  margin-top: 1em;
}
div.stLogin .the-form button {
  color: var(--theme-muted);
  border-radius: 6px !important;
}
div.stLogin .the-form button:hover {
  color: white;
}

.stAlert {
  position: relative;
  display: block;
  margin: 1em 0;
  padding: 0.5em 1em;
  border-left: 4px solid var(--theme-muted);
  background-color: var(--theme-accent-a);
  border-radius: 4px;
}
.stAlert:last-of-type {
  margin: 1em 0 2em 0;
}
.stAlert.success {
  border-color: var(--teal-6);
}
.stAlert.info {
  border-color: var(--blue-6);
}
.stAlert.warning {
  border-color: var(--yellow-6);
}
.stAlert.error {
  border-color: var(--red-6);
}
.stAlert h1 {
  margin: 0;
}
.stAlert p {
  margin: 0.5em 0;
}
.stAlert .desmiss-btn {
  position: absolute;
  display: block;
  top: 0.5em;
  right: 1em;
  height: 1.5em;
  aspect-ratio: 1/1;
  transform: rotate(45deg);
  border-radius: 50%;
  cursor: pointer;
}
.stAlert .desmiss-btn::before, .stAlert .desmiss-btn::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--theme-muted);
  border-radius: 1px;
}
.stAlert .desmiss-btn::before {
  width: 2px;
  height: 100%;
}
.stAlert .desmiss-btn::after {
  width: 100%;
  height: 2px;
}

footer.st-footer {
  position: relative;
  display: block;
  height: 6em;
  bottom: 0;
  width: calc(100% - var(--size-fluid-2) * 2);
}
footer.st-footer div {
  line-height: 4em !important;
}

.st-navigation-btn {
  position: fixed;
  display: block;
  top: 1em;
  right: 4em;
  height: 2em;
  width: 2em;
  transition: transform 0.3s ease-in-out;
  z-index: calc(var(--layer-important) - 10);
  cursor: pointer;
  /*
  top: 1em;
  right: 4em;
  height: 2em;
  width: 2em;

  background-color: transparent;
  z-index: calc(var(--layer-important) - 10);

  span {
      position: relative;
      display: block;
      height: .2em;
      width: 100%;
      background-color: white;
      margin-block: 0.35em;
      border-radius: .1em;
      transition: all .3s ease;
  }

  &[data-state="true"] {
      span {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          margin: 0;

          &:nth-of-type(1) {
              transform: translateY(-50%) rotate(-45deg);
          };

          &:nth-of-type(2) {
              opacity: 0;
          };

          &:nth-of-type(3) {
              transform: translateY(-50%) rotate(45deg);
          };
      };
  };
  */
}
.st-navigation-btn span {
  display: block;
  position: relative;
  width: 2em;
  height: 0.1666666667em;
  background-color: white;
  border-radius: 0.0833333333em;
  transition: all 0.3s ease-in-out;
}
.st-navigation-btn span:nth-child(1) {
  margin: 0.25em 0 0 0;
}
.st-navigation-btn span:nth-child(2) {
  margin: 0.5em 0 0 0;
}
.st-navigation-btn span:nth-child(3) {
  margin: 0.5em 0 0.25em 0;
}
.st-navigation-btn[data-state=true] {
  transform: rotate(180deg);
}
.st-navigation-btn[data-state=true] span:nth-child(1) {
  transform: rotateZ(45deg) translate(0.4791666666em, 0.4583333333em);
}
.st-navigation-btn[data-state=true] span:nth-child(2) {
  opacity: 0;
  width: 0;
  margin-left: 50%;
}
.st-navigation-btn[data-state=true] span:nth-child(3) {
  transform: rotateZ(-45deg) translate(0.4791666666em, -0.4583333333em);
}

nav.st-navigation {
  position: fixed;
  top: -200%;
  width: 100vw;
  height: 100vh;
  transition: top 0.3s ease;
  background-color: var(--theme);
  z-index: calc(var(--layer-important) - 20);
}
nav.st-navigation ul {
  position: relative;
  height: 100%;
  width: 100%;
  padding-block: 6em;
}
nav.st-navigation ul li a {
  text-align: center;
  font-size: 2rem;
}
nav.st-navigation ul li a.active {
  color: white;
}
nav.st-navigation[data-is-visible=true] {
  top: 0;
}

section.st-hero-welcome {
  position: relative;
  display: block;
  height: 80vh;
  width: 100%;
}
section.st-hero-welcome .outer-wrapp {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
}
section.st-hero-welcome .outer-wrapp .backdrop {
  position: absolute;
  display: flex;
  justify-content: center;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
section.st-hero-welcome .outer-wrapp .backdrop img {
  position: relative;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /*
  @media only screen and (min-width: $SIZE_MD) {
      width: 100%;
  }

  @media only screen and (max-width: $SIZE_MD) {
      height: 100%;
  }
  */
}
section.st-hero-welcome .outer-wrapp .backdrop .img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #0f172a;
  background: linear-gradient(0deg, #0f172a 0%, rgba(15, 23, 42, 0.5004202365) 25%, rgba(15, 23, 42, 0.2511205166) 50%, rgba(15, 23, 42, 0) 100%);
}
section.st-hero-welcome .outer-wrapp .inner-wrapp {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
}
section.st-hero-welcome .outer-wrapp .inner-wrapp .content {
  position: relative;
  display: block;
  width: 50%;
  margin: auto;
  padding: 40vh 0 0 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  section.st-hero-welcome .outer-wrapp .inner-wrapp .content {
    width: 100%;
    padding: 40vh 2rem 0 2rem;
  }
}
section.st-hero-welcome .outer-wrapp .inner-wrapp .content small {
  text-transform: uppercase;
  color: #fff;
}
section.st-hero-welcome .outer-wrapp .inner-wrapp .content h1 {
  margin: 0.25em;
  font-size: 3rem;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
}

section.secondary-nav {
  position: relative;
  display: block;
  height: 2rem;
  width: 100%;
  background-color: #ffffff0f;
}
section.secondary-nav ul {
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  height: 100%;
}
section.secondary-nav ul li {
  position: relative;
  display: block;
}
section.secondary-nav ul li a {
  position: relative;
  display: block;
  font-size: 1em;
  line-height: 1em;
  margin: 0.5rem 1rem;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  color: #ffffff;
}

section.location-articles {
  position: relative;
  display: block;
  margin: 6rem 0 0 0;
}
section.location-articles .outer-wrapp {
  position: relative;
  display: block;
}
section.location-articles .outer-wrapp .articles {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-inline: 0.5rem;
}

article.location-card {
  position: relative;
  display: block;
  margin: 1rem;
  width: calc(33.3333333333% - 2rem);
}
article.location-card section.location-header {
  position: relative;
  display: block;
  height: 4rem;
  width: 100%;
  padding: 0.5rem;
  background-color: var(--theme-accent-a);
}
article.location-card section.location-header .location-title {
  position: relative;
  display: block;
  padding-inline: 0.5em;
}
article.location-card section.location-header .location-title h3 {
  font-size: 1.25em;
  line-height: 1.25em;
  margin: 0 0 0.2em 0;
}
article.location-card section.location-header .location-title small {
  font-size: 0.75em;
  line-height: 0.75em;
}
article.location-card section.location-header .location-temp {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  aspect-ratio: 1/1;
}
article.location-card section.location-header .location-temp .wave-divided-temperature {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
}
article.location-card section.location-header .location-temp .wave-divided-temperature span {
  display: block;
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 0.75em;
  line-height: 1.75em;
}
article.location-card section.location-header .location-temp span {
  font-family: "Fira Code", monospace;
}
article.location-card section.location-body {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
}
article.location-card section.location-body .location-thumb {
  position: relative;
  display: block;
}
article.location-card section.location-body .location-thumb img {
  position: relative;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mouse_scroll {
  display: block;
  margin: 0 auto;
  width: 24px;
  height: 100px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  opacity: 1;
}
.mouse_scroll.hidden {
  opacity: 0;
}

.m_scroll_arrows {
  display: block;
  width: 5px;
  height: 5px;
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: rotate(45deg);
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  margin: 0 0 3px 4px;
  width: 16px;
  height: 16px;
}

.unu {
  margin-top: 1px;
}

.unu, .doi, .trei {
  -webkit-animation: mouse-scroll 1s infinite;
  animation: mouse-scroll 1s infinite;
}

.unu {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-delay: alternate;
          animation-delay: alternate;
}

.doi {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-direction: alternate;
  animation-delay: 0.2s;
  animation-direction: alternate;
  margin-top: -6px;
}

.trei {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -webkit-animation-direction: alternate;
  animation-delay: 0.3s;
  animation-direction: alternate;
  margin-top: -6px;
}

.mouse {
  height: 42px;
  width: 24px;
  border-radius: 14px;
  transform: none;
  border: 2px solid white;
  top: 170px;
}

.wheel {
  height: 5px;
  width: 2px;
  display: block;
  margin: 5px auto;
  background: white;
  position: relative;
  height: 4px;
  width: 4px;
  border: 2px solid #fff;
  border-radius: 8px;
}

.wheel {
  -webkit-animation: mouse-wheel 0.6s linear infinite;
  animation: mouse-wheel 0.6s linear infinite;
}

@-webkit-keyframes mouse-wheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(6px);
  }
}
@keyframes mouse-wheel {
  0% {
    top: 1px;
  }
  25% {
    top: 2px;
  }
  50% {
    top: 3px;
  }
  75% {
    top: 2px;
  }
  100% {
    top: 1px;
  }
}
@-webkit-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
section.location-featured {
  position: relative;
  display: block;
  margin-block: 6rem;
}
section.location-featured .section-header {
  position: relative;
  display: block;
}
section.location-featured .section-header h2 {
  text-align: center;
  color: var(--theme-muted);
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  font-size: 2.124em;
}
section.location-featured .no-feature {
  text-align: center;
}
section.location-featured .featured-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-top: 4rem;
}
section.location-featured .featured-container article.location-feature {
  position: relative;
  display: block;
  width: 100%;
  height: 50vh;
  padding-block: 2rem;
}
@media only screen and (max-width: 768px) {
  section.location-featured .featured-container article.location-feature {
    height: auto;
  }
}
section.location-featured .featured-container article.location-feature .flex-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  section.location-featured .featured-container article.location-feature .flex-wrapper {
    flex-direction: column;
  }
}
section.location-featured .featured-container article.location-feature .flex-wrapper .featured-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37.5%;
  height: 100%;
  padding-inline: 2rem 4rem;
}
@media only screen and (max-width: 768px) {
  section.location-featured .featured-container article.location-feature .flex-wrapper .featured-content {
    width: 100%;
    padding-inline: 2rem;
  }
}
section.location-featured .featured-container article.location-feature .flex-wrapper .featured-content .text-content {
  position: relative;
  display: block;
  width: 100%;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
}
section.location-featured .featured-container article.location-feature .flex-wrapper .featured-content .text-content h3 {
  margin: 0;
  font-size: 2em;
}
@media only screen and (max-width: 768px) {
  section.location-featured .featured-container article.location-feature .flex-wrapper .featured-content .text-content h3 {
    text-align: center;
  }
}
section.location-featured .featured-container article.location-feature .flex-wrapper .featured-content .text-content p {
  margin-block: 2rem;
  color: var(--theme-muted);
}
@media only screen and (max-width: 768px) {
  section.location-featured .featured-container article.location-feature .flex-wrapper .featured-content .text-content p {
    text-align: center;
  }
}
section.location-featured .featured-container article.location-feature .flex-wrapper .featured-content .text-content .buttons {
  position: relative;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media only screen and (max-width: 768px) {
  section.location-featured .featured-container article.location-feature .flex-wrapper .featured-content .text-content .buttons {
    margin: 0 auto;
  }
}
section.location-featured .featured-container article.location-feature .flex-wrapper .featured-content .text-content .buttons .feature-btn {
  border: 1px solid var(--theme-accent-c);
  border-radius: 6px;
  transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  padding: 0.25em 1em;
  box-shadow: var(--shadow-1);
  text-decoration: none;
  text-transform: uppercase;
}
section.location-featured .featured-container article.location-feature .flex-wrapper .featured-content .text-content .buttons .feature-btn:not(:last-child) {
  margin: 0 1em 0 0;
}
section.location-featured .featured-container article.location-feature .flex-wrapper .featured-content .text-content .buttons .feature-btn:hover {
  border-color: var(--theme-accent-b);
}
section.location-featured .featured-container article.location-feature .flex-wrapper .featured-photo {
  position: relative;
  display: flex;
  justify-content: center;
  width: 62.5%;
  border-radius: 1em 0 0 1em;
  overflow: hidden;
  box-shadow: var(--shadow-4);
}
@media only screen and (max-width: 768px) {
  section.location-featured .featured-container article.location-feature .flex-wrapper .featured-photo {
    border-radius: 0 !important;
    width: 100%;
  }
}
section.location-featured .featured-container article.location-feature .flex-wrapper .featured-photo img {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.location-featured .featured-container article.location-feature:nth-child(even) .flex-wrapper {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  section.location-featured .featured-container article.location-feature:nth-child(even) .flex-wrapper {
    flex-direction: column;
  }
}
section.location-featured .featured-container article.location-feature:nth-child(even) .flex-wrapper .featured-content {
  padding-inline: 4rem 2rem;
}
@media only screen and (max-width: 768px) {
  section.location-featured .featured-container article.location-feature:nth-child(even) .flex-wrapper .featured-content {
    padding-inline: 2rem;
  }
}
section.location-featured .featured-container article.location-feature:nth-child(even) .flex-wrapper .featured-photo {
  border-radius: 0 1em 1em 0;
}

.st-btn {
  position: relative;
  display: inline-block;
  font-family: inherit;
  font-size: 100%;
  font-weight: 400;
  padding: 0.25em 1em;
  margin: 0 0.5em 8px 0;
  color: var(--theme-muted);
  background-color: transparent;
  border: 1px solid var(--theme-accent-b);
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-shadow: var(--shadow-1);
  transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.st-btn:hover {
  border-color: var(--theme-accent-a);
}
.st-btn.danger {
  border-color: var(--red-7);
}
.st-btn.warning {
  border-color: var(--yellow-5);
}

article.st-location-single {
  position: relative;
  display: block;
}
article.st-location-single .location-header {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 6.33;
  background: linear-gradient(90deg, #000, var(--theme));
}
@media only screen and (max-width: 768px) {
  article.st-location-single .location-header {
    aspect-ratio: 1.33;
  }
}
article.st-location-single .location-header .header-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  overflow: hidden;
}
article.st-location-single .location-header .header-backdrop .image {
  position: relative;
  display: flex;
  align-content: center;
}
article.st-location-single .location-header .header-backdrop .image img {
  position: relative;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
article.st-location-single .location-header .container {
  height: 100%;
}
article.st-location-single .location-header .container .text-content {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  height: 100%;
}
article.st-location-single .location-header .container .text-content h1 {
  margin: 0;
  font-size: 4em;
}
article.st-location-single .location-body {
  position: relative;
  display: block;
  background-color: var(--theme);
  padding-block: 4rem;
}
article.st-location-single .location-body .inner-body {
  position: relative;
  display: block;
}
article.st-location-single .location-body .inner-body .description {
  position: relative;
  display: block;
}
article.st-location-single .location-body .inner-body .latest-enviroment-data {
  position: relative;
  display: flex;
  flex-direction: row;
  background-image: var(--gradient-24);
  padding: 48px;
  margin: 80px 0;
  border-radius: var(--radius-3);
  align-items: center;
  justify-content: space-around;
}
@media only screen and (max-width: 768px) {
  article.st-location-single .location-body .inner-body .latest-enviroment-data {
    flex-direction: column;
  }
}
article.st-location-single .location-body .inner-body .latest-enviroment-data div:nth-child(2) {
  margin: 16px;
}
article.st-location-single .location-body .inner-body .latest-enviroment-data div .led-key {
  position: relative;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 3em;
  text-align: center;
  color: var(--gray-8);
}
article.st-location-single .location-body .inner-body .latest-enviroment-data div .led-value {
  position: relative;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 2em;
  text-align: center;
  color: var(--gray-8);
}

.st-modal {
  position: fixed;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 90vw;
  max-height: 100vh;
  aspect-ratio: 1.78;
  padding: 1rem;
  background-color: var(--theme);
  box-shadow: 0px 0px 16px 2px rgba(0, 0, 0, 0.75);
  outline: 1px solid var(--theme-accent-b);
  border-radius: 6px;
}
.st-modal:not([data-modal-state=CLOSED]) {
  display: block;
}
.st-modal .wrapper-outer {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.st-modal .wrapper-outer .wrapper-inner {
  position: relative;
  display: block;
  width: calc(100% - 2em);
  height: calc(100% - 2em);
  margin: 1rem;
}
.st-modal .wrapper-outer .wrapper-inner .close-btn {
  position: absolute;
  display: block;
  top: -2rem;
  right: -2rem;
  font-family: "Fira Code", monospace;
  font-size: 2em;
  line-height: 2rem;
  text-align: center;
  width: 2rem;
  height: 2rem;
  border: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
  color: white;
  cursor: pointer;
}
.st-modal .wrapper-outer .wrapper-inner .content {
  position: relative;
  display: block;
}
.st-modal .wrapper-outer .wrapper-inner .content .pure-g [class^=pure-u-] .pure-g [class^=pure-u-] {
  aspect-ratio: 1.51;
  padding: 0.5em;
}
.st-modal .wrapper-outer .wrapper-inner .content .pure-g [class^=pure-u-] .pure-g [class^=pure-u-][data-selected="1"] .g-image {
  outline-width: 4px;
}
.st-modal .wrapper-outer .wrapper-inner .content .pure-g [class^=pure-u-] .pure-g [class^=pure-u-] .g-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #162033;
  cursor: pointer;
}
.st-modal .wrapper-outer .wrapper-inner .content .pure-g [class^=pure-u-] .pure-g [class^=pure-u-] .g-image:hover {
  outline: auto;
  outline-offset: 0.25em;
}
.st-modal .wrapper-outer .wrapper-inner .content .pure-g [class^=pure-u-] .pure-g [class^=pure-u-] .g-image img {
  position: relative;
  display: block;
  flex-shrink: 0;
  max-width: 100%;
  max-height: 100%;
}
.st-modal .wrapper-outer .wrapper-inner .content .side-panel {
  position: relative;
  display: block;
  padding: 0.5em 0 0 0.5em;
}
.st-modal .wrapper-outer .wrapper-inner .content .side-panel .preview-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 1.78;
  margin: 0 0 1em 0;
}
.st-modal .wrapper-outer .wrapper-inner .content .side-panel .preview-image img {
  position: relative;
  display: block;
  flex-shrink: 0;
  max-width: 100%;
  max-height: 100%;
  color: white;
}
.st-modal .wrapper-outer .wrapper-inner .content .side-panel .metadata {
  position: relative;
  display: block;
}
.st-modal .wrapper-outer .wrapper-inner .content .side-panel .metadata .block-dim {
  position: relative;
  display: block;
}
.st-modal .wrapper-outer .wrapper-inner .content .side-panel .metadata .block-dim .stTable-info {
  position: relative;
  table-layout: fixed;
}
.st-modal .wrapper-outer .wrapper-inner .content .side-panel .metadata .block-dim .stTable-info tr td:nth-of-type(1) {
  white-space: nowrap;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.st-modal .wrapper-outer .wrapper-inner .content .side-panel .metadata .block-dim .stTable-info tr td:nth-of-type(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
