@charset "utf-8";
/* CSS DOKUMENT */

/* Copyright (c) 2022 by LONG (https://codepen.io/longzero/pen/oZpGzq) */
.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.max-width-60 {
    max-width: 60%;
}

.hotspot-content img {
    margin-top: var(--space-s);
}

.hotspot-container p {
    color: var(--white);
}

.hotspot {
    color: #fff;
    position: absolute;
}

.hotspot:hover .hotspot-content {
    display: block;
}

.hotspot:hover .hotspot-target {
    background-color: #fff;
    color: #000;
}

.hotspot-1 {
    top: 12%;
    left: 65%;
}

.hotspot-2 {
    top: 39%;
    left: 25%;
}

.hotspot-3 {
    top: 68%;
    left: 36%;
}

.hotspot-4 {
    top: 38%;
    left: 51%;
}

.hotspot-5 {
    top: 79%;
    left: 65%;
}

.hotspot-6 {
    top: 46%;
    left: 68%;
}

.hotspot-container {
    position: relative;
}

.hotspot-content {
    display: none;
    margin-top: 0;
    padding: 20px;
    position: absolute;
    z-index: 100;
    top: 30px;
    width: 300px;
    background-color: rgba(21,43,59,0.8);
    backdrop-filter: blur(13px);
        -webkit-backdrop-filter: blur(13px);
        -moz-backdrop-filter: blur(13px);
        -o-backdrop-filter: blur(13px);
}

.hotspot-image {
    display: block;
    max-width: 70%;
}

.hotspot-target {
    border: 2px solid rgb(255, 255, 255, .7);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6em;
    padding: 2px 2px 5px 3px;
    text-align: center;
    width: 30px;
    height: 30px;
    background-color: rgba(21,43,59,0.8);
    backdrop-filter: blur(13px);
        -webkit-backdrop-filter: blur(13px);
        -moz-backdrop-filter: blur(13px);
        -o-backdrop-filter: blur(13px);
}

.disclaimer {
    color: var(--dark-grey);
    font-size: .95rem;
}

/* <= 991 px */
@media screen and (max-width: 991px) {
    .hotspot-container img {
        max-width: 100%;
    }

    .max-width-60 {
        max-width: 100%;
    }

    .hotspot-1 {
        top: 12%;
        left: 75%;
    }
    
    .hotspot-2 {
        top: 36%;
        left: 30%;
    }
    
    .hotspot-3 {
        top: 67%;
        left: 30%;
    }
    
    .hotspot-4 {
        top: 32%;
        left: 51%;
    }
    
    .hotspot-5 {
        top: 69%;
        left: 54%;
    }
    
    .hotspot-6 {
        top: 46%;
        left: 58%;
    }

    .hotspot-content {
        width: 200px;
    }
}

/* <= 576 px */
@media screen and (max-width: 576px) {
    p.text-center {
        text-align: left;
    }

    .hotspot-1 {
        top: 15%;
        left: 5%;
    }
    
    .hotspot-2 {
        top: 36%;
        left: 25%;
    }
    
    .hotspot-3 {
        top: 67%;
        left: 30%;
    }
    
    .hotspot-4 {
        top: 32%;
        left: 51%;
    }
    
    .hotspot-5 {
        top: 69%;
        left: 54%;
    }
    
    .hotspot-6 {
        top: 46%;
        left: 58%;
    }

    .hotspot-content {
        width: 150px;
    }
}

/* <= 450 px */
@media screen and (max-width: 450px) {
    .hotspot-1 {
        top: 15%;
        left: 5%;
    }
    
    .hotspot-2 {
        top: 36%;
        left: 25%;
    }
    
    .hotspot-3 {
        top: 67%;
        left: 30%;
    }
    
    .hotspot-4 {
        top: 32%;
        left: 51%;
    }
    
    .hotspot-5 {
        top: 69%;
        left: 54%;
    }
    
    .hotspot-6 {
        top: 46%;
        left: 58%;
    }

    .hotspot-content {
        width: 120px;
    }
}