/* =========================================================
   YOUR EXAM BUDDY
   PREMIUM MEMBERSHIP CHECKOUT
   CLEAN FINAL RESPONSIVE VERSION
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

.see-checkout-shell {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
    padding: 70px 30px 80px;

    box-sizing: border-box;

    color: #0f172a;
    font-family: inherit;
}


/* =========================================================
   HEADER
========================================================= */

.see-checkout-header {
    max-width: 850px;

    margin: 0 auto 42px;

    text-align: center;
}


/* Secure Checkout Badge */

.see-checkout-eyebrow {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 9px 17px;

    margin-bottom: 18px;

    border: 1px solid #c9dcff;
    border-radius: 999px;

    background: linear-gradient(
        135deg,
        #f5f8ff,
        #edf4ff
    );

    color: #1558c0;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .8px;
    text-transform: uppercase;

    box-shadow:
        0 5px 18px rgba(37, 99, 235, .06);
}


.see-checkout-lock {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    font-size: 13px;
}


/* Main Heading */

.see-checkout-header h1 {
    margin: 0;

    color: #0b172a;

    font-size: 46px;
    line-height: 1.12;

    font-weight: 900;

    letter-spacing: -1.5px;
}


/* Description */

.see-checkout-header p {
    max-width: 700px;

    margin: 14px auto 0;

    color: #64748b;

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   MAIN CHECKOUT CARD
========================================================= */

.see-checkout-content {
    position: relative;

    width: 100%;

    padding: 38px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #dbe5f1;
    border-radius: 22px;

    box-shadow:
        0 22px 65px rgba(15, 23, 42, .08);

    overflow: hidden;
}


/* Top Accent */

.see-checkout-content::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background: linear-gradient(
        90deg,
        #155eef,
        #3b82f6,
        #60a5fa
    );
}


/* =========================================================
   SECURITY NOTICE
========================================================= */

.see-checkout-notice {
    display: flex;

    align-items: center;

    gap: 11px;

    min-height: 48px;

    margin-bottom: 24px;

    padding: 12px 16px;

    box-sizing: border-box;

    border: 1px solid #c8ddff;
    border-radius: 9px;

    background: linear-gradient(
        135deg,
        #f3f8ff,
        #edf5ff
    );

    color: #24558f;

    font-size: 11px;
    font-weight: 600;

    line-height: 1.5;
}


.see-notice-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: #2563eb;

    color: #ffffff;

    font-size: 11px;
    font-weight: 900;
}


/* =========================================================
   MEMBERSHIP SUMMARY
========================================================= */

.see-membership-summary {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        300px;

    gap: 34px;

    margin-bottom: 28px;

    padding: 30px;

    box-sizing: border-box;

    border: 1px solid #d8e4f1;
    border-radius: 17px;

    background: linear-gradient(
        145deg,
        #ffffff,
        #f9fbff
    );

    box-shadow:
        0 8px 28px rgba(15, 23, 42, .045);

    overflow: hidden;
}


/* Left Accent */

.see-membership-summary::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background: linear-gradient(
        180deg,
        #2563eb,
        #60a5fa
    );
}


/* =========================================================
   MEMBERSHIP ICON
========================================================= */

.see-membership-summary-icon {
    position: absolute;

    top: 28px;
    left: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: linear-gradient(
        145deg,
        #eef4ff,
        #e5efff
    );

    border: 1px solid #d5e4ff;

    color: #2563eb;

    box-shadow:
        0 5px 18px rgba(37, 99, 235, .07);
}


/* =========================================================
   MEMBERSHIP MAIN
========================================================= */

.see-membership-summary-main {
    min-width: 0;

    padding-left: 70px;
}


/* Label */

