@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@100;200;300;400;500;600;700&display=swap");
:root {
  --tv-bg-glass: rgba(255, 255, 255, 0.9);
  --tv-accent: #82b92e;
  --tv-text: #1a1a1a;
  --tv-text-light: #666;
  --tv-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --tv-radius: 50px;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

#smooth-wrapper, #smooth-content {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* LOADING SCREEN */
.tv-loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.6s ease;
  pointer-events: auto;
}

.tv-loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(130, 185, 46, 0.2);
  border-top-color: #82b92e;
  border-radius: 50%;
  animation: tv-spin 1s linear infinite;
}

@keyframes tv-spin {
  to {
    transform: rotate(360deg);
  }
}
/* IFRAME DE MATTERPORT (hermano del contenedor, por debajo) */
#myMatterport {
  position: fixed;
  top: 0;
  left: 0;
  width: 20%;
  height: 100vh;
  height: 100dvh;
  border: none;
  z-index: 998;
  display: block;
  background: #000;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
#myMatterport.expanded {
  width: 100%;
}

@media (max-width: 992px) {
  #myMatterport {
    width: 10px;
  }
  #myMatterport.expanded {
    height: calc(100vh + 44px);
    height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom) + 44px);
    height: calc(100dvh + 44px);
  }
}
/* CONTENEDOR DE UI (por encima del iframe) */
.tour-virtual-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  width: 100dvw;
  height: 100vh;
  height: 100dvh;
  background: transparent;
  z-index: 999;
  overflow: hidden;
  pointer-events: none;
}
@supports (height: 100dvh) {
  .tour-virtual-container {
    height: 100dvh;
  }
}
@supports not (height: 100dvh) {
  .tour-virtual-container {
    height: 100vh;
    height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  }
}
.tour-virtual-container > * {
  pointer-events: auto;
}

/* OVERLAYS TOP */
.tv-overlay-logo {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10001;
  transition: transform 0.3s ease;
}
.tv-overlay-logo img {
  height: 52px;
  width: auto;
}

.tv-overlay-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  transition: all 0.3s ease;
  text-decoration: none;
}
.tv-overlay-close:hover {
  transform: scale(1.05);
}
.tv-overlay-close img {
  width: 100%;
  height: 100%;
}

/* CUSTOM INTERFACE CONTAINER */
.tv-custom-interface {
  position: absolute;
  bottom: 30px;
  bottom: max(30px, env(safe-area-inset-bottom));
  left: 0;
  width: 100%;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 100;
  box-sizing: border-box;
}
.tv-custom-interface > * {
  pointer-events: auto;
}

/* AIRCRAFT CARD */
.tv-aircraft-card {
  background: var(--tv-bg-glass);
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  border-radius: var(--tv-radius);
  box-shadow: var(--tv-shadow);
  backdrop-filter: blur(10px);
}

.tv-aircraft-info {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #333;
}
.tv-aircraft-info .tv-aircraft-name {
  font-weight: 800;
}

/* ZOOM CONTROL */
.tv-zoom-control {
  background: var(--tv-bg-glass);
  padding: 12px 15px;
  border-radius: var(--tv-radius);
  box-shadow: var(--tv-shadow);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 10px;
}

.tv-zoom-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tv-zoom-btn img {
  width: 10px;
  height: 10px;
  display: block;
}

.tv-zoom-slider-wrapper {
  width: 150px;
  display: flex;
  align-items: center;
}

#zoom-slider {
  width: 100%;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
#zoom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: #333;
  border-radius: 50%;
  cursor: pointer;
}

/* OPTIONS PANEL */
.tv-options-panel {
  background: var(--tv-bg-glass);
  padding: 12.5px 30px;
  border-radius: var(--tv-radius);
  box-shadow: var(--tv-shadow);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 15px;
}

.tv-option-btn {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  transition: all 0.3s ease;
}
.tv-option-btn:hover img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(34%) saturate(848%) hue-rotate(42deg) brightness(92%) contrast(83%);
}
.tv-option-btn img {
  width: 30px;
  height: 30px;
  display: block;
  transition: filter 0.3s ease;
}
.tv-option-btn#btn-minimap img {
  width: 35px;
  height: 33px;
}
.tv-option-btn .fullscreen-enter {
  display: block;
}
.tv-option-btn .fullscreen-exit {
  display: none;
}
.tv-option-btn.is-fullscreen .fullscreen-enter {
  display: none;
}
.tv-option-btn.is-fullscreen .fullscreen-exit {
  display: block;
}

