@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;700&display=swap");
/* width */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(241, 241, 241, 0.55);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #acacac;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #2b0a3d;
}

#titleBar {
  position: absolute;
  bottom: 160px !important;
  left: 30px !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 500px;
  height: auto;
  background: transparent;
  text-align: left;
  margin-bottom: 0.6em;
  padding: 5px 10px;
  background: rgba(0, 112, 173, 0.75);
  border-radius: 10px;
  border-bottom: 2px solid #0071ad;
}

#titleBar .sceneName {
  font-size: 1em;
  line-height: 1.5em;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  background: transparent;
  color: #e2e2e2;
  white-space: pre-wrap;
  margin-bottom: 0;
}

#autorotateToggle {
  width: 40px;
  height: 40px;
}

#autorotateToggle .icon {
  width: 30px;
  height: 3 0px;
}

.mobile #titleBar {
  position: fixed;
  bottom: 150px !important;
  left: 10px !important;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  height: auto;
}

.mobile #titleBar .sceneName {
  font-size: 1em;
  white-space: pre-wrap;
}

.browseAll {
  position: relative;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  z-index: 0;
  font-size: 1.5rem;
  font-weight: normal;
}

.browseAll .browse-all-circle {
  width: 100%;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  fill: #fff;
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}

.browseAll .bg-browseAll {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: #0070ad;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  z-index: 1;
  opacity: 1;
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-content: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}

.browseAll .bg-browseAll .front-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 30px;
}

.browseAll .bg-browseAll .front-icon path {
  fill: #fff;
}

.browseAll .bg-browseAll .back-icon {
  width: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotateY(180deg);
          transform: translate(-50%, -50%) rotateY(180deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.browseAll:hover .browse-all-circle {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  fill: #95e616;
}

.browseAll:hover .bg-browseAll {
  background: #e8243e;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.browseAll.close {
  opacity: 1;
}

.browseAll.close .browse-all-circle {
  -webkit-transform: rotate(120deg);
          transform: rotate(120deg);
}

.browseAll.close .bg-browseAll {
  background: #95e616;
  -webkit-transform: translate(-50%, -50%) rotateY(180deg);
          transform: translate(-50%, -50%) rotateY(180deg);
}

.browseAll.close #btn-open {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.browseAll.close #btn-open line {
  stroke: #50aa1d;
}

.browseAll.close:hover .browse-all-circle {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  fill: #e8243e;
}

.browseAll.close:hover .bg-browseAll {
  background: #95e616;
}

.mobile .browseAll {
  width: 45px;
  height: 45px;
}

.mobile .browseAll p {
  font-size: 16px;
  text-align: center;
}

.mobile .browseAll .arrow {
  width: 25px;
  height: 25px;
  background: url("../assets/virtual-tour-icons/right.svg") no-repeat;
  background-size: contain;
  background-position: center center;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: 0.3s -webkit-transform ease-in-out;
  transition: 0.3s -webkit-transform ease-in-out;
  transition: 0.3s transform ease-in-out;
  transition: 0.3s transform ease-in-out, 0.3s -webkit-transform ease-in-out;
}

.mobile .browseAll .arrow.rotate {
  -webkit-animation: rotateBack 0.3s ease-in-out 0.1s forwards;
          animation: rotateBack 0.3s ease-in-out 0.1s forwards;
}

@-webkit-keyframes rotateBack {
  from {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  to {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

@keyframes rotateBack {
  from {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  to {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

.mobile .browseAll.close .arrow {
  background: url("../assets/virtual-tour-icons/right.svg") no-repeat;
  background-size: contain;
  background-position: center center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.bg-layer-clip-path-animate {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  -webkit-clip-path: ellipse(50px 50px at 100% 50%);
          clip-path: ellipse(50px 50px at 100% 50%);
}

.bg-layer-blue {
  background: #0070ad;
  left: 10px;
  width: calc(100% - 10px);
}

.bg-layer-green {
  background: #95e616;
}

#sceneList {
  padding-top: 0;
  top: 5em;
  width: 28vw;
  left: unset;
  right: calc(-28vw + 60px);
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  overflow: initial;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

#sceneList .bg-layer {
  position: fixed;
  width: calc(28vw - 60px);
  margin-left: 60px;
  height: calc(100% + 2.5em);
  border-radius: 15px;
  border-top-right-radius: 0;
  background-position: center center;
  background-size: cover;
  padding-top: 2.5em;
  z-index: 0;
  background: rgba(0, 83, 128, 0.9);
  /* Old browsers */
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 112, 173, 0.9)));
  background: linear-gradient(to left, rgba(0, 112, 173, 0.9) 0% rgba(0, 83, 128, 0.9) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  -webkit-clip-path: ellipse(0px 0px at 100% 50%);
          clip-path: ellipse(0px 0px at 100% 50%);
  -webkit-transition: all 0.75s ease;
  transition: all 0.75s ease;
}

#sceneList .bg-layer h2 {
  color: #0071ad;
  font-size: 1.7rem;
  text-transform: uppercase;
  margin-bottom: 1.1em;
  margin-left: 30px;
}

#sceneList .bg-layer .input-group {
  margin: 15px 30px;
  width: calc(28vw - 60px - 60px);
}

#sceneList .bg-layer .input-group .input-group-prepend .input-group-text {
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  background: #dadada;
}

#sceneList .bg-layer .input-group input {
  border-left: 0;
  background: #dadada;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

#sceneList .bg-layer .input-group input:focus {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

#sceneList .bg-layer #tabs {
  width: 70%;
  margin-left: 60px;
  display: -ms-grid;
  display: grid;
  margin-bottom: 25px;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

#sceneList .bg-layer #tabs .tab {
  padding: 15px;
  font-size: 1.5em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  font-family: "Ubuntu", sans-serif;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

#sceneList .bg-layer #tabs .tab svg {
  fill: #ffffff;
  height: 25px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 15px;
}

#sceneList .bg-layer #tabs .tab:hover, #sceneList .bg-layer #tabs .tab.active {
  border-bottom: 5px solid #0071ad;
}

