@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(25, 14, 63, 0.125);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #190e3f;
}

body {
  margin: 0;
  padding: 0;
}

#map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}

* {
  font-family: "Source Sans 3", sans-serif;
}

.marker {
  cursor: pointer;
  text-align: center;
  z-index: 1;
}

.marker.hidden {
  z-index: 0;
}

.marker .marker-label {
  display: block;
  background: #190e3f;
  padding: 0.2rem 0.675rem;
  margin-bottom: -0.6rem;
  transition: opacity 0.2s ease-in;
  opacity: 1;
  text-transform: uppercase;
  font-weight: 400;
  color: #cfcfea;
}

.place-label {
  color: #333;
}

.marker.hidden .marker-label {
  opacity: 0;
}

.marker img {
  background-size: cover;
  width: 60px;
  height: 60px;
}

/* Base popup styling */
.mapboxgl-popup {
  max-width: 300px;
  font: 12px/20px "Helvetica Neue", Arial, Helvetica, sans-serif;
  display: block !important;
}

/* Content container */
.mapboxgl-popup-content {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0;
  overflow: hidden;
}

/* Remove default close button */
.mapboxgl-popup-close-button {
  font-size: 18px;
  color: #333;
  top: 10px;
  right: 10px;
}

/* Style popup tip/pointer */
.mapboxgl-popup-tip {
  border-top-color: #fff;
  border-width: 8px;
}

.mapboxgl-popup-tip {
  display: none;
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.75rem; /* Reduced gap between buttons */
  margin: 0;
  padding: 0;
  position: fixed;
  bottom: 20px;
  width: fit-content;
  max-width: 90%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
}

.button {
  display: block;
  padding: 0.6rem 1.4rem;
  border: none;
  width: auto;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  color: #190e3f;
  background: #cfcfea;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.button.active {
  background: #190e3f;
  color: #cfcfea;
}

#popup-container {
  left: 0;
  height: 100vh;
  position: fixed;
  display: none;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}
#popup-container:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 8px);
  height: 5rem;
  background: linear-gradient(transparent, #fff);
}
#popup-container.has-scroll #popup-close {
  right: calc(1rem + 8px);
}

#popup-content {
  overflow-y: auto;
  position: relative;
}

#popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  background: #190e3f;
  color: #cfcfea;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  z-index: 1000;
  width: 2.5rem;
  height: 2.5rem;
}

#popup-close:before {
  content: "\e59b";
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  color: #cfcfea;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 1rem;
  opacity: 0.8;
  transform: translate(-50%, -50%);
  transition: font-size 0.2s ease-in-out;
}

#popup-close:hover:before {
  opacity: 1;
}

.custom-popup {
  display: none;
  width: 30vw;
  min-width: 30rem;
  height: 100vh;
  flex-direction: column;
}
.custom-popup.show {
  display: flex;
}
.custom-popup .custom-popup-image {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
  background: #000;
}
.custom-popup .custom-popup-image .marker-gallery {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: fadeIn 0.25s;
}
.custom-popup .custom-popup-image .marker-gallery .gallery-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.custom-popup .custom-popup-content {
  padding: 2rem;
  font-size: 1.125rem;
  font-weight: 300;
}
.custom-popup .custom-popup-content h3 {
  font-size: 2.5rem;
  line-height: 1.125;
  font-weight: 300;
  padding: 0;
  margin: 0 0 1rem;
  text-wrap: balance;
}
.custom-popup .custom-popup-content p {
  margin: 0 0 1rem;
}
.custom-popup .qr-code-container {
  padding: 1rem 3rem 5rem;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}
.custom-popup .qr-code-container .tooltip {
  padding: 1rem;
  background: #cfcfea;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  position: relative;
  max-width: 10rem;
  text-align: center;
}
.custom-popup .qr-code-container .tooltip:empty {
  display: none;
}
.custom-popup .qr-code-container .tooltip:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
  border: 0.75rem solid transparent;
  border-left-color: #cfcfea;
}

/* Slick */
button.slick-arrow {
  position: absolute;
  z-index: 100;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  font-size: 0;
  cursor: pointer;
  background: #cfcfea;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.125);
  height: 2.5rem;
  width: 2.5rem;
  transition: opacity 0.2s ease-in-out;
}

button.slick-prev {
  left: 1rem;
}

button.slick-next {
  right: 1rem;
}

button.slick-arrow:before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  font-size: 1rem;
  color: #190e3f;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

button.slick-prev:before {
  content: "\f053";
}

button.slick-next:before {
  content: "\f054";
}

.slick-list, .slick-track {
  width: 100%;
  height: 100%;
}

.slick-dots {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 3rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.375));
  margin: 0;
  width: 100%;
  display: flex;
  list-style: none;
  gap: 0.5rem;
  justify-content: center;
}
.slick-dots:not(:has(:nth-child(2))) {
  display: none;
}
.slick-dots li button {
  font-size: 0;
  border-width: 0;
  padding: 0;
  width: 2rem;
  height: 0.25rem;
  background: #cfcfea;
  opacity: 0.5;
}
.slick-dots li.slick-active button {
  opacity: 1;
}

/*# sourceMappingURL=style.min.css.map */
