<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
Hotspots
==================================================
*/
.wrap-popup {
    position: fixed;
    z-index: 999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.6);
}
.popup {
    position: relative;
    width: 100%;
    max-width: 36em;
    margin: auto;
    top: auto;
    transform: none;
}
.popup .wrap-img img {
    width: 100%;
}
.popup .csc-textpic:last-child .wrap-img {
    margin-bottom: 0;
}


.wrap-hotspots {
    --pos-x: 0;
    --pos-y: 0;
    --width-hotspot: 3rem;
    --borderwidth-hotspot: 0.35;
}
@media (max-width:500px) {
    .wrap-hotspots {
        --width-hotspot: 2.2rem;
    }
}
.hotspot {
    --rgb-dot: var(--rgb-secondary);
}
.hotspot:hover  {
    --rgb-dot: var(--rgb-main);
}
.hotspot-btn {
    position: absolute !important;
    transform: translate(-50%, -50%);
    left:var(--pos-x);
    top:var(--pos-y);
}
.hotspot-btn-dot {
    width: var(--width-hotspot);
    height: var(--width-hotspot);
    border-radius: 50%;
    border:calc(var(--width-hotspot) * var(--borderwidth-hotspot)) solid rgba(var(--rgb-dot),0.4);
    background: rgba(var(--rgb-dot),0.8);
    background-clip: padding-box;
    text-align: center;
    --height-icon-em: 1;
    transition: 0.3s;
}
.hotspot-btn svg {
    --h: calc(var(--width-hotspot) * 0.37);
    position: relative;
}
.hotspot .btn-close {
    position: absolute;
    top:0;
    right: 0;
    transform: translate(50%, -50%);
    border-radius: 50%;
    background: white;
    width: 4rem;
    height: 4rem;
}
.wrap-hotspots &gt; .col &gt; .col &gt; .csc-textpic .wrap-img {
    padding: 0;
    margin: 0;
}
.wrap-hotspots &gt; .col &gt; .col &gt; .csc-textpic img {
    width: 100%;
}
.hotspot .wrap-popup {
    z-index: 999;
}
.hotspot .wrap-popup[style*=block] {
    display: flex !important;
}</pre></body></html>