.nt-hotspots {
    position: relative;
}
.nt-hotspots__map img {
    width: 100%;
}
.nt-hotspots__point {
    position: absolute;
    left: var(--nt-point-position-x);
    top: var(--nt-point-position-y);
}
.nt-hotspots__point-marker {
    display: block;
    height: 20px;
    width: 20px;
    background: var(--e-global-color-0f54877);
    border-radius: 100%;
    position: relative;
}
.nt-hotspots__point-marker:before {
    content: "";
    animation: ondulate 3.5s ease-out infinite;
    display: block;
    border-radius: 100%;
    background: var(--e-global-color-0f54877);
    position: absolute;
    inset: 0;
}
.nt-hotspots__popin {
    --popin-width: 300px;

    position: absolute;
    bottom: calc(100% - 10px);
    left: calc(50% - calc(var(--popin-width) / 2));
    width: var(--popin-width);
    padding-top: 12px;
    padding-bottom: 12px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
.nt-hotspots__point:hover .nt-hotspots__popin,
.nt-hotspots__point:focus .nt-hotspots__popin {
    opacity: 1;
    visibility: visible;
    padding-top: 0;
    padding-bottom: 24px;
}
.nt-hotspots__popin-inner {
    box-shadow: 0 0 10px 0 #DEDEDE;
    background: white;
    border-radius: 10px;
    padding: 18px;
    width: 100%;
}
.nt-hotspots__popin-title {
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}
.nt-hotspots__popin-content {
    text-align: center;
}
.nt-hotspots__popin-content hr {
    border-top: 1px solid #BDBDBD;
    width: 50px;
    margin: 12px auto;
}
.nt-hotspots__popin-button {
    margin: 12px auto 0;
    display: block;
    width: fit-content;
    padding: 8px 16px;
}