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

body {
    margin: 0px;
    overflow: hidden;
    background: #5f687b;
}

noscript {
    display: block;
    text-align: center;
    padding-top: 100px;
    font-size: 20px;
}

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

.sn-annotations {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    font-family: Arial, Helvetica, sans-serif;
}

.sn-hotspot {
    --sn-delay: 0s;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .42s ease var(--sn-delay);
}

.sn-annotations.is-ready .sn-hotspot { opacity: 1; }

.sn-hotspot__cursor {
    position: absolute;
    width: 32px;
    height: 32px;
    margin: -16px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    pointer-events: auto;
}

.sn-hotspot__core {
    position: absolute;
    inset: 10px;
    border: 2px solid rgba(255,255,255,.95);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(20,29,38,.32), 0 2px 9px rgba(0,0,0,.32);
}

.sn-hotspot__pulse {
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 50%;
    animation: sn-pulse 2.1s ease-out infinite;
}

.sn-hotspot__card {
    position: absolute;
    left: 29px;
    top: 18px;
    width: min(270px, calc(100vw - 64px));
    padding: 15px 17px 16px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 12px;
    color: #fff;
    background: rgba(17,25,31,.9);
    box-shadow: 0 14px 36px rgba(0,0,0,.28);
    backdrop-filter: blur(14px);
    opacity: 0;
    transform: translateY(5px) scale(.98);
    transform-origin: left top;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.sn-hotspot.is-left .sn-hotspot__card {
    left: auto;
    right: 29px;
    transform-origin: right top;
}

.sn-hotspot.is-active .sn-hotspot__card {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    pointer-events: auto;
}

.sn-hotspot__eyebrow,
.sn-hotspot__title,
.sn-hotspot__description { display: block; }

.sn-hotspot__eyebrow {
    margin-bottom: 6px;
    color: #b8d2c1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
}

.sn-hotspot__title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.35;
}

.sn-hotspot__description {
    margin-top: 7px;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    line-height: 1.5;
}

@keyframes sn-pulse {
    0% { opacity: .9; transform: scale(.65); }
    72%, 100% { opacity: 0; transform: scale(1.45); }
}

@media (max-width: 640px) {
    .sn-hotspot__card {
        width: min(230px, calc(100vw - 52px));
        padding: 13px 14px 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sn-hotspot__pulse { animation: none; }
}
