* {
  -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;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -ms-content-zooming: none;
}

html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-family: 'Montserrat';
  font-size: 16px;
  background-color: #000;
  color: #fff;
}

#pano {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#logo {
  position: fixed;
  top: 2%;
  left: 4%;
  width: 11%;
  max-width: 200px;
  max-height: 300px;
  min-width: 80px;
  background-color: transparent;
}

.hidden {
  visibility: hidden;
}

.ver-mas{
	cursor:pointer;	
}

#popup {
  -ms-transform: translate(-50%, -50%);
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  
  width: 75%;
  height: 70%;
  /* background: azure; */
  
  opacity: 0;
  pointer-events: none;
  
  transition: opacity 0.5s;
  -moz-transition: opacity 0.5s; /* Firefox 4 */
  -webkit-transition: opacity 0.5s; /* Safari and Chrome */
  -o-transition: opacity 0.5s; /* Opera */
  -ms-transition: opacity 0.5s; /* Explorer 10 */
}
#popup.show-popup {
  opacity: 1;
  pointer-events: all;
}
#popup-bg {
  position: absolute;
  position: absolute;
  width: 100%;
  height: 100%;
}
.btn-popup {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 10%;
  cursor: pointer;
}
.btn-popup img {
  width: 100%;
  height: 100%;
}
#btn-popup-close {
  right: 5%;
}
#btn-popup-info {
  left: 5%;
}
#popup-tooltip {
  color: black;
  font-size: small;
  background: aqua;
  width: 175px;
  /* height: 45px; */
  padding: 5px;
  position: absolute;
  /* top: 75px; */
  left: -20px;
  
  opacity: 0;
  pointer-events: none;
  
  transition: opacity 0.5s;
  -moz-transition: opacity 0.5s; /* Firefox 4 */
  -webkit-transition: opacity 0.5s; /* Safari and Chrome */
  -o-transition: opacity 0.5s; /* Opera */
  -ms-transition: opacity 0.5s; /* Explorer 10 */
}
#btn-popup-info:hover #popup-tooltip {
  opacity: 1;
  pointer-events: all;
}

#popup-title {
	top: 25%;
	left: 50%;
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	height: 20%;
	text-align: center;
	color: black;
	font-size: 3vw;
	position: fixed;
	transform: translate(-50%, -50%);
}
#popup-right-pane {
  /* background: antiquewhite; */
  position: absolute;
  width: 30%;
  right: 45px;
  top: 20%;
  bottom: 15%;
}
#popup-img-cont {
  /* background: purple; */
  width: 100%;
  height: 88%;
}
#popup-img {
  /* background: cadetblue; */
  position: absolute;
  max-height: 88%;
  margin: 0 auto;
  left: 0;
  right: 0;
}
#popup-btn-lower-right-cont {
  /* background: yellow; */
  width: 100%;
  height: 12%;
  position: absolute;
  bottom: 0;
}
.popup-btn-lower-right {
  /* background: aquamarine; */
  position: absolute;
  height: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
  cursor: pointer;
}

.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.scroll {
  z-index: 2;
  /* height: 60%; */
  width: 50%;
  overflow-x: hidden;
  overflow-y: auto;
  text-align:justify;
  font-size: 1.5vw;
  position: absolute;
  top: 35%;
  bottom: 15%;
  left: 10%;
  color: black;
  padding: 15px;
}
.scroll::-webkit-scrollbar {
  width: 25px;
  height: 25px;
}

.scroll::-webkit-scrollbar-track {
  background: transparent;
}

.scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: black;
  border: 10px solid transparent;
  background-clip: content-box;
}

.scroll::-webkit-scrollbar-button{
  width: 25px;
  height: 25px;
}
.scroll::-webkit-scrollbar-button:vertical:decrement {
    background: url('img/arrowUp.png') no-repeat center center;
    background-size:cover;
}
.scroll::-webkit-scrollbar-button:vertical:increment {
    background: url('img/arrowDown.png') no-repeat center center;
    background-size:cover;
}

.btn-vive-exp {
    max-height: 40px;
    width: auto;
    margin-left: auto;
	margin-right: auto;
	position: fixed;
	bottom: -10%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#videoArea {
  -ms-transform: translate(-50%, -50%);
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  
  width: 75%;
  height: 70%;
  /* background: azure; */
  
  opacity: 0;
  pointer-events: none;
  
  transition: opacity 0.5s;
  -moz-transition: opacity 0.5s; /* Firefox 4 */
  -webkit-transition: opacity 0.5s; /* Safari and Chrome */
  -o-transition: opacity 0.5s; /* Opera */
  -ms-transition: opacity 0.5s; /* Explorer 10 */
}
#videoArea.show-popup {
  opacity: 1;
  pointer-events: all;
}
#videoPlayer {

  height:100%;
}
#btn-video-close {
  position: absolute;
  right: -50px;
  top: -50px;
}