@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800&display=swap"); /* general page styles */

/* ---- General page styles ---- */

@keyframes marquee {
    to {
        margin-left: -100%;
        /*transform: translateX(-100%);*/
    }
}

@keyframes blink {
    to {
        transform: scale(.85);
    }
}

@keyframes shake {
    20% {
        transform: translateX(4px);
    }

    40% {
        transform: translateX(-3px);
    }

    60% {
        transform: translateX(2px);
    }

    80% {
        transform: translateX(-1px);
    }
}

#company-marquee .branding-element-block:first-child {
    animation: marquee 60s linear infinite;
}

.faq-nav-sign-vertical, .faq-item-block, .faq-item-text-block {
    transition: all .3s,
    opacity .6s;
}

.faq-item-wrapper:not(.open) .faq-nav-sign-vertical {
    transform: rotate(90deg);
}

.faq-item-wrapper:not(.open) .faq-item-block {
    grid-row-gap: 0;
}

.faq-item-text-block {
    overflow: hidden;
    height: 0;
    opacity: 0;
}

.faq-item-wrapper.open .faq-item-text-block {
    opacity: 1;
}

/* ---- END general page styles ---- */

/* ---- promo code form ---- */
#promo-code-form-annually {
    position: relative;
}

#promo-code-warning {
    display: flex;
    align-items: center;
    gap: .4rem;
    position: absolute;
    top: calc(100% + 5px);
    left: 1em;
    padding: .1rem .5rem;
    color: white;
    border-radius: 7px;
    background: rgba(0, 0, 0, 0.63);
    font-size: .7rem;
}

#promo-code-warning::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    transform: rotate(45deg);
    top: -5px;
    left: 20%;
    border-top: rgba(0, 0, 0, 0.63) 5px solid;
    border-left: rgba(0, 0, 0, 0.63) 5px solid;
    border-bottom: transparent 5px solid;
    border-right: transparent 5px solid;
}

#promo-code-warning::before {
    content: "";
    display: block;
    width: 7px;
    min-width: 7px;
    height: 7px;
    border-radius: 100%;
    background: lightgreen;
}

#promo-code-warning.invalid::before {
    background: darkred;
}

#wf-form-promo-code-field-annually {
    max-width: none;
}

#wf-form-promo-code-field-annually button[type="submit"] {
    display: flex;
    align-items: center;
    gap: .5rem;
    max-width: none;
}

#wf-form-promo-code-field-annually[disabled] {
    opacity: .7;
}

#wf-form-promo-code-field-annually[disabled] button[type="submit"] {
    cursor: pointer;
}

#wf-form-promo-code-field-annually[disabled] button[type="submit"]::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: #fbbc6a;
    border-radius: 100%;
    animation: blink .3s infinite alternate ease-in-out;
}

/* --- END promo code form ---- */

/* --- local css styles --- */

.icon-close {
    width: 24px;
    height: 24px;
}

.subscribe-label {
    width: 96px;
    height: 32px;
    color: #fff;
    font-size: 18px;
    text-align: center;
    background-color: #FF5C27;
    border-radius: 0 10px 0 10px;
    position: relative;
    top: 1.5rem;
    right: -10.6rem;
    z-index: 9999;
}

.agreen-paycard-checkbox .custom-control-label {
    display: inline;
    font-weight: 500;
    color: #6E7378;
    font-size: 14px;
    cursor: pointer;
}

.agreen-paycard-checkbox.custom-checkbox .custom-control-label::before {
    width: 12px;
    height: 12px;
    border-radius: 0;
    background-color: transparent;
    border: 1px #CFD2D6 solid;
    top: 0.25rem;
    left: -1rem;
}

.agreen-paycard-checkbox.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    top: 0.14rem;
    left: -1.12rem;
}

.agreen-paycard-checkbox.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    border-color: #FB9136;
}

.stripe-img img {
    margin-right: 3px;
}

.stripe-img img:last-child {
    margin-right: 0;
}

.price-subscription-btn {
    width: 79%;
}

.item-price-faqbox {
    border-bottom: 1px #EDEDED solid;
}

