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

body {
    margin: 0px;
    overflow: hidden;
    -moz-hyphens: auto;
   -o-hyphens: auto;
   -webkit-hyphens: auto;
   -ms-hyphens: auto;
   hyphens: auto;
}

.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 {
      background: #00b8cf;
	color: white;
	font-size: 11px;
	font-family: roman;
	border: none;
	cursor-events: none;	
	pointer-events: none;
}

.pop {
	position: absolute;
	bottom: 30px;
	left: 30px;
	border-radius: 3px;
	border: none;
	width: 260px;
	height: 400px;
	box-shadow: rgba(100, 100, 111, 0.3) 0px 7px 29px 0px;
	background-color: white;
	display: block;	
	opacity: 0;
	visibility: hidden;
	outline: none;
	z-index: 10;
	transition: 0.5s;
	font-family: medium;
	font-size: 18px;
	font-weight: 400;
	line-height: 20px;
	color: #666;
	text-align: left;
	text-align: -moz-left;
	text-align: -webkit-left;
	padding-bottom: 60px;
	padding-left: 20px;
}

.pop-tx {
	position: absolute;
	right: 20px;
	bottom: 20px;
	left: 20px;
	font-family: roman;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: #666;
	text-align: left;
	text-align: -moz-left;
	text-align: -webkit-left;	
	
}

.pop-untertitel {
	position: absolute;
	right: 14px;
	top: 190px;
	left: 20px;
	font-family: roman;
	font-size: 11px;
	font-weight: 400;
	line-height: 14px;
	color: #666;
	text-align: left;
	text-align: -moz-left;
	text-align: -webkit-left;	
	
}


.close {
 	position: fixed;
	width: 35px;
	height: 35px;
	margin-left: 80px;
	margin-top: -186px;
	border: none;
	border-radius: 20px;
	background-color: #00b8cf;
	z-index: 11;
	cursor: pointer;
	transition: 0.2s;
}

.close:before, .close:after {
 	position: absolute;
 	top: 7px;
	left: 16px;
 	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: #007180;
}
.blue:hover {
 	background-color: #007180;
}