#sceneList .bg-layer #tabs .tab:hover svg, #sceneList .bg-layer #tabs .tab.active svg {
  fill: #0071ad;
}

#sceneList .bg-layer #tabs .tab:nth-child(2) svg {
  height: 20px;
  margin-bottom: 3px;
}

#sceneList ul.scenes {
  position: relative;
  width: calc(100% - 15px);
  margin: 0;
  padding-left: 30px;
  margin-left: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (100%)[1];
      grid-template-columns: repeat(1, 100%);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  max-height: calc(100vh - 4em - 130px);
  overflow-y: auto;
  overflow-x: hidden;
}

#sceneList ul.scenes .collapse {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-animation: fadeOut 0.2s ease-in-out forwards;
          animation: fadeOut 0.2s ease-in-out forwards;
}

#sceneList ul.scenes .collapse .closeBtn {
  position: absolute;
  top: 0px;
  left: 5px;
  z-index: 1;
  color: #000;
}

#sceneList ul.scenes .collapse .card {
  background-color: transparent;
  border: none;
  padding: 10px;
  border-radius: 0;
  border-bottom: 0.5px solid #ececec;
}

#sceneList ul.scenes .collapse.show {
  -webkit-animation: fadeIn 0.3s ease-in-out 0.3s forwards;
          animation: fadeIn 0.3s ease-in-out 0.3s forwards;
}

#sceneList ul.scenes .collapse.show .card {
  opacity: 1;
  height: 100%;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

#sceneList ul.scenes .collapsing {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

#sceneList ul.scenes .collapsing .card {
  background-color: #ececec;
  border: none;
}

#sceneList ul.scenes .scene,
#sceneList ul.scenes .sceneGroup {
  width: 100%;
  height: auto !important;
  padding: 6px 10px !important;
  margin: 0.2em 0;
  font-family: "Ubuntu", sans-serif;
  font-size: 0.95em;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

#sceneList ul.scenes .scene .scene-icon-img,
#sceneList ul.scenes .sceneGroup .scene-icon-img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  margin-left: 10px;
  width: 15px;
  height: 15px;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

#sceneList ul.scenes .scene.collapsed .scene-icon-img,
#sceneList ul.scenes .sceneGroup.collapsed .scene-icon-img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

#sceneList ul.scenes .scene .text,
#sceneList ul.scenes .sceneGroup .text {
  color: #ececec;
  padding-left: 0;
  padding-right: 0;
  list-style-type: none;
}

#sceneList ul.scenes .scene.current, #sceneList ul.scenes .scene:hover,
#sceneList ul.scenes .sceneGroup.current,
#sceneList ul.scenes .sceneGroup:hover {
  background: transparent;
  -webkit-transform: translateX(-2px) scale(1.05);
          transform: translateX(-2px) scale(1.05);
}

#sceneList ul.scenes .scene.current .text, #sceneList ul.scenes .scene:hover .text,
#sceneList ul.scenes .sceneGroup.current .text,
#sceneList ul.scenes .sceneGroup:hover .text {
  font-weight: 700;
  font-size: 1.1em;
}

#sceneList ul.scenes .scene.list.active,
#sceneList ul.scenes .sceneGroup.list.active {
  display: none;
  pointer-events: none;
  opacity: 0;
}

#sceneList ul.scenes .sceneGroup {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.05em;
  text-transform: uppercase;
}

#sceneList ul.scenes li {
  opacity: 0;
  -webkit-transition: 0.3s opacity ease-in-out;
  transition: 0.3s opacity ease-in-out;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#sceneList .scenes:has(.collapse + .show) {
  overflow-y: hidden;
}

#sceneList.enabled {
  margin-left: 0 !important;
  right: 0;
  pointer-events: visible;
}

#sceneList.enabled .bg-layer {
  -webkit-clip-path: ellipse(120% 120% at 100% 50%);
          clip-path: ellipse(120% 120% at 100% 50%);
}

#sceneList.enabled ul.scenes li {
  opacity: 1;
}

#sceneList #sceneListToggle {
  position: absolute;
  top: 50%;
  left: -2%;
  -webkit-transform: translate(-20%, -70%) rotate(-90deg);
          transform: translate(-20%, -70%) rotate(-90deg);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  padding: 0;
  height: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 9;
  background: transparent;
  opacity: 1;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

