.wp-block-ngt-flow .ngt-flow__step[hidden] {
    display: none !important;
}

.wp-block-ngt-flow .ngt-flow__step {
    position: relative;
}

.wp-block-ngt-flow .ngt-flow__step.is-active {
    display: block;
}

.wp-block-ngt-flow.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.wp-block-ngt-flow.alignfull .ngt-step-content {
    max-width: none;
    width: 100%;
}

.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-step-shell {
    animation: ngtStepIn 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__title,
.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__subtitle {
    animation: ngtFadeUp 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__answer,
.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-pack-choice__card {
    animation: ngtFadeUp 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__answer:nth-child(1),
.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-pack-choice__card:nth-child(1) {
    animation-delay: 40ms;
}

.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__answer:nth-child(2),
.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-pack-choice__card:nth-child(2) {
    animation-delay: 80ms;
}

.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__answer:nth-child(3),
.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-pack-choice__card:nth-child(3) {
    animation-delay: 120ms;
}

.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__answer:nth-child(4),
.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-pack-choice__card:nth-child(4) {
    animation-delay: 160ms;
}

.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__answer:nth-child(5),
.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-pack-choice__card:nth-child(5) {
    animation-delay: 200ms;
}

.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__answer:nth-child(6),
.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-pack-choice__card:nth-child(6) {
    animation-delay: 240ms;
}

.wp-block-ngt-flow .ngt-quiz__answer {
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.wp-block-ngt-flow .ngt-quiz__answer:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

@keyframes ngtStepIn {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ngtFadeUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .wp-block-ngt-flow .ngt-flow__step.is-active .ngt-step-shell,
    .wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__title,
    .wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__subtitle,
    .wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__answer,
    .wp-block-ngt-flow .ngt-flow__step.is-active .ngt-pack-choice__card {
        animation: none !important;
    }

    .wp-block-ngt-flow .ngt-quiz__answer {
        transition: none;
    }
}

.wp-block-ngt-flow .ngt-step-shell {
    display: grid;
    grid-template-columns: 90px 1fr;
    min-height: 70vh;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
}

.wp-block-ngt-flow .ngt-step-rail {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    padding: 24px 0;
}

.wp-block-ngt-flow .ngt-step-rail__text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 18px;
    color: rgba(245, 245, 245, 0.8);
}

.wp-block-ngt-flow .ngt-step-content {
    padding: 0;
}

.wp-block-ngt-flow .ngt-quiz {
    max-width: 720px;
    margin: 80px auto 120px;
    padding: 0 24px;
    text-align: center;
    color: #f5f5f5;
    text-transform: none;
}

.wp-block-ngt-flow .ngt-test[data-ngt-test-variant="intro"] .ngt-quiz__title,
.wp-block-ngt-flow .ngt-test[data-ngt-test-variant="result"] .ngt-quiz__title {
    font-size: clamp(28px, 4vw, 48px);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.wp-block-ngt-flow .ngt-test-question .ngt-quiz__title {
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.wp-block-ngt-flow .ngt-test-question .ngt-quiz__title:focus,
.wp-block-ngt-flow .ngt-test-question .ngt-quiz__title:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
    background: transparent !important;
}

.wp-block-ngt-flow .ngt-quiz__subtitle {
    font-size: 15px;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 28px;
    color: rgba(245, 245, 245, 0.75);
}

.wp-block-ngt-flow .ngt-quiz__actions {
    margin-top: 24px;
}

.wp-block-ngt-flow .ngt-quiz__login-link {
    margin: 14px 0 0;
    color: #fafafa;
}

.wp-block-ngt-flow .ngt-quiz__login-link a,
.wp-block-ngt-flow .ngt-quiz__login-link-anchor {
    color: #fafafa;
    text-decoration: underline;
}

.wp-block-ngt-flow .ngt-test[data-ngt-test-variant="result"] .ngt-quiz__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.wp-block-ngt-flow .ngt-result-upgrade .wp-block-button__link,
.wp-block-ngt-flow .ngt-result-upgrade .wp-element-button,
.wp-block-ngt-flow [data-ngt-result-upgrade] {
    background: transparent;
    color: #fafafa;
    border: 1px solid rgba(250, 250, 250, 0.85);
}

.wp-block-ngt-flow .ngt-quiz__superpowers {
    margin: 28px auto 0;
    max-width: 420px;
}

.wp-block-ngt-flow .ngt-quiz__superpowers ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: grid;
    gap: 6px;
}

.wp-block-ngt-flow .ngt-persona-label {
    margin: 0 0 18px;
    font-size: clamp(22px, 3.5vw, 40px);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #f5f5f5;
}

.wp-block-ngt-flow .ngt-persona-description {
    font-size: 15px;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 24px;
    color: rgba(245, 245, 245, 0.75);
    text-align: center;
    white-space: pre-line;
}

.wp-block-ngt-flow .ngt-persona-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ngt-persona-bg,
[data-ngt-persona-bg] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ngt-persona-bg-wrapper {
    position: relative;
    overflow: hidden;
}

.ngt-persona-bg-wrapper > .ngt-persona-bg__overlay {
    position: absolute;
    inset: 0;
    background: var(--ngt-persona-bg-overlay, transparent);
    pointer-events: none;
    z-index: 1;
}

.ngt-persona-bg-wrapper > .ngt-persona-bg__content {
    position: relative;
    z-index: 2;
}

.wp-block-ngt-archetype-field,
.wp-block-ngt-archetype-field .ngt-persona-missing-link,
.ngt-archetype-field,
.ngt-archetype-field .ngt-persona-missing-link {
    transition: color 120ms ease, background-color 120ms ease, border-color 120ms ease;
}

.wp-block-ngt-archetype-field .ngt-persona-missing-link,
.ngt-archetype-field .ngt-persona-missing-link {
    color: var(--ngt-persona-missing-link-color, inherit);
    text-decoration-color: currentColor;
    border-bottom: 0;
}

.wp-block-ngt-archetype-field.ngt-persona-state-missing,
.wp-block-ngt-archetype-field[data-ngt-persona-state="missing"],
.ngt-archetype-field.ngt-persona-state-missing,
.ngt-archetype-field[data-ngt-persona-state="missing"] {
    color: var(--ngt-persona-missing-text-color, inherit);
}

.wp-block-ngt-flow .ngt-superpowers {
    list-style: none;
    padding: 0;
    margin: 18px auto 0;
    display: grid;
    gap: 6px;
    max-width: 420px;
}

.wp-block-ngt-flow .ngt-quiz__answer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    padding: 14px 18px;
    border: 1px solid #f0f0f0;
    background: #cfeafb;
    color: #0b0b0b;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-decoration: none;
    cursor: pointer;
    transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}

.wp-block-ngt-flow .ngt-quiz__answer .wp-block-button__link,
.wp-block-ngt-flow .ngt-test-answer .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    padding: 14px 18px;
    border: 1px solid #f0f0f0;
    background: #cfeafb;
    color: #0b0b0b;
    text-transform: uppercase;
    font-size: var(--ngt-option-text-size, 12px);
    letter-spacing: var(--ngt-option-letter-spacing, 0.25em);
    text-decoration: none;
    cursor: pointer;
    transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}

.wp-block-ngt-flow .ngt-quiz__button,
.wp-block-ngt-flow .ngt-quiz__answer {
    background: none;
    border: 0;
    padding: 0;
    box-shadow: none;
}

.wp-block-ngt-flow .ngt-quiz__answer:hover,
.wp-block-ngt-flow .ngt-test-answer .wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.wp-block-ngt-flow .ngt-quiz__answer:active,
.wp-block-ngt-flow .ngt-test-answer .wp-block-button__link:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wp-block-ngt-flow .ngt-pack-option.is-selected,
.wp-block-ngt-flow .ngt-quiz__answer.is-selected {
    background: #0b0b0b;
    color: #cfeafb;
    border-color: #cfeafb;
    box-shadow: 0 0 0 1px rgba(207, 234, 251, 0.6) inset;
}

.wp-block-ngt-flow .ngt-quiz__answers {
    display: grid;
    gap: 12px;
    justify-items: center;
    margin-top: 24px;
}

.wp-block-ngt-flow .ngt-quiz__answers .ngt-quiz__answer {
    width: 100%;
    max-width: 420px;
}

.wp-block-ngt-flow .ngt-quiz__label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(245, 245, 245, 0.65);
}