.item-price-faqbox p {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
}

.item-price-faqbox p a {
    border-bottom: 1px dashed #FF9C00;
}

@media screen and (max-width: 1200px) {
    .u-pricing-v2-wrapper {
        margin-top: -16.5rem;
    }
}

@media screen and (max-width: 750px) {
    .u-pricing-v2-wrapper {
        margin-top: -15.5rem;
    }
}

.price-sub-tips {
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #8C98A5;
    line-height: 20px;
}

.public-transfer-instructions {
    font-weight: 500;
    color: #505355;
    font-size: 14px;
    margin-top: 3rem;
}

.public-transfer-instructions a {
    font-size: 14px;
    color: #F24743;
    text-decoration: none;
    border-bottom: 1px #F24743 dashed;
}

.zibard-btn {
    width: 100%;
    height: 110px;
    background: url(../../../assets/images/bg/ziniao-bg.png) no-repeat center center;
    text-indent: -9999px;
    justify-content: center;
    background-size: cover;
}

.qr-style {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    flex-direction: column;
}

.btn-cancel {
    background-color: #ADB6BF !important;
    border-color: #ADB6BF !important;
}

.btn-cancel:hover {
    background-color: #a0a1a3 !important;
    border-color: #a0a1a3 !important;
}

#qr-loading {
    color: #FF9200;
    font-size: 20px;
    font-weight: 600;
}

textarea {
    resize: none;
}

.upi-btn {
    background: #00c9a7 !important;
    border-color: #00c9a7 !important;
    color: #fff !important;
}

.upi-btn:hover {
    opacity: 0.8;
}

.model-grey-bg {
    background: #F0F0F0 !important;
    /*width: calc(100% -4rem);*/
    max-height: calc(85vh - 57px);
    overflow: hidden scroll;
}

.model-grey-bg::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.model-grey-bg::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(184, 185, 188, 0.9);
}

.new-coupon-gift {
    right: 0;
    display: flex;
    align-items: center;
    width: unset;
    padding: 0 8px;
}

.new-coupon-gift .close-custom {
    font-size: 14px;
    margin-right: 7px;
    color: rgba(180, 190, 199, 1);
}

.new-coupon-gift-content {
    border: none;
    left: unset;
    right: 0;
    top: 43px;
    width: 479px;
    background: rgba(244, 244, 244, 1);
    border-radius: 4px;
    max-height: 328px;
    overflow: auto;
    padding: 10px;
    z-index: 99;
}

.new-coupon-gift-content::-webkit-scrollbar {
    width: 5px;
    height: 6px;
}

.new-coupon-gift-content::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(184, 185, 188, 0.4);
    display: none;
}

.new-coupon-gift-content:hover::-webkit-scrollbar-thumb {
    display: block;
    cursor: pointer;
}

.discount-coupon-box .discount-coupon-gift .icon-youhuiquan {
    color: #FF9200;
}

.limited-price-icon {
    position: absolute;
    right: 32px;
    top: 78px;
}

.ssp-month {
    height: 30px;
    line-height: 30px;
    background: #FFF4E5;
    color: #DD902C;
    font-weight: 400;
    font-size: 13px;
    padding: 0 22px;
    border-radius: 4px;
    /* margin: 12px 0; */
    margin-bottom: 4px;
}

.ssp-gift {
    height: 16px;
    width: 16px;
    margin-right: 10px;
}

.btn-air {
    border-color: #6030FF;
    color: #6030FF;
    background-color: #ede8ff;
    position: relative;
}

.btn-air:hover:not(:disabled) {
    background-color: #6030FF;
    color: #fff;
}

/* --- END local css ---*/


/* ---- List of features ---- */
:root {
    --ss-orange: #f28c00;
    --ink: #0b1220;
    --muted: rgba(11, 18, 32, .62);
    --line: rgba(11, 18, 32, .10);
    --glass: rgba(255, 255, 255, .72);
}

.ctaAcc,
.ctaAcc * {
    box-sizing: border-box;
}

.ctaAcc-center {
    width: 100%;
    display: flex;
    justify-content: center;
}