.see-membership-summary-label {
    display: block;

    margin-bottom: 7px;

    color: #2563eb;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* Heading */

.see-membership-summary-main h2 {
    margin: 0 0 16px;

    color: #0b172a;

    font-size: 24px;
    line-height: 1.2;

    font-weight: 900;

    letter-spacing: -.5px;
}


/* Text */

.see-membership-summary-text {
    color: #64748b;

    font-size: 13px;
    line-height: 1.8;
}

.see-membership-summary-text p {
    margin: 0 0 8px;
}

.see-membership-summary-text strong {
    color: #0f172a;

    font-weight: 800;
}


/* =========================================================
   MEMBERSHIP NOTE
========================================================= */

.see-membership-note {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 18px;

    padding: 10px 13px;

    border: 1px solid #cfe0ff;
    border-radius: 9px;

    background: #f4f8ff;

    color: #64748b;

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   PRICE PANEL
========================================================= */

.see-membership-price-panel {
    align-self: stretch;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 24px;

    box-sizing: border-box;

    border: 1px solid #bcd4ff;

    border-radius: 14px;

    background: linear-gradient(
        145deg,
        #f8fbff,
        #eef5ff
    );
}


/* Price Label */

.see-membership-price-label {
    display: block;

    margin-bottom: 9px;

    color: #1558c0;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: .7px;
}


/* Price */

.see-membership-price {
    color: #2563eb;

    font-size: 39px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: -1.5px;
}


/* Cycle */

.see-membership-price-cycle {
    display: block;

    margin-top: 6px;

    color: #64748b;

    font-size: 12px;

    font-weight: 600;
}


/* Benefits */

.see-membership-benefits {
    display: flex;

    flex-direction: column;

    gap: 11px;

    margin-top: 22px;

    padding-top: 18px;

    border-top: 1px solid #d7e5fa;
}

.see-membership-benefits > div {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #475569;

    font-size: 11px;

    font-weight: 600;
}


/* =========================================================
   PMPRO SECTIONS
========================================================= */

.see-checkout-content
.pmpro_checkout-section {
    margin: 0 0 20px;

    padding: 26px;

    box-sizing: border-box;

    border: 1px solid #dce5ef;

    border-radius: 15px;

    background: #ffffff;

    box-shadow:
        0 6px 22px rgba(15, 23, 42, .035);
}


/* =========================================================
   ACCOUNT INFORMATION
========================================================= */

.see-checkout-content
#pmpro_user_fields {
    margin: 0 0 20px;

    padding: 25px;

    box-sizing: border-box;

    border: 1px solid #dce5ef;

    border-radius: 15px;

    background: #ffffff;

    box-shadow:
        0 6px 22px rgba(15, 23, 42, .035);
}


/* Account Heading */

.see-checkout-content
#pmpro_user_fields h2,
.see-checkout-content
#pmpro_user_fields h3 {
    margin: 0 0 12px;

    color: #0b172a;

    font-size: 17px;

    font-weight: 900;
}


/* Account Text */

.see-checkout-content
#pmpro_user_fields p {
    margin: 0;

    color: #64748b;

    font-size: 12px;

    line-height: 1.8;
}


/* Account Links */

.see-checkout-content
#pmpro_user_fields a {
    color: #2563eb;

    font-weight: 800;

    text-decoration: none;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.see-checkout-content
.pmpro_checkout-section h2,
.see-checkout-content
.pmpro_checkout-section h3 {
    margin: 0 0 17px;

    color: #0b172a;

    font-size: 18px;

    line-height: 1.3;

    font-weight: 900;
}


/* =========================================================
   PAYMENT
========================================================= */

.see-checkout-content
#pmpro_payment_information_fields {
    padding: 27px;

    background: linear-gradient(
        145deg,
        #ffffff,
        #fbfdff
    );
}


/* =========================================================
   LABELS
========================================================= */

.see-checkout-content
.pmpro_checkout label {
    display: block;

    margin-bottom: 7px;

    color: #334155;

    font-size: 11px;

    line-height: 1.4;

    font-weight: 800;
}


/* =========================================================
   INPUTS
========================================================= */

.see-checkout-content
.pmpro_checkout input[type="text"],
.see-checkout-content
.pmpro_checkout input[type="email"],
.see-checkout-content
.pmpro_checkout input[type="tel"],
.see-checkout-content
.pmpro_checkout input[type="password"],
.see-checkout-content
.pmpro_checkout input[type="number"],
.see-checkout-content
.pmpro_checkout input[type="month"],
.see-checkout-content
.pmpro_checkout select,
.see-checkout-content
.pmpro_checkout textarea {
    width: 100%;

    min-height: 48px;

    padding: 12px 14px;

    box-sizing: border-box;

    border: 1px solid #ccd8e6;

    border-radius: 9px;

    background: #ffffff;

    color: #0f172a;

    font-family: inherit;

    font-size: 13px;

    outline: none;
}


/* Focus */

