* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -ms-content-zooming: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

:root{
    --zoom-scale: 1;
}

html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-family: "Kanit", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  background-color: #000;
  color: #fff;
}

a,
a:hover,
a:active,
a:visited {
  text-decoration: none;
  color: inherit;
}

.pt0 {
  padding-top: 0 !important;
}
.pb0 {
  padding-bottom: 0 !important;
}
.mt0 {
  margin-top: 0 !important;
}

#pano {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Link hotspot */

.link-hotspot {
  width: 18vmin;
  min-width: 80px;
  opacity: 0.9;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.link-hotspot-flex-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: translateX(-25%);
}
.link-hotspot-icon-wrapper {
  width: 10vmin;
  min-width: 65px;
  max-width: 80px;
  transition: transform 0.3s ease-in-out;
}

.no-touch .link-hotspot:hover {
  opacity: 1;
}

.no-touch .link-hotspot:hover .link-hotspot-icon-wrapper {
  transform: scale(1.1);
}

.mobile .link-hotspot {
  width: 11vmin;
  min-width: 45px;
  max-width: 55px;
}

.link-hotspot-icon {
  width: 100%;
  height: auto;
  cursor: pointer;
  filter: drop-shadow(0px 0px 6.5px rgba(0, 0, 0, 0.6));
}

.link-hotspot-title {
  width: fit-content;
  overflow-x: visible;
  text-wrap: nowrap;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 0 9.6px rgba(0, 0, 0, 0.7), 0 0 3.2px rgba(0, 0, 0, 0.9),
    0 0 6.4px rgba(0, 0, 0, 0.8);
  margin-bottom: 0.5rem;
  margin-top: -2rem;
  pointer-events: none;
}
.mobile .link-hotspot-title {
  font-size: 1.1rem;
}

/* Info hotspot */

.info-hotspot {
  width: 4.5vmin;
  min-width: 48px;
  cursor: pointer;
}
.mobile .info-hotspot {
  width: 3vmin;
  min-width: 30px;
}
.info-hotspot-flex-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: translateX(-25%);
}
.info-hotspot .info-hotspot-icon-wrapper {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

.no-touch .info-hotspot:hover .info-hotspot-icon-wrapper {
  transform: scale(1.1);
}

.info-hotspot .info-hotspot-icon {
  width: 100%;
  height: auto;
  filter: drop-shadow(0px 0px 6.5px rgba(0, 0, 0, 0.3));
}

.info-hotspot-title {
  width: fit-content;
  overflow-x: visible;
  text-wrap: nowrap;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 0 9.6px rgba(0, 0, 0, 0.7), 0 0 3.2px rgba(0, 0, 0, 0.9),
    0 0 6.4px rgba(0, 0, 0, 0.8);
  margin-top: 0.1rem;
  pointer-events: none;
}
.mobile .info-hotspot-title {
  font-size: 0.7rem;
  font-weight: 400;
}

.info-panel {
  width: max-content;
  text-align: center;
  line-height: 1.4;
  font-size: 1vmin;
  padding: 2vmin;
  border-radius: 7px;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px) brightness(110%);
  color: #fff;
  margin-left: 0.5vmin;
}
.mobile .info-panel {
  font-size: 1.7vmin;
}
.info-panel .bold {
  font-weight: 600;
}
.info-panel .underline {
  text-decoration: underline;
}
.info-text-wrapper {
  font-size: 2.2em;
}