/* MOBILE ADAPTATION */
@media (max-width: 992px) {
  .tv-overlay-logo {
    top: 15px;
    top: max(15px, env(safe-area-inset-top));
  }
  .tv-overlay-logo img {
    height: 38px;
    width: auto;
  }
  .tv-overlay-close {
    width: 38px;
    height: 38px;
    top: 15px;
    top: max(15px, env(safe-area-inset-top));
    right: 15px;
    right: max(15px, env(safe-area-inset-right));
  }
  .tv-custom-interface {
    bottom: 20px;
    bottom: max(20px, env(safe-area-inset-bottom));
    padding: 0 20px;
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
    flex-direction: row;
    justify-content: space-between;
    max-width: 95%;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 320px;
    height: 40px;
    gap: 25px;
  }
  .tv-custom-interface::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--tv-bg-glass);
    border-radius: var(--tv-radius);
    box-shadow: var(--tv-shadow);
    backdrop-filter: blur(10px);
    z-index: -1;
  }
  .tv-zoom-control {
    display: none;
  }
  .tv-aircraft-card {
    padding: 0;
    display: flex;
    align-items: center;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    border-right: none;
    height: 100%;
    backdrop-filter: none;
  }
  .tv-aircraft-card .tv-aircraft-name {
    font-size: 12px;
    font-weight: 800;
  }
  .tv-options-panel {
    padding: 0;
    display: flex;
    align-items: center;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    height: 100%;
    backdrop-filter: none;
    gap: 15px;
    margin-top: 0px;
  }
  .tv-options-panel .tv-option-btn {
    padding: 0;
  }
  .tv-options-panel .tv-option-btn:hover img {
    filter: none;
  }
  .tv-options-panel .tv-option-btn img {
    width: 20px;
    height: 20px;
  }
  .tv-options-panel .tv-option-btn#btn-minimap img {
    width: 23px;
    height: 22px;
  }
}
.tv-side-panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10003;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  pointer-events: none;
}
.tv-side-panel-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* SIDE PANELS (Minimap & Hotspots) */
/* SIDE PANELS (Minimap & Hotspots) */
.tv-side-panel-minimap {
  position: absolute;
  top: 0;
  right: -533px;
  width: 533px;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  z-index: 10004;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  pointer-events: auto;
}
@supports (height: 100dvh) {
  .tv-side-panel-minimap {
    height: 100dvh;
  }
}
@supports not (height: 100dvh) {
  .tv-side-panel-minimap {
    height: 100vh;
    height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  }
}
.tv-side-panel-minimap.active {
  right: 0;
}
.tv-side-panel-minimap .tv-side-panel-content {
  flex: 1;
  overflow: hidden;
  padding: 40px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.tv-side-panel-hotspots {
  position: absolute;
  top: 0;
  right: -438px;
  width: 438px;
  height: 100vh;
  height: 100dvh;
  background: #f4f7f9;
  z-index: 10005;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  padding: 40px;
  padding-top: 120px;
  box-sizing: border-box;
}
@supports (height: 100dvh) {
  .tv-side-panel-hotspots {
    height: 100dvh;
  }
}
@supports not (height: 100dvh) {
  .tv-side-panel-hotspots {
    height: 100vh;
    height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  }
}
.tv-side-panel-hotspots.active {
  right: 0;
}
.tv-side-panel-hotspots .tv-side-panel-content {
  padding: 0;
  padding-right: 30px;
}

.tv-side-panel-close {
  position: absolute;
  top: 54px;
  right: 54px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10006;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tv-side-panel-close img {
  width: 100%;
  height: 100%;
}
.tv-side-panel-close .mov-only {
  display: none;
}

.tv-side-panel-content {
  flex: 1;
  overflow-y: auto;
  padding: 40px;
  margin-top: 40px;
  position: relative;
}
.tv-side-panel-content::-webkit-scrollbar {
  width: 3px;
}
.tv-side-panel-content::-webkit-scrollbar-track {
  background: linear-gradient(90deg, transparent 1px, #cccccc 1px, #cccccc 2px, transparent 2px);
}
.tv-side-panel-content::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 3px;
}

/* MINIMAP SPECIFICS */
#minimap-wrapper {
  flex: 1;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}
#minimap-wrapper img#minimap-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

#minimap-loading {
  display: block;
  opacity: 1;
  transition: opacity 0.6s ease;
}
#minimap-loading.hidden {
  opacity: 0;
}

