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

.v3d-annotation {
    position: absolute;
    top: -9px;
    left: -9px;
    width: 16px;
    height: 16px;
    padding: 0px;
    user-select: none;
    background: rgba(255, 110, 0, 1);
    border: 2px solid #fff;
    cursor: pointer;
    z-index: 2;
}

.v3d-annotation-transparent {
    opacity: 0.25;
    cursor: default;
    z-index: 3;
}

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

.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;
    top: -12px;
    left: -12px;
    width: 16px;
    height: 16px;
    margin: -4px;
    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;
}

@media screen and (max-width: 600px) {
    .v3d-annotation, .playbtn {
        top: -6px;
        left: -6px;
        width: 8px;
        height: 8px;
    }

    .v3d-annotation-dialog {
        top: -8px;
        left: -8px;
        width: 2px;
        height: 2px;
        border-width: 3px;
        margin: -4px;
    }
}

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

