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

/* ==================================================
   HEDZRANAWO SLAVERY MUSEUM
   Welcome Screen
   ================================================== */

#welcomeScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20000;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}


/* Dark layer over the panorama */

#welcomeScreen .welcomeOverlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(10, 10, 10, 0.94),
      rgba(25, 20, 15, 0.82)
    );

  backdrop-filter: blur(2px);
}


/* Main welcome content */

.welcomeContent {
  position: relative;
  z-index: 2;

  width: min(760px, 88%);
  padding: 50px 40px;

  text-align: center;

  color: #ffffff;
}


/* Small heading above museum name */

.welcomeEyebrow {
  margin-bottom: 18px;

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 0.22em;
  text-transform: uppercase;

  opacity: 0.75;
}


/* Museum title */

.welcomeContent h1 {
  margin: 0;

  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;

  font-weight: 600;

  letter-spacing: -0.02em;
}


/* Intro text */

.welcomeIntro {
  max-width: 580px;

  margin:
    28px auto
    35px;

  font-size: 18px;
  line-height: 1.7;

  color: rgba(255,255,255,0.82);
}


/* Main entrance button */

#enterTourButton {
  padding: 15px 30px;

  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 3px;

  background: transparent;

  color: #ffffff;

  font-size: 14px;
  font-weight: 600;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}


#enterTourButton:hover {
  background-color: #ffffff;
  color: #111111;

  transform: translateY(-2px);
}


/* Small instruction line */

.welcomeHint {
  margin-top: 28px;

  font-size: 12px;

  letter-spacing: 0.06em;

  color: rgba(255,255,255,0.55);
}


/* Welcome-screen closing animation */

#welcomeScreen.hidden {
  opacity: 0;
  visibility: hidden;

  pointer-events: none;
}


/* Mobile */

@media (max-width: 600px) {

  .welcomeContent {
    width: 90%;
    padding: 30px 20px;
  }

  .welcomeIntro {
    font-size: 16px;
  }

  #enterTourButton {
    width: 100%;
    max-width: 320px;
  }

}/* ==================================================
   Museum Top Bar
   ================================================== */

#titleBar {
  top: 14px;
  left: 70px;
  right: 140px;
  height: 44px;
  text-align: left;
  pointer-events: none;
}

#titleBar .sceneName {
  display: inline-flex;
  align-items: center;

  width: auto;
  height: 44px;

  padding: 0 18px;

  line-height: normal;

  background: rgba(20, 18, 16, 0.78);
  backdrop-filter: blur(8px);

  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;

  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;

  color: #fff;

  box-shadow: 0 3px 14px rgba(0,0,0,0.25);
}

#sceneListToggle {
  top: 14px;
  left: 14px;

  width: 44px;
  height: 44px;

  padding: 7px;

  background: rgba(20, 18, 16, 0.78);
  backdrop-filter: blur(8px);

  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

#sceneListToggle:hover {
  background: rgba(35, 30, 25, 0.95);
  transform: translateY(-1px);
}

#sceneListToggle .icon {
  top: 7px;
  right: 7px;
}

/* ==================================================
   Museum Scene Drawer
   ================================================== */

#sceneList {
  top: 0;
  left: -320px;

  width: 320px;
  height: 100%;

  padding-top: 80px;

  background: rgba(18, 16, 14, 0.96);
  backdrop-filter: blur(12px);

  box-shadow: 8px 0 30px rgba(0,0,0,0.35);

  transition: margin-left 0.4s ease;
}

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

#sceneList .scenes {
  background: transparent;
  padding: 12px 0;
}

#sceneList .scene {
  height: auto;
  min-height: 52px;

  display: flex;
  align-items: center;

  border-bottom: 1px solid rgba(255,255,255,0.08);

  transition:
    background-color 0.2s ease,
    padding-left 0.2s ease;
}

#sceneList .scene .text {
  height: auto;

  padding: 16px 22px;

  line-height: 1.4;

  font-size: 15px;
  font-weight: 400;

  white-space: normal;

  color: rgba(255,255,255,0.82);
}

#sceneList .scene:hover {
  background: rgba(255,255,255,0.06);
}

#sceneList .scene.current {
  background: rgba(255,255,255,0.10);
  border-left: 3px solid rgba(255,255,255,0.8);
}

#sceneList .scene.current .text {
  color: #fff;
  font-weight: 600;
}

