* {
  -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);
}

html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-family: "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;
}

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

#titleBar {
  position: absolute;
  top: 0;
  left: 0;
  right: 40px;
  height: 40px;
  text-align: center;
}

.mobile #titleBar {
  height: 50px;
  right: 50px;
}

/* If there is a fullscreen button the title bar must make space for it */
body.fullscreen-enabled #titleBar {
  right: 80px;
}

body.fullscreen-enabled.mobile #titleBar {
  right: 100px;
}

/* If there are multiple scenes the title bar must make space for the scene list toggle */
body.multiple-scenes #titleBar {
  left: 40px;
}

body.multiple-scenes.mobile #titleBar {
  left: 50px;
}

#titleBar .sceneName {
  width: 100%;
  height: 100%;
  line-height: 30px;
  padding: 5px;
  background-color: rgb(58,68,84);
  background-color: rgba(58,68,84,0.8);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.mobile #titleBar .sceneName {
  line-height: 40px;
}

#fullscreenToggle {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 5px;
  background-color: rgb(103,115,131);
  background-color: rgba(103,115,131,0.8);
}

.mobile #fullscreenToggle {
  width: 50px;
  height: 50px;
}

body.fullscreen-enabled #fullscreenToggle {
  display: block;
}

#fullscreenToggle .icon {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
}

.mobile #fullscreenToggle .icon {
  top: 10px;
  right: 10px;
}

#fullscreenToggle .icon.on {
  display: none;
}

#fullscreenToggle .icon.off {
  display: block;
}

#fullscreenToggle.enabled .icon.on {
  display: block;
}

#fullscreenToggle.enabled .icon.off {
  display: none;
}

#autorotateToggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 5px;
  background-color: rgb(103,115,131);
  background-color: rgba(103,115,131,0.8);
}

.mobile #autorotateToggle {
  width: 50px;
  height: 50px;
}

/* If there is a fullscreen button, autorotate must placed a bit to the left */
body.fullscreen-enabled #autorotateToggle {
  right: 40px;
}

body.fullscreen-enabled.mobile #autorotateToggle {
  right: 50px;
}

#autorotateToggle .icon {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
}

.mobile #autorotateToggle .icon {
  top: 10px;
  right: 10px;
}

#autorotateToggle .icon.on {
  display: none;
}

#autorotateToggle .icon.off {
  display: block;
}

#autorotateToggle.enabled .icon.on {
  display: block;
}

#autorotateToggle.enabled .icon.off {
  display: none;
}

#sceneListToggle {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  padding: 5px;
  background-color: rgb(103,115,131);
  background-color: rgba(103,115,131,0.8);
}

.mobile #sceneListToggle {
  width: 50px;
  height: 50px;
}

#sceneListToggle .text {
  position: absolute;
  top: 5px;
  left: 15px;
  width: 100%;
  line-height: 30px;
}

#sceneListToggle .icon {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
}

.mobile #sceneListToggle .icon {
  top: 10px;
  right: 10px;
}

#sceneListToggle .icon.on {
  display: none;
}

#sceneListToggle .icon.off {
  display: block;
}

#sceneListToggle.enabled .icon.on {
  display: block;
}

#sceneListToggle.enabled .icon.off {
  display: none;
}

#sceneList {
  position: absolute;
  top: 0;
  left: -220px;
  padding-top: 40px;
  width: 220px;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  margin-left: 0;
  -webkit-transition: margin-left 0.5s ease-in-out;
  transition: margin-left 0.5s ease-in-out;
}

.mobile #sceneList {
  padding-top: 50px;
}

#sceneList .scenes {
  width: 100%;
  background-color: rgb(58,68,84);
  background-color: rgba(58,68,84,0.8);
}

.mobile #sceneList {
  width: 100%;
  height: 100%;
  left: -100%;
}

.mobile #sceneList.enabled {
  margin-left: 100%;
}

.mobile #sceneList .scenes {
  height: 100%;
}

#sceneList.enabled {
  margin-left: 220px;
}

#sceneList .scene {
  display: block;
  width: 100%;
  height: 30px;
}

.mobile #sceneList .scene {
  height: 40px;
}

#sceneList .scene .text {
  width: 100%;
  height: 100%;
  padding: 0 15px;
  line-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile #sceneList .scene .text {
  line-height: 40px;
}

