@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --ad-width: 100%;
    --ad-height: 100%;
    --preloader-color: #0870d3;
    --border-width: 0px;
    --border-color: #000000;
    --text-padding: 40px;
    --text-color: #3b556e;
    --text-color2: #0870D3;
}

/*** PRELOADER ***/

@keyframes ae_PreloaderRotation {
    0% {
        opacity: 1;
        transform: rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: rotate(360deg);
    }
}

.CPreloader {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;

    opacity: 1;

    transition: opacity 0.5s;

    background-color: var(--preloader-color);
}

.CPreloaderImage {
    position: absolute;

    left: calc(50% - 50px);
    top: calc(50% - 50px);

    width: 100px;
    height: 100px;

    animation-fill-mode: forwards;

    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: ae_PreloaderRotation;
    animation-duration: 2.0s;
    animation-delay: 0.0s;
}

/*** PRELOADER ***/

.CHeader {
    position: absolute;

    left: 0px;
    top: 0px;
    width: 100%;
    height: 60px;

    background-color: #ffffff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.CHeader img {
    position: relative;
    width: auto;
    height: 26px;
}
.CHeader p {
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 10px;
    padding: 0;
    color: #000000;
}

.CScrollWrapper {
    position: relative;
    overflow: hidden;
    min-width: 100%;
    height: 100vh;

    text-align: left;

    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;

    background-color: #3b546d;
}

.CScrollContainer {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 100%;
}

.CScrollContainer img{
    position: relative;
    width: auto;
    height: 100%;
    max-height: 1080px;
}

.CScrollContent {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.CHotspotContainer {
    position: absolute;

    left: 0px;
    top: 0px;

    width: 100%;
    height: 100%;

    font-size: 0;
}

.CHotspotItem {
    position: absolute;

    pointer-events: all;
    cursor: pointer;

    left: 13.1%;
    top: 50%;

    width: 40px;
    height: 40px;

    border-radius: 30px;

    transform: translate(-50%, -50%);

    background-color: #ffffff;
    border: 4px solid #0870D3;

    transition-property: transform;
    transition-duration: 0.5s;
    transition-delay: 0.0s;
}


.CHotspotItem:hover {
    transform: translate(-50%, -50%) scale(1.5);
}


.CHotspotItem:active {
    transform: translate(-50%, -50%) scale(0.9);
}

.CHotspotItem::before {
    position: absolute;

    content: "";

    display: inline-block;

    left: 50%;
    top: 50%;

    width: 30px;
    height: 30px;

    border-radius: 15px;

    transform: translate(-50%, -50%);

    background: radial-gradient(circle, rgba(255, 255, 255, 0.75) 100%,  rgba(255, 255, 255, 0) 0%);

    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-name: ae_hotspotPulse;
    animation-duration: 2.0s;
    animation-delay: 0.0s;
}

.CHotspotItem::after {
    position: absolute;

    content: url('../res/images/symbol_plus.svg');

    display: inline-block;

    left: 50%;
    top: 50%;

    width: 16px;
    height: 16px;

    transform: translate(-50%, -50%);
}

.CHotspotInfoContainer {
    position: absolute;

    opacity: 0;

    padding: var(--text-padding);

    left: 0px;
    top: 50%;

    width: 320px;

    border-radius: 10px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;

    font-size: 16px;

    background-color: #ffffff;

    filter: drop-shadow(0px 0px 10px rgba(59, 85, 110, 0.5));

    transition-property: opacity, left, top;
    transition-duration: 0.1s, 0.4s, 0.4s;
    transition-delay: 0.0s, 0.0s, 0.0s;
    transition-timing-function: ease, ease-out, ease-out;

    transform: translateX(40px) translateY(-50%);
}

.CHotspotClose {
    position: absolute !important;

    right: 20px;
    top: 20px;

    width: 24px !important;
    height: 24px !important;

    cursor: pointer;
}

.CMinimap {
    position: fixed;

    left: 50%;
    bottom: 20px;

    width: 208px;
    height: 104px;

    transform: translateX(-50%);

    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.1));
}

.CMinimapCursor {
    position: absolute;

    left: 0px;
    top: 0px;

    width: 20px;
    height: 20px;
    border-radius: 10px;

    transform: translateX(-50%) translateY(-50%);

    background-color: #ffffff;
}

.CLogo {
    position: fixed;
    height: 80px;
    left: 20px;
    top: 20px;
}



@keyframes ae_hotspotPulse {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(3);
    }
}

@media (max-width: 960px) {



    .CHotspotInfoContainer {
        width: calc(100vw - 160px);
        max-height: 50vh;
    }
    .CHotspotInfoContainerContent {
        width: 100%;
        padding-right: 30px;
        overflow-y: scroll;
    }

    .CLogo {
        width: 145px;
        height: 45px;
        left: 20px;
        top: 20px;
    }

    .CScrollContainer img{
        position: relative;
        height: 100%;
        max-height: 80vh;
    }

    .CMinimap {
        bottom: 0px;
        transform: translateX(-50%) scale(0.5);
    }
}