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

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




.v3d-simple-preloader-bar {
    background: linear-gradient(90deg, #b77776, #9f110f);
    border: 0px solid #9f110f;;
    height:4px;

}

.v3d-simple-preloader-logo {
    background-image: url("logo.png");
    width: 140px;
}
    
.v3d-annotation {
    border-radius: 10px 10px 10px 0px;
    background: #6e6e6e;
    font-family: Helvetica, sans-serif;
    font-size: 12px;
    line-height: 20px;
    height: 20px;
}



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


.farbe {
	position: absolute;
	transition: bottom 1s;	
	height: 30px;
	width: 30px;
	border-radius: 3px;
	opacity: 1;
	border: 0px solid #ffffff;
	cursor: pointer;
	outline: none;
	z-index: 5;	
}

.farbe-on {
	position: absolute;
	transition: bottom 1s;	
	height: 30px;
	width: 30px;
	border-radius: 3px;
	opacity: 1;	
	cursor: pointer;
	border: 2px solid #111111;
	z-index: 6;	
}

.red {
	animation: pulse-red 1s infinite;
	box-shadow: 0 0 0 0px rgba(160, 17, 15, 0);
	margin-left: -20px;
	margin-top: -20px;
	height: 40px;
	width: 40px;
	background-color: #9f110f;
	border-radius: 50%;
	opacity: 1;
	border: 2px solid #ffffff;
	cursor: pointer;
	outline: none;
	
}
@keyframes pulse-red{

     0% {
          box-shadow: 0 0 0 0px rgba(160, 17, 15, 1);
     }
     100% {
          box-shadow: 0 0 0 12px rgba(160, 17, 15, 0);
     }
}