/*
 * WooCommerce WhatsApp Enquiry storefront styles.
 *
 * All selectors are intentionally namespaced. The plugin does not use generic
 * classes such as .button, .modal, .form, .icon, or WooCommerce block classes.
 */

.do-wwe-scope,
.do-wwe-scope *,
#do-wwe-modal,
#do-wwe-modal * {
    box-sizing: border-box;
}

.do-wwe-scope {
    position: relative;
    z-index: 2;
    display: inline-block;
    max-width: 100%;
    margin: 0;
    padding: 0;
    isolation: isolate;
    font-family: inherit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: left;
    text-decoration: none;
    text-transform: none;
    vertical-align: middle;
}

.do-wwe-scope--card {
    width: 100%;
}

.do-wwe-detail-slot {
    clear: both;
    width: 100%;
    margin: 24px 0;
    padding: 0;
}

.do-wwe-block-slot {
    width: 100%;
    margin: 0;
    padding: 0;
}

.do-wwe-block-slot--single {
    margin-top: 16px;
}

.do-wwe-scope button.do-wwe-action {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    min-width: 0;
    max-width: 100%;
    min-height: 48px;
    margin: 0;
    padding: 12px 18px;
    overflow: hidden;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #1daf61;
    border-radius: 12px;
    background: linear-gradient(135deg, #25d366 0%, #18b957 100%);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.22);
    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: center;
    text-decoration: none;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    cursor: pointer;
    pointer-events: auto;
    isolation: isolate;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
    -webkit-tap-highlight-color: transparent;
}

.do-wwe-scope--card button.do-wwe-action {
    width: 100%;
}

.do-wwe-scope button.do-wwe-action::after {
    display: none;
    content: none;
}

.do-wwe-scope button.do-wwe-action::before {
    position: absolute;
    top: -40%;
    left: -55%;
    z-index: -1;
    width: 38%;
    height: 180%;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.22);
    content: "";
    transform: rotate(18deg);
    transition: left 480ms ease;
}

.do-wwe-scope button.do-wwe-action:hover,
.do-wwe-scope button.do-wwe-action:focus-visible {
    border-color: #1daf61;
    background: linear-gradient(135deg, #25d366 0%, #18b957 100%);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.32);
    color: #ffffff;
    filter: brightness(1.03);
    transform: translateY(-2px);
}

.do-wwe-scope button.do-wwe-action:hover::before,
.do-wwe-scope button.do-wwe-action:focus-visible::before {
    left: 120%;
}

.do-wwe-scope button.do-wwe-action:active {
    box-shadow: 0 5px 14px rgba(37, 211, 102, 0.24);
    transform: translateY(0) scale(0.98);
}

.do-wwe-scope button.do-wwe-action:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.28);
    outline-offset: 3px;
}

.do-wwe-action__icon,
.do-wwe-modal__submit-icon {
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    width: 22px;
    height: 22px;
    margin: 0;
    padding: 0;
    color: inherit;
}

.do-wwe-action__icon svg,
.do-wwe-modal__submit-icon svg,
.do-wwe-modal__icon svg {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    fill: currentColor;
}

.do-wwe-action__text {
    min-width: 0;
    overflow-wrap: anywhere;
}

.do-wwe-action__icon {
    transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.do-wwe-scope button.do-wwe-action:hover .do-wwe-action__icon,
.do-wwe-scope button.do-wwe-action:focus-visible .do-wwe-action__icon {
    transform: rotate(-8deg) scale(1.1);
}

.do-wwe-action__arrow,
.do-wwe-modal__submit-arrow {
    display: inline-block;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1;
    transition: transform 180ms ease;
}

.do-wwe-scope button.do-wwe-action:hover .do-wwe-action__arrow,
.do-wwe-scope button.do-wwe-action:focus-visible .do-wwe-action__arrow,
#do-wwe-modal .do-wwe-modal__submit:hover .do-wwe-modal__submit-arrow,
#do-wwe-modal .do-wwe-modal__submit:focus-visible .do-wwe-modal__submit-arrow {
    transform: translateX(3px);
}

#do-wwe-modal[hidden] {
    display: none !important;
}

#do-wwe-modal.do-wwe-modal {
    --do-wwe-product-title-size: 14px;
    --do-wwe-thumbnail-width: 74px;
    --do-wwe-thumbnail-height: 74px;
    --do-wwe-thumbnail-max-width: 140px;
    --do-wwe-thumbnail-max-height: 140px;
    --do-wwe-thumbnail-object-fit: cover;
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: grid;
    place-items: center;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 20px;
    border: 0;
    background: transparent;
    color: #0f172a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    text-transform: none;
}

