@font-face {
    font-family: "Montserrat Bold";
    src: url("../fonts/Montserrat-Bold.woff2"), format("woff2"),
         url("../fonts/Montserrat-SemiBold.svg"), format("svg");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat SemiBold";
    src: url("../fonts/Montserrat-SemiBold.ttf"), format("ttf"),
        url("../fonts/Montserrat-SemiBold.woff2"), format("woff2"),
        url("../fonts/Montserrat-SemiBold.svg"), format("svg");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Tahoma Regular";
    src: url("../fonts/Tahoma.woff2"), format("woff2"),
         url("../fonts/Tahoma.svg"), format("svg");
    font-weight: 400;
    font-style: normal;
}

body {
    margin: 0px;
    overflow: hidden;
    background: #ffffff;
}

.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 {
    padding: 8px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    border: 1px solid #D0CFCF;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.85);
    font-family: "Montserrat SemiBold";
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    user-select: none;
    transition: background-color .2s, color .2s;
}

.v3d-annotation.active {
    color: #fff;
    border-color: #6BC234;
    background-color: #6BC234;
}

.v3d-annotation:hover {
    color: #fff;
    border-color: #6BC234;
    background-color: #6BC234;
}


.v3d-annotation-dialog {
    background-color: #fff;
    color: #000;
    border: 1px solid #D0CFCF;
    border-top-left-radius: unset;
    padding: 16px;
    text-align: start;
    font-family: "Tahoma Regular";
    font-size: 14px;
    text-transform: none;
    width: 230px;
}

.v3d-simple-preloader-container {
    --v3d-preloader-img-width: 0px;
    --v3d-preloader-img-height: 0px;
}

.v3d-simple-preloader-bar {
    background: linear-gradient(90deg, #ffffff, #000000);
    height: 10px;
    border-color: #000000;
}



.v3d-simple-preloader-logo {
    background-image: url('media/Logo2Bio.svg');
}