.hotspot-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hotspot {
    position: absolute;
    height: 5vw;
    width: 5vw;
    max-height: 35px;
    max-width: 35px;
    background-color: var(--color-accent-90);
    box-shadow: 0px 0px 0px 0px var(--color-accent-70);
    color: var(--colors-default-neutral-0) !important;
    font-weight: bold;
    font-size: 1.4vw;
    border: 0.18em solid var(--color-accent-90);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.hotspot:before {
    content: attr(data-index);
}

.hotspot:hover {
    height: 6vw;
    width: 6vw;
    max-height: 40px;
    max-width: 40px;
    font-size: 1.4vw;
    transition: opacity 0.4s ease-out;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 0 0 var(--color-primary-30);
    }
    100% {
        box-shadow: 0 0 8px 3px var(--color-primary-50);
    }
}

@media (min-width:300px) and (max-width:768px) {
    .hotspot {
        height: 9vw;
        width: 9vw;
        font-size: 4vw;
    }
}

@media screen and (min-width: 1920px) {
    .hotspot {
        font-size: 22px;
    }
}