/* __V3D_TEMPLATE__ - template-based file; delete this line to prevent this file from being updated */

body {
    margin: 0px;
    overflow: hidden;
}
#preloader-background {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    background: #f9f9f9;
}

.preloader-container {
    position: absolute;
    top: calc(50% - 30px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: auto;
}

.preloader-text {
    height: 60px;
    text-align: center;
    font-size: 40px;
    font-weight: 300;
    color: #75797e;
    margin: 0;
}
.v3d-container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.v3d-annotation {
    position: absolute;
    top: -16px;
    left: -16px;
    width: auto;
    padding: 6px 12px;
    min-width: 14px;
    height: 26px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-family: sans-serif;
    line-height: 26px;
    color: #fff;
    text-align: center;
    user-select: none;
    background: rgba(0, 0, 0, 0.8);
}

.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); }
