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

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

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

.v3d-annotation-dialog {
    position: absolute;
    top: -13px;
    left: -13px;
    min-width: 0px;
    width: 1vw;
    height: 1vw;
    margin: 0px;
    user-select: none;
    background: none;
    border-radius: 100px;
    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;
}