.ctaAcc {
    display: flex;
    flex-direction: column;
    width: min(920px, 100%);
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--ink);
    align-items: center;
}

/* Orange CTA button */
.ctaBtn {
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .06);
    background: var(--ss-orange);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(242, 140, 0, .25);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.ctaBtn::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(420px 140px at 30% 0%, rgba(255, 255, 255, .28), rgba(255, 255, 255, 0) 60%);
    opacity: .9;
    pointer-events: none;
}

.ctaBtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(242, 140, 0, .30);
    filter: saturate(1.02);
}

.ctaBtn:active {
    transform: translateY(0);
    box-shadow: 0 10px 24px rgba(242, 140, 0, .24);
}

.ctaBtn:focus-visible {
    outline: none;
    box-shadow: 0 16px 36px rgba(242, 140, 0, .30), 0 0 0 4px rgba(242, 140, 0, .22);
}

.ctaBtn__text {
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .2px;
    line-height: 1;
}

.ctaBtn__hint {
    font-weight: 800;
    font-size: 12px;
    line-height: 1;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .22);
    white-space: nowrap;
}

.ctaBtn__chev {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .22);
    font-weight: 900;
    transition: transform .20s ease;
}

.ctaAcc[data-open="true"] .ctaBtn__chev {
    transform: rotate(180deg);
}

/* Panel */
.ctaPanel {
    width: 100%;
    margin-top: 10px;
    border-radius: 14px;
    border: 1px solid rgba(11, 18, 32, .10);
    background: rgba(255, 255, 255, .70);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    overflow: hidden;
    height: 0;
    opacity: 0;
    transform: translateY(-4px);
    transition: height .26s ease, opacity .18s ease, transform .18s ease;
    will-change: height;
}

.ctaAcc[data-open="true"] .ctaPanel {
    opacity: 1;
    transform: translateY(0);
}

.ctaPanel__inner {
    padding: 12px;
}

/* Desktop table */
.ctaTableWrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .78);
}

.ctaTable {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.ctaTable thead th {
    text-align: left;
    padding: 12px 12px;
    font-size: 12px;
    letter-spacing: .14px;
    text-transform: uppercase;
    color: rgba(11, 18, 32, .70);
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid var(--line);
}

.ctaTable thead th + th,
.ctaTable tbody td + td {
    border-left: 1px solid var(--line);
}

.ctaTable tbody td {
    padding: 12px 12px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
    background: rgba(255, 255, 255, .54);
}

.ctaTable tbody tr:last-child td {
    border-bottom: 0;
}

.ctaSection td {
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 800;
    color: rgba(11, 18, 32, .62);
    background: rgba(11, 18, 32, .04);
}

.ctaName {
    font-weight: 800;
    font-size: 14px;
}

.ctaSub {
    margin-top: 4px;
    font-size: 12px;
    color: var(--muted);
}

.ctaRight {
    text-align: left;
}

.ctaBadge {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    border: 1px solid transparent;
    white-space: nowrap;
    background: rgba(255, 255, 255, .86);
}

.ctaBadge--unl {
    background: rgba(16, 185, 129, .12);
    border-color: rgba(16, 185, 129, .22);
    color: rgba(6, 95, 70, 1);
}

.ctaBadge--limit {
    background: rgba(242, 140, 0, .14);
    border-color: rgba(242, 140, 0, .24);
    color: rgba(146, 64, 14, 1);
}

.ctaPills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ctaPill {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .88);
    color: rgba(11, 18, 32, .84);
}

.ctaTag {
    display: inline-flex;
    margin-left: 8px;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .22);
}

.ctaNote {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(11, 18, 32, .10);
    background: rgba(255, 255, 255, .70);
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

/* Mobile stacked UI: no horizontal scroll */
.ctaMobile {
    display: none;
}

.ctaGroupTitle {
    margin: 8px 0 10px;
    font-size: 12px;
    font-weight: 800;
    color: rgba(11, 18, 32, .66);
}

.ctaCard {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .78);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .05);
    margin-bottom: 10px;
}