.no-touch #sceneList .scene:hover {
  background-color: rgb(103,115,131);
  background-color: rgba(103,115,131,0.8);
}

#sceneList .scene.current {
  background-color: rgb(103,115,131);
  background-color: rgba(103,115,131,0.8);
}

/* Hide scene list when only a single scene exists */
body.single-scene #sceneList, body.single-scene #sceneListToggle {
  display: none;
}

/* Link hotspot */

.link-hotspot {
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  opacity: 0.9;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

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

.mobile .link-hotspot {
  width: 70px;
  height: 70px;
}

.link-hotspot-icon {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.link-hotspot-tooltip {
  position: absolute;
  left: 100%;
  top: 14px; /* ( 60 - (16 + 2*8) ) / 2 */

  margin-left: 3px;

  font-size: 16px;

  max-width: 300px;

  padding: 8px 10px;

  border-radius: 5px;

  background-color: rgb(58,68,84);
  background-color: rgba(58,68,84,0.8);

  color: #fff;

  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;

  cursor: pointer;

  opacity: 0;

  -ms-transform: translateX(-8px);
  -webkit-transform: translateX(-8px);
  transform: translateX(-8px);

  -webkit-transition: -ms-transform 0.3s,
                      -webkit-transform 0.3s,
                      transform 0.3s,
                      opacity 0.3s;
  transition: -ms-transform 0.3s,
              -webkit-transform 0.3s,
              transform 0.3s,
              opacity 0.3s;
}

.mobile .link-hotspot {
  top: 19px; /* ( 70 - (16 + 2*8) ) / 2 */
}

.no-touch .link-hotspot:hover .link-hotspot-tooltip {
  opacity: 1;
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/* Prevent tooltip from triggering */
.link-hotspot-tooltip {
  pointer-events: none;
}
.no-touch .link-hotspot:hover .link-hotspot-tooltip {
  pointer-events: all;
}

/* Fallback mode without pointer-events (IE8-10) */
.tooltip-fallback .link-hotspot-tooltip {
  display: none;
}
.no-touch .tooltip-fallback .link-hotspot:hover .link-hotspot-tooltip {
  display: block;
}

/* Info hotspot */

.info-hotspot {
  line-height: 1.2em;
  opacity: 0.9;
  -webkit-transition: opacity 0.2s 0.2s;
  transition: opacity 0.2s 0.2s;
}

.no-touch .info-hotspot:hover {
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.info-hotspot.visible {
  opacity: 1;
}

.info-hotspot .info-hotspot-header {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: rgb(103,115,131);
  cursor: pointer;
  -webkit-transition: width 0.3s ease-in-out 0.5s,
                      border-radius 0.3s ease-in-out 0.5s;
  transition: width 0.3s ease-in-out 0.5s,
              border-radius 0.3s ease-in-out 0.5s;
}

.mobile .info-hotspot .info-hotspot-header {
  width: 50px;
  height: 50px;
  border-radius: 25px;
}

.desktop.no-touch .info-hotspot .info-hotspot-header:hover {
  width: 260px;
  border-radius: 5px;
  -webkit-transition: width 0.3s ease-in-out,
                      border-radius 0.3s ease-in-out;
  transition: width 0.3s ease-in-out,
              border-radius 0.3s ease-in-out;
}

.desktop .info-hotspot.visible .info-hotspot-header,
.desktop.no-touch .info-hotspot.visible .info-hotspot-header:hover {
  width: 260px;
  border-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-transition: width 0.3s ease-in-out,
                      border-radius 0.3s ease-in-out;
  transition: width 0.3s ease-in-out,
              border-radius 0.3s ease-in-out;
}

.info-hotspot .info-hotspot-icon-wrapper {
  width: 40px;
  height: 40px;
}

.mobile .info-hotspot .info-hotspot-icon-wrapper {
  width: 50px;
  height: 50px;
}

.info-hotspot .info-hotspot-icon {
  width: 90%;
  height: 90%;
  margin: 5%;
}

.info-hotspot .info-hotspot-title-wrapper {
  position: absolute;
  left: 40px;
  top: 0;
  width: 0;
  height: 40px;
  padding: 0;
  overflow: hidden;
  -webkit-transition: width 0s 0.4s,
                      padding 0s 0.4s;
  transition: width 0s 0.4s,
              padding 0s 0.4s;
}

.desktop .info-hotspot.visible .info-hotspot-title-wrapper,
.desktop.no-touch .info-hotspot .info-hotspot-header:hover .info-hotspot-title-wrapper {
  width: 220px;
  padding: 0 5px;
  -webkit-transition: width 0s 0.4s,
                      padding 0s 0.4s;
  transition: width 0s 0.4s,
              padding 0s 0.4s;
}

.info-hotspot .info-hotspot-title-wrapper:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.info-hotspot .info-hotspot-title {
  display: inline-block;
  vertical-align: middle;

  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.info-hotspot .info-hotspot-close-wrapper {
  position: absolute;
  left: 260px;
  top: 0;
  height: 40px;
  width: 40px;
  border-top-right-radius: 5px;
  background-color: rgb(78,88,104);
  visibility: hidden;
  -ms-transform: perspective(200px) rotateY(90deg);
  -webkit-transform: perspective(200px) rotateY(90deg);
  transform: perspective(200px) rotateY(90deg);
  -ms-transform-origin: 0 50% 0;
  -webkit-transform-origin: 0 50% 0;
  transform-origin: 0 50% 0;
  -webkit-transition: -ms-transform 0.3s 0.3s,
                      -webkit-transform 0.3s 0.3s,
                      transform 0.3s 0.3s,
                      visibility 0s 0.6s;
  transition: -ms-transform 0.3s 0.3s,
              -webkit-transform 0.3s 0.3s,
              transform 0.3s 0.3s,
              visibility 0s 0.6s;
}

.desktop .info-hotspot.visible .info-hotspot-close-wrapper {
  visibility: visible;
  -ms-transform: perspective(200px) rotateY(0deg);
  -webkit-transform: perspective(200px) rotateY(0deg);
  transform: perspective(200px) rotateY(0deg);
  -webkit-transition: -ms-transform 0.3s,
                      -webkit-transform 0.3s,
                      transform 0.3s,
                      visibility 0s 0s;
  transition: -ms-transform 0.3s,
              -webkit-transform 0.3s,
              transform 0.3s,
              visibility 0s 0s;
}

.info-hotspot .info-hotspot-close-icon {
  width: 70%;
  height: 70%;
  margin: 15%;
}

.info-hotspot .info-hotspot-text {
  position: absolute;
  width: 300px;
  height: auto;
  max-height: 200px;
  top: 40px;
  left: 0;
  padding: 10px;
  background-color: rgb(58,68,84);
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  overflow-y: auto;
  visibility: hidden;
  /* rotate(90deg) causes transition flicker on Firefox 58 */
  -ms-transform: perspective(200px) rotateX(-89.999deg);
  -webkit-transform: perspective(200px) rotateX(-89.999deg);
  transform: perspective(200px) rotateX(-89.999deg);
  -ms-transform-origin: 50% 0 0;
  -webkit-transform-origin: 50% 0 0;
  transform-origin: 50% 0 0;
  -webkit-transition: -ms-transform 0.3s,
                      -webkit-transform 0.3s,
                      transform 0.3s,
                      visibility 0s 0.3s;
  transition: -ms-transform 0.3s,
              -webkit-transform 0.3s,
              transform 0.3s,
              visibility 0s 0.3s;

  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.desktop .info-hotspot.visible .info-hotspot-text {
  visibility: visible;
  -ms-transform: perspective(200px) rotateX(0deg);
  -webkit-transform: perspective(200px) rotateX(0deg);
  transform: perspective(200px) rotateX(0deg);
  -webkit-transition: -ms-transform 0.3s 0.3s,
                      -webkit-transform 0.3s 0.3s,
                      transform 0.3s 0.3s,
                      visibility 0s 0s;
  transition: -ms-transform 0.3s 0.3s,
              -webkit-transform 0.3s 0.3s,
              transform 0.3s 0.3s,
              visibility 0s 0s;
}

/* Info hotspot modal */

.desktop .info-hotspot-modal {
  display: none;
}

.info-hotspot-modal {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 11000 !important;
  background-color: rgba(0,0,0,.5);
  line-height: 1.2em;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease-in-out 0.5s,
                      visibility 0s 0.7s;
  transition: opacity 0.2s ease-in-out 0.5s,
              visibility 0s 0.7s;
}

.info-hotspot-modal.visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.2s ease-in-out,
                      visibility 0s 0s;
  transition: opacity 0.2s ease-in-out,
              visibility 0s 0s;
}

.info-hotspot-modal .info-hotspot-header {
  position: absolute;
  top: 60px;
  left: 10px;
  right: 10px;
  width: auto;
  height: 50px;
  background-color: rgb(103,115,131);
  background-color: rgba(103,115,131,0.8);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out 0.2s;
  transition: opacity 0.3s ease-in-out 0.2s;
}

.info-hotspot-modal.visible .info-hotspot-header {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out 0.2s;
  transition: opacity 0.3s ease-in-out 0.2s;
}

.info-hotspot-modal .info-hotspot-icon-wrapper {
  width: 50px;
  height: 50px;
}

.info-hotspot-modal .info-hotspot-icon {
  width: 90%;
  height: 90%;
  margin: 5%;
}

.info-hotspot-modal .info-hotspot-title-wrapper {
  position: absolute;
  top: 0;
  left: 50px;
  right: 50px;
  width: auto;
  height: 50px;
  padding: 0 10px;
}

.info-hotspot-modal .info-hotspot-title-wrapper:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.info-hotspot-modal .info-hotspot-title {
  display: inline-block;
  vertical-align: middle;

  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.info-hotspot-modal .info-hotspot-close-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: rgb(78,88,104);
  background-color: rgba(78,88,104,0.8);
  cursor: pointer;
}

.info-hotspot-modal .info-hotspot-close-icon {
  width: 70%;
  height: 70%;
  margin: 15%;
}

.info-hotspot-modal .info-hotspot-text {
  position: absolute;
  top: 110px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  padding: 10px;
  background-color: rgb(58,68,84);
  background-color: rgba(58,68,84,0.8);
  overflow-y: auto;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;

  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.info-hotspot-modal.visible .info-hotspot-text {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out 0.4s;
  transition: opacity 0.3s ease-in-out 0.4s;
}

/* View control buttons */

.viewControlButton {
  display: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 40px;
  height: 40px;
  padding: 5px;
  background-color: rgb(103,115,131);
  background-color: rgba(103,115,131,0.8);
}

body.view-control-buttons .viewControlButton {
  display: block;
}

/* Hide controls when width is too small */
@media (max-width: 600px) {
  body.view-control-buttons .viewControlButton {
    display: none;
  }
}

.viewControlButton .icon {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
}

/* Center is at margin-left: -20px */
.viewControlButton-1 {
  margin-left: -145px;
}
.viewControlButton-2 {
  margin-left: -95px;
}
.viewControlButton-3 {
  margin-left: -45px;
}
.viewControlButton-4 {
  margin-left: 5px;
}
.viewControlButton-5 {
  margin-left: 55px;
}
.viewControlButton-6 {
  margin-left: 105px;
}


/* =========================================================
   PREMIUM MINIMAL UI - transparent glass, thin lines, HR/EN
   Added custom layer. Keep this at the end of style.css.
   ========================================================= */
:root {
  --bd-glass: rgba(8, 14, 22, 0.24);
  --bd-glass-strong: rgba(8, 14, 22, 0.42);
  --bd-line: rgba(255, 255, 255, 0.32);
  --bd-line-soft: rgba(255, 255, 255, 0.16);
  --bd-text: #ffffff;
  --bd-muted: rgba(255, 255, 255, 0.68);
  --bd-blur: blur(16px);
  --bd-shadow: 0 18px 45px rgba(0,0,0,.22);
}

html, body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #05070a;
  color: var(--bd-text);
}

#pano:after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(255,255,255,0.02), rgba(0,0,0,0.18) 70%);
  z-index: 2;
}

#brandPanel {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 9998;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: var(--bd-blur);
  -webkit-backdrop-filter: var(--bd-blur);
  box-shadow: var(--bd-shadow);
}

#brandLogo {
  display: block;
  width: 180px;
  height: auto;
}

#languageSwitcher {
  position: absolute;
  top: 18px;
  right: 108px;
  z-index: 10002;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  min-height: 40px;
  background: var(--bd-glass);
  border: 1px solid var(--bd-line);
  backdrop-filter: var(--bd-blur);
  -webkit-backdrop-filter: var(--bd-blur);
  box-shadow: var(--bd-shadow);
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 300;
  text-transform: uppercase;
}

#languageSwitcher a {
  color: var(--bd-muted);
  cursor: pointer;
  transition: color .25s ease, opacity .25s ease;
}

