:root {
    --checkout-font: "Plus Jakarta Sans", Inter, "Segoe UI", Arial, sans-serif;
    --checkout-bg: #071222;
    --checkout-bg-deep: #030a14;
    --checkout-surface: rgba(13, 29, 53, .88);
    --checkout-surface-strong: #0d1b31;
    --checkout-surface-soft: rgba(255, 255, 255, .045);
    --checkout-border: rgba(132, 164, 218, .18);
    --checkout-border-bright: rgba(25, 229, 255, .28);
    --checkout-text: #f3f7ff;
    --checkout-muted: #9cadc7;
    --checkout-cyan: #19d8ee;
    --checkout-purple: #7650f5;
    --checkout-green: #24c995;
    --checkout-warning: #ffc66d;
    --checkout-danger: #ff758b;
    --checkout-shadow: 0 24px 70px rgba(0, 0, 0, .36);
}

html[data-theme="light"] {
    --checkout-bg: #edf4ff;
    --checkout-bg-deep: #dfeafa;
    --checkout-surface: rgba(255, 255, 255, .88);
    --checkout-surface-strong: #ffffff;
    --checkout-surface-soft: rgba(31, 65, 112, .045);
    --checkout-border: rgba(31, 65, 112, .14);
    --checkout-border-bright: rgba(8, 151, 202, .30);
    --checkout-text: #172844;
    --checkout-muted: #60738e;
    --checkout-shadow: 0 22px 60px rgba(35, 69, 116, .16);
}

html,
body.checkout-platform-page {
    min-height: 100%;
    background: var(--checkout-bg-deep) !important;
}

body.checkout-platform-page {
    color: var(--checkout-text);
    font-family: var(--checkout-font);
}

.checkout-platform-page #wrapper {
    position: relative;
    min-height: 100vh;
    padding-top: 0 !important;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 8%, rgba(25, 216, 238, .11), transparent 30%),
        radial-gradient(circle at 82% 16%, rgba(118, 80, 245, .15), transparent 32%),
        linear-gradient(145deg, var(--checkout-bg), var(--checkout-bg-deep));
}

.checkout-platform-page #wrapper::before {
    content: "";
    position: fixed;
    inset: 0;
    opacity: .12;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

html[data-theme="light"] .checkout-platform-page #wrapper::before {
    opacity: .18;
    background-image: linear-gradient(rgba(31, 65, 112, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(31, 65, 112, .05) 1px, transparent 1px);
}

.checkout-platform-page .box-header-logon {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px max(24px, calc((100vw - 1180px) / 2));
    border-bottom: 1px solid var(--checkout-border);
    background: rgba(5, 15, 29, .72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

html[data-theme="light"] .checkout-platform-page .box-header-logon {
    background: rgba(255, 255, 255, .74);
}

.checkout-platform-page .box-header-logon .login-logo {
    margin: 0;
}

.checkout-platform-page .box-header-logon .login-logo img {
    width: auto;
    max-width: 190px;
    max-height: 48px;
    object-fit: contain;
}

.checkout-platform-page .box-header-logon .login-logo img,
.checkout-platform-page .footer .boxlogorodape img {
    display: block;
    width: auto;
    object-fit: contain;
    filter: none;
}

.checkout-platform-page .footer .boxlogorodape {
    display: flex;
    align-items: center;
    min-height: 62px;
}

.checkout-platform-page .footer .boxlogorodape img {
    max-width: 190px;
    max-height: 58px;
    opacity: 0;
    transition: opacity .15s ease;
}

.checkout-platform-page .footer .boxlogorodape img.checkout-branding-ready {
    opacity: 1;
}
.checkout-platform-page .box-header-logon .login-text-register {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--checkout-muted);
    font-size: 12px;
    font-weight: 800;
}

.checkout-platform-page .box-header-logon .login-text-register img {
    width: auto;
    max-width: 105px;
    max-height: 34px;
    object-fit: contain;
}

.checkout-platform {
    position: relative;
    min-height: 720px;
    padding: 44px 0 76px;
    background: transparent !important;
}

.checkout-platform__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 0, rgba(25, 229, 255, .055), transparent 35%);
}

