/* __V3D_TEMPLATE__ - template-based file; delete this line to prevent this file from being updated */

body {
    margin: 0px;
    overflow: hidden;
}

.v3d-container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    cursor: all-scroll;
}

.fullscreen-button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-size: 100% 100%;
    display: none;
    z-index: 1;
}

.fullscreen-open {
    background-image: url('media/fullscreen_open.svg');
}

.fullscreen-close {
    background-image: url('media/fullscreen_close.svg');
}

/* removes tap blinking on ios devices */
* { -webkit-tap-highlight-color:rgba(0,0,0,0); }

.v3d-annotation {
	animation: pulse-blue 1.5s infinite;
	margin-left: -18px;
	margin-top: -18px;
	background: #00b8cf;
	border: 2px solid #ffffff;
	cursor: pointer;
	opacity: 1;
	transition: background-color .3s;
}


.v3d-annotation-transparent {
	opacity: .5;
}



@keyframes pulse-blue{

     0% {
          box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.7);
     }
     100% {
          box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
     }
}



.hand {

	position: absolute;
	width: 34px;
	height: 59px;
	bottom: 70px;
	left: 32px;
	background-image: url('hand_move.svg');
	transition: all .5s;
	opacity: 0;
	z-index: 10;
	pointer-events: auto;
}





.pop {
	position: absolute;
	bottom: 12px;
	right: 12px;
	border: none;
	border-radius: 3px;
	background: white;
	width: 400px;
	height: auto;
	font-size: 16px;
	line-height: 22px;
	padding-bottom: 20px;
	padding-top: 60px;
	padding-left: 20px;
	padding-right: 60px;
	color: #333;
	text-align: left;
	text-align: -moz-left;
	text-align: -webkit-left;
	font-family: roman;	
	box-shadow: rgba(0, 0, 0, 0.55) 2px 2px 10px;
	visibility: hidden;
	opacity: 0;
	outline: none;
	z-index: 11;
	transition: 0.5s;
}


.pop-titel {
	position: absolute;
	background: transparent;	
	font-size: 24px;
	line-height: 24px;
	width: 300px;
	top: 20px;
	color: #00b8cf;
	text-align: left;
	text-align: -moz-left;
	text-align: -webkit-left;
	font-family: medium;
	z-index: 12;
	transition: 0.5s;
}


.close {
 	position: absolute;
	width: 40px;
	height: 40px;
	top: 13px;
	right: 13px;
	border: none;
	border-radius: 20px;
	cursor: pointer;
	background-color: #00b8cf;
 	opacity: 1;	
	z-index: 12;
	transition: 0.2s;
}


.close:before, .close:after {
 	position: absolute;
 	top: 9px;
	left: 19px;
 	content: ' ';
 	height: 21px;
 	width: 3px;
 	background-color: white;
	border-radius: 99px;
}
.close:before {
	transform: rotate(45deg);
}
.close:after {
  	transform: rotate(-45deg);
}

.close:hover {
 	background-color: #257c99;
}


.v3d-annotation:hover {
 	background-color: #257c99;
}


.close:hover {
 	background-color: #257c99;
	transform: rotateZ(90deg);
}



@media screen and (max-width: 500px) {
  .pop {
    width: auto;
	right: 12px;
	left: 12px;
  }
}