#sceneList #sceneListToggle .browseAll2 {
  position: relative;
  width: 49px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  z-index: 0;
  font-size: 1.5rem;
  font-weight: normal;
}

#sceneList #sceneListToggle .browseAll2 .browse-all-circle {
  width: 50px;
  height: 50px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: transparent;
  -webkit-transform: translate(0, 0%);
          transform: translate(0, 0%);
  opacity: 0;
  pointer-events: visible;
  z-index: -1;
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}

#sceneList #sceneListToggle .browseAll2 .bg-browseAll2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: transparent;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  z-index: -1;
  opacity: 1;
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-content: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}

#sceneList #sceneListToggle .browseAll2 .bg-browseAll2 .front-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 150px;
  margin: 0;
  opacity: 1;
  text-align: center;
  text-transform: uppercase;
  pointer-events: visible;
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}

#sceneList #sceneListToggle .browseAll2 .bg-browseAll2 .back-icon {
  width: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%) rotateY(180deg);
          transform: translate(-50%, -50%) rotateY(180deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}

@media (max-width: 575.98px) {
  #sceneList #sceneListToggle .browseAll2 .bg-browseAll2 p {
    font-size: 16px;
  }
}

#sceneList #sceneListToggle .browseAll2:hover .bg-browseAll2 {
  -webkit-transform: translate(-50%, -70%);
          transform: translate(-50%, -70%);
}

#sceneList #sceneListToggle.enabled .browseAll2 .browse-all-circle {
  opacity: 1;
  pointer-events: visible;
  background: rgba(255, 255, 255, 0.5);
}

#sceneList #sceneListToggle.enabled .browseAll2 .bg-browseAll2 {
  -webkit-transform: translate(-50%, -50%) rotateY(180deg);
          transform: translate(-50%, -50%) rotateY(180deg);
}

#sceneList #sceneListToggle.enabled .browseAll2 .front-icon {
  opacity: 0;
  pointer-events: none;
}

#sceneList #sceneListToggle.enabled .browseAll2 .back-icon {
  opacity: 1;
  pointer-events: visible;
}

#sceneList #sceneListToggle.enabled .browseAll2 #btn-open {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#sceneList #sceneListToggle.enabled .browseAll2 #btn-open line {
  stroke: #50aa1d;
}

#sceneList #sceneListToggle.enabled .browseAll2:hover .browse-all-circle {
  -webkit-transform: translate(0, 0%) rotate(-120deg);
          transform: translate(0, 0%) rotate(-120deg);
  fill: #e8243e;
}

#sceneList #sceneListToggle.enabled .browseAll2:hover .bg-browseAll2 {
  background: #0070ad;
}

.mobile #sceneList {
  position: absolute;
  padding-top: 0;
  width: 100vw;
  height: 100%;
  left: calc(100vw - 45px);
}

.mobile #sceneList.enabled {
  left: 0;
  z-index: 99;
}

.mobile #sceneList .bg-layer {
  padding-top: 15px;
  width: calc(100% - 45px);
}

.mobile #sceneList .bg-layer h2 {
  margin-left: 25px;
  font-size: 1.3em;
}

.mobile #sceneList .bg-layer .input-group {
  margin: 15px 25px;
  width: calc(100% - 50px);
}

.mobile #sceneList #sceneListToggle {
  width: 45px;
  height: 45px;
}

.mobile #sceneList #sceneListToggle.enabled {
  left: 15px;
}

.mobile #sceneList ul.scenes {
  -ms-grid-columns: (auto)[1];
      grid-template-columns: repeat(1, auto);
  height: auto;
  max-height: calc(100vh - 5em - 120px);
}

.mobile #sceneList ul.scenes .scene {
  padding: 7.5px 15px !important;
  padding-left: 0 !important;
}

.mobile #sceneList ul.scenes .scene li {
  padding: 0;
}

.mobile #sceneList ul.scenes .collapse {
  overflow: hidden;
}

#highLight {
  position: fixed;
  bottom: 0;
  padding-top: 0;
  width: 64%;
  left: 50%;
  max-width: 870px;
  z-index: 1;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: initial;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

#highLight .bg-layer {
  width: 100%;
  height: calc(100%);
  background-position: center center;
  background-size: cover;
  padding: 1em;
  border-radius: 15px;
  border-top-left-radius: 0;
  padding-bottom: 0.5em;
  z-index: 0;
  background: rgba(36, 164, 201, 0.9);
}

#highLight .bg-layer .bg-layer-clip-path-animate {
  -webkit-clip-path: ellipse(50px 50px at 0% 50%);
          clip-path: ellipse(50px 50px at 0% 50%);
}

#highLight .bg-layer .bg-layer-blue {
  left: 0;
  width: calc(100% - 10px);
}

#highLight .bg-layer ul.highLights {
  position: relative;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0;
  padding-left: 0;
  margin-left: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
}

#highLight .bg-layer ul.highLights .sceneCategory {
  position: relative;
  color: #ececec;
  padding-left: 0;
  padding-right: 0;
  list-style-type: none;
  min-width: 120px;
  min-height: 80px;
  margin: 0.25em;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