.sceneListHeader {
  padding: 0 22px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.sceneListEyebrow {
  display: block;

  margin-bottom: 6px;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: rgba(255,255,255,0.5);
}

.sceneListHeader h2 {
  margin: 0;

  font-size: 22px;
  font-weight: 500;

  color: #fff;
}

@media (max-width: 600px) {

  #titleBar {
    top: 10px;
    left: 64px;
    right: 64px;
  }

  #titleBar .sceneName {
    max-width: 100%;
    font-size: 13px;
    padding: 0 12px;
  }

  #sceneListToggle {
    top: 10px;
    left: 10px;
  }

  #sceneList {
    width: 100%;
    left: -100%;
    padding-top: 70px;
  }

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

/* ==================================================
   HEDZRANAWO SLAVERY MUSEUM
   EXHIBIT PANEL
   Signature colours: Maroon + White
   ================================================== */

:root {
  --museum-maroon: #7b0d1e;
  --museum-maroon-dark: #580713;
  --museum-maroon-soft: #efe0e2;

  --museum-white: #fffdfb;
  --museum-cream: #f8f5f1;

  --museum-text: #292321;
  --museum-muted: #746966;
  --museum-line: #d8ccc7;
}


/* ===============================
   MAIN MODAL
   =============================== */

#exhibitModal {
  position: fixed;
  inset: 0;

  z-index: 15000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 32px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}


#exhibitModal.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.exhibitBackdrop {
  position: absolute;
  inset: 0;

  background: rgba(10, 6, 6, 0.78);

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}


/* ===============================
   PANEL
   =============================== */

.exhibitPanel {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(350px, 47%)
    minmax(420px, 53%);

  width: min(1160px, 94vw);
  height: min(760px, 88vh);

  overflow: hidden;

  border-radius: 10px;

  background: var(--museum-white);

  box-shadow:
    0 30px 90px rgba(0,0,0,0.55);

  animation: exhibitPanelIn 0.35s ease;
}


@keyframes exhibitPanelIn {

  from {
    transform: translateY(12px) scale(0.985);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

}


/* ===============================
   LEFT IMAGE PANEL
   =============================== */

.exhibitMedia {
  position: relative;

  min-width: 0;

  background: #15100f;

  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}


.exhibitMedia img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}


/* View larger */

.viewLargerButton {
  position: absolute;

  left: 28px;
  bottom: 28px;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 13px 19px;

  border: none;
  border-radius: 5px;

  background: var(--museum-maroon);

  color: #fff;

  font-family: inherit;
  font-size: 14px;
  font-weight: 500;

  cursor: pointer;

  box-shadow:
    0 7px 22px rgba(0,0,0,0.27);

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}


.viewLargerButton:hover {
  background: var(--museum-maroon-dark);

  transform: translateY(-2px);
}


.viewLargerIcon {
  font-size: 22px;
  line-height: 1;
}

/* ==================================================
   EXHIBIT IMAGE GALLERY
   ================================================== */

.exhibitMedia {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #15100f;
  overflow: hidden;
}

.exhibitMainImageWrap {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

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


/* Optional image caption */

.exhibitImageCaption {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  padding: 12px 18px 58px;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.75),
      rgba(0,0,0,0)
    );

  color: #fff;

  font-size: 13px;
  line-height: 1.4;

  pointer-events: none;
}


/* Thumbnail strip */

.exhibitGallery {
  flex: 0 0 auto;

  display: flex;
  gap: 10px;

  padding: 12px 14px;

  overflow-x: auto;

  background: #2a1216;

  border-top:
    1px solid rgba(255,255,255,0.08);
}


.exhibitGalleryThumb {
  flex: 0 0 auto;

  width: 78px;
  height: 58px;

  padding: 0;

  border:
    2px solid transparent;

  border-radius: 4px;

  overflow: hidden;

  background: #000;

  opacity: 0.72;

  cursor: pointer;

  transition:
    opacity 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}


.exhibitGalleryThumb img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;
}


.exhibitGalleryThumb:hover {
  opacity: 1;
  transform: translateY(-1px);
}


.exhibitGalleryThumb.active {
  opacity: 1;

  border-color:
    var(--museum-maroon);
}


/* Mobile gallery */

