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

/* internal preloader */

.internal__preloader:before,
.internal__preloader:after {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.internal__preloader:before {
    background-color: #ffffff71;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    z-index: 1;
}

.internal__preloader:after {
    background-image: url("data:image/svg+xml,%3Csvg width='49' height='49' viewBox='0 0 49 49' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='24.5008' cy='24.4998' r='17.5' transform='rotate(-150 24.5008 24.4998)' stroke='url(%23paint0_linear_816_19572)' stroke-width='2' stroke-miterlimit='3.93356' stroke-linecap='round' stroke-dasharray='10 6'/%3E%3Ccircle cx='24.4997' cy='24.4997' r='11.5' transform='rotate(-150 24.4997 24.4997)' stroke='white' stroke-width='2' stroke-miterlimit='3.93356' stroke-linecap='round' stroke-dasharray='10 6'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_816_19572' x1='24.5008' y1='6.99983' x2='24.5008' y2='41.9998' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F58420'/%3E%3Cstop offset='1' stop-color='%23FF4141'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
    background-size: 49px 49px;
    background-position: center;
    background-repeat: no-repeat;
    animation: spin 1s linear infinite;
    z-index: 2;
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}