@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #262626;
  color: #fff;
}

img {
  max-width: 100%;
  max-height: 100%;
}

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

main.main article {
  max-width: 400px;
  margin: 3rem auto;
}

form .form-field {
  margin: 0.2rem 0;
  width: 100%;
}
form .form-field label {
  display: block;
  margin-bottom: 4px;
}
form .form-field input {
  width: 100%;
  padding: 8px;
  border-radius: 10px;
  font-size: clamp(16px, 1rem, 1rem);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgb(63.5, 63.5, 63.5);
  color: #f2f2f2;
  border-radius: 5px;
}
form .form-field .checkbox {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem 0.2rem;
}
form .form-field .checkbox input[type=checkbox] {
  margin-right: 8px;
  width: auto;
}
form .form-field .checkbox label {
  margin-bottom: 0;
}
form .form-button {
  padding: 1rem 0 0 0;
  display: flex;
  justify-content: flex-end;
}
form .form-button button {
  padding: 0.6rem 2rem;
  z-index: 999;
  border-radius: 5px;
  color: #fff;
  background: #478e7a;
  border: none;
  cursor: pointer;
}

aside.sidebar {
  position: fixed;
  left: 0;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  top: 0;
  bottom: 0;
  padding: 0;
  width: 0;
  z-index: 51;
  overflow: hidden;
  overflow-y: auto;
  background: linear-gradient(-35deg, #262626, rgb(25.25, 25.25, 25.25));
  transition: 0.3s ease-in-out;
  border-radius: 0 10px 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
aside.sidebar img {
  border-radius: 5px;
  margin-top: 1rem;
}
aside.sidebar a {
  color: #1473cd;
}
aside.sidebar h1 {
  margin-bottom: 0.8rem;
}
aside.sidebar h2,
aside.sidebar h3 {
  margin: 1.8rem 0 0.8rem 0;
}
aside.sidebar small {
  display: block;
  margin-top: 1rem;
}
aside.sidebar .layer-options button {
  margin: 5px;
}
aside.sidebar .checkbox-option {
  display: flex;
  padding: 5px 0;
  justify-content: space-between;
}
aside.sidebar p,
aside.sidebar a,
aside.sidebar li {
  font-size: 0.8rem;
}
aside.sidebar li p {
  white-space: nowrap;
}
aside.sidebar .sidebar-footer .buttons {
  padding: 1rem 0 1rem 0;
  display: flex;
  gap: 1rem;
}

.grid {
  display: grid;
}

.grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gap-1 {
  gap: 1rem;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
  gap: 2rem;
}

#map {
  height: 100dvh;
}

#link-to-image {
  display: none;
  padding: 0.4rem 0;
}

.video-container {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 80vw;
  max-width: 90vw;
  transform: translate(-50%, -50%);
  display: none;
  align-items: center;
  z-index: 99;
  justify-content: center;
}
.video-container #videoPlayer {
  border-radius: 10px;
  box-shadow: 3px 4px 6px rgba(0, 0, 0, 0.3);
  z-index: 100;
  width: auto;
  max-width: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.video-container button#closeVideo {
  position: absolute;
  z-index: 101;
  right: 1rem;
  top: 1rem;
  z-index: 110;
  font-size: 1.5rem;
  background: rgba(0, 0, 0, 0.4);
}

#weather-block {
  position: fixed;
  left: 1rem;
  bottom: 6vh;
  padding: 0.5rem 1rem;
  display: none;
  z-index: 50;
  background: #262626;
  border-radius: 15px;
}

button {
  background: #1473cd;
  padding: 8px 16px;
  border-radius: 5px;
  border: none;
  color: #fff;
  cursor: pointer;
}

button#open-menu {
  background: none;
  padding: 10px;
  position: fixed;
  left: 1rem;
  top: 1rem;
  font-size: 1.7rem;
  border: none;
  color: #fff;
  z-index: 51;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
button#open-menu:hover {
  transform: scale(1.05);
}

button:disabled,
button[disabled] {
  opacity: 0.8;
}
button:disabled:hover,
button[disabled]:hover {
  cursor: not-allowed;
}