/* Menu Bar */
svg {
  display: block;
}
.menu-wrapper {
  width: 100%;
  height: 100dvh;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.menu-bar {
  width: 100%;
  height: 5vmin;
  min-height: fit-content;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: start;
  background-color: #000;
  font-size: 1vmin;
  pointer-events: all;
}
.mobile .menu-bar {
  font-size: 1.7vmin;
  height: 8.5vmin;
}
.color-bar {
  width: 100%;
  height: 8.5%;
  min-height: 5px;
  display: flex;
}
.color-bar div {
  height: 100%;
}
.color-bar .yellow {
  background-color: #ffce00;
}
.color-bar .white {
  background-color: #fff;
}
.color-bar .light-green {
  background-color: #007934;
}
.color-bar .green {
  background-color: #026937;
}
.color-bar .xs {
  width: 3%;
}
.color-bar .sm {
  width: 8%;
}
.color-bar .md {
  width: 22%;
}
.color-bar .lg {
  width: 27%;
}

.menu-content {
  width: 100%;
  flex-grow: 1;
  min-height: fit-content;
  padding: 0.9em 1.7em;
  background: linear-gradient(
    180deg,
    rgba(19, 14, 9, 0.97) 19.79%,
    rgba(5, 5, 5, 0.85) 100%
  );
  display: flex;
  justify-content: start;
  align-items: center;
  position: relative;
}
.menu-logo-holder {
  height: 100%;
  padding: 0.2em;
}
.menu-logo {
  display: block;
  height: 100%;
  width: auto;
}
.lang-icon {
  display: flex;
  align-items: center;
  margin-right: 1.5em;
}
.lang-icon i {
  color: white;
  font-size: 2.3em;
  margin-right: 1vmin;
}
.lang-name {
  font-size: 2em;
  cursor: pointer;
  transition: color 0.2s ease;
}
.lang-name:hover {
  color: #ffce00;
}
.lang-name.active {
  color: #ffce00;
}
.lang-devider {
  font-size: 2em;
  margin-left: 0.7vmin;
  margin-right: 0.7vmin;
}
.menu-control {
  display: flex;
  align-items: center;
  margin-right: 1.5vmin;
  margin-left: -0.8em;
}
.menu-lang-holder {
  display: flex;
  align-items: center;
  margin-left: auto;
}

/* Language */
.lang-th .en {
  display: none;
}
.lang-th .th {
  display: block;
}
.lang-th span.th {
  display: inline;
}
.lang-th li.th {
  display: list-item;
}
.lang-en .en {
  display: block;
}
.lang-en span.en {
  display: inline;
}
.lang-en li.en {
  display: list-item;
}
.lang-en .th {
  display: none;
}
.lang-en svg .th{
    visibility: hidden;
}
.lang-th svg .en{
    visibility: hidden;
}
.lang-en svg .show .en{
    visibility: visible;
}
.lang-th svg .show .th{
    visibility: visible;
}
.mobile .menu {
  --s: round(nearest, 1.6em, 1px);
}
.menu {
  --s: round(nearest, 2.3em, 1px); /* control the size */
  --c: white; /* the color */

  height: var(--s);
  aspect-ratio: 1;
  border: none;
  padding: 0;
  border-inline: calc(var(--s) / 2) solid #0000;
  box-sizing: content-box;
  --_g1: linear-gradient(var(--c) 20%, #0000 0 80%, var(--c) 0) no-repeat
    content-box border-box;
  --_g2: radial-gradient(circle closest-side at 50% 12.5%, var(--c) 95%, #0000)
    repeat-y content-box border-box;
  background: var(--_g2) left var(--_p, 0px) top,
    var(--_g1) left calc(var(--s) / 10 + var(--_p, 0px)) top,
    var(--_g2) right var(--_p, 0px) top,
    var(--_g1) right calc(var(--s) / 10 + var(--_p, 0px)) top;
  background-size: 20% 80%, 40% 100%;
  position: relative;
  clip-path: inset(0 25%);
  mask: linear-gradient(90deg, #0000, #000 25% 75%, #0000);
  cursor: pointer;
  transition: background-position 0.3s var(--_s, 0.3s),
    clip-path 0s var(--_s, 0.6s);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.menu:before,
.menu:after {
  content: "";
  position: absolute;
  border-radius: var(--s);
  inset: 40% 0;
  background: var(--c);
  transition: transform 0.3s calc(0.3s - var(--_s, 0.3s));
}

.menu:checked {
  clip-path: inset(0);
  --_p: calc(-1 * var(--s));
  --_s: 0s;
}
.menu:checked:before {
  transform: rotate(45deg);
}
.menu:checked:after {
  transform: rotate(-45deg);
}
.menu:focus-visible {
  clip-path: none;
  mask: none;
  border: none;
  outline: 2px solid var(--c);
  outline-offset: 5px;
}
.menu-box {
  width: 23%;
  flex-grow: 1;
  margin-left: -23%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  transition: margin-left 0.3s ease;
  padding: 2.2vmin;
  text-shadow: 0 0 9.6px rgba(0, 0, 0, 0.7);
  overflow-y: auto;
  font-size: 1vmin;
  backdrop-filter: blur(20px) brightness(110%);
  pointer-events: all;
}
.mobile .menu-box {
  width: 80%;
  font-size: 1.7vmin;
  margin-left: -80%;
  padding: 5vmin;
}
.menu-box.show {
  margin-left: 0;
}
.menu-devider {
  width: 100%;
  height: 2px;
  background: #ffffff;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  margin-bottom: 1em;
  margin-top: 1em;
}
.control-holder {
  padding-bottom: 2em;
}
.control-icon {
  color: white;
  font-size: 2.5em;
  display: flex;
  align-items: center;
  padding-bottom: 0.7em;
  padding-top: 0.7em;
  transition: color 0.2s ease;
  cursor: pointer;
}
.control-icon div {
  font-size: 1em;
}
.control-icon i {
  margin-right: 1vmin;
}
.no-touch .control-icon:hover {
  color: #ffce00;
}
.control-icon.enabled {
  color: #ffce00;
}
.fullscreen-disabled #fullscreenToggle {
  display: none;
}
.zone-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding-top: 2em;
  padding-bottom: 2em;
}
.zone-list-title {
  font-size: 2.8em;
  font-weight: 600;
  padding-bottom: 0.8em;
  display: flex;
  align-items: center;
}
.zone-list-title span {
  text-decoration: underline;
}
.zone-list-title i {
  margin-right: 1vmin;
}
.zone-list-btn {
  font-size: 2.3em;
  display: flex;
  align-items: center;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  transition: color 0.2s ease;
  cursor: pointer;
}
.zone-list-btn:hover {
  color: #ffce00;
}
.zone-list-btn.active {
  color: #ffce00;
}
.zone-list-btn i {
  font-size: 1em;
  margin-right: 1vmin;
}
.zone-list-btn .fa-location-dot {
  display: none;
}
.zone-list-btn.active .fa-location-dot {
  display: block;
}
.zone-list-btn.active .fa-right-long {
  display: none;
}
.zone-list-btn .fa-right-long {
  display: block;
}
.sns-list {
  display: flex;
  padding-top: 2em;
}
.sns-icon {
  color: white;
  font-size: 3.5em;
}
.no-touch .sns-icon:hover {
  color: #ffce00;
}
.guide-btn{
    position: absolute;
    left: 0.8vw;
    bottom: -17vmin;
    z-index: 5;
    pointer-events: all;
    width: 5vmax;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0.7;
    transition: bottom 0.3s ease-out, transform 0.3s ease, opacity 0.3s ease;
}
.guide-btn.show{
    bottom: 0.8vh;
}
.mobile .guide-btn{
    width: 17vmin;
}
.no-touch .guide-btn:hover{
  transform: scale(1.1);
  opacity: 1;
}
.guide-btn img{
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}
.guide-holder{
    position: absolute;
    left: 1vw;
    bottom: 1vh;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.guide-holder.show{
    opacity: 1;
    visibility: visible;
}
.guide-video{
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}
.guide-video-wrapper{
    width: 15vmax;
}
.mobile .guide-video-wrapper{
    width: 20vmax;
}
.guide-close{
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.4);
    width: 2.3vmax;
    height: 2.3vmax;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 6;
    pointer-events: all;
}
.mobile .guide-close{
    width: 3vmax;
    height: 3vmax;
}

.map-holder{
    width: 22%;
    max-width: 97vw;
    position: absolute;
    right: 0;
    top: 9vmin;
    z-index: 5;
    display: flex;
    justify-content: start;
    align-items: start;
    color: rgba(2, 105, 55, 1);
    filter: drop-shadow(0px 0px 0.8vmax rgba(0, 0, 0, 0.4));
    transition: width 0.5s ease, right 0.3s ease, top 0.3s ease;
    --zoomist-zoomer-button-size: 3vmin;
    --zoomist-wrapper-bg-color: white;
}
.map-holder.hide{
    right: -22%;
}
.map-holder.enlarge{
    width: 100%;
}
.mobile .map-holder{
    width: 90%;
    top: 14vmin;
    --zoomist-zoomer-button-size: 3vmax;
}
.mobile .map-holder.hide{
    right: -90.5%;
}
.map-toggle{
    font-size: 2vmin;
    padding: 1vmin;
    width: 2.5vmax;
    margin-left: -2.5vmax;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.mobile .map-toggle{
    font-size: 4vmin;
    padding: 10px;
    width: 38px;
    margin-left: -38px;
}
.map-inner-holder{
    width: 100%;
    max-height: 87dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    position: relative;
    background-color: white;
    border-bottom-left-radius: 8px;
    padding: 1.3vmin;
    overflow: hidden;
}
.mobile .map-inner-holder{
    max-height: 84dvh;
}
.map-wrapper{
    width: 100%;
    height: 100%;
    background-color: white;
    overflow: hidden;
}
.map-holder .zoom-control{
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    z-index: 6;
}
.map-holder .zoom-control-btn{
    font-size: 2vmin;
    color: rgba(2, 105, 55, 1);
    padding: 1.2vmin;
    background-color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}
.map-svg-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.map-wrapper svg{
    width: 100%;
    height: auto;
    max-height: 77dvh;
    object-fit: contain;
    object-position: center;
    overflow: hidden;
}
.zoom-step1{
    --zoom-scale: 1.3;
}
.zoom-step2{
    --zoom-scale: 1.6;
}
.zoom-step3{
    --zoom-scale: 1.9;
}
.zoom-step4{
    --zoom-scale: 2.5;
}
.zoom-step5{
    --zoom-scale: 3;
}
.map-maximize, .map-minimize{
    font-size: 1.5vmin;
    cursor: pointer;
}
.mobile .map-maximize, .mobile .map-minimize{
    display: none;
}
.map-maximize i, .map-minimize i{
    margin-right: 0.8vmin;
}
.map-maximize.hide, .map-minimize.hide{
    display: none;
}

.map-zone .show{
    visibility: visible;
}
.map-zone{
    visibility: hidden;
}
.map-zone .map-btn{
    cursor: pointer;
}
.map-zone.show .map-btn{
    visibility: visible;
}

.map-btn.pin.active {
  animation: blink-effect 1s infinite;
}

@keyframes blink-effect {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(0.5);
  }
  100% {
    filter: brightness(1);
  }
}