.tv-minimap-legend {
  background: #fff;
  padding: 30px 40px;
}

.tv-legend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 15px 10px;
}

.tv-legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #8a94ac;
  font-weight: 500;
}
.tv-legend-item img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.tv-legend-item .tv-legend-text-short {
  display: none;
}

@media (max-width: 992px) {
  .tv-legend-item .tv-legend-text-full {
    display: none;
  }
  .tv-legend-item .tv-legend-text-short {
    display: inline;
  }
}
/* HOTSPOT LIST ITEMS */
.tv-hotspot-item {
  display: flex;
  align-items: flex-start;
  padding: 15px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tv-hotspot-item:hover {
  background: rgba(255, 255, 255, 0.5);
}

.tv-hotspot-icon {
  width: 36px;
  height: 36px;
  margin-right: 15px;
  margin-top: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tv-hotspot-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.tv-hotspot-texts {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 2px;
}

.tv-hotspot-cat {
  font-size: 12px;
  text-transform: uppercase;
  color: #8a94ac;
  font-weight: 600;
}

.tv-hotspot-name {
  font-size: 24px;
  color: #2e2e3d;
  font-weight: 300;
}

@media (max-width: 992px) {
  .tv-side-panel-minimap, .tv-side-panel-hotspots {
    width: 100%;
    right: -100%;
    height: 100vh;
    height: 100dvh;
  }
  @supports (height: 100dvh) {
    .tv-side-panel-minimap, .tv-side-panel-hotspots {
      height: 100dvh;
    }
  }
  @supports not (height: 100dvh) {
    .tv-side-panel-minimap, .tv-side-panel-hotspots {
      height: 100vh;
      height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    }
  }
  .tv-side-panel-minimap.active, .tv-side-panel-hotspots.active {
    right: 0;
  }
  .tv-side-panel-close {
    top: 16px;
    right: 16px;
    width: 30px;
    height: 30px;
  }
  .tv-side-panel-close .dsk-only {
    display: none;
  }
  .tv-side-panel-close .mov-only {
    display: block;
  }
  .tv-side-panel-content {
    padding: 20px;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }
  .tv-side-panel-content.hotspots-list-content {
    padding-top: 60px;
    padding-right: 30px;
  }
  .tv-hotspot-name {
    font-size: 18px;
  }
  .tv-minimap-legend {
    padding: 20px;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }
  .tv-hotspot-icon {
    margin-top: 2px;
  }
  .tv-legend-grid {
    gap: 10px 5px;
    font-size: 11px;
  }
}
/* MODAL HOTSPOT */
.modal .modal-content {
  border-radius: 20px;
}

/* MINIMAP POINTS */
.minimap-hotspot, .minimap-scanpoint {
  position: absolute;
  width: 36px;
  height: 36px;
  transform: var(--tv-point-anchor, translate(-50%, -50%));
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.minimap-hotspot img, .minimap-scanpoint img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.minimap-hotspot:hover, .minimap-scanpoint:hover {
  transform: var(--tv-point-anchor, translate(-50%, -50%)) scale(1.2);
  z-index: 15;
}
.minimap-hotspot.active, .minimap-scanpoint.active {
  transform: var(--tv-point-anchor, translate(-50%, -50%)) scale(1.3);
  z-index: 20;
}

@media (max-width: 992px) {
  .minimap-hotspot, .minimap-scanpoint {
    width: 24px;
    height: 24px;
  }
}
/* TOOLTIP */
.hotspot-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #2e2e3d;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
}
.hotspot-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #2e2e3d;
}

.minimap-hotspot:hover .hotspot-tooltip,
.minimap-scanpoint:hover .hotspot-tooltip {
  opacity: 1;
  visibility: visible;
  bottom: calc(100% + 15px);
}

/* ICON PLACEHOLDERS FOR LEGEND (REMOVED - Using img tags) */
/* Mobile adjustments for Hotspots Panel encapsulation */
@media (max-width: 992px) {
  .tv-side-panel-hotspots {
    padding: 20px;
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }
  .tv-side-panel-hotspots .tv-side-panel-content {
    padding: 0;
  }
  .tv-side-panel-hotspots .tv-side-panel-content.hotspots-list-content {
    padding-top: 40px;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }
}
/* ===================================
 * MODAL DE DETALLE DE HOTSPOT
 * =================================== */
.tv-modal-hotspot {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 10005;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
}
@supports (height: 100dvh) {
  .tv-modal-hotspot {
    height: 100dvh;
  }
}
@supports not (height: 100dvh) {
  .tv-modal-hotspot {
    height: 100vh;
    height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  }
}
.tv-modal-hotspot.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tv-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.tv-modal-content {
  position: relative;
  width: 610px;
  max-width: 90vw;
  max-height: 90vh;
  background: #fff;
  overflow-y: auto;
  z-index: 1;
  margin: auto;
}
.tv-modal-content::-webkit-scrollbar {
  width: 4px;
}
.tv-modal-content::-webkit-scrollbar-track {
  background: #f0f0f0;
}
.tv-modal-content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}