#highLight .bg-layer ul.highLights .sceneCategory:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(100% - 20px);
  background: #fff;
  border-radius: 0px;
  border-bottom-left-radius: 10px;
  z-index: 0;
}

#highLight .bg-layer ul.highLights .sceneCategory a {
  position: relative;
  cursor: pointer;
}

#highLight .bg-layer ul.highLights .sceneCategory a .chat-bubble {
  padding-top: 1px;
  z-index: 1;
}

#highLight .bg-layer ul.highLights .sceneCategory a:hover .chat-bubble {
  -webkit-clip-path: ellipse(100% 100% at 50% 30%);
          clip-path: ellipse(100% 100% at 50% 30%);
}

#highLight .bg-layer ul.highLights .sceneCategory a.disabled {
  pointer-events: none !important;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

#highLight .bg-layer ul.highLights .sceneCategory p {
  margin: 0 45px 0 10px;
  text-align: left;
  text-transform: uppercase;
  color: #2b0a3d;
  font-size: 0.9em;
  font-weight: bold;
  z-index: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

#highLight .bg-layer ul.highLights .sceneCategory .icon-list {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ececec;
  border-radius: 25px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

#highLight .bg-layer ul.highLights .sceneCategory .icon-list a {
  z-index: 9;
}

#highLight .bg-layer ul.highLights .sceneCategory .icon-list a#sceneListToggle {
  height: auto;
  padding: 0;
  background: transparent;
}

#highLight .bg-layer ul.highLights .sceneCategory .icon-list a svg {
  width: 25px;
  height: 25px;
  margin: 0 7.5px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#highLight .bg-layer ul.highLights .sceneCategory .icon-list a svg g {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#highLight .bg-layer ul.highLights .sceneCategory .icon-list a svg path {
  z-index: 9;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  fill: #26938e;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#highLight .bg-layer ul.highLights .sceneCategory .icon-list a svg #noun_circle_arrows_239715 {
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

#highLight .bg-layer ul.highLights .sceneCategory .icon-list a:hover svg path {
  fill: #24a4c9;
}

#highLight .bg-layer ul.highLights .sceneCategory .icon-list a:hover svg.virtual-tour-svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

#highLight .bg-layer ul.highLights .sceneCategory .icon-list a:hover svg.virtual-tour-svg #Path_1998 {
  fill: #24a4c9;
}

#highLight .bg-layer ul.highLights .sceneCategory .icon-list a:hover svg.video-360 #noun_circle_arrows_239715 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#highLight .bg-layer ul.highLights .sceneCategory .icon-list a:hover svg.video-360 #Path_2049 {
  fill: #24a4c9;
}

#highLight .bg-layer ul.highLights .sceneCategory.active .icon-list {
  background: #9ee8f9;
}

#highLight .bg-layer ul.highLights .sceneGroup {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.05em;
  text-transform: uppercase;
}

#highLight .bg-layer ul.highLights li {
  opacity: 0;
  -webkit-transition: 0.3s opacity ease-in-out;
  transition: 0.3s opacity ease-in-out;
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

#highLight #highLightListToggle {
  position: absolute;
  top: -2%;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  padding: 0;
  height: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
  background: transparent;
  opacity: 1;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

#highLight #highLightListToggle .browseAll {
  position: relative;
  width: 50px;
  height: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  z-index: 0;
  font-size: 1.5rem;
  font-weight: normal;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

#highLight #highLightListToggle .browseAll .browse-all-circle {
  width: 50px;
  height: 50px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: transparent;
  opacity: 0;
  pointer-events: visible;
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}

#highLight #highLightListToggle .browseAll .bg-browseAll {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: transparent;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  z-index: 1;
  opacity: 1;
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-content: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}

#highLight #highLightListToggle .browseAll .bg-browseAll .front-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 150px;
  margin: 0;
  opacity: 1;
  color: #ffffff;
  pointer-events: visible;
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}

#highLight #highLightListToggle .browseAll .bg-browseAll .back-icon {
  width: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%) rotateY(180deg);
          transform: translate(-50%, -50%) rotateY(180deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}

#highLight #highLightListToggle .browseAll:hover {
  -webkit-transform: translate(0%, -20%);
          transform: translate(0%, -20%);
}

#highLight #highLightListToggle.enabled .browseAll .browse-all-circle {
  opacity: 1;
  pointer-events: visible;
  background: rgba(255, 255, 255, 0.5);
}

#highLight #highLightListToggle.enabled .browseAll .bg-browseAll {
  -webkit-transform: translate(-50%, -50%) rotateY(180deg);
          transform: translate(-50%, -50%) rotateY(180deg);
}

#highLight #highLightListToggle.enabled .browseAll .front-icon {
  opacity: 0;
  pointer-events: none;
}

#highLight #highLightListToggle.enabled .browseAll .back-icon {
  opacity: 1;
  pointer-events: visible;
}

#highLight #highLightListToggle.enabled .browseAll #btn-open {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#highLight #highLightListToggle.enabled .browseAll #btn-open line {
  stroke: #50aa1d;
}