.upload-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: fixed;
  padding: 1rem;
  right: 1rem;
  top: 1rem;
  z-index: 50;
}
.upload-links .upload-link {
  padding: 0.6rem 2rem;
  border-radius: 5px;
  color: #fff;
  background: #1473cd;
  text-decoration: none;
}

#image-360-dialog {
  width: 80vw;
  height: 80vh;
  background: black;
  outline: none;
  pointer-events: none;
}

#panorama {
  width: 100%;
  height: 100%;
  min-height: 500px; /* 🔥 Prevents it from collapsing */
  background-color: black; /* Debugging */
  position: relative;
}

dialog {
  position: fixed;
  z-index: 1000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  border-radius: 10px;
  padding: 0;
  width: 80vw;
  overflow: hidden;
  background: transparent;
  overflow-y: auto;
}
dialog .image-card {
  position: relative;
}
dialog .image-card img {
  width: 100%;
}
dialog .image-card p {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
}
dialog .info-title {
  color: #fff;
}

dialog#info-dialog,
dialog#statistics {
  background: #262626;
  color: #fff;
  padding: 2rem;
  width: 50vw;
}
dialog#info-dialog .dialog-title,
dialog#statistics .dialog-title {
  padding-bottom: 1rem;
}

dialog .close-dialog-button {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background: #262626;
  display: block;
  height: auto;
  padding: 0.6rem;
}
dialog .close-dialog-button i {
  color: #ffffff;
}

dialog#news {
  background: #262626;
  padding: 1rem;
  max-width: 90vw;
}
dialog#news h3 {
  color: #f2f2f2;
}
dialog#news ul {
  list-style: none;
}
dialog#news ul li {
  padding: 0.4rem 0;
}
dialog#news ul li h4 {
  color: #1473cd;
}

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

.cta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.7rem;
  border-radius: 5px;
  margin: 0.5rem 0;
  background: #1473cd;
}