.see-checkout-content
.pmpro_checkout input:focus,
.see-checkout-content
.pmpro_checkout select:focus,
.see-checkout-content
.pmpro_checkout textarea:focus {
    border-color: #4d8df7;

    background: #fbfdff;

    box-shadow:
        0 0 0 4px rgba(37, 99, 235, .08);
}


/* =========================================================
   CARD FIELDS
========================================================= */

.see-checkout-content
#AccountNumber {
    min-height: 50px;

    font-size: 14px;

    letter-spacing: .35px;
}


.see-checkout-content
#ExpirationMonth,
.see-checkout-content
#ExpirationYear,
.see-checkout-content
#CVV {
    min-height: 48px;
}


/* =========================================================
   REQUIRED
========================================================= */

.see-checkout-content
.pmpro_checkout .pmpro_asterisk {
    color: #ef4444;

    font-weight: 900;
}


/* =========================================================
   PAYMENT SECURITY
========================================================= */

.see-checkout-payment-security {
    display: flex;

    align-items: center;

    gap: 10px;

    min-height: 44px;

    margin-top: 5px;

    margin-bottom: 15px;

    padding: 10px 14px;

    box-sizing: border-box;

    border: 1px solid #c9ddff;

    border-radius: 8px;

    background: linear-gradient(
        135deg,
        #f3f8ff,
        #edf5ff
    );

    color: #315b87;

    font-size: 10px;

    line-height: 1.5;
}


.see-payment-security-icon {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 auto;

    width: 19px;
    height: 19px;

    border-radius: 50%;

    background: #2563eb;

    color: #ffffff;

    font-size: 9px;

    font-weight: 900;
}


/* =========================================================
   SUBMIT AREA
========================================================= */

.see-checkout-content
.pmpro_checkout .pmpro_submit,

.see-checkout-content
.pmpro_form_submit {
    display: flex !important;

    flex-direction: column !important;

    align-items: center !important;

    width: 100% !important;

    margin-top: 20px !important;

    padding-top: 20px !important;

    box-sizing: border-box !important;

    border-top: 1px solid #e4eaf2;
}


/* =========================================================
   CHECKOUT BUTTON
========================================================= */

.see-checkout-content
#pmpro_btn-submit,

.see-checkout-content
.pmpro_checkout input[type="submit"],

.see-checkout-content
.pmpro_checkout button[type="submit"] {
    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 100% !important;

    max-width: 760px !important;

    min-height: 60px !important;

    margin: 0 auto !important;

    padding: 15px 24px !important;

    box-sizing: border-box !important;

    border: 0 !important;

    border-radius: 12px !important;

    background: linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8,
        #1e40af
    ) !important;

    color: #ffffff !important;

    font-family: inherit !important;

    font-size: 16px !important;

    font-weight: 800 !important;

    line-height: 1 !important;

    text-align: center !important;

    cursor: pointer !important;

    box-shadow:
        0 12px 28px rgba(37, 99, 235, .24);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


/* Hover */

.see-checkout-content
#pmpro_btn-submit:hover,

.see-checkout-content
.pmpro_checkout input[type="submit"]:hover,

.see-checkout-content
.pmpro_checkout button[type="submit"]:hover {
    transform: translateY(-2px);

    box-shadow:
        0 17px 35px rgba(37, 99, 235, .30);
}


/* =========================================================
   PMPRO MESSAGE
========================================================= */

.see-checkout-content
.pmpro_message {
    margin: 0 0 18px;

    padding: 12px 15px;

    border: 1px solid #bfdbfe;

    border-radius: 9px;

    background: #eff6ff;

    color: #315b87;

    font-size: 10px;

    line-height: 1.6;
}


/* =========================================================
   HIDDEN
========================================================= */

.see-checkout-content
.pmpro_hidden {
    display: none !important;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.see-checkout-trust-strip {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    width: 100%;

    margin-top: 22px;

    padding: 20px 10px;

    box-sizing: border-box;

    border: 1px solid #dce5ef;

    border-radius: 15px;

    background: linear-gradient(
        135deg,
        #f8fbff,
        #ffffff
    );

    box-shadow:
        0 8px 28px rgba(15, 23, 42, .04);
}


.see-checkout-trust-item {
    display: flex;

    align-items: center;

    gap: 11px;

    padding: 7px 24px;

    box-sizing: border-box;
}


.see-checkout-trust-item
+ .see-checkout-trust-item {
    border-left: 1px solid #e2e8f0;
}


.see-trust-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 34px;
    height: 34px;

    border-radius: 9px;

    background: #edf4ff;

    color: #2563eb;

    font-size: 15px;
}