.ctaCard__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.ctaCard__name {
    font-weight: 800;
    font-size: 14px;
    line-height: 1.2;
}

.ctaCard__sub {
    margin-top: 6px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.35;
}

.ctaPills--mobile {
    margin-top: 10px;
}

/* Switch to mobile cards */
@media (max-width: 640px) {
    .ctaTableWrap--desktop {
        display: none;
    }

    .ctaMobile {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ctaBtn,
    .ctaBtn__chev,
    .ctaPanel {
        transition: none;
    }
}

/* ---- END List of features ---- */

/* ---- API Services ---- */
:root {
    --ss-orange: #f28c00;
    --ss-text: #0b1220;
    --ss-muted: rgba(11, 18, 32, .62);
    --ss-border: rgba(11, 18, 32, .10);
    --ss-bg: #ffffff;
    --ss-soft: rgba(242, 140, 0, .10);
}

.ss-api {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ss-text);
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px;
    background: transparent;
}

.ss-api__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.ss-api__title {
    margin: 0;
    font-size: 26px;
    letter-spacing: -.02em;
    line-height: 1.2;
}

.ss-api__sub {
    margin: 6px 0 0;
    font-size: 14px;
    color: var(--ss-muted);
}

.ss-api__micro {
    margin: 6px 0 0;
    font-size: 13px;
    color: var(--ss-muted);
}

.ss-api__mail {
    color: var(--ss-orange);
    font-weight: 700;
    text-decoration: none;
}

.ss-api__mail:hover {
    text-decoration: underline;
}

.ss-api__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    background: var(--ss-orange);
    padding: 10px 12px;
    border-radius: 10px;
    transition: transform .12s ease, opacity .12s ease;
    white-space: nowrap;
}

.ss-api__btn:hover {
    transform: translateY(-1px);
    opacity: .95;
}

.ss-api__note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--ss-border);
    border-radius: 12px;
    background: var(--ss-bg);
    color: var(--ss-muted);
    font-size: 13px;
    margin: 12px 0 14px;
    box-shadow: 0 1px 2px rgba(11, 18, 32, .04);
}

.ss-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--ss-soft);
    color: rgba(11, 18, 32, .78);
    font-weight: 700;
    font-size: 12px;
    border: 1px solid rgba(242, 140, 0, .18);
}

.ss-sec {
    border: 1px solid var(--ss-border);
    border-radius: 14px;
    background: var(--ss-bg);
    overflow: hidden;
    margin: 10px 0;
    box-shadow: 0 1px 2px rgba(11, 18, 32, .04);
}

.ss-sec__sum {
    list-style: none;
    cursor: pointer;
    padding: 12px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    user-select: none;
}

.ss-sec__sum::-webkit-details-marker {
    display: none;
}

.ss-sec__name {
    font-weight: 750;
    letter-spacing: -.01em;
    font-size: 14px;
}

.ss-sec__right {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ss-sec__count {
    display: inline-flex;
    align-items: center;
    padding: 5px 8px;
    border-radius: 999px;
    border: 1px solid var(--ss-border);
    color: var(--ss-muted);
    font-weight: 650;
    font-size: 12px;
    background: #fff;
}

.ss-sec__chev {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ss-muted);
    opacity: .75;
    transition: transform .15s ease, opacity .15s ease;
}

details[open] .ss-sec__chev {
    transform: rotate(90deg);
    opacity: 1;
}

.ss-table {
    padding: 0 12px 12px;
}

.ss-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr .8fr .5fr;
    gap: 10px;
    align-items: start;
    padding: 12px 0;
    border-top: 1px solid rgba(11, 18, 32, .08);
}

.ss-row--head {
    border-top: 0;
    padding: 10px 0 8px;
    color: var(--ss-muted);
    font-size: 12px;
    text-transform: none;
}

.ss-col {
    font-size: 13px;
    line-height: 1.35;
}

.ss-name {
    font-weight: 700;
    color: var(--ss-text);
}

.ss-muted {
    margin-top: 4px;
    color: var(--ss-muted);
    font-size: 12px;
}

