.fuc-ec {
    --fuc-green: #1f9d55;
    --fuc-red: #d7263d;
    max-width: 850px;
    margin: 0 auto;
    font-family: inherit;
}
.fuc-ec__mobile-instructions {
    display: none;
    margin: .5rem 0 1rem;
    text-align: center;
    font-weight: 800;
}

@media (hover: none), (pointer: coarse) {
    .fuc-ec__mobile-instructions {
        display: block;
    }

    .fuc-ec__map {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
}
.fuc-ec__instructions,
.fuc-ec__notice {
    text-align: center;
}

.fuc-ec__notice {
    margin: 1rem 0;
    padding: .8rem 1rem;
    border-radius: 8px;
    background: #eef8f1;
    font-weight: 700;
}

.fuc-ec__map-wrap {
    position: relative;
    width: 100%;
    line-height: 0;
}

.fuc-ec__map {
    display: block;
    width: 100%;
    height: auto;
}

.fuc-ec__site {
    position: absolute;
    z-index: 2;
    box-sizing: border-box !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: none !important;
    padding: 0 !important;
    aspect-ratio: auto !important;
    transform: translate(-50%, -50%) rotate(var(--fuc-angle, 0deg));
    border: 0 !important;
    border-radius: 0 !important;
    clip-path: polygon(5% 0, 100% 7%, 95% 100%, 0 93%);
    background: transparent !important;
    color: transparent;
    box-shadow: inset 0 0 0 2px rgba(31, 157, 85, .95);
    font-size: clamp(9px, 1.6vw, 17px);
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
}

.fuc-ec__site > span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: transparent;
    line-height: 1;
    pointer-events: none;
}

.fuc-ec__site:hover,
.fuc-ec__site:focus-visible {
    z-index: 4;
    background: var(--fuc-green) !important;
    box-shadow:
        inset 0 0 0 3px #fff,
        0 0 0 3px var(--fuc-green),
        0 3px 10px rgba(0, 0, 0, .55);
    outline: none;
}

.fuc-ec__site:hover > span,
.fuc-ec__site:focus-visible > span {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .9);
}
.fuc-ec__site.is-mobile-selected {
    z-index: 4;
    background: var(--fuc-green) !important;
    box-shadow:
        inset 0 0 0 3px #fff,
        0 0 0 3px var(--fuc-green),
        0 3px 10px rgba(0, 0, 0, .55);
}

.fuc-ec__site.is-mobile-selected > span {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .9);
}
.fuc-ec__site.is-reserved {
    background: transparent !important;
    box-shadow: inset 0 0 0 2px var(--fuc-red);
    cursor: not-allowed;
}

.fuc-ec__site.is-reserved:hover,
.fuc-ec__site.is-reserved:focus-visible {
    background: var(--fuc-red) !important;
    box-shadow:
        inset 0 0 0 3px #fff,
        0 0 0 3px var(--fuc-red),
        0 3px 10px rgba(0, 0, 0, .55);
}

.fuc-ec__site.is-reserved::after {
    content: "×";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--fuc-angle, 0deg)));
    color: var(--fuc-red);
    font-size: clamp(16px, 2.4vw, 25px);
    font-weight: 900;
    line-height: 1;
}

.fuc-ec__site.is-reserved:hover::after,
.fuc-ec__site.is-reserved:focus-visible::after {
    display: none;
}

.fuc-ec--closed .fuc-ec__site:not(.is-reserved) {
    background: transparent !important;
    box-shadow: inset 0 0 0 2px #777;
    cursor: not-allowed;
}

.fuc-ec-modal[hidden] {
    display: none;
}
.fuc-ec__countdown {
    margin: 1rem 0 1.5rem;
    padding: 20px;
    border-radius: 14px;
    background: #485cc7;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
}

.fuc-ec__countdown-title {
    margin-bottom: 14px;
    color: #fff;
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 900;
    letter-spacing: 2px;
}

.fuc-ec__countdown-clock {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.fuc-ec__countdown-clock > div {
    padding: 14px 8px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .18);
}

.fuc-ec__countdown-clock strong {
    display: block;
    color: #485cc7;
    font-size: clamp(32px, 7vw, 58px);
    font-weight: 900;
    line-height: 1;
}

.fuc-ec__countdown-clock span {
    display: block;
    margin-top: 7px;
    color: #222;
    font-size: clamp(10px, 1.6vw, 14px);
    font-weight: 800;
    letter-spacing: 1px;
}

@media (max-width: 520px) {
    .fuc-ec__countdown {
        padding: 14px 10px;
    }

    .fuc-ec__countdown-clock {
        gap: 6px;
    }

    .fuc-ec__countdown-clock > div {
        padding: 11px 4px;
    }
}
.fuc-ec-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: grid;
    place-items: center;
    padding: 20px;
}

.fuc-ec-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .7);
}

.fuc-ec-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(480px, 100%);
    max-height: 90vh;
    overflow: auto;
    padding: 28px;
    border-radius: 12px;
    background: #fff;
    color: #222;
    line-height: 1.45;
}

.fuc-ec-modal__close {
    position: absolute;
    top: 8px;
    right: 12px;
    border: 0;
    background: transparent;
    font-size: 30px;
    cursor: pointer;
}

.fuc-ec-form label {
    display: block;
    margin: 14px 0;
    font-weight: 700;
}

.fuc-ec-form input {
    box-sizing: border-box;
    display: block;
    width: 100%;
    margin-top: 5px;
    padding: 11px;
}

.fuc-ec-form button[type="submit"] {
    width: 100%;
    padding: 12px;
    border: 0;
    border-radius: 6px;
    background: #485cc7;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.fuc-ec-confirmation h3 {
    margin-top: 0;
}

.fuc-ec-confirmation__acknowledgment {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 22px 0;
    font-weight: 700;
    cursor: pointer;
}

.fuc-ec-confirmation__acknowledgment input {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.fuc-ec-confirmation button {
    width: 100%;
    padding: 12px;
    border: 0;
    border-radius: 6px;
    background: #485cc7;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.fuc-ec-confirmation button:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.fuc-ec-form__message {
    font-weight: 700;
}

.fuc-ec-modal-open {
    overflow: hidden;
}