/* PhoneOrigin Wallet Checkout V2 */

.po-wc2-page {
    width: min(calc(100% - 32px), 590px);
    margin: 24px auto 60px;
    color: #f5f5f7;
}

.po-wc2-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 13px;
    color: #8f929b;
    font-size: 11px;
    font-weight: 650;
    text-decoration: none;
}

.po-wc2-back:hover {
    color: #fff;
}

.po-wc2-checkout {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    background: #111216;
    box-shadow: 0 25px 70px rgba(0,0,0,.30);
}


/* HEADER */

.po-wc2-header {
    padding: 23px 24px 18px;
}

.po-wc2-eyebrow {
    display: block;
    margin-bottom: 6px;
    color: #c34aa4;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .11em;
}

.po-wc2-header h1 {
    margin: 0;
    color: #f6f6f8;
    font-size: 24px;
    font-weight: 720;
    line-height: 1.2;
    letter-spacing: -.55px;
}

.po-wc2-header p {
    margin: 6px 0 0;
    color: #858892;
    font-size: 10px;
}


/* AMOUNT */

.po-wc2-amount {
    position: relative;
    overflow: hidden;
    margin: 0 24px;
    padding: 19px;
    border: 1px solid rgba(128,2,96,.30);
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            rgba(128,2,96,.15),
            rgba(255,255,255,.018)
        );
}

.po-wc2-amount::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -45px;
    top: -78px;
    border-radius: 50%;
    background: rgba(128,2,96,.16);
    filter: blur(28px);
}

.po-wc2-amount > span {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 7px;
    color: #90939d;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.po-wc2-amount strong {
    position: relative;
    z-index: 1;
    display: block;
    color: #fff;
    font-size: 34px;
    font-weight: 730;
    line-height: 1;
    letter-spacing: -.04em;
    font-variant-numeric: tabular-nums;
}

.po-wc2-amount small {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 7px;
    color: #777a84;
    font-size: 9px;
}


/* PAYMENT */

.po-wc2-payment-info {
    padding: 22px 24px 17px;
}

.po-wc2-section-title {
    margin-bottom: 8px;
    color: #747781;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.po-wc2-summary {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.065);
    border-radius: 11px;
    background: #0b0c10;
}

.po-wc2-summary-row {
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 9px 12px;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.po-wc2-summary-row:last-child {
    border-bottom: 0;
}

.po-wc2-summary-row > span {
    color: #858892;
    font-size: 10px;
}

.po-wc2-summary-row strong {
    color: #e9e9ec;
    font-size: 10px;
    font-weight: 650;
}

.po-wc2-summary-row code {
    max-width: 55%;
    overflow: hidden;
    color: #9da0a8;
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* CURLEC / SECURITY */

.po-wc2-security {
    display: grid;
    grid-template-columns: 36px minmax(0,1fr);
    gap: 11px;
    margin-top: 11px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 11px;
    background: rgba(255,255,255,.018);
}

.po-wc2-security-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(128,2,96,.34);
    border-radius: 9px;
    background: rgba(128,2,96,.11);
}

.po-wc2-security-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: #d26bbb;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.po-wc2-curlec {
    margin-bottom: 3px;
    color: #c853aa;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.po-wc2-security-copy strong {
    display: block;
    color: #ececef;
    font-size: 10px;
}

.po-wc2-security-copy p {
    margin: 4px 0 0;
    color: #7d8089;
    font-size: 8px;
    line-height: 1.55;
}


/* ACTION */

.po-wc2-actions {
    padding: 0 24px 20px;
}

.po-wc2-pay {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(195,46,157,.65);
    border-radius: 11px;
    color: #fff;
    background:
        linear-gradient(
            135deg,
            #800260,
            #a40d7b
        );
    box-shadow: 0 10px 25px rgba(128,2,96,.21);
    font-family: inherit;
    font-size: 11px;
    font-weight: 750;
    cursor: pointer;
    transition:
        transform .15s ease,
        box-shadow .15s ease,
        opacity .15s ease;
}

.po-wc2-pay:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(128,2,96,.28);
}

.po-wc2-pay:disabled {
    opacity: .62;
    cursor: wait;
}

.po-wc2-lock {
    display: inline-flex;
    width: 16px;
    height: 16px;
}

.po-wc2-lock svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#cancelLink {
    margin-top: 7px;
}

#cancelLink form {
    margin: 0;
}

.po-wc2-cancel {
    width: 100%;
    min-height: 38px;
    border: 0;
    color: #747781;
    background: transparent;
    font-family: inherit;
    font-size: 9px;
    cursor: pointer;
}

.po-wc2-cancel:hover {
    color: #c7c8cd;
}


/* TRUST STRIP */

.po-wc2-bottom-trust {
    min-height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 15px;
    border-top: 1px solid rgba(255,255,255,.05);
    color: #62656e;
    background: rgba(255,255,255,.012);
    font-size: 7px;
    font-weight: 750;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.po-wc2-bottom-trust i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #4c4e56;
}


/* PAYMENT RESULT */

.po-wc2-result {
    margin: 20px 24px;
    padding: 19px;
    text-align: center;
    border-radius: 11px;
}

.po-wc2-result-icon {
    margin-bottom: 8px;
    font-size: 32px;
}

.po-wc2-result h2 {
    margin: 0 0 7px;
    color: #f4f4f6;
    font-size: 18px;
}

.po-wc2-result-message {
    margin: 0;
    color: #999ba3;
    font-size: 10px;
    line-height: 1.55;
}

.po-wc2-countdown {
    margin: 12px 0 0;
    color: #d5d5d9;
    font-size: 9px;
    font-weight: 650;
}


/* MOBILE */

@media (max-width: 600px) {

    .po-wc2-page {
        width: calc(100% - 28px);
        margin: 17px auto 40px;
    }

    .po-wc2-checkout {
        border-radius: 15px;
    }

    .po-wc2-header {
        padding: 19px 17px 15px;
    }

    .po-wc2-header h1 {
        font-size: 21px;
    }

    .po-wc2-amount {
        margin: 0 17px;
        padding: 16px;
        border-radius: 12px;
    }

    .po-wc2-amount strong {
        font-size: 28px;
    }

    .po-wc2-payment-info {
        padding: 18px 17px 15px;
    }

    .po-wc2-actions {
        padding: 0 17px 17px;
    }

    .po-wc2-pay {
        min-height: 46px;
    }

    .po-wc2-result {
        margin: 18px 17px;
    }
}

@media (max-width: 360px) {

    .po-wc2-page {
        width: calc(100% - 22px);
    }

    .po-wc2-header {
        padding: 17px 14px 14px;
    }

    .po-wc2-amount {
        margin: 0 14px;
        padding: 14px;
    }

    .po-wc2-payment-info {
        padding: 15px 14px 13px;
    }

    .po-wc2-actions {
        padding: 0 14px 14px;
    }

    .po-wc2-amount strong {
        font-size: 26px;
    }
}