#do-wwe-modal .do-wwe-modal__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(15, 23, 42, 0.66);
    opacity: 0;
    backdrop-filter: blur(4px);
    transition: opacity 180ms ease;
}

#do-wwe-modal .do-wwe-modal__dialog {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%, 440px);
    max-width: 440px;
    max-height: calc(100vh - 40px);
    margin: 0;
    padding: 32px;
    overflow: auto;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
    color: #0f172a;
    opacity: 0;
    transform: translateY(14px) scale(0.97);
    transition: opacity 180ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

#do-wwe-modal.is-open .do-wwe-modal__backdrop {
    opacity: 1;
}

#do-wwe-modal.is-open .do-wwe-modal__dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

#do-wwe-modal button.do-wwe-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    margin: 0;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
    color: #64748b;
    font: 400 28px/1 Arial, sans-serif;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    cursor: pointer;
    transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

#do-wwe-modal button.do-wwe-modal__close::before,
#do-wwe-modal button.do-wwe-modal__close::after,
#do-wwe-modal button.do-wwe-modal__submit::before,
#do-wwe-modal button.do-wwe-modal__submit::after {
    display: none;
    content: none;
}

#do-wwe-modal button.do-wwe-modal__close:hover,
#do-wwe-modal button.do-wwe-modal__close:focus-visible {
    border: 0;
    background: #f1f5f9;
    box-shadow: none;
    color: #0f172a;
    transform: rotate(5deg);
}

#do-wwe-modal button.do-wwe-modal__close:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.22);
    outline-offset: 2px;
}

#do-wwe-modal .do-wwe-modal__icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin: 0 0 18px;
    padding: 12px;
    border: 0;
    border-radius: 17px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.16);
    color: #16a34a;
}

#do-wwe-modal .do-wwe-modal__icon svg {
    width: 30px;
    height: 30px;
}

#do-wwe-modal.is-open .do-wwe-modal__icon {
    animation: do-wwe-isolated-icon-pop 420ms 80ms both cubic-bezier(0.2, 0.8, 0.2, 1);
}

#do-wwe-modal .do-wwe-modal__dialog h2 {
    margin: 0 38px 8px 0;
    padding: 0;
    border: 0;
    color: #0f172a;
    font: 700 25px/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    letter-spacing: normal;
    text-align: left;
    text-transform: none;
}

#do-wwe-modal .do-wwe-modal__description {
    margin: 0 0 20px;
    padding: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

#do-wwe-modal .do-wwe-modal__product {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 0 0 22px;
    padding: 11px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
    color: #475569;
    font-size: 13px;
    line-height: 1.45;
}

#do-wwe-modal .do-wwe-modal__product-image-wrap {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: var(--do-wwe-thumbnail-width);
    height: var(--do-wwe-thumbnail-height);
    max-width: var(--do-wwe-thumbnail-max-width);
    max-height: var(--do-wwe-thumbnail-max-height);
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 11px;
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.07);
}

#do-wwe-modal img.do-wwe-modal__product-image {
    display: block;
    width: var(--do-wwe-thumbnail-width);
    height: var(--do-wwe-thumbnail-height);
    max-width: var(--do-wwe-thumbnail-max-width);
    max-height: var(--do-wwe-thumbnail-max-height);
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    object-fit: var(--do-wwe-thumbnail-object-fit);
    transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

#do-wwe-modal .do-wwe-modal__product:hover .do-wwe-modal__product-image {
    transform: scale(1.045);
}

#do-wwe-modal .do-wwe-modal__product-details {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding: 0;
}

#do-wwe-modal .do-wwe-modal__product-details span {
    margin: 0;
    padding: 0;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.3;
    text-transform: uppercase;
}

#do-wwe-modal .do-wwe-modal__product-details strong {
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow-wrap: anywhere;
    color: #334155;
    font-size: var(--do-wwe-product-title-size);
    font-weight: 700;
    line-height: 1.45;
}

#do-wwe-modal form.do-wwe-modal__form {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

#do-wwe-modal .do-wwe-modal__form label {
    display: block;
    margin: 0 0 8px;
    padding: 0;
    color: #0f172a;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.4;
}

#do-wwe-modal input#do-wwe-customer-name {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 50px;
    margin: 0;
    padding: 12px 14px;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #cbd5e1;
    border-radius: 11px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    color: #0f172a;
    font: 400 16px/1.4 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    letter-spacing: normal;
    text-align: left;
    text-transform: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

#do-wwe-modal input#do-wwe-customer-name:hover {
    border-color: #94a3b8;
}

