body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 14px
}
:focus-visible {
    outline: none
}
.label-contact-content {
    display: flex;
    justify-content: space-between
}
#shipping {
    display: flex;
    flex-direction: column
}
.btn-buy {
    cursor: pointer;
    border: none
}
.product-grid {
    display: grid
}
.product-img {
    object-fit: cover
}
.coupon-input-content {
    display: flex
}
.coupon-input-remove {
    display: none
}
.payment-wrapper {
    display: flex;
    flex-direction: column
}
.payment-method-label .automatic-discount {
    position: absolute;
    bottom: -9px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-width: 52px;
    height: 18px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
    line-height: 10px
}
.automatic-discount-content {
    display: flex
}
.automatic-discount-percent {
    font-weight: 800;
    font-size: 12px
}
.automatic-discount-text {
    display: flex;
    align-items: center
}
.list-detail {
    display: flex;
    justify-content: space-between
}
.payment-card-flags {
    display: flex
}
.orderbump-header {
    align-items: center;
    flex-wrap: wrap
}
.orderbump-footer {
    font-size: 10px;
    color: #999999
}
.orderbump-label {
    margin: 0;
    font-size: 14px
}
.orderbump-body {
    display: flex;
    align-items: center;
    flex-direction: column
}
.orderbump-plan {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%
}
.orderbump-plan-border {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between
}
.orderbump-plan-content {
    display: flex;
    flex-direction: row;
    width: 100%
}
.orderbump-plan-image {
    background-color: transparent
}
.orderbump-plan-description {
    display: flex;
    flex-direction: column
}
.orderbump-plan-title {
    font-size: 14px
}
.orderbump-plan-name {
    font-size: 12px;
    color: #999999
}
.orderbump-plan-old-price {
    font-weight: 400;
    text-decoration: line-through
}
.orderbump-plan-price {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700
}
.orderbump-plan-border .orderbump-button {
    outline: none !important;
    border: none;
    cursor: pointer
}
.orderbump-plan .orderbump-plan-actions {
    display: flex
}
.orderbump-purchased {
    visibility: hidden;
    opacity: 0;
    margin: 0 auto -12px auto;
    width: 150px;
    padding: 5px 9px;
    border-radius: 4px;
    font-size: 10px;
    line-height: 12px;
    font-weight: 800;
    z-index: 1
}
.orderbump-checkbox {
    display: none;
    display: block !important;
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none
}
.orderbump-trash {
    width: 18px;
    height: 18px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    visibility: hidden;
    opacity: 0
}
#safe_pay, #payment_error, #has-payment {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden
}
.safe_pay_content {
    margin: 0 1.5rem
}
.payment_error_content, .has-payment-content {
    width: auto
}
.has-payment-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem
}
.has-payment-content a,
.has-payment-content button {
    width: 50%;
    color: white;
    text-decoration: none;
    text-align: center;
    cursor: pointer
}
.payment-loader {
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center
}
#address-form select:focus,
#address-form input:focus,
#card-payment select:focus,
#card-payment input:focus {
    border-color: #0053FE !important;
    box-shadow: 0 0 0 3px rgba(0, 83, 254, 0.2) !important;
    outline: none !important
}
#card-payment input[type="radio"][name="payment_method"],
#card-payment input[type="radio"][name="payment_card"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
    display: block !important;
    pointer-events: none
}
.payment-method-label:focus-within,
.card-flag:focus-within {
    border-color: #0053FE !important;
    box-shadow: 0 0 0 3px rgba(0, 83, 254, 0.2) !important
}
.orderbump-checkbox:focus ~ .orderbump-plan-border {
    border-color: #0053FE !important;
    box-shadow: 0 0 0 3px rgba(0, 83, 254, 0.2) !important
}
.no_document_label {
    color: #A6A6A6;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
}
#no_document {
    display: none;
}
#document {
    transition: background-color 0.5s ease, color 0.5s ease;
}
#no_document:checked ~ #document {
    pointer-events: none;
    background-color: #E5E5E5;
    color: #A0A0A0;
    cursor: not-allowed;
}
.no_email_label {
    color: #A6A6A6;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
}
#no_email {
    display: none;
}
#email {
    transition: background-color 0.5s ease, color 0.5s ease;
}
#no_email:checked ~ #email {
    pointer-events: none;
    background-color: #E5E5E5;
    color: #A0A0A0;
    cursor: not-allowed;
}