.tv-modal-close {
  position: absolute;
  top: 54px;
  right: 54px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.tv-modal-close img {
  width: 100%;
  height: 100%;
}
.tv-modal-close .mov-only {
  display: none;
}

.tv-modal-body {
  padding: 80px;
}
.tv-modal-body > .tv-hotspot-description,
.tv-modal-body > .tv-hotspot-title,
.tv-modal-body > .tv-hotspot-image-wrapper,
.tv-modal-body > .tv-hotspot-specs {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.tv-modal-body > .tv-hotspot-specs li {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.tv-modal-hotspot.content-visible .tv-hotspot-description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}
.tv-modal-hotspot.content-visible .tv-hotspot-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}
.tv-modal-hotspot.content-visible .tv-hotspot-image-wrapper {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.19s;
}
.tv-modal-hotspot.content-visible .tv-hotspot-specs {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.26s;
}
.tv-modal-hotspot.content-visible .tv-hotspot-specs li:nth-child(1) {
  transition-delay: 0.3s;
}
.tv-modal-hotspot.content-visible .tv-hotspot-specs li:nth-child(2) {
  transition-delay: 0.35s;
}
.tv-modal-hotspot.content-visible .tv-hotspot-specs li:nth-child(3) {
  transition-delay: 0.4s;
}
.tv-modal-hotspot.content-visible .tv-hotspot-specs li:nth-child(4) {
  transition-delay: 0.45s;
}
.tv-modal-hotspot.content-visible .tv-hotspot-specs li:nth-child(5) {
  transition-delay: 0.5s;
}
.tv-modal-hotspot.content-visible .tv-hotspot-specs li:nth-child(6) {
  transition-delay: 0.55s;
}
.tv-modal-hotspot.content-visible .tv-hotspot-specs li:nth-child(n+7) {
  transition-delay: 0.6s;
}
.tv-modal-hotspot.content-visible .tv-hotspot-specs li {
  opacity: 1;
  transform: translateY(0);
}

.tv-hotspot-description {
  font-size: 24px;
  font-weight: 300;
  color: #8a94ac;
  margin: 0 0 2px 0;
  line-height: 1.4;
}

.tv-hotspot-title {
  font-size: 50px;
  font-weight: 200;
  color: #2e2e3d;
  margin: 0 0 32px 0;
  line-height: 1.2;
}

.tv-hotspot-image-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 27px;
}
.tv-hotspot-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.tv-hotspot-download {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 30px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
}
.tv-hotspot-download:hover {
  transform: scale(1.1);
}
.tv-hotspot-download img {
  width: 30px;
  height: 24px;
}

.tv-hotspot-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tv-hotspot-specs li {
  font-size: 14px;
  font-weight: 400;
  color: #2e2e3d;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.tv-hotspot-specs li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 7px;
  transform: translateY(-50%);
  color: #82b92e;
  font-size: 36px;
  line-height: 1;
}

/* Mobile Styles */
@media (max-width: 992px) {
  .tv-modal-content {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    box-sizing: border-box;
  }
  .tv-modal-close {
    top: 16px;
    right: 16px;
    width: 30px;
    height: 30px;
  }
  .tv-modal-close .dsk-only {
    display: none;
  }
  .tv-modal-close .mov-only {
    display: block;
  }
  .tv-modal-body {
    padding: 80px 24px 40px 24px;
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
  }
  .tv-hotspot-description {
    font-size: 18px;
  }
  .tv-hotspot-specs li {
    font-size: 14px;
  }
}/*# sourceMappingURL=tour-virtual.css.map */