.sf-notice-host[data-storefront-flash-host] {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 88px 18px 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.sf-notice-host[data-storefront-flash-host]::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.22);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.sf-notice-host[data-storefront-flash-host].is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sf-notice-host[data-storefront-flash-host].is-active::before {
    opacity: 1;
}

.sf-notice-host[data-storefront-flash-host] .sf-notice {
    position: relative;
    width: min(92vw, 420px);
    padding: 30px 30px 20px;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
    color: #545454;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    opacity: 0;
    transform: translateY(14px) scale(0.96);
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: auto;
}

.sf-notice-host[data-storefront-flash-host].is-active .sf-notice.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.sf-notice-host[data-storefront-flash-host] .sf-notice__dismiss {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    background: transparent;
    color: rgba(0, 0, 0, 0.38);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.sf-notice-host[data-storefront-flash-host] .sf-notice__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border: 3px solid currentColor;
    border-radius: 50%;
    font-size: 30px;
}

.sf-notice-host[data-storefront-flash-host] .sf-notice__title {
    margin: 0;
    color: rgba(0, 0, 0, 0.66);
    font-size: 27px;
    font-weight: 600;
    line-height: 1.1;
}

.sf-notice-host[data-storefront-flash-host] .sf-notice__message {
    margin: 14px 0 0;
    color: rgba(0, 0, 0, 0.64);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
}

.sf-notice-host[data-storefront-flash-host] .sf-notice__list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    color: rgba(0, 0, 0, 0.66);
    font-size: 14px;
    line-height: 1.45;
    text-align: left;
}

.sf-notice-host[data-storefront-flash-host] .sf-notice__list li + li {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.sf-notice-host[data-storefront-flash-host] .sf-notice__actions {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.sf-notice-host[data-storefront-flash-host] .sf-notice__button {
    min-width: 86px;
    padding: 10px 24px;
    border: 0;
    border-radius: 5px;
    background: #7cd1f9;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.sf-notice-host[data-storefront-flash-host] .sf-notice.is-success {
    color: #7ac142;
}

.sf-notice-host[data-storefront-flash-host] .sf-notice.is-error {
    color: #f27474;
}

@media (max-width: 680px) {
    .sf-notice-host[data-storefront-flash-host] {
        padding-top: 74px;
    }

    .sf-notice-host[data-storefront-flash-host] .sf-notice {
        width: min(94vw, 360px);
        padding: 24px 20px 18px;
    }

    .sf-notice-host[data-storefront-flash-host] .sf-notice__title {
        font-size: 23px;
    }
}
