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

/* Bullet rollover labels */

#label {
    background-color: rgba(255, 255, 255, .75);
    color: #616268;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    width: fit-content;
    height: auto;
    border-radius: 10px;
    padding: 3px 10px;
    z-index: 20;
    margin: 40px;
}

.v3d-annotation {
    position: absolute;
    width: 60px;
    height: 60px;
    padding: 0px;
    user-select: none;
    background-size: contain;
    background-color: #fff;
    border-radius: 100px;
    border: 1px solid #ff6e00;
    cursor: pointer;
}

.v3d-annotation-dialog {
    position: absolute;
    top: -4px;
    left: -4px;
    min-width: 0px;
    width: 38px;
    height: 38px;
    margin: 0px;
    user-select: none;
    background: none;
    border-radius: 100px;
    transition: opacity .5s;
    border: 4px solid #ff6e00;
}

.v3d-simple-preloader-container {
    position: absolute;
    top: 75px;
    left: 0px;
    margin-left: 0;
    width: 100%;
    height: 180px;
}

.v3d-simple-preloader-background {
    background: #eaeaea;
    background-image: url("preload.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.v3d-simple-preloader-logo {
    display: none;
}

.v3d-simple-preloader-bar {
    background: #ff6e00;
    border-color: #ff6e00;
    border-radius: 0px;
}

.playbtn {
    position: absolute;
    width: 20px;
    height: 20px;
    padding: 0px;
    user-select: none;
    background: #ff6e00;
    animation-name: color;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    border: 2px solid #fff;
    border-radius: 100px;
    cursor: pointer;
}

.v3d-annotation-transparent {
    opacity: 0;
    cursor: default;
    
}

@keyframes color {
    0% {
        background-color: #ff6e00;
        border-color: #fff;
    }
    15% {
        background-color: #ff6e00;
        border-color: #fff;
    }
    50% {
        background-color: rgba(255,255,255,0);
        border-color: rgba(255,255,255,0);
    }
    85% {
        background-color: #ff6e00;
        border-color: #fff;
    }
    100% {
        background-color: #ff6e00;
        border-color: #fff;
    }
}