.checkout-platform__shell {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    max-width: none !important;
    margin: 0 auto;
    padding: 0 !important;
}

.checkout-platform__hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.checkout-platform__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #75edf7;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

html[data-theme="light"] .checkout-platform__eyebrow {
    color: #087f94;
}

.checkout-platform__hero h1 {
    margin: 0;
    color: var(--checkout-text);
    font-size: clamp(27px, 3vw, 40px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.045em;
}

.checkout-platform__hero p {
    max-width: 650px;
    margin: 9px 0 0;
    color: var(--checkout-muted);
    font-size: 14px;
    line-height: 1.6;
}

.checkout-platform__theme-toggle {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    margin-top: 4px;
    border: 1px solid var(--checkout-border);
    border-radius: 14px;
    outline: none;
    background: var(--checkout-surface-soft);
    color: #b7c7df;
    transition: .2s ease;
}

.checkout-platform__theme-toggle:hover,
.checkout-platform__theme-toggle:focus-visible {
    border-color: var(--checkout-border-bright);
    color: #fff;
    background: rgba(25, 229, 255, .08);
    transform: translateY(-1px);
}

html[data-theme="light"] .checkout-platform__theme-toggle {
    color: #d78b18;
    background: rgba(255, 174, 52, .09);
}

.checkout-platform__theme-sun,
html[data-theme="light"] .checkout-platform__theme-moon {
    display: none;
}

html[data-theme="light"] .checkout-platform__theme-sun {
    display: inline-block;
}

.checkout-platform__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 22px;
}

.checkout-platform__trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 0 11px;
    border: 1px solid var(--checkout-border);
    border-radius: 999px;
    color: var(--checkout-muted);
    background: var(--checkout-surface-soft);
    font-size: 9px;
    font-weight: 800;
}

.checkout-platform__trust i {
    color: var(--checkout-green);
}

.checkout-platform-page .containerPagamento {
    width: 100%;
    max-width: 1040px;
    min-height: 200px;
    margin: 0 auto;
    padding: 24px;
    border: 1px solid var(--checkout-border);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(16, 32, 58, .94), rgba(8, 20, 38, .92));
    box-shadow: var(--checkout-shadow), inset 0 1px 0 rgba(255, 255, 255, .04);
    color: var(--checkout-text);
}

html[data-theme="light"] .checkout-platform-page .containerPagamento {
    background: linear-gradient(145deg, rgba(255, 255, 255, .95), rgba(239, 246, 255, .91));
    box-shadow: var(--checkout-shadow), inset 0 1px 0 rgba(255, 255, 255, .8);
}

.checkout-platform-page .containerPagamento > .row,
.checkout-platform-page .containerPagamento > [id^="box"] {
    margin-right: 0;
    margin-left: 0;
}

.checkout-platform-page .box-itens-checkout-item-content,
.checkout-platform-page .box-upsell-orderbump-item-content,
.checkout-platform-page .box-compra-1-click,
.checkout-platform-page .panelIdentificacao,
.checkout-platform-page .panelPagamento,
.checkout-platform-page .box-voucher-checkout {
    border: 1px solid var(--checkout-border);
    border-radius: 18px;
    background: var(--checkout-surface-soft);
    box-shadow: none;
}

.checkout-platform-page .box-itens-checkout-item-content,
.checkout-platform-page .box-upsell-orderbump-item-content {
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    padding: 16px;
}

.checkout-platform-page .box-itens-checkout-item-content-thumb,
.checkout-platform-page .box-upsell-orderbump-item-content-thumb {
    width: 200px;
    flex: 0 0 200px;
}

.checkout-platform-page .box-itens-checkout-item-content-thumb img,
.checkout-platform-page .box-upsell-orderbump-item-content-thumb img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--checkout-border);
    border-radius: 14px;
    object-fit: cover;
}

.checkout-platform-page .box-itens-checkout-item-content-info,
.checkout-platform-page .box-upsell-orderbump-item-content-info {
    min-width: 0;
    padding-left: 0;
}