#languageSwitcher a:hover,
#languageSwitcher a.active { color: var(--bd-text); }
#languageSwitcher span { opacity: .36; }

#titleBar {
  top: 18px;
  left: 50%;
  right: auto !important;
  width: min(420px, calc(100vw - 420px));
  height: 42px;
  transform: translateX(-50%);
  z-index: 9997;
}

#titleBar .sceneName {
  height: 42px;
  line-height: 42px;
  padding: 0 18px;
  background: var(--bd-glass);
  border: 1px solid var(--bd-line);
  backdrop-filter: var(--bd-blur);
  -webkit-backdrop-filter: var(--bd-blur);
  box-shadow: var(--bd-shadow);
  border-radius: 0;
  color: var(--bd-text);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 300;
}

#autorotateToggle,
#fullscreenToggle,
#sceneListToggle,
.viewControlButton {
  background: var(--bd-glass);
  border: 1px solid var(--bd-line);
  backdrop-filter: var(--bd-blur);
  -webkit-backdrop-filter: var(--bd-blur);
  box-shadow: var(--bd-shadow);
  border-radius: 0;
  transition: background .25s ease, border-color .25s ease, opacity .25s ease;
}

#autorotateToggle { top: 18px; right: 60px; }
#fullscreenToggle { top: 18px; right: 18px; }
#sceneListToggle { top: 120px; left: 18px; }
body.fullscreen-enabled #autorotateToggle { right: 60px; }

