body {
  overflow: hidden;
  margin: 0rem;
}

#walkthrough_container {
  display: none;
}

#menuPanel {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  display: none;
}

#startButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid #b6b6b6;
  color: white;
  font-family: sans-serif;
  cursor: pointer;
  font-size: 1.5rem;
}

#startButton:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

#loading {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
}

#loading img {
  height: 100vh;
  width: 100vw;
}

#progressBar {
  width: 100vw;
  height: 1.5rem;
  position: absolute;
  left: 0;
  bottom: 0;
}

#progress-truck {
  position: absolute;
  bottom: 1.25rem;
  left: -8vh;
}

#progress-percent {
  position: absolute;
  top: 0;
  left: 0;
  height: 3.5vh;
  width: 5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-weight: bold;
  font-size: 1.2vw;
}

#progress-truck img {
  height: 5vh;
  width: 8vh;
}

#annotationsPanel {
  position: absolute;
  top: 3.75rem;
  left: 0.25rem;
  width: auto;
  height: auto;
  color: white;
  font-family: monospace;
}

#annotationsPanel ul {
  padding: 0;
  list-style-type: none;
}

.annotationLabel {
  color: #ffffff;
  font-family: monospace;
  pointer-events: none;
  font-size: 1.0625rem;
}

.annotationDescription {
  color: #ffffff;
  font-family: monospace;
  pointer-events: none;
  font-size: 0.875rem;
  position: absolute;
  left: 1.5625rem;
  padding: 1em;
  width: 12.5rem;
  background: rgba(0, 0, 0, 0.66);
  border-radius: 0.5em;
  transition: opacity 0.5s;
  display: none;
}

.annotationButton {
  width: 10rem;
  height: 4.375rem;
  font-family: monospace;
  background-color: rgba(0.25, 0.25, 0.25, 0.5);
  color: white;
  text-align: left;
  padding-left: 1.25rem;
  cursor: pointer;
}

.logo {
  position: absolute;
  top: 5vh;
  right: 5vh;
  height: 4vh;
  width: 8vw;
}

.legend,
.transport,
.walk-through {
  position: absolute;
  bottom: 2vw;
  left: 2vw;
  width: 13vh;
  height: 13vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  display: none;
}

.legend img,
.transport img,
.walk-through img {
  height: 8vh;
  width: 8vh;
}

#legend-card {
  position: absolute;
  bottom: 10vw;
  left: 6vw;
  display: none;
}

#legend-card img {
  height: 45vh;
  width: 35vw;
}

.transport {
  left: 9vw;
}

#transport-card {
  position: absolute;
  bottom: 10vw;
  left: 12vw;
  height: 10vh;
  width: 60vw;
  padding: 3vh 2vw;
  background-color: #f1f1f1;
  border-radius: 1.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;
  border: 0.0625rem solid black;
}

#transport-card-close {
  position: absolute;
  bottom: calc(10vw + 13.5vh);
  left: 74.5vw;
  height: 0.8vw;
  width: 0.8vw;
  cursor: pointer;
  display: none;
}

#transport-card .view-container {
  border-radius: 0.8vw 0.8vh;
}

#transport-card .view-container img {
  height: 10vh;
  width: 11vw;
  cursor: pointer;
}

#transport-card .view-container p {
  margin-top: 0;
  cursor: pointer;
  color: rgb(154, 52, 52);
  text-align: center;
}

.legend p,
.transport p,
.walk-through p {
  font-size: 1vw;
  letter-spacing: 0.05vw;
}

.walk-through {
  left: unset;
  right: 2vw;
}

.walk-through .switch {
  position: relative;
  height: 8vh;
  width: 8vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.switch-casing {
  position: relative;
  height: 4vh;
  width: 100%;
  background-color: #f1f1f1;
  border-radius: 3vh;
}

.switch-casing #switch-slider {
  position: absolute;
  top: 0;
  left: 0;
  height: 4vh;
  width: 4vh;
  background-color: #c60023;
  border-radius: 4vh;
  transition-duration: 700ms;
}