.checkout-platform-page .box-itens-checkout-item-content-info-name,
.checkout-platform-page .box-upsell-orderbump-item-content-info-name {
    color: var(--checkout-text);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
}

.checkout-platform-page .box-itens-checkout-item-content-info-autor,
.checkout-platform-page .box-itens-checkout-item-content-info-desc,
.checkout-platform-page .box-upsell-orderbump-item-content-info-desc {
    color: var(--checkout-muted);
    font-size: 11px;
    line-height: 1.55;
}

.checkout-platform-page .box-itens-checkout-item-content-info-price-from,
.checkout-platform-page .box-upsell-orderbump-item-content-info-price-from {
    margin-top: 8px;
    color: var(--checkout-muted);
}

.checkout-platform-page .box-itens-checkout-item-content-info-price-from span,
.checkout-platform-page .box-upsell-orderbump-item-content-info-price-from span {
    border-radius: 999px;
    background: rgba(36, 201, 149, .14);
    color: #61e7b9;
}

.checkout-platform-page .box-itens-checkout-item-content-info-price-to,
.checkout-platform-page .box-upsell-orderbump-item-content-info-price-to {
    margin-top: 2px;
    color: #78efc7;
    font-size: 20px;
    font-weight: 900;
}

html[data-theme="light"] .checkout-platform-page .box-itens-checkout-item-content-info-price-to,
html[data-theme="light"] .checkout-platform-page .box-upsell-orderbump-item-content-info-price-to {
    color: #0a8a67;
}

.checkout-platform-page .panelIdentificacao,
.checkout-platform-page .panelPagamento {
    margin-top: 6px;
    padding: 22px;
    margin-bottom: 16px;
}

.checkout-platform-page .panelIdentificacao::before,
.checkout-platform-page .panelPagamento::before {
    display: block;
    margin-bottom: 18px;
    color: var(--checkout-text);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -.025em;
}

.checkout-platform-page .panelIdentificacao::before {
    content: "Seus dados";
}

.checkout-platform-page .panelPagamento::before {
    content: "Escolha como pagar";
}

.checkout-platform-page label,
.checkout-platform-page .box-cartao-row > div:first-child,
.checkout-platform-page .box-cartao-col-50 > div:first-child {
    margin-bottom: 7px;
    color: var(--checkout-muted);
    font-size: 10px;
    font-weight: 800;
}

.checkout-platform-page .input-group {
    display: block;
    margin-bottom: 10px;
}

.checkout-platform-page .form-control,
.checkout-platform-page .select2-container--default .select2-selection--single {
    width: 100%;
    height: 46px;
    margin-bottom: 13px;
    border: 1px solid var(--checkout-border);
    border-radius: 12px !important;
    outline: none;
    background: rgba(5, 16, 31, .72);
    color: var(--checkout-text);
    font-family: var(--checkout-font);
    font-size: 12px;
    box-shadow: none;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

html[data-theme="light"] .checkout-platform-page .form-control,
html[data-theme="light"] .checkout-platform-page .select2-container--default .select2-selection--single {
    background: rgba(245, 249, 255, .94);
}

.checkout-platform-page .form-control:focus,
.checkout-platform-page .select2-container--open .select2-selection--single {
    border-color: rgba(25, 229, 255, .55);
    background: rgba(7, 22, 41, .92);
    box-shadow: 0 0 0 4px rgba(25, 229, 255, .07);
}

html[data-theme="light"] .checkout-platform-page .form-control:focus {
    background: #fff;
}

.checkout-platform-page .form-control::placeholder {
    color: #72849f;
}

.checkout-platform-page .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--checkout-text);
    line-height: 44px;
}

.checkout-platform-page .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
}

.checkout-platform-page .w3-black {
    display: flex;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    background: transparent;
}

.checkout-platform-page .w3-black > .tabPagamentoButton,
.checkout-platform-page .w3-black > .tabPagamentoButtonSelected {
    flex: 1 1 170px;
    width: auto;
    max-width: 220px;
}