#do-wwe-modal input#do-wwe-customer-name:focus {
    border-color: #22c55e;
    outline: 0;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.13);
    transform: translateY(-1px);
}

#do-wwe-modal .do-wwe-modal__account {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    margin: 10px 0 0;
    padding: 6px 9px;
    border: 0;
    border-radius: 8px;
    background: #f0fdf4;
    color: #15803d;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

#do-wwe-modal .do-wwe-modal__account[hidden] {
    display: none !important;
}

#do-wwe-modal .do-wwe-modal__privacy {
    margin: 8px 0 0;
    padding: 0;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.45;
}

#do-wwe-modal .do-wwe-modal__error {
    margin: 10px 0 0;
    padding: 0;
    color: #b91c1c;
    font-size: 14px;
    line-height: 1.45;
}

#do-wwe-modal button.do-wwe-modal__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-width: 0;
    min-height: 50px;
    margin: 18px 0 0;
    padding: 12px 16px;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #1daf61;
    border-radius: 11px;
    background: linear-gradient(135deg, #25d366 0%, #18b957 100%);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
    color: #ffffff;
    font: 700 16px/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    letter-spacing: normal;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

#do-wwe-modal .do-wwe-modal__submit-icon {
    width: 21px;
    height: 21px;
}

#do-wwe-modal button.do-wwe-modal__submit:hover,
#do-wwe-modal button.do-wwe-modal__submit:focus-visible {
    border-color: #1daf61;
    background: linear-gradient(135deg, #25d366 0%, #18b957 100%);
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.29);
    color: #ffffff;
    filter: brightness(1.03);
    transform: translateY(-2px);
}

#do-wwe-modal button.do-wwe-modal__submit:active {
    transform: translateY(0) scale(0.99);
}

#do-wwe-modal button.do-wwe-modal__submit:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.25);
    outline-offset: 3px;
}

body.do-wwe-open {
    overflow: hidden;
}

@keyframes do-wwe-isolated-icon-pop {
    0% {
        opacity: 0;
        transform: scale(0.72) rotate(-8deg);
    }
    70% {
        transform: scale(1.06) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

@media (max-width: 480px) {
    .do-wwe-scope--card,
    .do-wwe-scope--single,
    .do-wwe-scope--detail,
    .do-wwe-scope--card button.do-wwe-action,
    .do-wwe-scope--single button.do-wwe-action,
    .do-wwe-scope--detail button.do-wwe-action {
        width: 100%;
    }

    #do-wwe-modal.do-wwe-modal {
        place-items: center;
        align-items: center;
        justify-items: center;
        padding-top: max(16px, env(safe-area-inset-top));
        padding-right: max(16px, env(safe-area-inset-right));
        padding-bottom: max(16px, env(safe-area-inset-bottom));
        padding-left: max(16px, env(safe-area-inset-left));
    }

    #do-wwe-modal .do-wwe-modal__dialog {
        width: min(100%, 440px);
        max-width: 440px;
        max-height: calc(100vh - 32px);
        max-height: calc(100dvh - 32px);
        padding: 26px 20px 22px;
        border-radius: 20px;
        transform: translateY(14px) scale(0.97);
    }

    #do-wwe-modal.is-open .do-wwe-modal__dialog {
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .do-wwe-scope button.do-wwe-action,
    .do-wwe-scope button.do-wwe-action::before,
    .do-wwe-action__icon,
    .do-wwe-action__arrow,
    #do-wwe-modal .do-wwe-modal__submit,
    #do-wwe-modal .do-wwe-modal__submit-arrow,
    #do-wwe-modal .do-wwe-modal__backdrop,
    #do-wwe-modal .do-wwe-modal__dialog,
    #do-wwe-modal .do-wwe-modal__close,
    #do-wwe-modal input#do-wwe-customer-name,
    #do-wwe-modal .do-wwe-modal__product-image {
        transition: none !important;
    }

    #do-wwe-modal.is-open .do-wwe-modal__icon {
        animation: none !important;
    }
}

/* Version 2.3.0: vertical product preview and optional account registration. */
#do-wwe-modal .do-wwe-modal__product {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#do-wwe-modal .do-wwe-modal__product-details {
    width: 100%;
    align-items: center;
    text-align: center;
}

#do-wwe-modal .do-wwe-modal__product-details strong {
    width: 100%;
    text-align: center;
}

#do-wwe-modal input.do-wwe-modal__input {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 50px;
    margin: 0;
    padding: 12px 14px;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #cbd5e1;
    border-radius: 11px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    color: #0f172a;
    font: 400 16px/1.4 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    letter-spacing: normal;
    text-align: left;
    text-transform: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

