body {
  margin: 0;
  padding: 0;
  font-family: "Roboto";
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}


#panorama {
    width: 100vw;
    height: 100vh
}

#map, #modal {
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.8);
  color: #ffffff;
  z-index: 100;
}

#map .close,
#modal .modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 10;
}

#map .close img,
#modal .modal-close img {
  width: 100%;
  height: auto;
}

.btn {
  position: absolute;
  left: 5px;
  margin-top: 4px;
  background-color: #fff;
  border: 1px solid #999;
  border-color: rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  cursor: pointer;
  z-index: 2;
  -webkit-transform: translateZ(9999px);
  transform: translateZ(9999px);
  width: 26px;
  height: 26px;
  text-align: center;
}

.map-toggle {
  top: 95px;

}

.bird-toggle {
  top: 132px;
}

.photo-toggle {
  top: 169px;
}

.btn img {
  width: 90%;
  height: auto;
}

.main-img {
  display: inline-block;
  max-width: 75vw;
  position: relative;
}

.main-img img {
  width: 100%;
  height: auto;
}

.main-img .overlay {

}

.main-img .overlay img {
  position: absolute;
  opacity: 0.7;
}

.main-img .photo {

}

.location-list {
  display: inline-block;
  vertical-align: top;
  padding: 30px;
}

.location-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.location-list ul li {
  margin: 0 0 5px 0;
  padding: 0;
  cursor: pointer;
}

.location-list ul li span {
  display: block;
}

.location-list ul li:hover span {
  text-decoration: underline;
  transform: translateX(5px);
}




@media screen and (max-width: 1024px) {
  .map-toggle {
    top: 120px;
  }

  .bird-toggle {
    top: 155px;
  }

  .photo-toggle {
    top: 190px;
  }

  .main-img {
    max-width: 100vw;
  }
}

#modal .inner {
  padding: 40px;
}

#modal .inner .modal-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

#modal .inner .modal-content img {
  max-width: 90vw;
  max-height: 90vh;
  margin: 0 auto;
  display: block;
  border: 10px solid #ffffff;
}

#modal .inner .modal-content video {
  border: 10px solid #ffffff;
  max-width: 90vw;
  margin: 0 auto;
  display: block;
}

#gallery .gallery-main-photo img {
  max-width: 90vw;
  max-height: 90vh;
  margin: 0 auto;
  display: block;
}

#gallery .thumbs {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 15px;
}

#gallery .thumbs .thumb {
  border: 5px solid transparent !important;
  margin: 0 10px;
  width: calc(10% - 20px);
  display: inline-block !important;
  cursor: pointer;
}

#gallery .thumbs .thumb.active {
  border-color: #ffffff !important;
}

@media screen and (max-width: 1024px) {
  #gallery .thumbs .thumb {
    width: calc(20% - 20px);
  }
}

@media screen and (max-width: 768px) {
  #gallery .thumbs .thumb {
    width: calc(30% - 20px);
  }
}

.pnlm-render-container .pnlm-hotspot.photo-hotspot {
  background-image: url('img/photo.png');
  background-size: cover;
  width: 64px;
  height: 64px;
  cursor: pointer;
}


div.custom-tooltip span {
    visibility: hidden;
    position: absolute;
    border-radius: 3px;
    background-color: #ffca00;
    color: #000;
    text-align: center;
    max-width: 200px;
    padding: 5px 10px;
    margin-left: -220px;
    cursor: default;
}
div.custom-tooltip:hover span{
    visibility: visible;
}
div.custom-tooltip:hover span:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-width: 10px;
    border-style: solid;
    border-color: #ffca00 transparent transparent transparent;
    bottom: -19px;
    left: -10px;
    margin: 0 50%;
}