.no-touch #autorotateToggle:hover,
.no-touch #fullscreenToggle:hover,
.no-touch #sceneListToggle:hover,
.no-touch .viewControlButton:hover {
  background: var(--bd-glass-strong);
  border-color: rgba(255,255,255,.5);
}

.icon,
.link-hotspot-icon,
.info-hotspot-icon,
.info-hotspot-close-icon {
  opacity: .88;
  filter: brightness(0) invert(1);
}

#sceneList {
  top: 170px;
  left: 18px;
  width: 270px;
  padding-top: 0;
  max-height: 320px;
  overflow: hidden;
  margin-left: -310px;
  z-index: 9996;
  transition: margin-left .45s cubic-bezier(.19,1,.22,1);
}

#sceneList.enabled { margin-left: 0; }

#sceneList .scenes {
  background: var(--bd-glass);
  border: 1px solid var(--bd-line);
  backdrop-filter: var(--bd-blur);
  -webkit-backdrop-filter: var(--bd-blur);
  box-shadow: var(--bd-shadow);
}

#sceneList .scene {
  height: 52px;
  border-bottom: 1px solid var(--bd-line-soft);
}

#sceneList .scene:last-child { border-bottom: 0; }
#sceneList .scene .text {
  height: 52px;
  line-height: 52px;
  padding: 0 16px;
  color: var(--bd-muted);
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 300;
}