.switch-casing #switch-slider-status {
  position: absolute;
  height: 4vh;
  width: 70%;
  font-size: 0.8vw;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  left: 3vh;
  font-family: Arial;
  font-weight: bold;
  transition-duration: 700ms;
}

#crosshair {
  position: fixed;
  top: calc(50vh - 0.6rem);
  left: calc(50vw - 0.6rem);
  height: 1rem;
  width: 1rem;
  border-radius: 100%;
  border: 0.3rem solid rgb(193, 57, 11);
  display: none;
}

@media (max-width: 43.75rem) {
  .logo {
    height: 4vh;
    width: unset;
  }

  #progress-percent {
    font-size: 2.6vw;
  }

  .legend {
    left: 2vw;
  }

  .legend p,
  .transport p,
  .walk-through p {
    font-size: 3vw;
    margin: 1vh 0 0;
  }

  #legend-card {
    bottom: 25vw;
    left: 15vw;
  }

  #legend-card img {
    height: 45vh;
    width: 85vw;
  }

  .transport {
    left: 23vw;
  }

  #transport-card {
    bottom: 26vw;
    left: 5vw;
    height: 20vh;
    width: 85vw;
    overflow-x: scroll;
    overflow-y: hidden;
  }

  #transport-card .view-container img {
    height: 20vh;
    width: 40vw;
    margin: 0 2vw;
  }

  #transport-card-close {
    bottom: calc(26vw + 25vh);
    left: 90.5vw;
  }

  #transport-card-close img {
    height: 2.5vw;
    width: 2.5vw;
  }

  .walk-through {
    left: 45vw;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gilroy-Light", sans-serif;
}

.seyon_logo {
  position: absolute;
  left: 2.5rem;
  top: 2.5rem;
}

.seyon_logo img {
  height: 3rem;
  width: auto;
}

.drawe {
  border-top: 0.0625rem solid #b4b4b4;
  border-left: 0.0625rem solid #b4b4b4;
  border-right: 0.0625rem solid #b4b4b4;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  width: 36.625rem;
  height: 3.2rem;
  /* height: 8.6875rem; */
  border-radius: 3.625rem 3.125rem 0rem 0rem;
  display: none;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
  transition: height 0.2s;
}

.drawe .drawer_icon {
  cursor: pointer;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer_icon img {
  width: 3.5rem;
  height: 3.5rem;
  transform: rotate(180deg);
}

.drawe .drawe_menu_container {
  width: 34rem;
  height: 100%;
  align-items: start;
  justify-content: space-evenly;
  display: none;
}

.drawe_menu_container .drawe_box {
  width: 6rem;
  height: 6rem;
  background-color: #d50c2c;
  display: flex;
  align-items: center;
  border-radius: 0.8rem;
  justify-content: center;
  cursor: pointer;
}

.drawe_menu_container .drawe_box,
.drawe_box .box_wrapper,
.drawe_logo_container {
  box-sizing: border-box;
}

.drawe_box .box_wrapper {
  width: 5.7rem;
  height: 5.7rem;
  background-color: #fff;
  border-radius: 0.8rem;
  border: 0.0625rem solid #0d2e87;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  vertical-align: middle;
  gap: 0.5rem;
}

.drawe_logo_container img {
  width: 1.6rem;
  height: 1.6rem;
}

.drawe_text {
  font-size: 0.7rem;
  color: #0d2e87;
  font-weight: 600;
  line-height: 1;
}

.drawer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 37.25rem;
  height: 2rem;
  background: #707070;
  border-radius: 3.625rem 3.125rem 0rem 0rem;
  z-index: 1;
  transition: height 0.3s;
}

.menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.menu img {
  cursor: pointer;
  width: 6rem;
  height: 6rem;
}

/* Styles for the tooltip container */

.help_container {
  display: none;
  background-color: #f4f4f4;
  position: fixed;
  bottom: 10rem;
  left: 43%;
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 1.625rem 1.125rem 1.625rem 1.625rem;
}