.checkout-platform-page .tabPagamentoButton,
.checkout-platform-page .tabPagamentoButtonSelected {
    width: 100%;
    min-height: 78px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 7px;
    margin: 0;
    padding: 10px;
    border: 1px solid var(--checkout-border);
    border-radius: 14px;
    background: var(--checkout-surface-soft);
    color: var(--checkout-muted);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.25;
    transition: .2s ease;
}

.checkout-platform-page .tabPagamentoButton:hover {
    border-color: var(--checkout-border-bright);
    color: var(--checkout-text);
    background: rgba(25, 229, 255, .055);
}

.checkout-platform-page .tabPagamentoButtonSelected {
    border-color: rgba(25, 229, 255, .44);
    color: #fff;
    background: linear-gradient(135deg, rgba(56, 108, 255, .92), rgba(116, 71, 244, .94));
    box-shadow: 0 10px 28px rgba(72, 76, 255, .20);
}

.checkout-platform-page .tabPagamentoButton i,
.checkout-platform-page .tabPagamentoButtonSelected i {
    float: none;
    padding: 0;
    font-size: 22px;
}

.checkout-platform-page .tabPagamentoButton div,
.checkout-platform-page .tabPagamentoButtonSelected div {
    display: block !important;
    width: 100%;
    margin: 0;
    float: none !important;
    color: inherit;
    line-height: 1.25;
    text-align: center !important;
}

.checkout-platform-page .tabPagamentoButton i,
.checkout-platform-page .tabPagamentoButtonSelected i {
    display: block;
    width: auto !important;
    margin: 0 auto;
    float: none !important;
    padding: 0;
    justify-self: center !important;
    text-align: center;
}

.checkout-platform-page .tabPagamentoButton,
.checkout-platform-page .tabPagamentoButtonSelected {
    display: grid;
    grid-template-rows: auto auto;
    align-items: center !important;
    justify-content: center !important;
    justify-items: center !important;
    flex-direction: column !important;
}

.checkout-platform-page .tabPagamentoButton > div,
.checkout-platform-page .tabPagamentoButtonSelected > div {
    width: auto !important;
    margin: 0 auto;
    justify-self: center !important;
    text-align: center !important;
}

.checkout-platform-page .tabPagamentoButton .fa-pix,
.checkout-platform-page .tabPagamentoButtonSelected .fa-pix {
    display: block;
    width: 28px !important;
    height: 28px;
    margin: 0 auto;
    justify-self: center !important;
    background-size: contain;
    background-repeat: no-repeat;
}

.checkout-platform-page .formaPagamentoCheckout {
    margin-top: 12px;
    padding: 20px;
    border: 1px solid var(--checkout-border);
    border-radius: 16px;
    background: rgba(255, 255, 255, .025);
}

.checkout-platform-page .box-cartao {
    gap: 22px;
}

.checkout-platform-page .box-cartao-col-1,
.checkout-platform-page .box-cartao-col-2 {
    min-width: 0;
}

.checkout-platform-page .boxInfoRecorrencia,
.checkout-platform-page .lblInfoDadosBoleto,
.checkout-platform-page .objInfoBoleto {
    margin-top: 30px;
    padding: 13px;
    border: 1px solid rgba(25, 216, 238, .16);
    border-radius: 12px;
    background: rgba(25, 216, 238, .055);
    color: var(--checkout-muted);
    font-size: 10px;
    line-height: 1.6;
    width: 100%;
}

.checkout-platform-page .objInfoBoleto i {
    color: var(--checkout-green);
}

.checkout-platform-page .btnConfirmarPagamento,
.checkout-platform-page .btn-compra,
.checkout-platform-page .btValidarCupomDesconto,
.checkout-platform-page .btn-add-item-order-bump {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 18px;
    border: 1px solid rgba(25, 229, 255, .22) !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #386cff, #7447f4) !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(72, 76, 255, .16);
    transition: .2s ease;
}