.no-touch #sceneList .scene:hover,
#sceneList .scene.current { background: rgba(255,255,255,.10); }
#sceneList .scene.current .text { color: var(--bd-text); }

/* Show menu even with one scene - useful for project style */
body.single-scene #sceneList,
body.single-scene #sceneListToggle { display: block; }

#sceneList .scenes {
  overflow-y: auto;
  max-height: 312px;
}


#thumbBar {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 9998;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bd-glass);
  border: 1px solid var(--bd-line);
  backdrop-filter: var(--bd-blur);
  -webkit-backdrop-filter: var(--bd-blur);
  box-shadow: var(--bd-shadow);
}

.thumb-nav {
  flex: 0 0 auto;
  width: 36px;
  height: 72px;
  background: var(--bd-glass-strong);
  border: 1px solid var(--bd-line);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .75;
  transition: opacity .2s;
  padding: 0;
}
.thumb-nav:hover { opacity: 1; }

.thumbTrack {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: scroll;
  overflow-y: hidden;
  width: calc(8 * 120px + 7 * 8px);
  flex: 0 0 auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.thumbTrack::-webkit-scrollbar { display: none; }

.tour-thumb {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 120px;
  height: 72px;
  overflow: hidden;
  border: 1px solid var(--bd-line-soft);
  opacity: .62;
  cursor: pointer;
  transition: opacity .25s ease, border-color .25s ease, transform .25s ease;
}

.tour-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tour-thumb.current,
.tour-thumb:hover {
  opacity: 1;
  border-color: rgba(255,255,255,.66);
}

.tour-thumb.current:after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 6px;
  height: 1px;
  background: rgba(255,255,255,.82);
}

