* {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background-color: black;
  font-family: 'CenturyGothic';
  line-height: 1.25;
}

#container {
  position: absolute;
}

.portrait #container {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* CANVAS AND VIDEO */
#backgroundVideoCanvas {
  position: absolute;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  z-index: 1;
}

#backgroundVideo {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* HOTSPOTS */
.hotspot {
  visibility: hidden;
  display: block;
  opacity: 0;
  transition: opacity 0.3s linear;
  position: absolute;
  width: 60px;
  height: 60px;
  min-width: 21px;
  min-height: 21px;
  background-image: url('../icons/hotspot.gif');
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 3;
}

.highlight-frame {
  position: absolute;
  background-color: rgba(0,0,0,0.55);
  color: white;
  font-weight: bold;
  text-align: center;
  border-radius: 3px;
  padding: 17%;
  width: 175px;
  min-width: 55.65px;
  font-size: 18px;
  text-transform: uppercase;
}

.highlight-frame:hover {
  background-color: rgba(0,0,0,0.65);
}

.hotspot:hover .highlight-frame {
  background-color: rgba(0, 0, 0, 0.65);
}

.smallText {
  font-size: 18px;
}

.frame-down {
  left: -117%;
  top: 95%;
}

.frame-up {
  left: -100%;
  bottom: 95%;
}

/* BUTTONS */
#homeButton, #returnButton {
  visibility: hidden;
  display: block;
  opacity: 0;
  transition: opacity 0.3s linear;
  position: absolute;
  width: 65px;
  height: 65px;
  min-width: 37.5px;
  min-height: 37.5px;
  left: 25px;
  top: 25px;
  cursor: pointer;
  z-index: 3;
}

#logo {
  visibility: hidden;
  display: block;
  opacity: 0;
  transition: opacity 0.3s linear;
  position: absolute;
  width: auto;
  height: 30px;
  right: 25px;
  bottom: 25px;
  cursor: pointer;
  z-index: 3;
}

/* OVERLAYS */
#transitionOverlay {
  display: block;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s linear;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 1);
  z-index: 4;
}

/* INFO WINDOWS */
.infoWindow {
  visibility: hidden;
  display: block;
  opacity: 0;
  transition: opacity 0.3s linear;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  max-width: 45%;
  padding: 38px;
  font-size: 24px;
  top: 25px;
  right: 25px;
  border-radius: 10px;
  z-index: 3;
}

.infoWindowTitle {
  font-weight: bold;
  font-size: 28px;
}

.closeIcon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.infoWindow ul {
  margin: 0;
}

/* HITAREAS */
.hitarea {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 4;
}

.areaPolygon {
  fill: transparent;
  stroke: none;
  cursor: pointer;
}