#highLight #highLightListToggle.enabled .browseAll:hover {
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
}

#highLight #highLightListToggle.enabled .browseAll:hover .browse-all-circle {
  -webkit-transform: rotate(-120deg);
          transform: rotate(-120deg);
  fill: #e8243e;
}

#highLight #highLightListToggle.enabled .browseAll:hover .bg-browseAll {
  background: #95e616;
}

#highLight.enabled {
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}

#highLight.enabled ul.highLights li {
  opacity: 1;
}

@media (max-width: 575.98px) {
  #highLight {
    width: 100%;
  }
  #highLight .bg-layer {
    border-radius: 0;
  }
  #highLight .bg-layer ul.highLights {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

#playBtn {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 110px;
  height: 50px;
}

#playBtn .flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

#playBtn .flexBox p {
  font-size: 21px;
  text-transform: uppercase;
  font-weight: normal;
  margin: 0;
}

#playBtn .flexBox svg {
  height: 40px;
}

#playBtn .flexBox svg #play-btn-circle,
#playBtn .flexBox svg path {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#playBtn .flexBox svg #play-btn-circle {
  fill: #0070ad;
}

#playBtn .flexBox:hover svg #play-btn path {
  fill: #95e616;
}

#playBtn .flexBox:hover svg #play-btn-circle {
  stroke: #95e616;
  fill: transparent;
}

.desktop .info-hotspot.visible .info-hotspot-header,
.desktop.no-touch .info-hotspot.visible .info-hotspot-header:hover {
  width: 60px;
}

.desktop.no-touch .info-hotspot .info-hotspot-header:hover {
  width: 40px;
}

.desktop .info-hotspot.visible .info-hotspot-title-wrapper,
.desktop.no-touch
.info-hotspot.visible
.info-hotspot-header
.info-hotspot-title-wrapper {
  opacity: 1;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  overflow: initial;
  background: transparent;
  -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 .info-hotspot-logoIcon,
.desktop.no-touch
.info-hotspot.visible
.info-hotspot-header
.info-hotspot-title-wrapper .info-hotspot-logoIcon {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 25px;
}

.desktop .info-hotspot.visible .info-hotspot-title-wrapper.pdf-viewer,
.desktop.no-touch
.info-hotspot.visible
.info-hotspot-header
.info-hotspot-title-wrapper.pdf-viewer {
  width: 80vw;
  background: rgba(255, 255, 255, 0.728);
  border-radius: 15px;
}

.desktop .info-hotspot.visible .info-hotspot-title-wrapper,
.desktop.no-touch
.info-hotspot
.info-hotspot-header:hover
.info-hotspot-title-wrapper {
  padding: 10px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.info-hotspot {
  opacity: 1;
  z-index: -1;
}

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

.info-hotspot .info-hotspot-icon-wrapper {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.info-hotspot .info-hotspot-icon-wrapper.scope {
  background: rgba(43, 10, 61, 0.906);
}

.info-hotspot .info-hotspot-icon-wrapper:hover {
  border-radius: 8px;
}

.info-hotspot .info-hotspot-title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 60px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  padding: 0 !important;
  border: 0px solid #e8243e;
}

.info-hotspot .info-hotspot-title-wrapper .info-hotspot-title {
  font-size: 21px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  text-align: left;
  margin-bottom: 10px;
  margin-top: 40px;
  text-transform: uppercase;
  display: none;
}

.info-hotspot .info-hotspot-title-wrapper .info-hotspot-title-img {
  width: 100%;
  margin-bottom: 20px;
}

.info-hotspot .info-hotspot-title-wrapper .info-hotspot-text {
  background: transparent;
  position: relative;
  padding: 0;
  top: 0;
  max-height: 100%;
  width: 20vw;
  height: auto;
  min-height: 450px;
  min-width: 750px;
  max-width: 900px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  padding: 2em 4.2em 2em 2em;
  color: #ececec;
  font-size: 1.5em;
  line-height: 1.05em;
  -webkit-transform: scale(0);
          transform: scale(0);
  border: 0 !important;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.info-hotspot .info-hotspot-title-wrapper .info-hotspot-text:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/img/info_banner_2.png") no-repeat;
  background-position: center center;
  background-size: contain;
  opacity: 1;
  z-index: -1;
}

.info-hotspot .info-hotspot-title-wrapper .info-hotspot-text.no-bg {
  width: 70vw;
  height: auto;
  min-height: 300px;
  min-width: 700px;
  max-width: 1200px;
  padding: 1em;
  border-radius: 15px;
  z-index: -1;
}

.info-hotspot .info-hotspot-title-wrapper .info-hotspot-text.no-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.92;
  z-index: -1;
}

.info-hotspot .info-hotspot-title-wrapper .info-hotspot-text.pdf-iFrame {
  width: 98.5%;
  max-width: 100%;
  height: 560px;
  padding: 1.5em;
}

.info-hotspot .info-hotspot-title-wrapper .info-hotspot-text.pdf-iFrame:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.4;
  z-index: -1;
}