.checkout-platform-page .btnConfirmarPagamento:hover,
.checkout-platform-page .btn-compra:hover,
.checkout-platform-page .btValidarCupomDesconto:hover,
.checkout-platform-page .btn-add-item-order-bump:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
    box-shadow: 0 13px 30px rgba(72, 76, 255, .24);
}

.checkout-platform-page .box-upsell-orderbump {
    margin-top: 18px;
    padding: 20px;
    border: 1px solid rgba(255, 198, 109, .18);
    border-radius: 18px;
    background: rgba(255, 198, 109, .045);
}

.checkout-platform-page .box-upsell-orderbump-title {
    color: var(--checkout-warning);
    font-size: 15px;
    font-weight: 900;
}

.checkout-platform-page .btn-remove-item-order-bump,
.checkout-platform-page .btn-remove-voucher-checkout {
    border-radius: 10px;
    background: rgba(255, 78, 106, .14);
    color: #ff9bad;
}

.checkout-platform-page .boxInfoCarrinho {
    padding-top: 18px;
}

.checkout-platform-page .infoItensCheckout {
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid var(--checkout-border);
    border-bottom: 0;
    border-radius: 16px 16px 0 0;
    background: var(--checkout-surface-soft);
    color: var(--checkout-text);
}

.checkout-platform-page .infoItensCheckout-label {
    color: var(--checkout-text);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.3;
}

.checkout-platform-page .infoItensCheckout .badge-pill {
    display: grid;
    place-items: center;
    color: #a9f5ff;
    background: rgba(25, 229, 255, .11);
    font-size: 12px;
    line-height: 1;
}

.checkout-platform-page .list-group {
    padding: 16px 18px;
    border: 1px solid var(--checkout-border);
    border-radius: 0 0 16px 16px;
    background: rgba(255, 255, 255, .018);
}

.checkout-platform-page .list-group-item {
    min-height: 38px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--checkout-border);
    background: transparent;
    color: var(--checkout-muted);
    font-size: 11px;
}

.checkout-platform-page .list-group-item:last-child {
    border-bottom: 0;
}

.checkout-platform-page .list-group-item strong {
    color: var(--checkout-text);
}

.checkout-platform-page .box-totais-checkout {
    border-top: 0;
}

.checkout-platform-page .box-voucher-checkout {
    margin-top: 14px;
    padding: 16px;
}

.checkout-platform-page .box-voucher-checkout-titulo {
    color: #84e9f2;
    font-size: 13px;
    font-weight: 900;
}

html[data-theme="light"] .checkout-platform-page .box-voucher-checkout-titulo {
    color: #087f94;
}

.checkout-platform-page .box-compra-1-click {
    padding: 18px;
}

.checkout-platform-page .box-compra-1-click-boasvindas {
    margin: 14px 0;
    padding: 14px;
    border: 1px solid var(--checkout-border);
    background: var(--checkout-surface-soft);
    color: var(--checkout-text);
}

.checkout-platform-page .box-compra-1-click-header,
.checkout-platform-page .box-compra-1-click-email,
.checkout-platform-page .box-compra-1-click-lastcompra-info-header {
    color: var(--checkout-text);
}

.checkout-platform-page .box-compra-1-click-lastcompra-alert {
    color: var(--checkout-warning);
}

.checkout-platform-page .btn-alterar-usuario-checkout {
    border-radius: 9px;
    background: rgba(25, 216, 238, .12);
    color: #83eef8;
}

.checkout-platform-page .box-searching-user-checking,
.checkout-platform-page .box-alert-sem-iten-checkout {
    border-color: var(--checkout-border);
    background: var(--checkout-surface-strong);
    color: var(--checkout-muted);
}

.checkout-platform-page .box-timeout-promo {
    position: sticky;
    top: 12px;
    left: auto;
    display: flex;
    width: max-content;
    min-width: 250px;
    height: auto;
    margin: 0 0 18px auto;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 116, 137, .42);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(139, 35, 57, .96), rgba(96, 24, 47, .96));
    box-shadow: 0 12px 30px rgba(71, 11, 29, .24), inset 0 1px rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 30;
}