.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__title,
.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__subtitle,
.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__label,
.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__actions,
.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__answers > * {
    animation: ngtFadeUp 260ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-step-rail__text {
    animation: ngtRailIn 320ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__title {
    animation-delay: 40ms;
}

.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__subtitle {
    animation-delay: 50ms;
}

.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__actions {
    animation-delay: 100ms;
}

.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__answers > *:nth-child(1) {
    animation-delay: 80ms;
}
.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__answers > *:nth-child(2) {
    animation-delay: 120ms;
}
.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__answers > *:nth-child(3) {
    animation-delay: 160ms;
}
.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__answers > *:nth-child(4) {
    animation-delay: 200ms;
}
.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__answers > *:nth-child(5) {
    animation-delay: 240ms;
}
.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__answers > *:nth-child(6) {
    animation-delay: 280ms;
}
.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__answers > *:nth-child(7) {
    animation-delay: 320ms;
}
.wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__answers > *:nth-child(8) {
    animation-delay: 360ms;
}

.wp-block-ngt-flow .ngt-test-question[hidden] {
    display: none !important;
}

.wp-block-ngt-flow .ngt-pack-choice {
    width: 100%;
    max-width: none;
    margin: 80px 0 120px;
    padding: 0;
    color: inherit;
}

.wp-block-ngt-flow .ngt-pack-choice__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.wp-block-ngt-flow .ngt-pack-choice__card {
    border: 1px solid rgba(0, 0, 0, 0.14);
    padding: 0;
    text-align: inherit;
    background: inherit;
}

.wp-block-ngt-flow .ngt-pack-choice__media img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.wp-block-ngt-flow .ngt-pack-choice__media {
    position: relative;
    z-index: 0;
    overflow: visible;
}

.wp-block-ngt-flow .ngt-pack-choice__media .wp-block-image,
.wp-block-ngt-flow .ngt-pack-choice__media figure {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    line-height: 0;
    overflow: visible;
    background: transparent !important;
}

.wp-block-ngt-flow .ngt-pack-choice__media .wp-block-image img,
.wp-block-ngt-flow .ngt-pack-choice__media figure img,
.wp-block-ngt-flow .ngt-pack-choice__media > img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 1;
    background: transparent !important;
}

.wp-block-ngt-flow .ngt-pack-choice__media.ngt-pack-choice__hotlink,
.wp-block-ngt-flow .ngt-pack-choice__title.ngt-pack-choice__hotlink {
    cursor: pointer;
}

.wp-block-ngt-flow .ngt-pack-choice__media.ngt-pack-choice__hotlink:focus-visible,
.wp-block-ngt-flow .ngt-pack-choice__title.ngt-pack-choice__hotlink:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.wp-block-ngt-flow .ngt-pack-choice__content {
    padding: 16px;
}

.wp-block-ngt-flow .ngt-pack-choice__title {
    margin-top: 0;
    margin-bottom: 8px;
}

.wp-block-ngt-flow .ngt-pack-choice__price {
    margin: 8px 0;
    color: inherit;
}

.wp-block-ngt-flow .ngt-pack-choice__desc {
    line-height: inherit;
    color: inherit;
    margin-bottom: 16px;
}

.wp-block-ngt-flow .ngt-pack-choice__note {
    margin-top: 20px;
    color: inherit;
    text-align: inherit;
}

.wp-block-ngt-flow .ngt-social-login,
.wp-block-ngt-profile-visibility .ngt-social-login,
.wp-block-ngt-profile-account-content .ngt-social-login {
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.wp-block-ngt-flow .ngt-social-login__title,
.wp-block-ngt-profile-visibility .ngt-social-login__title,
.wp-block-ngt-profile-account-content .ngt-social-login__title {
    margin: 0 0 10px;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.wp-block-ngt-flow .ngt-social-login .button,
.wp-block-ngt-flow .ngt-social-login a.button,
.wp-block-ngt-profile-visibility .ngt-social-login .button,
.wp-block-ngt-profile-visibility .ngt-social-login a.button,
.wp-block-ngt-profile-account-content .ngt-social-login .button,
.wp-block-ngt-profile-account-content .ngt-social-login a.button {
    margin-right: 8px;
    margin-bottom: 8px;
}

.wp-block-ngt-flow .ngt-social-login a.button-social-login.button-social-login-facebook,
.wp-block-ngt-flow .ngt-social-login a.button-social-login.button-social-login-google,
.wp-block-ngt-profile-visibility .ngt-social-login a.button-social-login.button-social-login-facebook,
.wp-block-ngt-profile-visibility .ngt-social-login a.button-social-login.button-social-login-google,
.wp-block-ngt-profile-account-content .ngt-social-login a.button-social-login.button-social-login-facebook,
.wp-block-ngt-profile-account-content .ngt-social-login a.button-social-login.button-social-login-google {
    font-size: 0.618rem !important;
    letter-spacing: 0.25em !important;
    font-weight: 700 !important;
    color: #fafafa !important;
    text-transform: uppercase !important;
    border: 0;
    background: none !important;
    box-shadow: none;
    margin: 0 8px 8px;
}

.wp-block-ngt-flow .ngt-social-login a.button-social-login.button-social-login-facebook:visited,
.wp-block-ngt-flow .ngt-social-login a.button-social-login.button-social-login-google:visited,
.wp-block-ngt-flow .ngt-social-login a.button-social-login.button-social-login-facebook:hover,
.wp-block-ngt-flow .ngt-social-login a.button-social-login.button-social-login-google:hover,
.wp-block-ngt-flow .ngt-social-login a.button-social-login.button-social-login-facebook:focus,
.wp-block-ngt-flow .ngt-social-login a.button-social-login.button-social-login-google:focus,
.wp-block-ngt-profile-visibility .ngt-social-login a.button-social-login.button-social-login-facebook:visited,
.wp-block-ngt-profile-visibility .ngt-social-login a.button-social-login.button-social-login-google:visited,
.wp-block-ngt-profile-visibility .ngt-social-login a.button-social-login.button-social-login-facebook:hover,
.wp-block-ngt-profile-visibility .ngt-social-login a.button-social-login.button-social-login-google:hover,
.wp-block-ngt-profile-visibility .ngt-social-login a.button-social-login.button-social-login-facebook:focus,
.wp-block-ngt-profile-visibility .ngt-social-login a.button-social-login.button-social-login-google:focus,
.wp-block-ngt-profile-account-content .ngt-social-login a.button-social-login.button-social-login-facebook:visited,
.wp-block-ngt-profile-account-content .ngt-social-login a.button-social-login.button-social-login-google:visited,
.wp-block-ngt-profile-account-content .ngt-social-login a.button-social-login.button-social-login-facebook:hover,
.wp-block-ngt-profile-account-content .ngt-social-login a.button-social-login.button-social-login-google:hover,
.wp-block-ngt-profile-account-content .ngt-social-login a.button-social-login.button-social-login-facebook:focus,
.wp-block-ngt-profile-account-content .ngt-social-login a.button-social-login.button-social-login-google:focus {
    color: #fafafa !important;
    text-transform: uppercase !important;
}

.wp-block-ngt-flow .ngt-social-login a.button-social-login.button-social-login-facebook .si,
.wp-block-ngt-flow .ngt-social-login a.button-social-login.button-social-login-google .si,
.wp-block-ngt-profile-visibility .ngt-social-login a.button-social-login.button-social-login-facebook .si,
.wp-block-ngt-profile-visibility .ngt-social-login a.button-social-login.button-social-login-google .si,
.wp-block-ngt-profile-account-content .ngt-social-login a.button-social-login.button-social-login-facebook .si,
.wp-block-ngt-profile-account-content .ngt-social-login a.button-social-login.button-social-login-google .si {
    width: 2.5em;
    height: 2.5em;
    background-color: transparent !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.5em 1.5em;
}

.wp-block-ngt-flow .ngt-social-login a.button-social-login.button-social-login-facebook .si,
.wp-block-ngt-profile-visibility .ngt-social-login a.button-social-login.button-social-login-facebook .si,
.wp-block-ngt-profile-account-content .ngt-social-login a.button-social-login.button-social-login-facebook .si {
    background-image: url("/wp-content/uploads/2023/11/simple-icons_facebook-2.svg") !important;
}

.wp-block-ngt-flow .ngt-social-login a.button-social-login.button-social-login-google .si,
.wp-block-ngt-profile-visibility .ngt-social-login a.button-social-login.button-social-login-google .si,
.wp-block-ngt-profile-account-content .ngt-social-login a.button-social-login.button-social-login-google .si {
    background-image: url("/wp-content/uploads/2023/11/logos_google-icon.svg") !important;
}

.wp-block-ngt-flow .ngt-auth-email {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.wp-block-ngt-flow .ngt-auth-password {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.wp-block-ngt-flow .ngt-auth-email__label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.wp-block-ngt-flow .ngt-auth-password__label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.wp-block-ngt-flow [data-ngt-email-input],
.wp-block-ngt-flow [data-ngt-first-name-input] {
    width: min(100%, 420px);
    max-width: 420px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: #fafafa !important;
    caret-color: #fafafa;
    padding: 12px 14px;
    margin-inline: auto;
}

.wp-block-ngt-flow [data-ngt-first-name-input] {
    margin-bottom: 10px;
}

.wp-block-ngt-flow [data-ngt-password-input] {
    width: min(100%, 420px);
    max-width: 420px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: #fafafa !important;
    caret-color: #fafafa;
    padding: 12px 14px;
    margin-inline: auto;
}

.wp-block-ngt-flow [data-ngt-email-input]:focus,
.wp-block-ngt-flow [data-ngt-first-name-input]:focus,
.wp-block-ngt-flow [data-ngt-password-input]:focus {
    color: #fafafa !important;
}

.wp-block-ngt-flow [data-ngt-email-input]:-webkit-autofill,
.wp-block-ngt-flow [data-ngt-email-input]:-webkit-autofill:hover,
.wp-block-ngt-flow [data-ngt-email-input]:-webkit-autofill:focus,
.wp-block-ngt-flow [data-ngt-first-name-input]:-webkit-autofill,
.wp-block-ngt-flow [data-ngt-first-name-input]:-webkit-autofill:hover,
.wp-block-ngt-flow [data-ngt-first-name-input]:-webkit-autofill:focus,
.wp-block-ngt-flow [data-ngt-password-input]:-webkit-autofill,
.wp-block-ngt-flow [data-ngt-password-input]:-webkit-autofill:hover,
.wp-block-ngt-flow [data-ngt-password-input]:-webkit-autofill:focus {
    -webkit-text-fill-color: #fafafa !important;
    caret-color: #fafafa;
    transition: background-color 9999s ease-out 0s;
}

.wp-block-ngt-flow [data-ngt-email-input]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.wp-block-ngt-flow [data-ngt-first-name-input]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.wp-block-ngt-flow [data-ngt-password-input]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.wp-block-ngt-flow [data-ngt-auth-message] {
    margin-top: 12px;
    max-width: 560px;
    font-size: 0.82rem;
    line-height: 1.45;
    margin-inline: auto;
    text-align: center;
}

.wp-block-ngt-flow [data-ngt-auth-message].is-error {
    color: #ffb3b3;
}

.wp-block-ngt-flow [data-ngt-auth-message].is-success {
    color: #bee2f2;
}

.wp-block-ngt-flow [data-ngt-auth-message].is-info {
    color: #fafafa;
}

.wp-block-ngt-flow .ngt-auth-links a {
    color: inherit;
    text-decoration: underline;
}

body.ngt-user-has-plus .ngt-upgrade-only,
body.ngt-user-has-plus [data-ngt-upgrade-only="true"] {
    display: none !important;
}

.wp-block-ngt-flow .ngt-pack-choice__actions {
    justify-content: flex-start;
    padding: 0 16px 16px;
}

.wp-block-ngt-flow .ngt-pack-choice,
.wp-block-ngt-flow .ngt-pack-choice__heading,
.wp-block-ngt-flow .ngt-pack-choice__title,
.wp-block-ngt-flow .ngt-pack-choice__price,
.wp-block-ngt-flow .ngt-pack-choice__desc,
.wp-block-ngt-flow .ngt-pack-choice__note {
    color: #fafafa;
}

.wp-block-ngt-flow .ngt-pack-choice__header {
    margin-bottom: 16px;
}

.wp-block-ngt-flow .ngt-pack-choice__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100%;
}

.wp-block-ngt-flow .ngt-pack-config {
    display: grid;
    gap: 16px;
    align-items: center;
    justify-items: center;
}

.wp-block-ngt-flow .ngt-pack-config__media img {
    max-width: 100%;
    height: auto;
}

.wp-block-ngt-flow .ngt-pack-config__title {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 13px;
    text-align: center;
}

.wp-block-ngt-flow .ngt-pack-config__price {
    margin-top: 8px;
    color: #f08d3a;
    text-align: center;
    font-size: 34px;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
}

.wp-block-ngt-flow .ngt-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px;
    text-align: center;
    background: transparent;
}

.wp-block-ngt-flow .ngt-center {
    justify-content: center;
}

.wp-block-ngt-flow .ngt-membership-grid,
.wp-block-ngt-flow .ngt-benefits-grid {
    gap: 24px;
}

.wp-block-ngt-flow .ngt-step-badge {
    display: inline-flex;
    align-items: center;
    background: #ff8a3d;
    color: #0b0b0b;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 10px;
    padding: 6px 10px;
    margin-bottom: 16px;
}

/* Pack config options: align with MSB visual language */
.wp-block-ngt-flow .ngt-pack-config-grid .ngt-quiz__answers {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
    margin-top: 12px;
    width: 100%;
    align-content: flex-start;
}

.wp-block-ngt-flow .ngt-pack-config-grid .ngt-quiz__answers > *,
.wp-block-ngt-flow .ngt-pack-config-grid .ngt-attr-group > * {
    margin: 0 !important;
}

.wp-block-ngt-flow .ngt-pack-config-grid .is-layout-flow > * {
    margin-block-start: 0 !important;
}

.wp-block-ngt-flow .ngt-pack-config-grid .ngt-attr-group {
    width: 100%;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    background: transparent !important;
}

.wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-group="pa_underwear"],
.wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-group="pa_length"] {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    align-items: stretch;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    background: transparent !important;
}

.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.ngt-quiz__answer {
    width: auto;
    max-width: none;
    min-width: 0;
    border: var(--ngt-pack-option-image-border-width) solid var(--ngt-pack-option-image-border-color);
    background: var(--ngt-pack-option-box-bg);
    color: var(--ngt-pack-option-box-text);
    padding: 10px 14px;
    border-radius: 0;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-family: var(--wp--preset--font-family--u-8), sans-serif;
    position: relative;
    transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
    will-change: transform;
}

.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.ngt-quiz__answer.is-selected {
    background: transparent;
    color: inherit;
    box-shadow: none;
}

.wp-block-ngt-flow {
    --ngt-pack-option-box-bg: #d9d9d9;
    --ngt-pack-option-box-text: #060d0d;
    --ngt-pack-option-image-border-color: #ffffff;
    --ngt-pack-option-image-border-width: 1px;
    --ngt-pack-option-selected-fill: #bee2f2;
    --ngt-pack-option-selected-inset: 8px;
    --ngt-pack-option-selected-ring-color: #ffffff;
    --ngt-pack-option-selected-ring-width: 2px;
    --ngt-pack-option-selected-ring-gap: 6px;
    --ngt-pack-option-check-icon: url('/wp-content/uploads/2023/11/mdi_check.svg');
    --ngt-pack-option-check-filter: brightness(0) invert(1);
    --ngt-pack-option-check-size: 24px;
    --ngt-pack-option-check-offset-x: -14px;
    --ngt-pack-option-check-offset-y: -14px;
    --ngt-pack-config-image-fit: contain;
    --ngt-pack-config-controls-bg: #060d0d;
    --ngt-pack-config-controls-text: #fafafa;
    --ngt-pack-config-media-bg: transparent;
    --ngt-pack-option-card-height: 56px;
    --ngt-pack-option-nonimage-bg: #ffffff;
    --ngt-pack-option-nonimage-text: #060d0d;
    --ngt-pack-option-nonimage-selected-bg: #bee2f2;
    --ngt-pack-option-nonimage-selected-text: #060d0d;
}

.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.ngt-quiz__answer:hover {
    border-color: var(--ngt-pack-option-image-border-color);
    transform: none;
    box-shadow: none;
}

.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.ngt-quiz__answer.is-selected {
    animation: none;
}

.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.ngt-quiz__answer.has-image.is-selected {
    animation: ngtOptionSelect 220ms ease-out;
}

.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.ngt-quiz__answer.is-selected,
.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.is-selected,
.wp-block-ngt-flow .ngt-pack-config-grid .ngt-quiz__answer.is-selected {
    background: transparent !important;
    color: inherit !important;
    box-shadow: none !important;
}

.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.ngt-quiz__answer:not(.has-image).is-selected {
    border: 0 !important;
    outline: 0 !important;
    background: var(--ngt-pack-option-nonimage-selected-bg) !important;
    color: var(--ngt-pack-option-nonimage-selected-text) !important;
    box-shadow: none !important;
    position: relative;
    overflow: visible;
}

.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.ngt-quiz__answer:not(.has-image).is-selected::after {
    content: '' !important;
    position: absolute;
    inset: -4px;
    border: 1px solid #fafafa;
    pointer-events: none;
    z-index: 2;
}

.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.ngt-quiz__answer:not(.has-image).is-selected .ngt-pack-option__label {
    position: relative;
    z-index: 1;
}

.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.ngt-quiz__answer:not(.has-image) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--ngt-pack-option-card-height);
    flex: 0 0 auto;
    max-width: none;
    min-width: 0;
    padding: 0;
    overflow: visible;
    border: 0 !important;
    outline: 0 !important;
    background: var(--ngt-pack-option-nonimage-bg);
    color: var(--ngt-pack-option-nonimage-text);
    box-shadow: none;
    transition: background-color 180ms ease, color 180ms ease;
    position: relative;
}