#do-wwe-modal input.do-wwe-modal__input:hover {
    border-color: #94a3b8;
}

#do-wwe-modal input.do-wwe-modal__input:focus {
    border-color: #22c55e;
    outline: 0;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.13);
    transform: translateY(-1px);
}

#do-wwe-modal input.do-wwe-modal__input[aria-invalid="true"] {
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

#do-wwe-modal .do-wwe-modal__registration-option {
    width: 100%;
    margin: 15px 0 0;
    padding: 0;
}

#do-wwe-modal .do-wwe-modal__registration-option[hidden] {
    display: none !important;
}

#do-wwe-modal label.do-wwe-modal__register-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    width: 100%;
    margin: 0;
    padding: 12px;
    border: 1px solid #dcfce7;
    border-radius: 12px;
    background: #f0fdf4;
    color: #14532d;
    cursor: pointer;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

#do-wwe-modal label.do-wwe-modal__register-checkbox:hover {
    border-color: #86efac;
    background: #ecfdf3;
    transform: translateY(-1px);
}

#do-wwe-modal .do-wwe-modal__register-checkbox input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
}

#do-wwe-modal .do-wwe-modal__register-control {
    position: relative;
    display: grid;
    flex: 0 0 21px;
    place-items: center;
    width: 21px;
    height: 21px;
    margin: 1px 0 0;
    border: 1.5px solid #86efac;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

#do-wwe-modal .do-wwe-modal__register-control::after {
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    content: "";
    opacity: 0;
    transform: rotate(45deg) scale(0.6);
    transition: opacity 140ms ease, transform 160ms ease;
}

#do-wwe-modal .do-wwe-modal__register-checkbox input:checked + .do-wwe-modal__register-control {
    border-color: #16a34a;
    background: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

#do-wwe-modal .do-wwe-modal__register-checkbox input:checked + .do-wwe-modal__register-control::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

#do-wwe-modal .do-wwe-modal__register-checkbox input:focus-visible + .do-wwe-modal__register-control {
    outline: 3px solid rgba(34, 197, 94, 0.22);
    outline-offset: 2px;
}

#do-wwe-modal .do-wwe-modal__register-copy {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 2px;
    margin: 0;
    padding: 0;
}

#do-wwe-modal .do-wwe-modal__register-copy strong {
    color: #166534;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.35;
}

#do-wwe-modal .do-wwe-modal__register-copy small {
    color: #4b7b5a;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}

#do-wwe-modal .do-wwe-modal__registration-fields {
    display: block;
    max-height: 0;
    margin: 0;
    padding: 0 2px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 240ms ease, margin 220ms ease, opacity 180ms ease, transform 220ms ease;
}

#do-wwe-modal .do-wwe-modal__registration-fields[hidden] {
    display: none !important;
}

#do-wwe-modal .do-wwe-modal__registration-fields.is-expanded {
    max-height: 520px;
    margin-top: 15px;
    opacity: 1;
    transform: translateY(0);
}

#do-wwe-modal .do-wwe-modal__registration-fields label {
    display: block;
    margin: 13px 0 7px;
    padding: 0;
    color: #0f172a;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.4;
}

#do-wwe-modal .do-wwe-modal__registration-fields label:first-child {
    margin-top: 0;
}

#do-wwe-modal .do-wwe-modal__registration-note {
    margin: 10px 0 0;
    padding: 0;
    color: #64748b;
    font-size: 11px;
    line-height: 1.5;
}

#do-wwe-modal input.do-wwe-modal__honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

#do-wwe-modal button.do-wwe-modal__submit:disabled,
#do-wwe-modal button.do-wwe-modal__submit.is-loading {
    cursor: wait;
    filter: saturate(0.86);
    opacity: 0.84;
    transform: none;
}

#do-wwe-modal button.do-wwe-modal__submit.is-loading .do-wwe-modal__submit-icon {
    animation: do-wwe-submit-pulse 900ms ease-in-out infinite alternate;
}

@keyframes do-wwe-submit-pulse {
    from {
        opacity: 0.55;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    #do-wwe-modal .do-wwe-modal__registration-fields,
    #do-wwe-modal label.do-wwe-modal__register-checkbox,
    #do-wwe-modal .do-wwe-modal__register-control,
    #do-wwe-modal .do-wwe-modal__register-control::after,
    #do-wwe-modal input.do-wwe-modal__input {
        transition: none !important;
    }

    #do-wwe-modal button.do-wwe-modal__submit.is-loading .do-wwe-modal__submit-icon {
        animation: none !important;
    }
}