.checkout-platform-page .box-timeout-promo-content {
    position: relative;
    display: flex;
    width: auto;
    max-width: none;
    min-height: 48px;
    padding: 8px 15px 8px 17px;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.checkout-platform-page .box-timeout-promo-content::before {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: #ff8ba0;
    box-shadow: 0 0 0 5px rgba(255, 139, 160, .12);
    content: "";
    animation: checkout-urgency-pulse 1.8s ease-in-out infinite;
}

.checkout-platform-page .box-timeout-promo-content-label {
    color: rgba(255, 255, 255, .78);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .02em;
    white-space: nowrap;
}

.checkout-platform-page .box-timeout-promo-content-time {
    display: flex;
    margin: 0;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    letter-spacing: .04em;
    white-space: nowrap;
}

.checkout-platform-page .box-timeout-promo-content-time span {
    margin: 0;
}

.checkout-platform-page .box-timeout-promo-content-time .fa {
    color: #ffb3c1;
    font-size: 15px;
}

@keyframes checkout-urgency-pulse {
    0%, 100% { opacity: .7; transform: scale(.9); }
    50% { opacity: 1; transform: scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
    .checkout-platform-page .box-timeout-promo-content::before {
        animation: none;
    }
}

.checkout-platform-page .modal-content {
    overflow: hidden;
    border: 1px solid var(--checkout-border);
    border-radius: 20px;
    background: var(--checkout-surface-strong);
    color: var(--checkout-text);
    box-shadow: var(--checkout-shadow);
}

.checkout-platform-page .modal-header,
.checkout-platform-page .modal-footer {
    border-color: var(--checkout-border);
    background: transparent;
}

.checkout-platform-page .modal-title,
.checkout-platform-page .bootbox-body {
    color: var(--checkout-text);
}

.checkout-platform-page footer,
.checkout-platform-page .footer,
.checkout-platform-page #footer {
    position: relative;
    border-top-color: var(--checkout-border);
    background: rgba(5, 15, 29, .72);
    color: var(--checkout-muted);
}

html[data-theme="light"] .checkout-platform-page footer,
html[data-theme="light"] .checkout-platform-page .footer,
html[data-theme="light"] .checkout-platform-page #footer {
    background: rgba(255, 255, 255, .72);
}