@media (max-width: 800px) {

  .exhibitMainImageWrap {
    height: 260px;
  }

  .exhibitGallery {
    padding: 10px;
  }

  .exhibitGalleryThumb {
    width: 68px;
    height: 50px;
  }

}

/* ===============================
   RIGHT CONTENT PANEL
   =============================== */

.exhibitBody {
  padding: 42px 48px 38px;

  overflow-y: auto;

  color: var(--museum-text);

  background:
    linear-gradient(
      135deg,
      #fffdfb 0%,
      #faf7f4 100%
    );
}


/* "Museum Exhibit" heading */

.exhibitHeadingRow {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-bottom: 12px;
}


.exhibitLabel {
  flex: 0 0 auto;

  color: var(--museum-maroon);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.27em;
  text-transform: uppercase;
}


.exhibitHeadingLine {
  height: 1px;
  flex: 1;

  background:
    rgba(123,13,30,0.30);
}


/* Exhibit title */

.exhibitTitle {
  margin:
    0 0
    20px;

  color: var(--museum-maroon);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: clamp(34px, 3.3vw, 52px);

  line-height: 1.08;

  font-weight: 500;

  letter-spacing: -0.02em;
}


/* ===============================
   TAGS
   =============================== */

.exhibitTags {
  display: flex;

  flex-wrap: wrap;

  gap: 9px;

  margin-bottom: 24px;
}


.exhibitTag {
  display: inline-flex;

  align-items: center;

  padding: 7px 14px;

  border-radius: 999px;

  background:
    var(--museum-maroon-soft);

  color:
    var(--museum-maroon);

  font-size: 13px;

  line-height: 1.2;
}


/* ===============================
   INTERPRETIVE TEXT
   =============================== */

.exhibitText {
  color: #302a28;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 17px;

  line-height: 1.62;

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


.exhibitText p {
  margin:
    0 0
    18px;
}


.exhibitText p:last-child {
  margin-bottom: 0;
}


/* ===============================
   AUDIO
   =============================== */

.exhibitAudioSection {
  margin-top: 28px;

  padding-top: 4px;
}


.audioTitle {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 12px;

  color: var(--museum-maroon);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.2em;

  text-transform: uppercase;
}


.audioIcon {
  font-size: 17px;
}


#exhibitAudio {
  width: 100%;
}


/* ===============================
   METADATA
   =============================== */

.exhibitMetadata {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0,1fr));

  column-gap: 34px;

  row-gap: 18px;

  margin-top: 28px;

  padding-top: 20px;

  border-top:
    1px solid var(--museum-line);
}


.metadataItem {
  min-width: 0;
}


.metadataLabel {
  display: block;

  margin-bottom: 5px;

  color: var(--museum-maroon);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}


.metadataValue {
  color: #332d2a;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 15px;

  line-height: 1.4;
}


/* ===============================
   CLOSE BUTTON
   =============================== */

.exhibitClose {
  position: absolute;

  top: 15px;
  right: 16px;

  z-index: 20;

  width: 47px;
  height: 47px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;

  border-radius: 50%;

  background:
    var(--museum-maroon);

  color: #fff;

  font-size: 31px;
  font-weight: 300;

  line-height: 1;

  cursor: pointer;

  box-shadow:
    0 4px 14px rgba(0,0,0,0.22);

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}


.exhibitClose:hover {
  background:
    var(--museum-maroon-dark);

  transform:
    rotate(5deg)
    scale(1.05);
}


/* ===============================
   OPTIONAL CONTENT
   =============================== */

.hidden {
  display: none !important;
}


.exhibitPanel.no-image {

  grid-template-columns: 1fr;

  width: min(760px, 90vw);
}


.exhibitPanel.no-image
.exhibitMedia {

  display: none;
}


/* ==================================================
   LARGE IMAGE LIGHTBOX
   ================================================== */

#imageLightbox {
  position: fixed;
  inset: 0;

  z-index: 17000;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 30px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}


#imageLightbox.visible {

  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.imageLightboxBackdrop {

  position: absolute;
  inset: 0;

  background:
    rgba(5,3,3,0.92);
}


.imageLightboxPanel {

  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;
  justify-content: center;

  max-width: 95vw;
  max-height: 92vh;
}


.imageLightboxPanel img {

  max-width: 95vw;
  max-height: 90vh;

  object-fit: contain;

  border-radius: 5px;

  box-shadow:
    0 20px 70px
    rgba(0,0,0,0.55);
}