.ss-link {
    justify-self: end;
    align-self: start;
    font-size: 13px;
    font-weight: 700;
    color: var(--ss-orange);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid rgba(242, 140, 0, .25);
    background: rgba(242, 140, 0, .06);
    transition: background .12s ease, transform .12s ease;
    white-space: nowrap;
}

.ss-link:hover {
    background: rgba(242, 140, 0, .10);
    transform: translateY(-1px);
}

@media (max-width: 860px) {
    .ss-row {
        grid-template-columns: 1.6fr 1fr .9fr .6fr;
    }
}

@media (max-width: 640px) {
    .ss-api {
        padding: 12px;
    }

    .ss-table {
        padding: 0 12px 12px;
    }

    .ss-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px 0;
    }

    .ss-row--head {
        display: none;
    }

    .ss-col--name {
        grid-column: 1 / -1;
    }

    .ss-col--quota,
    .ss-col--price {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        grid-column: 1 / -1;
    }

    .ss-col--quota::before {
        content: "Quota";
        color: var(--ss-muted);
        font-size: 12px;
        font-weight: 650;
        margin-right: 10px;
    }

    .ss-col--price::before {
        content: "Price";
        color: var(--ss-muted);
        font-size: 12px;
        font-weight: 650;
        margin-right: 10px;
    }

    .ss-col--cta {
        grid-column: 1 / -1;
        margin-top: 2px;
    }

    .ss-link {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .ss-col.ss-col--cta {
        text-align: center;
    }
}

/* ---- END API Serices ---- */

/* -- MODAL -- */

.ss-modal {
    max-width: 762px;
    border-radius: 1rem;
}

.ss-modal .row {
    margin: 0;
}

.ss-modal__order-details {
    background: #fff7ef;
    box-shadow: 3px 0 20px rgba(0, 0, 0, 0.04);
    border-right: #f4ebe5 1px solid;
}

.ss-modal__order-details > *:not(:last-child) {
    margin-bottom: 1rem;
}

.ss-modal__order-details__hero img {
    width: 40%;
}

.ss-modal__order-details__price > *:not(:last-child) {
    margin-bottom: -7px;
}

.ss-modal__order-details__price__title {
    font-size: .8rem;
}

.ss-modal__order-details__price__subtitle,
.ss-modal__order-details__item__desc,
.ss-modal__payment-methods__terms-and-policy,
.ss-modal__payment-methods__terms-and-policy a,
.ss-modal__payment-methods__pay-card-know {
    font-size: .7rem;
}

.ss-modal__order-details__price__amount {
    font-weight: bold;
}

.ss-modal__order-details__item {
    display: grid;
    grid-template-columns: 70% 30%;
    font-size: .85rem;
}

.ss-modal__order-details__item:not(:last-child) {
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #f3e9df;
}

.ss-modal__order-details__item__value {
    text-align: right;
}

.ss-modal__payment-methods {
    gap: 1.2rem;
}

.ss-modal__payment-methods > * {
    width: 100%;
}

.ss-modal__order-total .ss-modal__order-details__item__value {
    font-weight: bold;
}

.ss-modal__payment-methods {
    gap: 1.2rem;
}

.ss-modal__payment-methods button {
    width: 85%;
}

.ss-modal__order-details__item.ss-modal-promo-code-form-container {
    grid-template-columns: 100%;
}

.ss-modal-promo-code-form-container form {
    width: 65%;
    height: 2rem;
    outline: 1px solid rgba(242, 140, 0, 0.6);
    opacity: .7;
    transition: 0.2s all;
    background: #fff7ef;
}

.ss-modal-promo-code-form-container form.focus {
    outline: 3px solid var(--ss-orange);
}

.ss-modal-promo-code-form-container form.focus,
.ss-modal-promo-code-form-container form.filled {
    opacity: 1;
}

.ss-modal-promo-code-form-container form[disabled="disabled"] {
    opacity: .5;
}

.ss-modal-promo-code-form-container form.focus,
.ss-modal-promo-code-form-container form.filled,
.ss-modal-promo-code-form-container form[disabled="disabled"] {
    width: 100%;
    background: rgba(255, 255, 255, 0.73);
}