.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.ngt-quiz__answer:not(.has-image) .ngt-pack-option__image-wrap {
    display: none !important;
}

.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.ngt-quiz__answer:not(.has-image)::before {
    content: none !important;
}

.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.ngt-quiz__answer:not(.has-image)::after {
    content: none !important;
}

.wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="pa_size"] {
    flex: 0 0 clamp(86px, 7vw, 118px) !important;
    max-width: clamp(86px, 7vw, 118px) !important;
    min-width: 86px;
    min-height: var(--ngt-pack-option-card-height);
    text-align: center;
}

.wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="pa_underwear"],
.wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="pa_length"] {
    flex: 0 0 clamp(120px, 11vw, 180px);
    max-width: clamp(120px, 11vw, 180px);
    min-height: var(--ngt-pack-option-card-height);
}

.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.ngt-quiz__answer:not(.has-image) .ngt-pack-option__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: var(--ngt-pack-option-card-height);
    text-align: center;
    margin: 0;
    padding: 0 12px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.ngt-quiz__answer[data-ngt-attr-value=""],
.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.ngt-quiz__answer[data-ngt-attr-label=""],
.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.ngt-quiz__answer[data-ngt-attr-value="any"] {
    display: none !important;
}

.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-config-grid__subheading {
    margin: 0 0 10px;
}