.info-hotspot .info-hotspot-title-wrapper .info-hotspot-text span {
  font-size: 0.85em;
  line-height: 1.5em;
  font-weight: 300;
  color: #0070ad;
  font-family: "Ubuntu", sans-serif;
}

.info-hotspot .info-hotspot-title-wrapper .info-hotspot-text ul {
  padding-left: 30px;
}

.info-hotspot .info-hotspot-title-wrapper .info-hotspot-text ul li {
  margin-bottom: 15px;
}

.info-hotspot .info-hotspot-title-wrapper .info-hotspot-text .info-text-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info-hotspot .info-hotspot-title-wrapper .info-hotspot-text .info-text-wrapper .info-text-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px;
}

.info-hotspot .info-hotspot-title-wrapper .info-hotspot-text .info-text-wrapper .info-text-item .info-text-header {
  text-transform: uppercase;
}

.info-hotspot .info-hotspot-title-wrapper .info-hotspot-text .info-text-wrapper .info-text-item .info-text-content {
  font-size: 0.9em;
  font-weight: 300;
  line-height: 1.4em;
  margin-top: 1em;
}

.info-hotspot .info-hotspot-title-wrapper .info-hotspot-text .info-text-wrapper .info-text-item .info-text-ul li {
  font-size: 0.9em;
  font-weight: 300;
  position: relative;
  list-style-type: none;
  padding: 0;
  padding-left: 20px;
  margin-bottom: 15px;
}

.info-hotspot .info-hotspot-title-wrapper .info-hotspot-text .info-text-wrapper .info-text-item .info-text-ul li:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0px;
  width: 15px;
  height: 15px;
  background: url("../img/list-icon-og.svg") no-repeat;
  background-size: contain;
  background-position: center center;
}

.info-hotspot .info-hotspot-title-wrapper .info-hotspot-text .info-hotspot-text-image {
  border-radius: 15px;
  width: 96%;
  margin: 0 auto;
}

.info-hotspot .info-hotspot-title-wrapper .info-hotspot-close-wrapper {
  background: transparent;
  height: 25px;
  width: 25px;
  left: unset;
  right: 3px;
  top: 5px;
}

.link-hotspot {
  -webkit-transform-origin: center center;
          transform-origin: center center;
  z-index: -1;
}

.link-hotspot .link-hotspot-icon {
  height: unset;
}

.video-hotspot-link {
  height: 40px;
  width: 50px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  display: -ms-grid;
  display: grid;
  place-content: center;
}

.video-hotspot-link svg {
  width: 95%;
}

.video-hotspot-link .triangle {
  stroke-dasharray: 240;
  stroke-dashoffset: 480;
  stroke: #0070ad;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  fill: #fff;
  animation: playBtnTriangleAnimation 2.5s ease-in-out 1.5s infinite alternate-reverse;
}

.video-hotspot-link .circle {
  stroke: #95e616;
  stroke-dasharray: 650;
  stroke-dashoffset: 650;
  opacity: 1s;
  z-index: -1;
  fill: rgba(255, 255, 255, 0.6);
  animation: playBtnCircleAnimation 2.5s ease-in-out 1.5s infinite alternate-reverse;
}

.video-hotspot-link:hover .triangle {
  -webkit-animation: nudge 0.7s ease-in-out;
          animation: nudge 0.7s ease-in-out;
}