.imageLightboxClose {

  position: absolute;

  top: -18px;
  right: -18px;

  width: 45px;
  height: 45px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: none;

  border-radius: 50%;

  background:
    var(--museum-maroon);

  color: #fff;

  font-size: 29px;

  cursor: pointer;
}


/* ==================================================
   RESPONSIVE
   ================================================== */

@media (max-width: 800px) {

  #exhibitModal {

    padding: 15px;
  }


  .exhibitPanel {

    display: block;

    width: 94vw;

    height: auto;
    max-height: 92vh;

    overflow-y: auto;
  }


  .exhibitMedia {

    height: 300px;
  }


  .exhibitBody {

    padding:
      30px 24px
      34px;

    overflow: visible;
  }


  .exhibitTitle {

    padding-right: 38px;

    font-size: 34px;
  }


  .exhibitText {

    font-size: 16px;
  }


  .exhibitMetadata {

    grid-template-columns: 1fr;
  }


  .viewLargerButton {

    left: 16px;
    bottom: 16px;
  }


  .exhibitClose {

    top: 12px;
    right: 12px;
  }

}

/* ==================================================
   MUSEUM INFO HOTSPOTS
   ================================================== */

.museum-info-hotspot {

  position: relative;

  width: 42px;
  height: 42px;

  margin-left: -21px;
  margin-top: -21px;

  cursor: pointer;
}


.museum-info-button {

  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    var(--museum-maroon);

  border:
    2px solid #fff;

  box-shadow:
    0 5px 17px
    rgba(0,0,0,0.38);

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}


.museum-info-symbol {

  color: #fff;

  font-family:
    Georgia,
    serif;

  font-size: 21px;

  font-weight: bold;

  line-height: 1;
}


.museum-info-hotspot:hover
.museum-info-button {

  transform:
    scale(1.13);

  background:
    var(--museum-maroon-dark);
}


/* Tooltip */

.museum-info-tooltip {

  position: absolute;

  left: 50%;
  bottom: 53px;

  transform:
    translateX(-50%)
    translateY(5px);

  padding:
    8px 12px;

  min-width:
    max-content;

  max-width:
    240px;

  border-radius: 4px;

  background:
    rgba(83,7,19,0.94);

  color: #fff;

  font-size: 13px;

  text-align: center;

  pointer-events: none;

  opacity: 0;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}


.museum-info-hotspot:hover
.museum-info-tooltip {

  opacity: 1;

  transform:
    translateX(-50%)
    translateY(0);
}

.exhibitText ol {
  margin: 12px 0 20px 24px;
  padding: 0;
}

.exhibitText li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ==================================================
   GUIDED TOUR - DEVELOPMENT CONTROLS
   ================================================== */

#startGuidedTour {
  position: fixed;

  left: 20px;
  bottom: 25px;

  z-index: 12000;

  padding: 12px 20px;

  border: 1px solid white;
  border-radius: 5px;

  background: #7b0d1e;

  color: white;

  font-size: 14px;
  font-weight: 600;

  cursor: pointer;
}


#guidedTourControls {

  position: fixed;

  left: 50%;
  bottom: 25px;

  transform: translateX(-50%);

  z-index: 12000;

  display: flex;
  align-items: center;

  gap: 18px;

  min-width: 640px;

  padding: 12px 16px;

  border-radius: 7px;

  background:
    rgba(45, 7, 13, 0.93);

  color: white;

  box-shadow:
    0 10px 35px
    rgba(0,0,0,0.4);
}


#guidedTourInfo {

  flex: 1;

  display: flex;
  flex-direction: column;

  min-width: 210px;
}


#guidedStopCounter {

  margin-bottom: 3px;

  font-size: 10px;

  letter-spacing: 0.14em;

  text-transform: uppercase;

  opacity: 0.65;
}


#guidedStopTitle {

  font-family:
    Georgia,
    serif;

  font-size: 17px;

  font-weight: 500;
}


#guidedTourButtons {

  display: flex;

  gap: 7px;
}


#guidedTourControls button {

  padding: 9px 12px;

  border:
    1px solid
    rgba(255,255,255,0.55);

  border-radius: 4px;

  background: transparent;

  color: white;

  cursor: pointer;
}


#guidedTourControls button:hover {

  background:
    rgba(255,255,255,0.12);
}


#guidedTourControls button:disabled {

  opacity: 0.35;

  cursor: default;
}


