/* __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');
}

/* removes tap blinking on ios devices */
* { -webkit-tap-highlight-color:rgba(0,0,0,0); }


.red {
	animation: pulse-red 1s infinite;
	box-shadow: 0 0 0 0px rgba(0, 79, 159, 0);
	margin-left: -20px;
	margin-top: -20px;
	background: #ff8200;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	opacity: 1;
	border: 3px solid #ffffff;
	cursor: pointer;
	outline: none;

	
}

@keyframes pulse-red{

     0% {
          box-shadow: 0 0 0 0px rgba(255, 130, 0, 1);
     }
     100% {
          box-shadow: 0 0 0 12px rgba(255, 130, 0, 0);
     }
}


.pop {
	box-shadow: 0 0 0 0px rgba(255, 130, 0, 0);
	position: absolute;
	top: 50%;
	left: 50%;	
	transform: translate(-50%, -50%);
	transition: 0.5s;
	border-radius: 6px;
	opacity: 0;
	visibility: hidden;
	box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.2);
	cursor: pointer;
	outline: none;
	z-index: 10;
	
}

.dottel{
	position: absolute;
	background: #00b8cf;
	height: 110px;
	width: 110px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
        font-size: 14px;
	font-family: medium;
	text-align: center;
	text-align: -moz-center;
	text-align: -webkit-center;
        font-family: medium;
	line-height: 16px;
	color: white;
	display: block;	
	transition: background-color .3s;
}

.dottel:hover {	
	background-color: #3f6e7f;
	cursor: pointer;
}
