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

@keyframes pulse-red{

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

     25% {          box-shadow: 0 0 0 12px rgba(255, 130, 0, 0);
     }
     
     26% {          box-shadow: 0 0 0 0px rgba(255, 130, 0, 0);
     }

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

     50% {          box-shadow: 0 0 0 12px rgba(255, 130, 0, 0);
     }
   
     51% {          box-shadow: 0 0 0 0px rgba(255, 130, 0, 0);
     }
}

.v3d-simple-preloader-bar {
    background: #ff9900;
    border: #ff9900;

}

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

.red:hover {
  background-color: #feaf5e;
}

.close:hover{
  opacity: 0.8;
}

.red {
	animation: pulse-red 2.5s infinite;
	box-shadow: 0 0 0 0px rgba(0, 79, 159, 0);
	margin-left: -20px;
	margin-top: -20px;
	position: absolute;
	background: #ff8200;
	font-family: Helvetica, sans-serif;
  	font-size: 18px;
	font-weight: semibold;
	height: 36px;
	width: 36px;
	border-radius: 50%;
	border: 2px solid #ffffff;
	text-align: -moz-center;
	text-align: -webkit-center;
	padding: 0;
	cursor: pointer;
	outline: none;
	color: white;
	display: block;
	
}


.pop {

	position: absolute;
	height: 400px;
	width: 280px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-family: Helvetica, sans-serif;
  	font-size: 12px;
  	line-height: 20px;	
	border-radius: 4px;
	box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.2);
	cursor: auto;
	outline: none;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.5s;
	z-index: 12;
}

.close {
	position: absolute;
	height: 26px;
	width: 26px;
	right: 10px;
	top: 10px;
	border-radius: 50%;
	border-style: solid;
	border-color: #00b8cf;
	background-color: #ffffff;
	background-image: url("x.svg");
	cursor: pointer;
	outline: none;
	z-index: 11;   
}


/*
@media only screen and (max-width: 550px) {
.pop {
	width: 80%;
	left: 50%;
	top: auto;
	transform: translate(-50%,0);
	bottom: 50px;
*/

}