@-webkit-keyframes nudge {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  30% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  70% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes nudge {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  30% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  70% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.info-hotspot-icon {
  height: 50px;
  width: 50px;
  margin: 0 !important;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  display: -ms-grid;
  display: grid;
  place-content: center;
}

.info-hotspot-icon svg {
  width: 95%;
}

.info-hotspot-icon .info-i {
  stroke-dasharray: 440;
  stroke-dashoffset: 480;
  stroke: #0070ad;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  fill: #fff;
  animation: playBtnInfoAnimation 2.5s ease-in-out 1.5s infinite alternate-reverse;
}

.info-hotspot-icon .circle {
  stroke: #95e616;
  stroke-dasharray: 650;
  stroke-dashoffset: 650;
  opacity: 1s;
  z-index: -1;
  fill: rgba(255, 255, 255, 0.6);
  animation: playBtnCircleAnimation 2.5s ease-in-out 1.5s infinite alternate-reverse;
}

.info-hotspot-icon:hover .info-i {
  -webkit-animation: nudge 0.7s ease-in-out;
          animation: nudge 0.7s ease-in-out;
}

@keyframes nudge {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  30% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  70% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

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

.mobile .video-hotspot-link {
  height: 35px;
}

@-webkit-keyframes playBtnTriangleAnimation {
  from {
    stroke-dasharray: 240;
    stroke-dashoffset: 480;
    stroke: #0070ad;
  }
  to {
    stroke-dashoffset: 0;
    opacity: 1;
    stroke: #95e616;
  }
}

@keyframes playBtnTriangleAnimation {
  from {
    stroke-dasharray: 240;
    stroke-dashoffset: 480;
    stroke: #0070ad;
  }
  to {
    stroke-dashoffset: 0;
    opacity: 1;
    stroke: #95e616;
  }
}

@-webkit-keyframes playBtnInfoAnimation {
  from {
    stroke-dasharray: 440;
    stroke-dashoffset: 480;
    stroke: #0070ad;
  }
  to {
    stroke-dashoffset: 0;
    stroke-dasharray: 440;
    opacity: 1;
    stroke: #95e616;
  }
}

@keyframes playBtnInfoAnimation {
  from {
    stroke-dasharray: 440;
    stroke-dashoffset: 480;
    stroke: #0070ad;
  }
  to {
    stroke-dashoffset: 0;
    stroke-dasharray: 440;
    opacity: 1;
    stroke: #95e616;
  }
}

@-webkit-keyframes playBtnCircleAnimation {
  from {
    stroke: #95e616;
    stroke-dasharray: 650;
    stroke-dashoffset: 650;
    opacity: 1s;
  }
  to {
    stroke-dasharray: 2000;
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes playBtnCircleAnimation {
  from {
    stroke: #95e616;
    stroke-dasharray: 650;
    stroke-dashoffset: 650;
    opacity: 1s;
  }
  to {
    stroke-dasharray: 2000;
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@-webkit-keyframes flipY {
  from {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
}

@keyframes flipY {
  from {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
}

@-webkit-keyframes growSmall {
  from {
    width: 35px;
    height: 35px;
  }
  to {
    width: 45px;
    height: 45px;
  }
}

@keyframes growSmall {
  from {
    width: 35px;
    height: 35px;
  }
  to {
    width: 45px;
    height: 45px;
  }
}

.link-hotspot-tooltip {
  position: absolute;
  left: 50%;
  bottom: -35px;
  /* ( 60 - (16 + 2*8) ) / 2 */
  -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
  margin-left: 3px;
  font-size: 15px;
  max-width: 400px;
  padding: 8px 10px;
  background: #0071ad;
  color: #fff;
  font-family: "Ubuntu", sans-serif;
  border-radius: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: -ms-transform 0.3s, -webkit-transform 0.3s, transform 0.3s, opacity 0.3s;
  transition: -webkit-transform 0.3s, transform 0.3s, opacity 0.3s;
}

.info-hotspot-modal .info-hotspot-header {
  background: transparent;
}

.info-hotspot-modal.visible .info-hotspot-header {
  top: 15%;
  left: 15px;
  right: 15px;
  background: transparent;
}

.info-hotspot-modal.visible .info-hotspot-header .info-hotspot-title-wrapper {
  padding: 10px;
  left: 0;
  right: 0;
  z-index: 1;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.info-hotspot-modal.visible .info-hotspot-header .info-hotspot-title-wrapper img {
  width: 100%;
}

.info-hotspot-modal.visible .info-hotspot-header .info-hotspot-title-wrapper .info-hotspot-logoIcon {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 30px;
  height: auto;
}

.info-hotspot-modal.visible .info-hotspot-header .info-hotspot-title-wrapper:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% + 10px);
  height: calc(100% + 20px);
  border-left: 1px solid white;
  border-right: 1px solid white;
}

.info-hotspot-modal.visible .info-hotspot-header .info-hotspot-title-wrapper:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% + 20px);
  height: calc(100% + 10px);
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

.info-hotspot-modal .info-hotspot-text {
  top: unset;
  left: unset;
  position: relative;
  background: transparent;
}

.info-hotspot-modal .info-hotspot-icon-wrapper .info-hotspot-icon {
  opacity: 0;
}

.info-hotspot-modal .info-hotspot-close-wrapper {
  top: 3px;
  right: 3px;
  width: 30px;
  height: unset;
  background: transparent;
  z-index: 99;
}

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

.info-hotspot-modal .info-hotspot-title {
  display: block;
  font-size: 25px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  text-align: center;
  margin: 20px 0;
}

.info-hotspot-modal .info-hotspot-title-img {
  width: 100%;
  margin: 20px 0;
}

.info-hotspot-modal .info-hotspot-header {
  height: auto;
}

@media (max-width: 575.98px) {
  .info-hotspot-modal .info-hotspot-title {
    display: none;
  }
  .info-hotspot-modal .info-hotspot-text {
    bottom: 0;
    right: 0;
    padding: 0;
  }
}

.color-grey {
  position: fixed;
  width: 420px;
  height: 50px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.grey-vertical-bar {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  bottom: 20px;
  border-radius: 15px;
  height: 120px;
  width: 40px;
}

.grey-vertical-bar.level-1 {
  left: 30px;
}

.grey-vertical-bar.level-1 .viewControlButton-0 {
  top: 5px;
  left: 0;
  margin: 0;
}

.grey-vertical-bar.level-1 .viewControlButton-7 {
  top: calc(100% - 45px);
  left: 0;
  margin: 0;
}

.grey-vertical-bar.level-2 {
  left: 100px;
}

.grey-vertical-bar.level-2 .viewControlButton-5 {
  top: 5px;
  left: 0;
  margin: 0;
}

.grey-vertical-bar.level-2 .viewControlButton-6 {
  top: calc(100% - 45px);
  left: 0;
  margin: 0;
}

@media (max-width: 575.98px) {
  .grey-vertical-bar {
    height: 100px;
    width: 40px;
    bottom: 10px;
  }
  .grey-vertical-bar.level-1 {
    left: 10px;
  }
  .grey-vertical-bar.level-2 {
    left: 70px;
  }
}

.grey-d-pad {
  position: absolute;
  left: 160px;
  bottom: 20px;
  height: 120px;
  width: 120px;
}

.grey-d-pad:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.grey-d-pad .viewControlButton-1 {
  top: 0px;
  left: 40px;
  margin: 0;
}

.grey-d-pad .viewControlButton-2 {
  top: calc(100% - 40px);
  left: 40px;
  margin: 0;
}

.grey-d-pad .viewControlButton-3 {
  top: 40px;
  left: 0px;
  margin: 0;
}

.grey-d-pad .viewControlButton-4 {
  top: 40px;
  left: calc(100% - 40px);
  margin: 0;
}

@media (max-width: 575.98px) {
  .grey-d-pad {
    left: unset;
    right: 0px;
    height: 100px;
    width: 100px;
    bottom: 40px;
  }
  .grey-d-pad:before {
    height: 30px;
    width: 30px;
  }
  .grey-d-pad .viewControlButton-1 {
    top: 0px;
    left: 30px;
  }
  .grey-d-pad .viewControlButton-2 {
    top: calc(100% - 40px);
    left: 30px;
    margin: 0;
  }
  .grey-d-pad .viewControlButton-3 {
    top: 30px;
    left: 0px;
  }
  .grey-d-pad .viewControlButton-4 {
    top: 30px;
    left: calc(100% - 40px);
  }
}

#VRButton {
  display: none;
}

.mobile #VRButton {
  display: block;
}

.mobile #VRButton .icon {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.mobile #VRButton .icon#enter-vr {
  background-image: url("../assets/virtual-tour-icons/VR.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.mobile #VRButton .icon#exit-vr {
  background-image: url("../assets/virtual-tour-icons/no-vr.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.mobile #VRButton .icon#exit-vr p {
  display: none;
}

.mobile #VRButton .icon.on {
  opacity: 1;
  pointer-events: visible;
}

.mobile #VRButton .icon#exit-vr.on p {
  display: block;
  position: absolute;
  top: -35px;
  left: 50%;
  width: 125px;
  padding: 5px;
  font-size: 14px;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgba(15, 82, 119, 0.871);
  color: #ececec;
  text-transform: uppercase;
}

.mobile #VRButton .icon#exit-vr.on p:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 15px;
  width: 15px;
  background: url("../img/icons/down-triangle.png") no-repeat;
  background-size: contain;
}

#SoundButton .icon {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#SoundButton .icon.on {
  opacity: 1;
  pointer-events: visible;
}

#fullscreenToggle .icon {
  top: 7.5px;
  right: 7.5px;
  width: 25px;
  height: 25px;
}

.viewControlButton {
  bottom: 5px;
}

.viewControlButton .icon {
  top: 7.5px;
  right: 7.5px;
  width: 25px;
  height: 25px;
}

.mobile .color-grey {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9;
  padding: 0 5px;
}

.mobile .color-grey .viewControlButton {
  position: relative;
  left: unset;
  margin: 0 !important;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: auto;
  width: 35px;
  height: 35px;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.mobile .color-grey .viewControlButton .icon {
  width: 25px;
  height: 25px;
  right: 6px;
}

.mobile .color-grey #fullscreenToggle {
  position: relative;
  width: 35px;
  height: 35px;
}

.mobile .color-grey #fullscreenToggle .icon {
  width: 25px;
  height: 25px;
  right: 6px;
}

.mobile .color-grey #autorotateToggle {
  width: 35px;
  height: 35px;
}

