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

.play {
	position: absolute;
	animation: pulse-play 1s infinite;
	width: 80px;
	height: 80px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: 0.5s;
	border-radius: 50%;
	background: #00b8cf;
	outline: none;
	z-index: 11;
}

@keyframes pulse-play{

     0% {
          box-shadow: 0 0 0 0px rgba(0, 184, 270, .8);
     }
     100% {
          box-shadow: 0 0 0 12px rgba(0, 184, 270, 0);
     }
}

.btn {
	left: 50px;
	bottom: 14px;
	position: absolute;
	background: #00b8cf;
	height: 44px;
	width: 120px;
	border-radius: 30px;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
        font-size: 13px;
	text-align: center;
	text-align: -moz-center;
	text-align: -webkit-center;
	text-indent: 1px;
	font-weight: bold;
        font-family: Helvetica, sans-serif;
	color: white;
	display: block;	
	transition: background-color .3s;
}

.pop {
	box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, 0.2);
	position: absolute;
	width: 220px;
	height: 360px;
	bottom: 30px;
	right: 30px;
	transition: 0.5s;
	border-radius: 1px;
	opacity: 0;
	visibility: hidden;
	outline: none;
	z-index: 11;
}

.text	{
	width: 185px;
	padding-left: 18px;
	padding-top: 180px;
	text-align: left;
	text-align: -moz-left;
	text-align: -webkit-left;
	font-weight: 400;
	font-size: 14px;
	color:#666;
	font-family: Helvetica, sans-serif;
	line-height: 18px;
        
}

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

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


.v3d-simple-preloader-container {
    --v3d-preloader-img-width: 105px;
    --v3d-preloader-img-height: 100px;
}

.v3d-simple-preloader-bar {
    background: #00b8cf;
    height: 15px;
    border-color: #00b8cf;
}

.v3d-simple-preloader-logo {
    background-image: url('media/suva.png');
}