.hotspots-wrapper {
    position: relative;
}

.hotspot {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 300ms ease-in-out;
    position: absolute;
    padding: 10px;
    background-color: #F0B11D;
    border: 3px solid #000;
    border-radius: 100rem;
}

.hotspot-icon {
    transition: all 300ms ease-in-out;
    fill: #fff;
}

.hotspot-modal {
    position: absolute;
    display: none;
    flex-direction: column;
    gap: 14px;
    width: 330px;
    background-color: #fff;
    padding: 14px;
    left: calc(100% + 1.5rem);
    z-index: 1;
    cursor: auto;
    box-shadow: none;
    filter: none;
    will-change: filter;
}

.hotspot-active {
    display: flex;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .5));
}

.hotspot-active:before {
    content: "";
    position: absolute;
    width: 1rem;
    height: 1.5rem;
    background-color: #fff;
    top: calc(50% - .9rem);
    left: -.9rem;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.hotspot-image {
    border-radius: 0 !important;
}

.hotspot-heading {
    font-size: 20px !important;
    line-height: 26px !important;
    color: var(--e-global-color-b28f996);
    font-family: var(--e-global-typography-1d67915-font-family), Sans-serif;
    font-weight: var(--e-global-typography-1d67915-font-weight);
}

.hotspot-modal p {
    margin: 0 !important;
}

.hotspot-modal p {
    font-size: 16px;
    line-height: 20px;
}

.hotspot:hover {
    background-color: #F0B11D;
    cursor: pointer;
}

.hotspot:hover .hotspot-icon {
    fill: #000;
    transition: all 300ms ease-in-out;
}

@media screen and (max-width: 1024px) {
    .hotspot,
    .hotspot-modal {
        display: none;
    }
}
