/* __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%;
}

.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); }


.icon {
	position: absolute;
	animation: pulse-icon 5s infinite;
	height: 150px;
	width: 150px;
	background-size: 100%;
	margin-top: -75px;
	margin-left: -75px;
	border-radius: 50%;
	border: solid #f2f2f2 5px;
	cursor: pointer;
	outline: none;
	display: inline-block;
	transition: opacity 0.2s;
	z-index: 10;

}

.icon-mitte {
	position: absolute;
	animation: pulse-icon 5s infinite;
	height: 180px;
	width: 180px;
	background-size: 100%;
	margin-top: -90px;
	margin-left: -90px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	outline: none;
	display: inline-block;
	transition: opacity .2s;
	z-index: 10;

}

@keyframes pulse-icon{

     0% {
          box-shadow: 0 0 0 0px rgba(255, 255, 255, 1);
     }

     20% {
          box-shadow: 0 0 0 10px rgba(255, 255, 255, 1);
     
     }
     50% {
          box-shadow: 0 0 0 25px rgba(255, 255, 255, 0);
     }
   
   
}

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

.pop-icon {
	position: absolute;	
	left: 20px;
	top: 20px;
	color: white;
	height: 90px;
	width: 90px;
	z-index: 12;
	transition: 0.5s;
}


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

.btn {
	
	left: 50%;
	transform: translate(-50%, -50%);
	bottom: 0px;
	position: absolute;
	background-color: #00b8cf;
	height: 46px;
	width: 140px;
	border-radius: 30px;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
      font-size: 14px;
	text-align: center;
	text-align: -moz-center;
	text-align: -webkit-center;
	vertical-align: middle;
      font-family: medium;
	line-height: 46px;
	font-weight: 400;
	color: white;
	display: block;	
	z-index: 30;
	transition: all .3s;		
}

.btn:hover {	
	
	background-color: #3f6e7f;
	cursor: pointer;
}

.tag {
	position: fixed;
	bottom: -26px;
	margin-top: 60px;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	height: 28px;
	width: auto;
	border-radius: 30px;
	border: solid #ccc 1px;
	cursor: auto;
	outline: none;
	padding-left: 10px;
	padding-right: 10px;
   	font-size: 14px;
	text-align: center;
	text-align: -moz-center;
	text-align: -webkit-center;
	vertical-align: middle;
    	font-family: medium;
	line-height: 28px;
	font-weight: 400;
	color: #666;
	display: block;	
	z-index: 20;
			
}

.close {
 	position: absolute;
	width: 39px;
	height: 39px;
	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: 18px;
 	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;
}

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


.icon:hover {
 	opacity: 0.8;
	transform: scale(1.2);
	-webkit-transform: scale(1.2);	
}

.icon-mitte:hover {
 	opacity: 0.8;	
}



@media screen and (max-width: 650px) {
  .icon {
     height: 120px;
	width: 120px;
	margin-top: -60px;
	margin-left: -60px;

  }
}

@media screen and (max-width: 480px) {
  .icon {
     height: 80px;
	width: 80px;
	margin-top: -40px;
	margin-left: -40px;

  }
}

@media screen and (max-width: 650px) {
  .icon-mitte {
     height: 160px;
	width: 160px;
	margin-top: -80px;
	margin-left: -80px;

  }
}

@media screen and (max-width: 480px) {
  .icon-mitte {
     height: 120px;
	width: 120px;
	margin-top: -60px;
	margin-left: -60px;

  }
}

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

@media screen and (max-width: 480px) {
  .tag {
	bottom: -20px;
	transform: translate(-50%, -22%) scale(0.7);
  }
}

@media screen and (max-width: 360px) {
  .pop-titel {
    font-size: 18px;
  }
}