#guidedExit {

  border-color:
    rgba(255,180,180,0.55)
    !important;
}


.hidden {
  display: none !important;
}


@media (max-width: 700px) {

  #guidedTourControls {

    left: 10px;
    right: 10px;
    bottom: 10px;

    transform: none;

    min-width: 0;

    flex-wrap: wrap;
  }


  #guidedTourInfo {

    order: -1;

    width: 100%;
  }

}

/* ==========================================
   SHINECON GUIDED VR
   ========================================== */

#startVrGuidedTour {
  position: fixed;

  left: 20px;
  bottom: 78px;

  z-index: 12000;

  padding: 12px 20px;

  border: 1px solid #fff;
  border-radius: 5px;

  background: #580713;

  color: #fff;

  font-size: 14px;
  font-weight: 600;

  cursor: pointer;
}


#vrExperience {
  position: fixed;

  inset: 0;

  z-index: 50000;

  overflow: hidden;

  background: #000;
}


.vrEye {
  position: absolute;

  top: 0;

  width: 50%;
  height: 100%;

  overflow: hidden;

  background: #000;
}


#vrLeftEye {
  left: 0;
}


#vrRightEye {
  right: 0;
}


#vrDivider {
  position: absolute;

  top: 0;
  bottom: 0;
  left: 50%;

  width: 2px;

  transform: translateX(-1px);

  z-index: 10;

  background:
    rgba(0,0,0,0.8);

  pointer-events: none;
}


#vrStartOverlay {
  position: absolute;

  inset: 0;

  z-index: 100;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    rgba(20, 4, 8, 0.94);

  color: #fff;
}


.vrStartCard {
  width: min(
    520px,
    calc(100% - 40px)
  );

  text-align: center;
}


.vrEyebrow {
  margin-bottom: 10px;

  font-size: 11px;

  letter-spacing: 0.2em;

  opacity: 0.7;
}


.vrStartCard h2 {
  margin: 0 0 18px;

  font-family: Georgia, serif;

  font-size: 32px;

  font-weight: 500;
}


.vrStartCard p {
  margin: 0 auto 25px;

  max-width: 460px;

  line-height: 1.6;

  opacity: 0.82;
}


.vrStartCard button {
  margin: 5px;

  padding: 12px 20px;

  border-radius: 4px;

  border:
    1px solid rgba(255,255,255,.7);

  color: #fff;

  background: #7b0d1e;

  cursor: pointer;
}


#exitVrExperience {
  position: absolute;

  right: 14px;
  top: 14px;

  z-index: 150;

  padding: 9px 13px;

  border:
    1px solid rgba(255,255,255,.6);

  border-radius: 4px;

  background:
    rgba(70,0,10,.8);

  color: #fff;

  font-size: 12px;

  cursor: pointer;
}

/* ==========================================
   RESPONSIVE TOUR LAYOUT
   ========================================== */


/* ---------- Small phones ---------- */

@media (max-width: 480px) {

  #titleBar {
    height: auto;
    min-height: 48px;
  }


  #titleBar .sceneName {
    font-size: 14px;
    max-width: 65vw;

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


  #sceneList {
    width: min(
      86vw,
      320px
    );
  }


  #guidedTourControls {
    left: 8px;
    right: 8px;
    bottom: 8px;

    width: auto;
    min-width: 0;

    transform: none;

    gap: 8px;
  }


  #guidedTourButtons button {
    min-height: 42px;

    padding:
      9px
      10px;
  }


  .exhibitPanel {
    width:
      calc(
        100vw - 20px
      );

    max-height:
      calc(
        100vh - 20px
      );
  }


  .exhibitBody {
    padding: 18px;
  }


  #startGuidedTour,
  #startVrGuidedTour {
    font-size: 13px;

    padding:
      10px
      14px;
  }

}


/* ---------- Large phones / tablets ---------- */

@media
  (min-width: 481px)
  and
  (max-width: 900px) {

  #sceneList {
    width: 340px;
    max-width: 75vw;
  }


  .exhibitPanel {
    width: min(
      92vw,
      760px
    );

    max-height: 92vh;
  }


  #guidedTourControls {
    width:
      calc(
        100% - 30px
      );

    min-width: 0;
  }

}


/* ---------- Landscape phones ---------- */