.statistics-card {
  background: rgb(25.25, 25.25, 25.25);
  border-radius: 5px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
.statistics-card .card-title {
  padding: 1rem;
  text-align: center;
  border-top: 1px solid #262626;
}
.statistics-card .card-content {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.statistics-card .card-content p {
  font-size: 3rem;
}

ul {
  list-style: square;
  margin: 1rem;
}
ul li {
  margin: 0.5rem 0;
}

ol {
  margin: 1rem 1.5rem;
}
ol li {
  margin: 0.5rem 0;
}

ul.statistics,
ul.zone-details {
  list-style: none;
  margin: 1rem 0;
}
ul.statistics li,
ul.zone-details li {
  display: flex;
  justify-content: space-between;
  margin: 0.5rem 0;
  width: 100%;
  gap: 2rem;
  border-bottom: 1px solid rgb(63.5, 63.5, 63.5);
}

.loader {
  position: fixed;
  z-index: 1001;
  pointer-events: none;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
}
.loader #wifi-loader {
  --background: #62abff;
  --front-color: #41dc9e;
  --back-color: #c3c8de;
  --text-color: #d6d9df;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader #wifi-loader svg {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader #wifi-loader svg circle {
  position: absolute;
  fill: none;
  stroke-width: 6px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(-100deg);
  transform-origin: center;
}
.loader #wifi-loader svg circle.back {
  stroke: var(--back-color);
}
.loader #wifi-loader svg circle.front {
  stroke: var(--front-color);
}
.loader #wifi-loader svg.circle-outer {
  height: 86px;
  width: 86px;
}
.loader #wifi-loader svg.circle-outer circle {
  stroke-dasharray: 62.75 188.25;
}
.loader #wifi-loader svg.circle-outer circle.back {
  animation: circle-outer135 1.8s ease infinite 0.3s;
}
.loader #wifi-loader svg.circle-outer circle.front {
  animation: circle-outer135 1.8s ease infinite 0.15s;
}
.loader #wifi-loader svg.circle-middle {
  height: 60px;
  width: 60px;
}
.loader #wifi-loader svg.circle-middle circle {
  stroke-dasharray: 42.5 127.5;
}
.loader #wifi-loader svg.circle-middle circle.back {
  animation: circle-middle6123 1.8s ease infinite 0.25s;
}
.loader #wifi-loader svg.circle-middle circle.front {
  animation: circle-middle6123 1.8s ease infinite 0.1s;
}
.loader #wifi-loader svg.circle-inner {
  height: 34px;
  width: 34px;
}
.loader #wifi-loader svg.circle-inner circle {
  stroke-dasharray: 22 66;
}
.loader #wifi-loader svg.circle-inner circle.back {
  animation: circle-inner162 1.8s ease infinite 0.2s;
}
.loader #wifi-loader svg.circle-inner circle.front {
  animation: circle-inner162 1.8s ease infinite 0.05s;
}
.loader #wifi-loader .text {
  position: absolute;
  bottom: -40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: lowercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2px;
}
.loader #wifi-loader .text::before,
.loader #wifi-loader .text::after {
  content: attr(data-text);
}
.loader #wifi-loader .text::before {
  color: var(--text-color);
}
.loader #wifi-loader .text::after {
  color: var(--front-color);
  animation: text-animation76 3.6s ease infinite;
  position: absolute;
  left: 0;
}
@keyframes circle-outer135 {
  0% {
    stroke-dashoffset: 25;
  }
  25% {
    stroke-dashoffset: 0;
  }
  65% {
    stroke-dashoffset: 301;
  }
  80% {
    stroke-dashoffset: 276;
  }
  100% {
    stroke-dashoffset: 276;
  }
}
@keyframes circle-middle6123 {
  0% {
    stroke-dashoffset: 17;
  }
  25% {
    stroke-dashoffset: 0;
  }
  65% {
    stroke-dashoffset: 204;
  }
  80% {
    stroke-dashoffset: 187;
  }
  100% {
    stroke-dashoffset: 187;
  }
}
@keyframes circle-inner162 {
  0% {
    stroke-dashoffset: 9;
  }
  25% {
    stroke-dashoffset: 0;
  }
  65% {
    stroke-dashoffset: 106;
  }
  80% {
    stroke-dashoffset: 97;
  }
  100% {
    stroke-dashoffset: 97;
  }
}
@keyframes text-animation76 {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  50% {
    clip-path: inset(0);
  }
  100% {
    clip-path: inset(0 0 0 100%);
  }
}

.alert {
  position: fixed;
  left: 50%;
  bottom: 3vh;
  transform: translateX(-50%);
  padding: 1rem;
  border-radius: 5px;
  text-align: center;
}

.alert-error {
  background: rgba(209, 52, 37, 0.2);
  border: 1px solid rgba(209, 52, 37, 0.8);
}

/* From Uiverse.io by vinodjangid07 */
.cookies-card {
  width: 280px;
  height: fit-content;
  background-color: rgb(255, 250, 250);
  border-radius: 10px;
  border: 1px solid rgb(206, 206, 206);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
  gap: 15px;
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 101;
  font-family: Arial, Helvetica, sans-serif;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.066);
}
.cookies-card .cookie-heading {
  color: rgb(34, 34, 34);
  font-weight: 800;
}
.cookies-card .cookie-para {
  font-size: 11px;
  font-weight: 400;
  color: rgb(51, 51, 51);
}
.cookies-card .button-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cookies-card .cookie-button {
  width: 50%;
  padding: 8px 0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.cookies-card .accept {
  background-color: rgb(34, 34, 34);
  color: white;
}
.cookies-card .reject {
  background-color: #ececec;
  color: rgb(34, 34, 34);
}
.cookies-card .accept:hover {
  background-color: rgb(0, 0, 0);
}
.cookies-card .reject:hover {
  background-color: #ddd;
}
.cookies-card .exit-button {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.cookies-card .exit-button:hover {
  background-color: #ddd;
  color: white;
}
.cookies-card .svgIconCross {
  height: 10px;
}

@media screen and (max-width: 768px) {
  dialog#info-dialog {
    width: 95vw;
  }
  .upload-links a span {
    display: none;
  }
}

/*# sourceMappingURL=main.css.map */