.ss-modal-promo-code-form-container input {
    width: 80%;
    background: transparent;
    border: none;
    outline: none;
}

.ss-modal-promo-code-form-container button {
    width: 20%;
    height: calc(100% - .6rem);
    background: var(--ss-orange);
    border: none;
    margin: .3rem;
    border-radius: 100px;
    font-size: .6rem;
    color: white;
    opacity: 0;
    transform: scale(.8);
    transition: 0.15s all;
}

.ss-modal-promo-code-form-container form.empty button {
    pointer-events: none;
}

.ss-modal-promo-code-form-container form.filled button,
.ss-modal-promo-code-form-container form.loading button {
    transform: scale(1);
    opacity: 1;
}

.ss-modal-promo-code-form-container form[disabled="disabled"] button {
    width: 20px;
    height: 20px;
    opacity: 1;
    animation: blink infinite .2s alternate ease-in-out;
}

#payCardKnow,
.ss-modal-discount-row button span,
.ss-modal__payment-methods__group input,
.ss-modal-promo-code-form-container form[disabled="disabled"] button span {
    display: none;
}

.ss-modal-promo-code-form__warnings {
    color: darkred;
    padding: .2rem 0 0 .2rem;
}

.ss-modal-discount-row .ss-modal__order-details__item__key {
    gap: .5rem;
}

.ss-modal-discount-row button {
    width: 14px;
    height: 14px;
    margin-bottom: -2px;
    border-radius: 50%;
    background: gray;
    border: none;
    color: white;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    position: relative;
}

.ss-modal-discount-row button::before,
.ss-modal-discount-row button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    width: 60%;
    height: 2px;
    background: white;
    transform: translateY(-50%) rotate(45deg);
}

.ss-modal-discount-row button::after {
    transform: translateY(-50%) rotate(-45deg);
}

.ss-modal__payment-methods__group svg {
    margin-bottom: 0;
}

.ss-modal__payment-methods__group label {
    display: flex;
    align-items: center;
    gap: .8rem;
    border: 1px solid rgb(212, 214, 225);
    padding: .8rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all .3s;
    background: rgb(249, 250, 251);
}

.ss-modal__payment-methods__pay-card-know {
    display: flex;
}

.ss-modal__payment-methods__group label::after,
.ss-modal__payment-methods__pay-card-know label::before {
    content: "";
    display: block;
    background: #fff7ef;
    box-shadow: inset 0 0 0 1px var(--ss-orange);
    transition: all .2s;
}

.ss-modal__payment-methods__group label::after {
    border-radius: 50%;
    margin-left: auto;
    width: 16px;
    height: 16px;
}

.ss-modal__payment-methods__pay-card-know label::before {
    width: 12px;
    height: 12px;
    border-radius: 4px;
}

.ss-modal__payment-methods__pay-card-know label.shake {
    animation: shake .3s ease-out;
}

.ss-modal__payment-methods__group label:has(input[type="radio"]:checked) {
    font-weight: bold;
    border: 1px solid rgb(134, 139, 151);
}

.ss-modal__payment-methods__group label:has(input[type="radio"]:checked)::after,
.ss-modal__payment-methods__pay-card-know:has(input[type="checkbox"]:checked) label::before {
    box-shadow: inset 0 0 0 6px var(--ss-orange);
}

.ss-modal__payment-methods__pay-card-know label,
.ss-modal__payment-methods__subscription {
    gap: .2rem;
}

.ss-modal__payment-methods__subscription button {
    width: 100%;
    border: 0;
    outline: 0;
    margin: 0 auto;
    padding: .8rem 2rem;
    border-radius: 10px;
    background: var(--ss-orange);
    color: white;
    transition: all .3s;
}

.ss-modal__payment-methods__subscription button.disabled {
    cursor: auto;
    opacity: 0.6;
}

.ss-modal__payment-methods__subscription button:not(.disabled):hover {
    opacity: 0.8;
}

.swal2-container .swal2-header {
    font-size: 12px;
}