@media
  (orientation: landscape)
  and
  (max-height: 600px) {

  #titleBar {
    height: 42px;
  }


  #sceneList {
    max-height:
      calc(
        100vh - 50px
      );

    overflow-y: auto;
  }


  .exhibitPanel {
    max-height: 94vh;

    display: grid;

    grid-template-columns:
      minmax(260px, 42%)
      1fr;
  }


  .exhibitMedia {
    min-height: 0;
  }


  .exhibitBody {
    overflow-y: auto;
  }

}

#vrExperience {
  width: 100vw;
  height: 100dvh;

  overflow: hidden;
}


#vrLeftEye,
#vrRightEye {

  width: 50vw;

  height: 100dvh;
}


@media (orientation: portrait) {

  #vrExperience::before {

    content:
      "Rotate your phone to landscape for VR";

    position: absolute;

    inset: 0;

    z-index: 999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    text-align: center;

    background: #23050a;

    color: white;

    font-size: 18px;
  }

}

/* ==========================================
   VR EXHIBIT DISPLAY - POLISHED
   ========================================== */

#vrExhibitOverlay {
  position: absolute;

  inset: 0;

  z-index: 80;

  pointer-events: none;

  opacity: 0;

  visibility: hidden;

  transition:
    opacity 500ms ease,
    visibility 500ms ease;
}


#vrExhibitOverlay.visible {
  opacity: 1;

  visibility: visible;
}


/* Soft cinematic dim behind exhibit card */
#vrExhibitOverlay::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    rgba(20, 4, 8, 0.28);

  backdrop-filter:
    blur(1px);

  -webkit-backdrop-filter:
    blur(1px);
}


.vrExhibitEye {
  position: absolute;

  top: 0;

  width: 50%;
  height: 100%;

  display: flex;

  align-items: center;
  justify-content: center;

  padding:
    5vh
    3vw;

  box-sizing: border-box;
}


#vrExhibitLeft {
  left: 0;
}


#vrExhibitRight {
  right: 0;
}


.vrExhibitCard {
  position: relative;

  width: 76%;

  max-width: 460px;

  max-height: 78vh;

  overflow: hidden;

  padding:
    18px
    18px
    16px;

  box-sizing: border-box;

  border:
    1px solid
    rgba(123, 13, 30, 0.16);

  border-radius: 14px;

  background:
    rgba(255, 253, 250, 0.97);

  color: #292321;

  box-shadow:
    0 16px 46px
    rgba(0, 0, 0, 0.42);

  text-align: center;

  transform:
    scale(0.94)
    translateY(10px);

  opacity: 0;

  transition:
    transform 550ms
      cubic-bezier(
        0.22,
        1,
        0.36,
        1
      ),
    opacity 450ms ease;
}


#vrExhibitOverlay.visible
.vrExhibitCard {
  transform:
    scale(1)
    translateY(0);

  opacity: 1;
}


.vrExhibitLabel {
  margin-bottom: 6px;

  color: #7b0d1e;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}


.vrExhibitTitle {
  margin:
    0
    0
    12px;

  font-family:
    Georgia,
    serif;

  font-size:
    clamp(
      16px,
      2vw,
      24px
    );

  line-height: 1.15;

  font-weight: 500;

  color: #580713;
}


.vrExhibitImageWrap {
  position: relative;

  width: 100%;

  height:
    min(
      38vh,
      260px
    );

  display: flex;

  align-items: center;
  justify-content: center;

  overflow: hidden;

  border-radius: 8px;

  background:
    #eee8e4;
}


.vrExhibitImage {
  width: 100%;
  height: 100%;

  object-fit: contain;

  opacity: 1;

  transform: scale(1);

  transition:
    opacity 420ms ease,
    transform 650ms ease;
}


.vrExhibitImage.changing {
  opacity: 0;

  transform:
    scale(0.985);
}


.vrExhibitCaption {
  margin-top: 8px;

  min-height: 14px;

  font-size: 10px;

  line-height: 1.35;

  color: #746966;
}


.vrExhibitText {
  margin-top: 10px;

  font-size:
    clamp(
      10px,
      1.2vw,
      14px
    );

  line-height: 1.45;

  color: #3b3432;

  display:
    -webkit-box;

  -webkit-line-clamp: 4;

  -webkit-box-orient:
    vertical;

  overflow: hidden;
}


.vrExhibitText p {
  margin:
    0
    0
    7px;
}