@media (max-width: 768px) {
    .checkout-platform-page .box-header-logon {
        min-height: 66px;
        padding: 10px 16px;
    }

    .checkout-platform-page .box-header-logon .login-logo img {
        max-width: 145px;
    }

    .checkout-platform-page .box-header-logon .login-text-register span {
        display: none;
    }

    .checkout-platform {
        padding: 30px 0 52px;
    }

    .checkout-platform__hero {
        align-items: center;
    }

    .checkout-platform__hero p {
        font-size: 12px;
    }

    .checkout-platform__trust {
        gap: 6px;
    }

    .checkout-platform__trust span {
        flex: 1 1 130px;
        justify-content: center;
    }

    .checkout-platform-page .containerPagamento {
        padding: 14px;
        border-radius: 20px;
    }

    .checkout-platform-page .panelIdentificacao,
    .checkout-platform-page .panelPagamento,
    .checkout-platform-page .formaPagamentoCheckout {
        padding: 15px;
    }

    .checkout-platform-page .box-itens-checkout-item-content,
    .checkout-platform-page .box-upsell-orderbump-item-content {
        align-items: flex-start;
    }

    .checkout-platform-page .box-itens-checkout-item-content-thumb,
    .checkout-platform-page .box-upsell-orderbump-item-content-thumb {
        width: 86px;
        flex-basis: 86px;
    }

    .checkout-platform-page .box-cartao {
        flex-direction: column-reverse;
    }

    .checkout-platform-page .box-cartao-col-1,
    .checkout-platform-page .box-cartao-col-2 {
        width: 100%;
        padding: 0;
    }

    .checkout-platform-page .w3-black {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .checkout-platform__shell {
        width: min(100% - 20px, 1180px);
    }

    .checkout-platform-page .box-timeout-promo {
        top: 8px;
        width: 100%;
        min-width: 0;
        margin-bottom: 14px;
    }

    .checkout-platform-page .box-timeout-promo-content {
        width: 100%;
        padding: 8px 12px;
        justify-content: center;
        gap: 9px;
    }

    .checkout-platform-page .box-timeout-promo-content-label {
        font-size: 11px !important;
    }

    .checkout-platform-page .box-timeout-promo-content-time {
        font-size: 16px !important;
    }

    .checkout-platform__hero h1 {
        font-size: 25px;
    }

    .checkout-platform__theme-toggle {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .checkout-platform-page .box-itens-checkout-item-content,
    .checkout-platform-page .box-upsell-orderbump-item-content {
        flex-direction: column;
    }

    .checkout-platform-page .box-itens-checkout-item-content-thumb,
    .checkout-platform-page .box-upsell-orderbump-item-content-thumb {
        width: 100%;
    }

    .checkout-platform-page .box-itens-checkout-item-content-thumb img,
    .checkout-platform-page .box-upsell-orderbump-item-content-thumb img {
        max-height: 180px;
    }

    .checkout-platform-page .w3-black {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .checkout-platform-page .tabPagamentoButton,
    .checkout-platform-page .tabPagamentoButtonSelected {
        min-height: 70px;
    }

    .checkout-platform-page .box-cartao-row-50 {
        gap: 10px;
    }

    .checkout-platform-page .box-cartao-col-50 {
        min-width: 0;
        margin-right: 0;
    }

    .checkout-platform-page .box-cartao-col-50 .form-control {
        width: 100% !important;
    }

    .checkout-platform-page .btnConfirmarPagamento,
    .checkout-platform-page .btn-compra,
    .checkout-platform-page .btValidarCupomDesconto {
        width: 100%;
        float: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .checkout-platform-page *,
    .checkout-platform-page *::before,
    .checkout-platform-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
.checkout-platform-page .checkout-installments-label,
.checkout-platform-page .checkout-installments-label strong {
    color: #fff !important;
}

html[data-theme="light"].checkout-platform-page .checkout-installments-label,
html[data-theme="light"].checkout-platform-page .checkout-installments-label strong {
    color: #333 !important;
}

.checkout-platform-page .select2-container {
    width: 100% !important;
}

html.checkout-platform-page .select2-container--default .select2-dropdown {
    overflow: hidden;
    border: 1px solid var(--checkout-border-bright);
    border-radius: 0 0 10px 10px;
    background: var(--checkout-surface-strong);
    color: var(--checkout-text);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .24);
}

html.checkout-platform-page .select2-container--default .select2-results__option {
    padding: 10px 12px;
    color: var(--checkout-text);
    background: transparent;
    font-size: 13px;
    line-height: 1.3;
}

html.checkout-platform-page .select2-container--default .select2-results__option--highlighted[aria-selected] {
    color: #fff;
    background: #3f82dc;
}

html.checkout-platform-page .select2-container--default .select2-results__option[aria-selected="true"] {
    color: var(--checkout-text);
    background: rgba(25, 229, 255, .12);
}

html[data-theme="light"].checkout-platform-page .select2-container--default .select2-dropdown {
    border-color: rgba(31, 65, 112, .22);
    background: #fff;
    color: #333;
    box-shadow: 0 14px 30px rgba(31, 65, 112, .16);
}

html[data-theme="light"].checkout-platform-page .select2-container--default .select2-results__option {
    color: #333;
    background: #fff;
}

html[data-theme="light"].checkout-platform-page .select2-container--default .select2-results__option--highlighted[aria-selected] {
    color: #fff;
    background: #3f82dc;
}

html[data-theme="light"].checkout-platform-page .select2-container--default .select2-results__option[aria-selected="true"] {
    color: #333;
    background: #e8f1ff;
}
.checkout-platform-page .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 0 !important;
    right: 0;
    width: 34px;
    height: 44px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-platform-page .select2-container--default .select2-selection--single .select2-selection__arrow b {
    position: static !important;
    display: block;
    margin: 0 !important;
    transform: translateY(1px);
}