.link-hotspot {
  width: 46px;
  height: 46px;
  margin-left: -23px;
  margin-top: -23px;
  opacity: .86;
}

.link-hotspot-tooltip {
  background: var(--bd-glass-strong);
  border: 1px solid var(--bd-line);
  backdrop-filter: var(--bd-blur);
  -webkit-backdrop-filter: var(--bd-blur);
  border-radius: 0;
  color: var(--bd-text);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 300;
}

.info-hotspot .info-hotspot-header {
  background: var(--bd-glass-strong);
  border: 1px solid var(--bd-line);
  backdrop-filter: var(--bd-blur);
  -webkit-backdrop-filter: var(--bd-blur);
  border-radius: 50%;
  box-shadow: var(--bd-shadow);
}

.desktop.no-touch .info-hotspot .info-hotspot-header:hover,
.desktop .info-hotspot.visible .info-hotspot-header,
.desktop.no-touch .info-hotspot.visible .info-hotspot-header:hover {
  background: var(--bd-glass-strong);
  border-radius: 0;
}

.info-hotspot .info-hotspot-title {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--bd-text);
}

.info-hotspot .info-hotspot-close-wrapper {
  background: rgba(8,14,22,.50);
  border: 1px solid var(--bd-line);
  border-left: 0;
  border-radius: 0;
}

.info-hotspot .info-hotspot-text {
  background: rgba(8,14,22,.50);
  border: 1px solid var(--bd-line);
  border-top: 0;
  backdrop-filter: var(--bd-blur);
  -webkit-backdrop-filter: var(--bd-blur);
  border-radius: 0;
  color: var(--bd-text);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 300;
  padding: 16px;
  box-shadow: var(--bd-shadow);
}

.info-hotspot-modal {
  background: rgba(0,0,0,.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.info-hotspot-modal .info-hotspot-header,
.info-hotspot-modal .info-hotspot-text,
.info-hotspot-modal .info-hotspot-close-wrapper {
  background: rgba(8,14,22,.54);
  border: 1px solid var(--bd-line);
  backdrop-filter: var(--bd-blur);
  -webkit-backdrop-filter: var(--bd-blur);
  border-radius: 0;
}

.info-hotspot-modal .info-hotspot-text {
  padding: 18px;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 300;
}

.viewControlButton { bottom: 96px; }

@media (max-width: 760px) {
  #brandPanel {
    top: 12px;
    left: 12px;
    padding: 8px 12px;
  }
  #brandLogo { width: 140px; }

  #languageSwitcher {
    top: 12px;
    right: 116px;
    padding: 10px 11px;
  }

  #autorotateToggle { top: 12px; right: 62px; }
  #fullscreenToggle { top: 12px; right: 12px; }
  #sceneListToggle { top: 150px; left: 12px; }

  #titleBar {
    top: auto;
    left: 12px;
    right: 12px !important;
    bottom: 96px;
    width: auto;
    transform: none;
  }

  #titleBar .sceneName {
    font-size: 11px;
    height: 38px;
    line-height: 38px;
  }

  #sceneList {
    top: 200px;
    left: 12px;
    width: calc(100vw - 24px);
    max-height: calc(100% - 230px);
    margin-left: calc(-100vw - 30px);
  }
  #sceneList.enabled { margin-left: 0; }

  #thumbBar {
    bottom: 14px;
    max-width: calc(100vw - 24px);
  }

  .tour-thumb { width: 100px; height: 62px; }
  .viewControlButton { display: none !important; }
}
