.phw-frontend {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    padding: 30px;
    background: transparent;
    border: 0;
}
.phw-frontend [type=button],.phw-frontend  [type=submit],.phw-frontend  button {
    user-select: unset;
    white-space: unset;
}
.phw-frontend,
.phw-frontend * {
    box-sizing: border-box;
}

.phw-frontend__intro {
    margin-bottom: 24px;
}

.phw-frontend__title {
    font-size: 30px;
    letter-spacing: 1px;
    line-height: 30px;
    color: #7b7b7b;
    margin: 0 0 12px;
    font-family: 'Spectral';
    font-weight: 300;
}

.phw-frontend__description p:last-child {
    margin-bottom: 0;
}

/* This is the coordinate container. Dots stay attached to this element. */
.phw-frontend__image-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    height: calc(100vh - 60px);
    margin: 0 auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
}

.phw-frontend__image {
    display: block;
    width: auto;
    height: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.phw-frontend__dot {
    --phw-dot-size: 14px;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    width: var(--phw-dot-size);
    height: var(--phw-dot-size);
    min-width: var(--phw-dot-size);
    min-height: var(--phw-dot-size);
    padding: 0 !important;
    margin: 0;
    border: 0 !important;
    outline: 0;
    border-radius: 50%;
    background: var(--phw-dot-color, #a86a7f);
    box-shadow: none;
    cursor: pointer;
    z-index: 4;
    appearance: none;
    -webkit-appearance: none;
       user-select: unset !important;
    white-space: unset !important;
}

.phw-frontend__dot::before,
.phw-frontend__dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--phw-dot-color, #a86a7f);
    pointer-events: none;
}

.phw-frontend__dot::before {
    animation: phw-frontend-pulse 2s ease-out infinite;
    opacity: .45;
}

.phw-frontend__dot::after {
    animation: phw-frontend-pulse 2s ease-out .65s infinite;
    opacity: .28;
}

.phw-frontend__dot-core {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 50%;
    background: var(--phw-dot-color, #a86a7f);
    box-shadow: 0 0 12px color-mix(in srgb, var(--phw-dot-color, #a86a7f) 55%, transparent);
    pointer-events: none;
}

@keyframes phw-frontend-pulse {
    0% {
        transform: scale(1);
        opacity: .55;
    }
    70% {
        opacity: .18;
    }
    100% {
        transform: scale(4.2);
        opacity: 0;
    }
}

.phw-frontend__tooltip {
    position: absolute;
    min-width: 400px;
    max-width: min(420px, 72vw);
    padding: 12px 15px;
    border-radius: 0;
    background: #ffffff;
    color: #111111;
    text-align: left;
    box-shadow: 0 16px 48px rgba(17, 17, 17, 0.14);
    border: 1px solid rgba(17, 17, 17, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translate(4px, 4px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 100;
}

.phw-frontend__dot:hover .phw-frontend__tooltip,
.phw-frontend__dot:focus-visible .phw-frontend__tooltip,
.phw-frontend__dot.is-open .phw-frontend__tooltip,
.phw-frontend__tooltip:hover {
    opacity: 1;
    visibility: visible;
}

.phw-frontend__dot[data-phw-placement="right-bottom"] .phw-frontend__tooltip {
    left: 100%;
    top: 100%;
    transform: translate(8px, 8px);
}

.phw-frontend__dot[data-phw-placement="left-bottom"] .phw-frontend__tooltip {
    right: 100%;
    top: 100%;
    transform: translate(-8px, 8px);
}

.phw-frontend__dot[data-phw-placement="right-top"] .phw-frontend__tooltip {
    left: 100%;
    bottom: 100%;
    transform: translate(8px, -8px);
}

.phw-frontend__dot[data-phw-placement="left-top"] .phw-frontend__tooltip {
    right: 100%;
    bottom: 100%;
    transform: translate(-8px, -8px);
}

.phw-frontend__tooltip-title {
    display: block;
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: 1px;
    color: var(--phw-dot-color, #b05e72);
    font-weight: 400;
    text-transform: none;
}

.phw-frontend__tooltip-description {
    display: block;
    font-size: 14px;
    line-height: 1.45;
    font-family: 'Montserrat-Regular' !important;
    color: #7b7b7b;
    font-weight: normal !important;
    text-transform: none;
}

.phw-frontend__dot.is-open {
    z-index: 10;
}

@media (max-width: 1023px) {
    .phw-frontend {
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
    }

    .phw-frontend__image-wrap {
        width: 1024px;
        max-width: none;
        margin: 0;
    }

    .phw-frontend__image {
        width: 1024px;
        max-width: none;
        height: auto;
    }
}


.phw-frontend__dot {
    z-index: 4;
}

.phw-frontend__dot.is-open,
.phw-frontend__dot:hover,
.phw-frontend__dot:focus-visible {
    z-index: 200;
}

.phw-frontend__tooltip {
    z-index: 999;
}
.phw-frontend__image-wrap {
    overflow: visible;
}

.phw-frontend__dot.is-open,
.phw-frontend__dot:hover,
.phw-frontend__dot:focus-visible {
    z-index: 200;
}

.phw-frontend__tooltip {
    z-index: 999;
}

.phw-frontend__dot[data-phw-placement="right-bottom"] .phw-frontend__tooltip {
    left: 100%;
    top: 100%;
    right: auto;
    bottom: auto;
    transform: translate(8px, 8px);
}

.phw-frontend__dot[data-phw-placement="left-bottom"] .phw-frontend__tooltip {
    right: 100%;
    top: 100%;
    left: auto;
    bottom: auto;
    transform: translate(-8px, 8px);
}

.phw-frontend__dot[data-phw-placement="right-top"] .phw-frontend__tooltip {
    left: 100%;
    bottom: 100%;
    right: auto;
    top: auto;
    transform: translate(8px, -8px);
}

.phw-frontend__dot[data-phw-placement="left-top"] .phw-frontend__tooltip {
    right: 100%;
    bottom: 100%;
    left: auto;
    top: auto;
    transform: translate(-8px, -8px);
}