.see-checkout-trust-item strong {
    display: block;

    margin-bottom: 3px;

    color: #0b172a;

    font-size: 11px;

    font-weight: 900;
}


.see-checkout-trust-item small {
    display: block;

    color: #64748b;

    font-size: 9px;

    line-height: 1.5;
}


/* =========================================================
   SECURITY FOOTER
========================================================= */

.see-checkout-security {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin-top: 18px;

    color: #64748b;

    text-align: center;
}


.see-checkout-security > span {
    font-size: 13px;
}


.see-checkout-security strong {
    color: #475569;

    font-size: 10px;

    font-weight: 800;
}


.see-checkout-security small {
    color: #94a3b8;

    font-size: 9px;
}


.see-security-dot {
    color: #cbd5e1;

    font-size: 12px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .see-checkout-shell {
        padding-left: 22px;
        padding-right: 22px;
    }

    .see-membership-summary {
        grid-template-columns:
            minmax(0, 1fr)
            260px;

        gap: 22px;

        padding: 25px;
    }

    .see-membership-summary-main {
        padding-left: 62px;
    }

    .see-membership-price {
        font-size: 34px;
    }
}


/* =========================================================
   MOBILE — IMPORTANT
========================================================= */

@media (max-width: 700px) {

    /* -----------------------------------------
       SHELL
    ----------------------------------------- */

    .see-checkout-shell {
        width: 100%;

        padding:
            32px 12px 45px;
    }


    /* -----------------------------------------
       HEADER
    ----------------------------------------- */

    .see-checkout-header {
        margin-bottom: 24px;
    }


    .see-checkout-eyebrow {
        padding: 7px 12px;

        margin-bottom: 12px;

        font-size: 8px;
    }


    .see-checkout-lock {
        font-size: 11px;
    }


    .see-checkout-header h1 {
        font-size: 29px;

        line-height: 1.18;

        letter-spacing: -.7px;
    }


    .see-checkout-header p {
        max-width: 340px;

        margin-top: 9px;

        font-size: 11px;

        line-height: 1.6;
    }


    /* -----------------------------------------
       MAIN CARD
    ----------------------------------------- */

    .see-checkout-content {
        width: 100%;

        padding: 13px;

        border-radius: 15px;

        box-shadow:
            0 12px 35px rgba(15, 23, 42, .07);
    }


    /* -----------------------------------------
       SECURITY NOTICE
    ----------------------------------------- */

    .see-checkout-notice {
        min-height: 38px;

        margin-bottom: 14px;

        padding: 8px 10px;

        gap: 7px;

        border-radius: 7px;

        font-size: 8px;

        line-height: 1.4;
    }


    .see-notice-icon {
        width: 17px;
        height: 17px;

        font-size: 8px;
    }


    /* -----------------------------------------
       MEMBERSHIP SUMMARY
    ----------------------------------------- */

    .see-membership-summary {
        display: flex;

        flex-direction: column;

        gap: 15px;

        margin-bottom: 15px;

        padding: 17px;

        border-radius: 12px;
    }


    .see-membership-summary-icon {
        position: static;

        width: 36px;
        height: 36px;

        margin: 0;
    }


    .see-membership-summary-main {
        width: 100%;

        padding-left: 0;
    }


    .see-membership-summary-label {
        margin-bottom: 5px;

        font-size: 8px;
    }


    .see-membership-summary-main h2 {
        margin-bottom: 10px;

        font-size: 18px;
    }


    .see-membership-summary-text {
        font-size: 10px;

        line-height: 1.65;
    }


    .see-membership-summary-text p {
        margin-bottom: 6px;
    }


    /* Membership note */

    .see-membership-note {
        display: flex;

        width: 100%;

        margin-top: 12px;

        padding: 8px 10px;

        box-sizing: border-box;

        font-size: 8px;

        line-height: 1.45;
    }


    /* -----------------------------------------
       PRICE PANEL
    ----------------------------------------- */

    .see-membership-price-panel {
        width: 100%;

        padding: 15px;

        border-radius: 10px;
    }


    .see-membership-price-label {
        margin-bottom: 5px;

        font-size: 8px;
    }


    .see-membership-price {
        font-size: 28px;

        letter-spacing: -1px;
    }


    .see-membership-price-cycle {
        margin-top: 4px;

        font-size: 9px;
    }


    .see-membership-benefits {
        gap: 7px;

        margin-top: 13px;

        padding-top: 11px;
    }


    .see-membership-benefits > div {
        gap: 6px;

        font-size: 8px;
    }


    /* -----------------------------------------
       PMPRO SECTIONS
    ----------------------------------------- */

    .see-checkout-content
    .pmpro_checkout-section {
        width: 100%;

        margin-bottom: 13px;

        padding: 16px !important;

        border-radius: 11px;

        box-shadow:
            0 4px 15px rgba(15, 23, 42, .025);
    }


    /* -----------------------------------------
       ACCOUNT INFORMATION
    ----------------------------------------- */

    .see-checkout-content
    #pmpro_user_fields {
        width: 100%;

        margin: 0 0 13px;

        padding: 16px !important;

        border-radius: 11px;
    }


    .see-checkout-content
    #pmpro_user_fields h2,

    .see-checkout-content
    #pmpro_user_fields h3 {
        margin-bottom: 8px;

        font-size: 16px;
    }


    .see-checkout-content
    #pmpro_user_fields p {
        font-size: 10px;

        line-height: 1.65;
    }


    /* -----------------------------------------
       PMPRO ACCOUNT FORM FIELDS
       THIS FIXES THE LARGE MOBILE FORM
    ----------------------------------------- */

    .see-checkout-content
    #pmpro_user_fields
    .pmpro_checkout-field {
        margin-bottom: 12px !important;
    }


    .see-checkout-content
    #pmpro_user_fields
    label {
        margin-bottom: 5px !important;

        font-size: 10px !important;

        line-height: 1.35 !important;
    }


    .see-checkout-content
    #pmpro_user_fields
    input[type="text"],

    .see-checkout-content
    #pmpro_user_fields
    input[type="email"],

    .see-checkout-content
    #pmpro_user_fields
    input[type="password"],

    .see-checkout-content
    #pmpro_user_fields
    input[type="tel"] {
        width: 100% !important;

        min-height: 42px !important;

        height: 42px !important;

        padding: 9px 11px !important;

        box-sizing: border-box !important;

        border-radius: 8px !important;

        font-size: 13px !important;

        line-height: 1.2 !important;
    }


    /* Show password */

    .see-checkout-content
    #pmpro_user_fields
    .pmpro_form_field-password-toggle {
        font-size: 10px !important;
    }


    /* -----------------------------------------
       PAYMENT SECTION
    ----------------------------------------- */

    .see-checkout-content
    #pmpro_payment_information_fields {
        width: 100%;

        padding: 16px !important;

        border-radius: 11px;
    }


    .see-checkout-content
    #pmpro_payment_information_fields h2,

    .see-checkout-content
    #pmpro_payment_information_fields h3 {
        margin-bottom: 14px;

        font-size: 16px;
    }


    /* -----------------------------------------
       PAYMENT LABELS
    ----------------------------------------- */

    .see-checkout-content
    #pmpro_payment_information_fields
    label {
        margin-bottom: 5px !important;

        font-size: 10px !important;
    }


    /* -----------------------------------------
       PAYMENT INPUTS
    ----------------------------------------- */

    .see-checkout-content
    #pmpro_payment_information_fields
    input[type="text"],

    .see-checkout-content
    #pmpro_payment_information_fields
    input[type="number"],

    .see-checkout-content
    #pmpro_payment_information_fields
    select {
        width: 100% !important;

        min-height: 42px !important;

        height: 42px !important;

        padding: 9px 10px !important;

        box-sizing: border-box !important;

        border-radius: 8px !important;

        font-size: 13px !important;
    }


    /* Card number */

    .see-checkout-content
    #AccountNumber {
        min-height: 44px !important;

        height: 44px !important;

        font-size: 13px !important;
    }


    /* Expiration */

    .see-checkout-content
    #ExpirationMonth,

    .see-checkout-content
    #ExpirationYear,

    .see-checkout-content
    #CVV {
        min-height: 42px !important;

        height: 42px !important;
    }


    /* -----------------------------------------
       PAYMENT SECURITY
    ----------------------------------------- */

    .see-checkout-payment-security {
        min-height: 38px;

        margin-top: 3px;

        margin-bottom: 12px;

        padding: 8px 10px;

        gap: 7px;

        border-radius: 7px;

        font-size: 8px;

        line-height: 1.4;
    }


    .see-payment-security-icon {
        width: 17px;
        height: 17px;

        font-size: 8px;
    }


    /* -----------------------------------------
       PMPRO MESSAGE
    ----------------------------------------- */

    .see-checkout-content
    .pmpro_message {
        margin-bottom: 12px;

        padding: 9px 10px;

        border-radius: 7px;

        font-size: 8px;

        line-height: 1.45;
    }


    /* -----------------------------------------
       SUBMIT AREA
    ----------------------------------------- */

    .see-checkout-content
    .pmpro_checkout .pmpro_submit,

    .see-checkout-content
    .pmpro_form_submit {
        display: flex !important;

        flex-direction: column !important;

        align-items: center !important;

        width: 100% !important;

        margin-top: 14px !important;

        padding-top: 14px !important;
    }


    /* -----------------------------------------
       MOBILE CHECKOUT BUTTON
    ----------------------------------------- */

    .see-checkout-content
    #pmpro_btn-submit,

    .see-checkout-content
    .pmpro_checkout
    input[type="submit"],

    .see-checkout-content
    .pmpro_checkout
    button[type="submit"] {
        display: flex !important;

        align-items: center !important;

        justify-content: center !important;

        width: 100% !important;

        max-width: 100% !important;

        min-height: 50px !important;

        height: 50px !important;

        margin: 0 auto !important;

        padding: 12px 18px !important;

        border-radius: 10px !important;

        font-size: 13px !important;

        line-height: 1 !important;

        box-shadow:
            0 9px 22px rgba(37, 99, 235, .22) !important;
    }


    /* -----------------------------------------
       TRUST STRIP
    ----------------------------------------- */

    .see-checkout-trust-strip {
        display: grid;

        grid-template-columns: 1fr;

        margin-top: 14px;

        padding: 7px;

        border-radius: 11px;
    }


    .see-checkout-trust-item {
        padding: 11px 8px;

        gap: 8px;
    }


    .see-checkout-trust-item
    + .see-checkout-trust-item {
        border-left: 0;

        border-top: 1px solid #e2e8f0;
    }


    .see-trust-icon {
        width: 29px;
        height: 29px;

        border-radius: 7px;

        font-size: 12px;
    }


    .see-checkout-trust-item strong {
        font-size: 9px;
    }


    .see-checkout-trust-item small {
        font-size: 8px;
    }


    /* -----------------------------------------
       SECURITY FOOTER
    ----------------------------------------- */

    .see-checkout-security {
        flex-wrap: wrap;

        gap: 5px;

        margin-top: 12px;

        padding: 0 8px;

        line-height: 1.4;
    }


    .see-checkout-security > span {
        font-size: 11px;
    }


    .see-checkout-security strong {
        font-size: 8px;
    }


    .see-checkout-security small {
        font-size: 8px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .see-checkout-shell {
        padding:
            28px 10px 40px;
    }


    .see-checkout-header h1 {
        font-size: 26px;
    }


    .see-checkout-content {
        padding: 11px;
    }


    .see-membership-summary {
        padding: 15px;
    }


    .see-membership-price-panel {
        padding: 14px;
    }


    .see-checkout-content
    .pmpro_checkout-section,

    .see-checkout-content
    #pmpro_user_fields,

    .see-checkout-content
    #pmpro_payment_information_fields {
        padding: 14px !important;
    }


    .see-checkout-content
    #pmpro_user_fields
    input[type="text"],

    .see-checkout-content
    #pmpro_user_fields
    input[type="email"],

    .see-checkout-content
    #pmpro_user_fields
    input[type="password"] {
        min-height: 40px !important;

        height: 40px !important;
    }


    .see-checkout-content
    #AccountNumber {
        min-height: 42px !important;

        height: 42px !important;
    }


    .see-checkout-content
    #pmpro_btn-submit,

    .see-checkout-content
    .pmpro_checkout
    input[type="submit"],

    .see-checkout-content
    .pmpro_checkout
    button[type="submit"] {
        min-height: 48px !important;

        height: 48px !important;

        font-size: 12px !important;
    }

}