.wp-block-ngt-flow .ngt-pack-config-grid .ngt-attr-group {
    margin: 0 0 22px;
}

.wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="styles"],
.wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="pa_styles"],
.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.has-image {
    min-width: 140px;
    flex: 0 0 auto;
    max-width: none;
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
    outline: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    transform: none !important;
}

.wp-block-ngt-flow .ngt-pack-config-grid .ngt-quiz__answers:has(> [data-ngt-attr-name="styles"]),
.wp-block-ngt-flow .ngt-pack-config-grid .ngt-quiz__answers:has(> [data-ngt-attr-name="pa_styles"]),
.wp-block-ngt-flow .ngt-pack-config-grid .ngt-quiz__answers--styles,
.wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-group="styles"],
.wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-group="pa_styles"] {
    width: fit-content;
    max-width: min(100%, calc((140px * 3) + (14px * 2)));
    justify-content: flex-start;
}

.wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="styles"] .ngt-pack-option__image-wrap,
.wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="pa_styles"] .ngt-pack-option__image-wrap,
.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.has-image .ngt-pack-option__image-wrap {
    width: 108px;
    height: 108px;
    border-radius: 999px;
    background: #fff;
    border: var(--ngt-pack-option-image-border-width) solid var(--ngt-pack-option-image-border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    position: relative;
}

.wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="styles"] .ngt-pack-option__image,
.wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="pa_styles"] .ngt-pack-option__image,
.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.has-image .ngt-pack-option__image {
    width: 78px;
    height: 78px;
    object-fit: contain;
}

.wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="styles"] .ngt-pack-option__label,
.wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="pa_styles"] .ngt-pack-option__label,
.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.has-image .ngt-pack-option__label {
    display: block;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-align: center;
    color: #fafafa;
    margin: 0;
    white-space: nowrap;
}

.wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="styles"].is-selected,
.wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="pa_styles"].is-selected,
.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.has-image.is-selected {
    background: transparent !important;
    border: 0 !important;
    outline: none;
    box-shadow: none !important;
}

.wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="styles"].is-selected .ngt-pack-option__image-wrap,
.wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="pa_styles"].is-selected .ngt-pack-option__image-wrap,
.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.has-image.is-selected .ngt-pack-option__image-wrap {
    border-color: var(--ngt-pack-option-image-border-color);
    outline: none;
    box-shadow: none;
}

.wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="styles"].is-selected .ngt-pack-option__image-wrap::after,
.wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="pa_styles"].is-selected .ngt-pack-option__image-wrap::after,
.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.has-image.is-selected .ngt-pack-option__image-wrap::after {
    content: '';
    position: absolute;
    inset: calc(-1 * (var(--ngt-pack-option-selected-ring-gap) + var(--ngt-pack-option-selected-ring-width)));
    border: var(--ngt-pack-option-selected-ring-width) solid var(--ngt-pack-option-selected-ring-color);
    border-radius: 999px;
    pointer-events: none;
    z-index: 2;
}

.wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="styles"].is-selected .ngt-pack-option__image-wrap::before,
.wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="pa_styles"].is-selected .ngt-pack-option__image-wrap::before,
.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.has-image.is-selected .ngt-pack-option__image-wrap::before {
    content: '';
    position: absolute;
    top: var(--ngt-pack-option-check-offset-y);
    right: var(--ngt-pack-option-check-offset-x);
    width: var(--ngt-pack-option-check-size);
    height: var(--ngt-pack-option-check-size);
    background-image: var(--ngt-pack-option-check-icon);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: var(--ngt-pack-option-check-filter);
    z-index: 4;
}

.wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-config__media img {
    image-rendering: -webkit-optimize-contrast;
}

.wp-block-ngt-flow .ngt-pack-config-shell .ngt-step-content {
    padding: 0;
}