.help_arrows {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
}

.top_row {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.text_arrow {
  color: #747474;
  font-size: 0.8rem;
  text-align: center;
}

.bottom_row_keys {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 6rem;
  gap: 0.5rem;
  width: 4rem;
}

.bottom_row_keys:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 6rem;
  gap: 0.5rem;
  width: 4rem;

  margin-top: 0.85rem;
}

.bottom_row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* .bottom_left_clippath{
      position: absolute;
      width: 2.5rem;
      height: 4rem;
      background-color: #F4F4F4;
      bottom: -4rem;
      border-bottom-left-radius: 100%;
  
      clip-path: polygon(0 0, 70% 0,100% 100%,0% 100%) ;
   } */

.items .text {
  font-size: 0.5rem;
  color: #747474;
}

.bottom_row_keys .help-logo {
  width: 3.5rem;
  height: 3.5rem;
}

.top_row .help-logo {
  width: 3.5rem;
  height: 3.5rem;
}

.curve_bottom_left {
  width: 12.5rem;
  height: 12.5rem;
  background-color: red;
  border-bottom-left-radius: 50% 6.25rem;
}

.help_close_button {
  position: absolute;
  right: 1rem;
  top: 1rem;
  cursor: pointer;
}

.help_close_button img {
  width: 1rem;
  height: 1rem;
}

.help_button_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 1.25rem;
  grid-row-gap: 2rem;
  align-items: center;
  justify-content: center;
  padding: 2.3rem 1rem 0 1rem;
}

.walthrough_enable {
  background-color: #f4f4f4;
  padding: 0.5rem 1rem;
  border-radius: 0rem 1.5625rem 0rem 0rem;
  color: #be0000;
  font-weight: 600;
  font-size: 1.2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
}

/* Style the teleport container */
.teleport_container {
  width: 80%;
  height: 16rem;
  background: #393939;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 2.125rem;
  border-radius: 2.125rem;
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  border: 0.0625rem solid #707070;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* Center content vertically */
  overflow: hidden;
}

.teleport_container .help_close_button img {
  width: 1.5rem;
  height: 1.5rem;
}

/* Style the teleport carousel container */
#teleportCarousel {
  width: 90%;
  /* Occupy the entire width of the container */
  margin-top: 1.2rem;
  margin-left: 5rem;
  z-index: 1;
  box-sizing: border-box;
  overflow: hidden;
  opacity: 1;
}

/* Style individual teleport slides */
.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
}

.swiper-slide img.selected {
  border: 0.25rem solid red;
  /* Add a red border for the selected slide */
}

/* Style the logo images in the slides */
.swiper-slide img {
  width: 11.25rem;
  height: 11.25rem;
  border-radius: 1rem;
  cursor: pointer;
  border: 0.25rem solid white;
}

/* Style the name text in the slides */
.swiper-slide p {
  margin-top: 0.625rem;
  font-size: 1.5rem;
  color: white;
}

/* Style navigation buttons (optional) */
.swiper-button-next.custom-next-button::after,
.swiper-button-prev.custom-prev-button::after {
  width: 1.875rem;
  /* Adjust the width to control the button size */
  height: 1.875rem;
  /* Adjust the height to control the button size */
  background: white;
  /* Remove the default background */
  border: none;
  /* Remove the default border */
  padding: 0;
  /* Remove any padding */
  display: flex;
  /* Center the image horizontally and vertically */
  align-items: center;
  justify-content: center;
  display: none;
}

/* Style the custom navigation button images */
.swiper-button-next.custom-next-button img,
.swiper-button-prev.custom-prev-button img {
  width: 1.25rem;
  /* Make the image fit inside the button container */
  height: 2.875rem;
}

.box {
  width: 10rem;
  z-index: -1;
  height: 10rem;
  background-color: #f4f4f4;
  position: absolute;
  bottom: -2rem;
  left: 0;
  clip-path: polygon(0% 0%,
      100% 0%,
      100% 75%,
      31% 75%,
      42% 100%,
      11% 82%,
      0% 75%);
}