.mobile .color-grey #autorotateToggle .icon {
  width: 25px;
  height: 25px;
  right: 6px;
}

#VRAlert {
  opacity: 0;
  pointer-events: none;
  max-width: 300px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #e8243e;
  border: none;
  color: #ececec;
}

.video-360-player {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.6 ease-in-out;
  transition: all 0.6 ease-in-out;
}

.video-360-player .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 25px;
  height: 25px;
  color: #2b0a3d;
  font-size: 1.5em;
  cursor: pointer;
}

.video-360-player .close-btn img {
  width: 100%;
}

.video-360-player.show {
  z-index: 999;
  opacity: 1;
  pointer-events: all;
}

.video-360-player.show .close-btn {
  z-index: 9999;
}

ul.arrow-list {
  margin: 0.75em 0;
  padding: 0 1em;
  list-style: none;
}

ul.arrow-list li.arrow-li::before {
  content: "";
  border-color: transparent #fff;
  border-style: solid;
  border-width: 0.35em 0 0.35em 0.45em;
  display: block;
  height: 0;
  width: 0;
  left: -1em;
  top: 0.9em;
  position: relative;
}

.viewControlButton-vr {
  display: none;
}

.mobile .viewControlButton-vr {
  margin-left: 0px;
  left: unset;
  right: 0;
}

.mobile .viewControlButton-vr .icon {
  width: 30px;
  height: 30px;
}
/*# sourceMappingURL=virtual.css.map */