.wp-block-ngt-flow .ngt-pack-config-grid {
    gap: 0;
    margin-block-start: 0;
    margin-block-end: 0;
}

.wp-block-ngt-flow .ngt-pack-config-grid > .wp-block-column {
    margin: 0;
}

.wp-block-ngt-flow .ngt-pack-config-grid__media {
    min-height: 0;
    padding: 0;
    background: var(--ngt-pack-config-media-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.wp-block-ngt-flow .ngt-pack-config-grid__media .ngt-step-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    margin: 0 !important;
    z-index: 30;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: calc(100% - 32px);
}

.wp-block-ngt-flow .ngt-pack-config-grid__media .ngt-pack-config {
    width: 100%;
    height: 100%;
    justify-items: center;
}

.wp-block-ngt-flow .ngt-pack-config-grid__media .ngt-pack-config__media {
    width: 100%;
    position: relative;
    z-index: 2;
}

.wp-block-ngt-flow .ngt-pack-config-grid__media .ngt-pack-config__media img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: var(--ngt-pack-config-image-fit);
}

.wp-block-ngt-flow .ngt-pack-config-grid__media .ngt-pack-config__meta {
    display: none;
}

@keyframes ngtOptionSelect {
    0% {
        transform: scale(0.96);
    }
    55% {
        transform: scale(1.035);
    }
    100% {
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.ngt-quiz__answer {
        transition: none;
    }

    .wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.ngt-quiz__answer.is-selected {
        animation: none;
    }
}

.wp-block-ngt-flow .ngt-pack-config-grid__controls {
    background: var(--ngt-pack-config-controls-bg);
    color: var(--ngt-pack-config-controls-text);
    min-height: 740px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wp-block-ngt-flow .ngt-pack-config-grid__controls * {
    box-sizing: border-box;
}

.wp-block-ngt-flow .ngt-pack-config-grid__controls .wp-block-group {
    margin: 0;
}

.wp-block-ngt-flow .ngt-pack-config-grid__body {
    padding: 44px 42px 26px;
}

.wp-block-ngt-flow .ngt-pack-config-grid__section-title {
    margin: 0 0 14px;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.wp-block-ngt-flow .ngt-pack-config-grid__subheading {
    margin: 28px 0 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.26em;
}

.wp-block-ngt-flow .ngt-pack-config-grid__size-guide {
    margin-top: 10px;
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-decoration: underline;
    cursor: pointer;
    user-select: none;
}

.wp-block-ngt-flow .ngt-pack-opt-outs {
    margin-top: 22px;
}

.wp-block-ngt-flow .ngt-pack-opt-outs__label {
    display: block;
    margin: 0 0 10px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.wp-block-ngt-flow .ngt-pack-opt-outs__field {
    width: 100%;
    min-height: 92px;
    padding: 10px 12px;
    border: 1px solid currentColor;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    line-height: 1.4;
    resize: vertical;
}

.wp-block-ngt-flow .ngt-pack-opt-outs__field::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.wp-block-ngt-flow .ngt-pack-opt-outs__help {
    margin: 8px 0 0;
    font-size: 11px;
    opacity: 0.78;
}

.wp-block-ngt-flow .ngt-pack-opt-outs__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-align: left;
    cursor: pointer;
}

.wp-block-ngt-flow .ngt-pack-opt-outs__toggle::after {
    content: '>';
    display: inline-block;
    margin-left: 12px;
    transition: transform 0.16s ease;
}

.wp-block-ngt-flow .ngt-pack-opt-outs--collapsible.is-expanded .ngt-pack-opt-outs__toggle::after {
    transform: rotate(90deg);
}

.wp-block-ngt-flow .ngt-pack-opt-outs--collapsible:not(.is-expanded) .ngt-pack-opt-outs__field,
.wp-block-ngt-flow .ngt-pack-opt-outs--collapsible:not(.is-expanded) .ngt-pack-opt-outs__help {
    display: none;
}

.wp-block-ngt-flow .ngt-pack-opt-outs--collapsible.is-expanded .ngt-pack-opt-outs__toggle {
    margin-bottom: 10px;
}

.wp-block-ngt-flow .ngt-size-guide-panel {
    background: #f9f9f9;
    color: #060d0d;
    padding: 1em;
    margin-top: 1em;
}

.wp-block-ngt-flow .ngt-size-guide-panel__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2em 2em;
    justify-content: flex-start;
}

.wp-block-ngt-flow .ngt-size-guide-panel__grid > div {
    min-width: 160px;
    font-size: 12px;
    line-height: 1.45;
}

.wp-block-ngt-flow .ngt-pack-config-grid__footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 42px 24px;
}

.wp-block-ngt-flow .ngt-pack-config-grid__validation {
    margin: 0 0 16px;
    padding: 12px 14px;
    color: #111111;
    background: var(--wp--preset--color--accent-3);
    border: 1px solid rgba(0, 0, 0, 0.35);
    border-radius: 2px;
    font-size: var(--wp--preset--font-size--large, 1rem);
    line-height: 1.35;
    font-weight: 600;
    text-align: left;
}

.wp-block-ngt-flow .ngt-pack-config-grid__validation-list {
    margin: 0;
    padding: 0 0 0 18px;
}

.wp-block-ngt-flow .ngt-pack-config-grid__validation-list li {
    margin: 0 0 5px;
}

.wp-block-ngt-flow .ngt-pack-config-grid__validation-list li:last-child {
    margin: 0;
}

.wp-block-ngt-flow .ngt-pack-config-grid__price {
    margin: 0 0 16px;
    font-size: 38px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f08d3a;
    text-align: left;
}

.wp-block-ngt-flow .ngt-pack-config-grid__actions {
    display: flex;
    gap: 14px;
    align-items: center;
}

.wp-block-ngt-flow .ngt-attr-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.wp-block-ngt-flow .ngt-attr-group__placeholder {
    font-size: 12px;
    opacity: 0.7;
}

.wp-block-ngt-flow .ngt-pack-config-grid__actions .wp-block-button {
    margin: 0;
}

.wp-block-ngt-flow .ngt-pack-config-grid__actions .wp-block-button:first-child .wp-block-button__link {
    background: transparent;
    color: #fafafa;
    border: 1px solid transparent;
    text-decoration: underline;
    padding-left: 0;
    padding-right: 0;
}

.wp-block-ngt-flow .ngt-pack-config-grid__actions .wp-block-button:last-child .wp-block-button__link {
    min-width: 330px;
}

.wp-block-ngt-flow .ngt-pack-review {
    margin: 0 0 32px;
}

.wp-block-ngt-flow .ngt-pack-review__grid {
    margin: 0;
}

.wp-block-ngt-flow .ngt-pack-review__media .ngt-pack-config__media {
    padding: 0;
}

.wp-block-ngt-flow [data-ngt-step="step_review"] .ngt-pack-config__media,
.wp-block-ngt-flow .ngt-pack-review__media-dynamic {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.wp-block-ngt-flow .ngt-pack-review__media .ngt-pack-config__media .wp-block-image {
    margin: 0;
    width: 100%;
}

.wp-block-ngt-flow [data-ngt-step="step_review"] .ngt-pack-config__media .wp-block-image,
.wp-block-ngt-flow .ngt-pack-review__media-dynamic .wp-block-image {
    width: 100%;
    height: 100%;
}

.wp-block-ngt-flow .ngt-pack-review__media .ngt-pack-config__media .wp-block-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wp-block-ngt-flow [data-ngt-step="step_review"] .ngt-pack-config__media img,
.wp-block-ngt-flow .ngt-pack-review__media-dynamic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wp-block-ngt-flow .ngt-pack-review__media .ngt-pack-config__media > img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.wp-block-ngt-flow .ngt-pack-review__summary {
    display: grid;
    gap: 8px;
    align-items: start;
    text-align: left !important;
    justify-items: start !important;
    justify-content: start !important;
}

.wp-block-ngt-flow .ngt-pack-review__summary > * {
    margin-top: 0;
    margin-bottom: 0;
}

.wp-block-ngt-flow .ngt-pack-review__summary .ngt-pack-summary {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: left !important;
    justify-self: start !important;
    margin-inline: 0 !important;
}

.wp-block-ngt-flow .ngt-pack-review__summary .ngt-pack-summary strong {
    font-size: 1rem;
}

.wp-block-ngt-flow .ngt-pack-review__styles {
    margin-top: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.wp-block-ngt-flow .ngt-pack-review__style {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.wp-block-ngt-flow .ngt-pack-review__style-image-wrap {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #fff;
    border: var(--ngt-pack-option-image-border-width) solid var(--ngt-pack-option-image-border-color);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.wp-block-ngt-flow .ngt-pack-review__style-image-wrap::after {
    content: none;
}

.wp-block-ngt-flow .ngt-pack-review__style-image-wrap::before {
    content: none;
}

.wp-block-ngt-flow .ngt-pack-review__style-image {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.wp-block-ngt-flow .ngt-pack-review__style-label {
    display: none;
}

.wp-block-ngt-flow .ngt-pack-review__selection-row {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.wp-block-ngt-flow .ngt-pack-review__size-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 14px;
    height: 26px;
    padding: 0 12px;
    background: #bee2f2;
    color: #060d0d;
    font-size: 0.618rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wp-block-ngt-flow .ngt-pack-review__edit {
    display: block;
    margin-top: 10px;
    color: inherit;
    text-decoration: underline;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    width: fit-content;
}

.wp-block-ngt-haus-position-map .ngt-haus-map,
.wp-block-ngt-haus-position-map {
    background: transparent;
    color: #fafafa;
    padding: clamp(18px, 2.4vw, 28px);
    border: 0;
    font-family: var(--wp--preset--font-family--u-8), var(--wp--preset--font-family--body), sans-serif;
}

.wp-block-ngt-haus-position-map .ngt-haus-map__canvas {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    background: transparent;
}

.wp-block-ngt-haus-position-map .ngt-haus-map__controls {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wp-block-ngt-haus-position-map .ngt-haus-map__button {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #fafafa;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 9px 12px;
    cursor: pointer;
}

.wp-block-ngt-haus-position-map .ngt-haus-map__button:hover,
.wp-block-ngt-haus-position-map .ngt-haus-map__button:focus {
    background: rgba(255, 255, 255, 0.08);
}

.wp-block-ngt-haus-position-map .ngt-haus-map__share-url {
    margin-top: 10px;
    font-size: 0.76rem;
    opacity: 0.82;
    word-break: break-all;
}

.wp-block-ngt-haus-position-map .ngt-haus-map__modal[hidden] {
    display: none !important;
}

.wp-block-ngt-haus-position-map .ngt-haus-map__modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-block-ngt-haus-position-map .ngt-haus-map__modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.wp-block-ngt-haus-position-map .ngt-haus-map__modal-card {
    position: relative;
    z-index: 1;
    width: min(90vw, 860px);
    max-height: 88vh;
    overflow: auto;
    background: #060d0d;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 16px;
}

.wp-block-ngt-haus-position-map .ngt-haus-map__modal-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: 0;
    background: transparent;
    color: #fafafa;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.wp-block-ngt-haus-position-map .ngt-haus-map__preview {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 20px;
}

@media (max-width: 900px) {
    .wp-block-ngt-flow [data-ngt-email-input],
    .wp-block-ngt-flow [data-ngt-first-name-input],
    .wp-block-ngt-flow [data-ngt-password-input] {
        width: 70%;
        max-width: 70%;
    }

    .wp-block-ngt-flow .ngt-step-shell {
        grid-template-columns: 1fr;
    }

    .wp-block-ngt-flow .ngt-step-rail {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding: 16px 0;
    }

    .wp-block-ngt-flow .ngt-step-rail__text {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .wp-block-ngt-flow .ngt-pack-config-grid__media,
    .wp-block-ngt-flow .ngt-pack-config-grid__controls {
        min-height: auto;
    }

    .wp-block-ngt-flow .ngt-pack-config-grid__body,
    .wp-block-ngt-flow .ngt-pack-config-grid__footer {
        padding: 24px;
    }

    .wp-block-ngt-flow .ngt-pack-config-grid__actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .wp-block-ngt-flow .ngt-pack-config-grid__footer .ngt-pack-summary,
    .wp-block-ngt-flow .ngt-pack-config-grid__price {
        text-align: center;
        justify-self: center;
        margin-inline: auto;
    }

    .wp-block-ngt-flow .ngt-pack-config-grid__actions .wp-block-button:last-child .wp-block-button__link {
        min-width: 0;
        width: 100%;
    }

    .wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="styles"],
    .wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="pa_styles"],
    .wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.has-image {
        min-width: 140px;
        flex: 0 0 auto;
        max-width: none;
    }

    .wp-block-ngt-flow .ngt-pack-config-grid .ngt-quiz__answers:has(> [data-ngt-attr-name="styles"]),
    .wp-block-ngt-flow .ngt-pack-config-grid .ngt-quiz__answers:has(> [data-ngt-attr-name="pa_styles"]),
    .wp-block-ngt-flow .ngt-pack-config-grid .ngt-quiz__answers--styles,
    .wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-group="styles"],
    .wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-group="pa_styles"] {
        max-width: min(100%, calc((140px * 2) + 14px));
    }

    .wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.ngt-quiz__answer:not(.has-image) {
        flex: 1 1 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }

    .wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="pa_size"] {
        flex: 0 0 calc((100% - 24px) / 4) !important;
        max-width: calc((100% - 24px) / 4) !important;
    }

    .wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-group="pa_underwear"],
    .wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-group="pa_length"] {
        display: flex;
        flex-wrap: nowrap;
    }

    .wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="styles"] .ngt-pack-option__image-wrap,
    .wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="pa_styles"] .ngt-pack-option__image-wrap,
    .wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.has-image .ngt-pack-option__image-wrap {
        width: 96px;
        height: 96px;
    }

    .wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="styles"] .ngt-pack-option__image,
    .wp-block-ngt-flow .ngt-pack-config-grid [data-ngt-attr-name="pa_styles"] .ngt-pack-option__image,
    .wp-block-ngt-flow .ngt-pack-config-grid .ngt-pack-option.has-image .ngt-pack-option__image {
        width: 70px;
        height: 70px;
    }

    .wp-block-ngt-flow .ngt-pack-review__selection-row {
        gap: 8px;
    }
}
@keyframes ngtFadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ngtRailIn {
    from {
        opacity: 0;
        transform: translateY(12px) rotate(180deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(180deg);
    }
}

.ngt-flow__focus-target {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
    white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
    .wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__title,
    .wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__subtitle,
    .wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__label,
    .wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__actions,
    .wp-block-ngt-flow .ngt-flow__step.is-active .ngt-quiz__answers > * {
        animation: none;
    }

    .wp-block-ngt-flow .ngt-flow__step {
        transition: none;
    }

    .wp-block-ngt-flow .ngt-flow__step.is-active .ngt-step-rail__text {
        animation: none;
    }
}

.wp-block-ngt-profile-menu {
    display: flex;
    flex-direction: column;
    gap: var(--wp--style--block-gap, 8px);
}

.wp-block-ngt-profile-menu .ngt-profile-menu__empty {
    opacity: 0.8;
}

.wp-block-ngt-profile-menu-item .ngt-profile-menu-item__link {
    display: block;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    text-decoration: inherit;
}

.wp-block-ngt-profile-menu-item .ngt-profile-menu-item__link:visited,
.wp-block-ngt-profile-menu-item .ngt-profile-menu-item__link:hover,
.wp-block-ngt-profile-menu-item .ngt-profile-menu-item__link:focus {
    color: inherit;
}

.ngt-profile-membership__card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ngt-profile-membership__header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ngt-profile-membership__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
}