.hotspot_container {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  position: absolute;
  right: 10rem;
  height: auto;
  max-height: 100vh;
  width: 18rem;
  z-index: 1;
  padding: 1rem;
  overflow: scroll;
  display: none;
  border: 0.0625rem solid #b6b6b6;
  border-radius: 1rem;
}

.hotspot_container::-webkit-scrollbar {
  display: none;
}

.hotspot_container .hotspot_close_button {
  position: fixed;
  right: 25rem;
  width: 2rem;
  height: 2.5rem;
  background-color: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 1rem;
  border-bottom-left-radius: 0.5rem;
  border-top-left-radius: 0.5rem;
  border: 0.0625rem solid #b6b6b6;
  cursor: pointer;
}

.hotspot_close_button img {
  width: 1rem;
  height: 1rem;
}

.hotspot_container .expand {
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
}

.hotspot_container .expand img {
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
}

.hotspot_container .hotspot_title {
  padding: 0rem 0rem 1rem 0rem;
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0rem;

  font-weight: 600;
}

.hotspot_container .hotspot_metadescription {
  text-align: center;
  letter-spacing: 0rem;
  font-size: 1.1rem;
  line-height: 1.5;

  opacity: 0.8;
}

.hotspot_container .hotspot_image_container {
  max-width: 100%;
  max-height: 100%;
  padding: 0 0 1rem 0;
  display: none;
}

.hotspot_img {
  width: 100%;
  height: 12rem;
}

.hotspot_container .hotspot_description {
  padding: 0rem 0rem 1rem 0rem;
  text-align: left;
  letter-spacing: 0rem;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #000000;
  opacity: 0.8;
  display: none;
}

.video_image_placeholder {
  position: relative;
  display: none;
}

.video_image_placeholder .play_icon_container {
  position: absolute;
  top: 41%;
  left: 41%;
  cursor: pointer;
}

.play_icon_container img {
  width: 3rem;
  height: 3rem;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  z-index: 1;
  box-shadow: 0 1.25rem 1.5625rem -0.3125rem rgb(0 0 0 / 0.1),
    0 0.5rem 0.625rem -0.375rem rgb(0 0 0 / 0.1);
  display: none;
}

.modal video {
  width: 50rem;
  height: 30rem;
  border: none;
  object-fit: contain;
  overflow-clip-margin: content-box;
  overflow: clip;
}

.video_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  height: 100%;
  width: 100%;
}

.video_container .video_close {
  margin-bottom: 29rem;
}

.video_close img {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

@media (min-width: 20rem) {

  html,
  body {
    font-size: 0.25rem;
  }
}

@media (min-width: 30.0625rem) {

  html,
  body {
    font-size: 0.3125rem;
  }
}

@media (min-width: 40.0625rem) {

  html,
  body {
    font-size: 0.375rem;
  }
}

@media (min-width: 49.9375rem) {

  html,
  body {
    font-size: 0.4375rem;
  }
}

@media (min-width: 50rem) and (max-width: 64rem) {

  html,
  body {
    font-size: 0.5rem;
  }
}

@media (min-width: 64.0625rem) and (max-width: 80rem) {

  html,
  body {
    font-size: 0.625rem;
  }
}

@media (min-width: 80.0625rem) and (max-width: 96rem) {

  html,
  body {
    font-size: 0.75rem;
  }
}

@media (min-width: 96.0625rem) and (max-width: 112rem) {

  html,
  body {
    font-size: 0.875rem;
  }
}

@media (min-width: 112.0625rem) and (max-width: 128rem) {

  html,
  body {
    font-size: 1rem;
  }
}

@media (min-width: 128.0625rem) and (max-width: 160rem) {

  html,
  body {
    font-size: 1.125rem;
  }
}

@media (min-width: 160.0625rem) and (max-width: 240rem) {

  html,
  body {
    font-size: 1.25rem;
  }
}

/* ////--------------//// */