/* __V3D_TEMPLATE__ - template-based file; delete this line to prevent this file from being updated */

body {
    margin: 0px;
    overflow: hidden;
}

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

/* custom from here */

/* ------------------------------ */

/* VUE STYLES */

.fade-enter-active, .fade-leave-active {
    transition: opacity .5s;
}

.fade-enter, .fade-leave-to {
    opacity: 0;
}

/* ------------------------------ */

#v3d-container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border: 0;
}

#preloader {
    height: 100%;
    width: 100%;
    position: absolute;
    /* opacity: 100%;
    transition: opacity 1s; */
}

#logo {
    width: 20%;
    height: 20%;
    fill: white;
    position: fixed;
    z-index: 2;
    -webkit-animation: logo-loading 2s infinite;
}

@-webkit-keyframes logo-loading {
    0%, 100% {
        -webkit-filter: drop-shadow(0 0 0 #c3e9ff);
        filter: drop-shadow(0 0 0 #c3e9ff);
    }
    50% {
        -webkit-filter: drop-shadow(0 0 5px #1873a8);
        filter: drop-shadow(0 0 5px #1873a8);
    }
}

.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#v3d-container>div>a {
    display: none
}

.bottom {
    bottom: 1rem;
    right: 1rem;
}

.rm-box-shadow {
    box-shadow: 0 0 0 none!important;
}