.ngt-profile-membership__plan-title {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.35rem);
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ngt-profile-membership__status-badge {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    flex: 0 0 auto;
    color: #ff7a45;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ngt-profile-membership__summary {
    margin: 0;
    color: #ff7a45;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .ngt-profile-membership__heading {
        flex-wrap: wrap;
    }

    .ngt-profile-membership__status-badge {
        margin-left: 0;
    }
}

.ngt-profile-membership__selection-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ngt-profile-membership__size-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    height: 34px;
    padding: 0 12px;
    background: #bee2f2;
    color: #060d0d;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.ngt-profile-membership__styles {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ngt-profile-membership__style {
    display: inline-flex;
}

.ngt-profile-membership__style-image-wrap {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ngt-profile-membership__style-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.ngt-profile-membership__style-fallback {
    color: #060d0d;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.ngt-profile-membership__edit {
    display: inline-flex;
    width: fit-content;
    color: inherit;
    text-decoration: underline;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ngt-profile-membership__meta {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.5;
}

.wp-block-ngt-profile-membership .ngt-profile-membership__empty {
    opacity: 0.8;
}

.ngt-profile-membership__empty-wrap {
    display: block;
}

.ngt-profile-membership__empty-wrap--none {
    margin-top: 6px;
}

.ngt-profile-membership__upgrade-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #fafafa;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    font-family: var(--wp--preset--font-family--u-8), sans-serif;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.ngt-profile-membership__upgrade-button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fafafa;
}

.wp-block-ngt-profile-membership,
.wp-block-ngt-profile-membership-field,
.wp-block-ngt-profile-membership-piece {
    color: inherit;
}

.wp-block-ngt-profile-membership :where(
    .wp-block-paragraph,
    .wp-block-heading,
    .ngt-profile-membership__empty,
    .ngt-profile-membership__meta,
    .ngt-profile-membership-field__label,
    .ngt-profile-membership-field__value,
    .ngt-profile-membership-field__label-only,
    .ngt-profile-membership-field__value-only,
    .ngt-profile-membership-piece__text
):not(.has-text-color) {
    color: inherit !important;
}

.wp-block-ngt-profile-membership .ngt-profile-membership__plan-title:not(.has-text-color) {
    color: inherit !important;
}

.wp-block-ngt-profile-membership .ngt-profile-membership__status-badge:not(.has-text-color),
.wp-block-ngt-profile-membership .ngt-profile-membership__summary:not(.has-text-color) {
    color: #ff7a45 !important;
}

.wp-block-ngt-profile-membership .ngt-profile-membership__size-pill:not(.has-text-color) {
    color: #060d0d !important;
}

.wp-block-ngt-profile-membership :where(
    a,
    .ngt-profile-membership-field__link,
    .ngt-profile-membership-piece__link
):not(.has-text-color),
.wp-block-ngt-profile-membership-field .ngt-profile-membership-field__link:not(.has-text-color),
.wp-block-ngt-profile-membership-piece .ngt-profile-membership-piece__link:not(.has-text-color) {
    color: inherit !important;
}

.wp-block-ngt-profile-membership .wp-block-button__link,
.wp-block-ngt-profile-membership .wp-element-button {
    color: inherit;
    border-color: currentColor;
}

.wp-block-ngt-profile-membership-field .ngt-profile-membership-field__label {
    display: block;
}

.wp-block-ngt-profile-membership-field .ngt-profile-membership-field__value {
    display: block;
    margin-top: 4px;
}

.wp-block-ngt-profile-membership-field .ngt-profile-membership-field__label-only,
.wp-block-ngt-profile-membership-field .ngt-profile-membership-field__value-only {
    display: block;
}

.wp-block-ngt-profile-membership-field--edit-link .ngt-profile-membership-field__link {
    display: inline-flex;
    text-decoration: inherit;
}

.wp-block-ngt-profile-membership-piece .ngt-profile-membership-piece__text {
    display: inline-block;
}

.wp-block-ngt-profile-membership-piece--label .ngt-profile-membership-piece__text {
    display: inline-block;
}

.wp-block-ngt-profile-membership-piece .ngt-profile-membership-piece__link {
    display: inline-flex;
    text-decoration: inherit;
}

.ngt-profile-gay-card {
    position: relative;
    overflow: hidden;
}

.ngt-profile-gay-card__inner {
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ngt-profile-gay-card__eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.ngt-profile-gay-card__title {
    margin-top: 8px;
    font-size: clamp(24px, 3.2vw, 36px);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

.ngt-profile-gay-card__meta {
    margin-top: 10px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ngt-profile-gay-card__status {
    margin-top: 10px;
    display: inline-flex;
    width: fit-content;
    border: 1px solid currentColor;
    padding: 4px 8px;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ngt-profile-vote-status {
    display: grid;
    gap: 12px;
}

.ngt-profile-vote-status__title {
    margin: 0;
}

.ngt-profile-vote-status__message-wrap {
    display: block;
}

.ngt-profile-vote-status__message {
    margin: 0;
}

.ngt-profile-vote-status__actions {
    display: block;
}

.ngt-profile-vote-status__cta {
    display: inline-flex;
    justify-content: center;
    width: fit-content;
    min-width: 200px;
    text-decoration: inherit;
}

.ngt-profile-vote-status__countdown-wrap {
    font-size: 13px;
}

.ngt-profile-countdown {
    font-weight: 700;
}

.ngt-profile-notify-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: auto;
    background: transparent;
    color: inherit;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

.ngt-profile-notify-status {
    font-size: 12px;
    opacity: 0.82;
}

.wp-block-ngt-profile-account-content {
    min-width: 0;
}

.wp-block-ngt-profile-account-content .ngt-profile-account-content__preview {
    opacity: 0.8;
}

.wp-block-ngt-profile-account-content .ngt-profile-account-content__preview--editor-empty {
    font-style: italic;
}

.wp-block-ngt-profile-visibility .ngt-profile-login-fallback,
.wp-block-ngt-profile-account-content .ngt-profile-login-fallback {
    max-width: 420px;
    margin-inline: auto;
    text-align: center;
}

.wp-block-ngt-profile-visibility .ngt-profile-login-fallback__form,
.wp-block-ngt-profile-account-content .ngt-profile-login-fallback__form {
    display: grid;
    gap: 12px;
    justify-items: center;
}

.wp-block-ngt-profile-visibility .ngt-profile-login-fallback__field,
.wp-block-ngt-profile-account-content .ngt-profile-login-fallback__field {
    width: 100%;
}

.wp-block-ngt-profile-visibility .ngt-profile-login-fallback__label,
.wp-block-ngt-profile-account-content .ngt-profile-login-fallback__label {
    margin: 0 0 6px;
    text-align: center;
}

.wp-block-ngt-profile-visibility .ngt-profile-login-fallback p,
.wp-block-ngt-profile-account-content .ngt-profile-login-fallback p {
    margin: 0 0 10px;
}

.wp-block-ngt-profile-visibility .ngt-profile-login-fallback label,
.wp-block-ngt-profile-account-content .ngt-profile-login-fallback label {
    display: block;
    margin: 0 0 6px;
}

.wp-block-ngt-profile-visibility .ngt-profile-login-fallback input[type="text"],
.wp-block-ngt-profile-visibility .ngt-profile-login-fallback input[type="email"],
.wp-block-ngt-profile-visibility .ngt-profile-login-fallback input[type="password"],
.wp-block-ngt-profile-account-content .ngt-profile-login-fallback input[type="text"],
.wp-block-ngt-profile-account-content .ngt-profile-login-fallback input[type="email"],
.wp-block-ngt-profile-account-content .ngt-profile-login-fallback input[type="password"] {
    width: 100%;
}

.wp-block-ngt-profile-visibility .ngt-profile-login-fallback__remember label,
.wp-block-ngt-profile-account-content .ngt-profile-login-fallback__remember label {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.wp-block-ngt-profile-visibility .ngt-profile-login-fallback .login-submit,
.wp-block-ngt-profile-account-content .ngt-profile-login-fallback .login-submit {
    margin-top: 14px;
}

.wp-block-ngt-profile-visibility .ngt-profile-login-fallback__submit,
.wp-block-ngt-profile-account-content .ngt-profile-login-fallback__submit {
    margin-top: 8px;
}

.wp-block-ngt-profile-visibility .ngt-profile-login-fallback__lost,
.wp-block-ngt-profile-account-content .ngt-profile-login-fallback__lost {
    margin-top: 10px;
}

.wp-block-ngt-profile-visibility .ngt-profile-login-fallback__lost a,
.wp-block-ngt-profile-account-content .ngt-profile-login-fallback__lost a {
    color: inherit;
}

.wp-block-ngt-profile-visibility .ngt-profile-account-content__social,
.wp-block-ngt-profile-account-content .ngt-profile-account-content__social {
    margin-top: 18px;
}

.wp-block-ngt-profile-account-content .woocommerce-order-details,
.wp-block-ngt-profile-account-content .woocommerce-customer-details {
    margin-top: clamp(24px, 4vw, 42px);
}

.wp-block-ngt-profile-account-content .order-info {
    margin: 0 0 24px;
}

.wp-block-ngt-profile-account-content .woocommerce-order-details__title,
.wp-block-ngt-profile-account-content .woocommerce-column__title {
    margin-bottom: 14px;
}

.wp-block-ngt-profile-account-content .woocommerce-table--order-details,
.wp-block-ngt-profile-account-content table.shop_table.order_details,
.wp-block-ngt-profile-account-content .woocommerce-customer-details address {
    width: 100%;
    border-color: rgba(127, 127, 127, 0.28);
    border-color: color-mix(in srgb, currentColor 18%, transparent);
}

.wp-block-ngt-profile-account-content .woocommerce-table--order-details,
.wp-block-ngt-profile-account-content table.shop_table.order_details {
    border-collapse: collapse;
    border-spacing: 0;
}

.wp-block-ngt-profile-account-content .woocommerce-table--order-details thead th,
.wp-block-ngt-profile-account-content table.shop_table.order_details thead th {
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(127, 127, 127, 0.28);
    border-bottom: 1px solid color-mix(in srgb, currentColor 18%, transparent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wp-block-ngt-profile-account-content .woocommerce-table--order-details tbody td,
.wp-block-ngt-profile-account-content .woocommerce-table--order-details tfoot th,
.wp-block-ngt-profile-account-content .woocommerce-table--order-details tfoot td,
.wp-block-ngt-profile-account-content table.shop_table.order_details tbody td,
.wp-block-ngt-profile-account-content table.shop_table.order_details tfoot th,
.wp-block-ngt-profile-account-content table.shop_table.order_details tfoot td {
    padding: 22px 0;
    border-top: 1px solid rgba(127, 127, 127, 0.18);
    border-top: 1px solid color-mix(in srgb, currentColor 12%, transparent);
    vertical-align: top;
}

.wp-block-ngt-profile-account-content .woocommerce-table--order-details .product-name,
.wp-block-ngt-profile-account-content table.shop_table.order_details .product-name {
    padding-right: 28px;
}

.wp-block-ngt-profile-account-content .woocommerce-table--order-details .product-total,
.wp-block-ngt-profile-account-content table.shop_table.order_details .product-total {
    text-align: right;
    white-space: nowrap;
    font-weight: 700;
}

.wp-block-ngt-profile-account-content .ngt-view-order-item {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.wp-block-ngt-profile-account-content .ngt-view-order-item__media {
    width: 88px;
}

.wp-block-ngt-profile-account-content .ngt-view-order-item__image {
    display: block;
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 18px;
    background: #bee2f2;
}

.wp-block-ngt-profile-account-content .ngt-view-order-item__title {
    min-width: 0;
}

.wp-block-ngt-profile-account-content .ngt-view-order-item__title > a,
.wp-block-ngt-profile-account-content .ngt-view-order-item__title > a:visited,
.wp-block-ngt-profile-account-content .ngt-view-order-item__title > a:hover,
.wp-block-ngt-profile-account-content .ngt-view-order-item__title > a:focus {
    color: inherit;
}

.wp-block-ngt-profile-account-content .woocommerce-table--order-details .product-name .product-quantity,
.wp-block-ngt-profile-account-content table.shop_table.order_details .product-name .product-quantity {
    margin-left: 4px;
    opacity: 0.72;
}

.wp-block-ngt-profile-account-content .woocommerce-table--order-details ul.wc-item-meta,
.wp-block-ngt-profile-account-content table.shop_table.order_details ul.wc-item-meta {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.wp-block-ngt-profile-account-content .woocommerce-table--order-details ul.wc-item-meta li,
.wp-block-ngt-profile-account-content table.shop_table.order_details ul.wc-item-meta li {
    margin: 0;
    padding: 0;
}

.wp-block-ngt-profile-account-content .woocommerce-table--order-details ul.wc-item-meta .wc-item-meta-label,
.wp-block-ngt-profile-account-content table.shop_table.order_details ul.wc-item-meta .wc-item-meta-label {
    display: block;
    margin: 0 0 4px;
    font-weight: 700;
}

.wp-block-ngt-profile-account-content .woocommerce-table--order-details ul.wc-item-meta p,
.wp-block-ngt-profile-account-content table.shop_table.order_details ul.wc-item-meta p {
    margin: 0;
    opacity: 0.9;
}

.wp-block-ngt-profile-account-content .ngt-view-order-meta {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wp-block-ngt-profile-account-content .ngt-view-order-meta__summary {
    margin: 0;
}

.wp-block-ngt-profile-account-content .ngt-view-order-meta__selection-row {
    gap: 10px;
}

.wp-block-ngt-profile-account-content .woocommerce-table--order-details tfoot th,
.wp-block-ngt-profile-account-content table.shop_table.order_details tfoot th {
    font-weight: 700;
}

.wp-block-ngt-profile-account-content .woocommerce-table--order-details tfoot td small,
.wp-block-ngt-profile-account-content table.shop_table.order_details tfoot td small {
    display: block;
    margin-top: 4px;
    opacity: 0.75;
}

.wp-block-ngt-profile-account-content .woocommerce-customer-details address {
    margin: 0;
    padding: 22px 24px;
    border-style: solid;
    border-width: 1px;
    border-radius: 24px;
    line-height: 1.7;
}

@media (max-width: 782px) {
    .wp-block-ngt-profile-account-content .ngt-view-order-item {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 14px;
    }

    .wp-block-ngt-profile-account-content .ngt-view-order-item__media,
    .wp-block-ngt-profile-account-content .ngt-view-order-item__image {
        width: 72px;
        height: 72px;
    }

    .wp-block-ngt-profile-account-content .woocommerce-table--order-details .product-name,
    .wp-block-ngt-profile-account-content table.shop_table.order_details .product-name {
        padding-right: 16px;
    }
}

.ngt-checkout-transition {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 10, 12, 0.72);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.ngt-checkout-transition.is-active {
    opacity: 1;
    pointer-events: auto;
}

.ngt-checkout-transition__panel {
    display: grid;
    gap: 12px;
    justify-items: center;
    padding: 24px 20px;
    min-width: 260px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(6, 13, 13, 0.92);
    color: #fafafa;
}

.ngt-checkout-transition__spinner {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 2px solid rgba(190, 226, 242, 0.28);
    border-top-color: #bee2f2;
    animation: ngtCheckoutSpin 640ms linear infinite;
}

.ngt-checkout-transition__text {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
}

@keyframes ngtCheckoutSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ngt-checkout-transition {
        transition: none;
    }

    .ngt-checkout-transition__spinner {
        animation: none;
    }
}

.wp-block-ngt-persona-image,
.ngt-persona-image {
    display: block;
    overflow: hidden;
}

.wp-block-ngt-persona-image img,
.ngt-persona-image img {
    display: block;
    width: 100%;
    height: auto;
}
