* {
    scrollbar-color: rgb(123, 130, 142) transparent;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

*::-webkit-scrollbar-thumb {
    background-color: rgb(123, 130, 142);
    border-radius: 20px;
}

body {
    margin: 0;
    background-color: #F3F3F3;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "Inter", serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #313C52;
    text-align: left;
}

body::-webkit-scrollbar {
    width: 5px;
}

body::-webkit-scrollbar-track {
    background: transparent;
}

body::-webkit-scrollbar-thumb {
    background-color: rgb(123, 130, 142);
    border-radius: 20px;
}

form {
    margin: 0;
}

.container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: -webkit-fill-available;
    width: -moz-available;
    width: -webkit-stretch;
    width: -moz-stretch;
    max-width: 100%;
}

.card-content {
    padding-top: 4rem;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    flex: 1;
    gap: 2rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

.card-content-left {
    overflow: hidden;
    min-width: 60%;
    width: 100%;
}

.card-title {
    color: #313C52;
    text-align: left !important;
    font-family: Inter, serif;
    font-size: 16px;
    font-style: normal;
    font-stretch: normal;
    margin-bottom: 1rem;
    font-weight: bold;
    margin-top: -5px;
}

.checkout-banner {
    width: 100%;
    min-height: 100px;
    object-fit: cover;
}

.checkout-logo-container {
    position: relative;
    padding: 0;
}

.checkout-logo {
    height: 120px;
    min-width: 64px;
    object-fit: contain;
    border-radius: 8px;
    padding: 3px;
    background-color: #fff;
}

.checkout-logo.in-banner {
    margin-top: -32px
}

.card-content .card-details, .card-form, .card-review {
    border-radius: 8px;
    border-color: transparent;
    padding: 25px;
    box-shadow: none;
    background-color: #FFFFFF;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    height: fit-content;
    margin-bottom: 2rem;
}

label {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: #313C52;
    margin: 0 0 5px 0;
    width: max-content;
}

.input-container, .last-input-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
    min-width: 0
}

.row > .last-input-container:last-child {
    margin-bottom: 0;
}

.input-container {
    margin-bottom: 1rem;
}

.input-container-25 {
    max-width: 25%;
}

input, select {
    padding: 14px 16px;
    border-radius: 8px;
    border: solid 1px #DDDDDD;
    background-color: #FFFFFF;
    outline: 0 !important;
    font-family: "Inter", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #313C52;
    -webkit-appearance: none;
}

input::placeholder, select::placeholder {
    opacity: 0.2;
    color: #909090;
}

input.is-invalid, select.is-invalid {
    border-color: #d100007d;
    background-color: #d1000008;
}

input.is-valid, select.is-valid {
    border-color: #23d07d;
    background-color: #23d07d1a;
}

.invalid-feedback {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 10px;
    font-weight: 500;
    color: #D10000;
    align-items: center;
    padding-left: .5rem;
}

.alert_cupom {
    padding-right: 5px;
}

.optional-email {
    display: flex;
    align-items: center;
}

.label-contact-content {
    display: flex;
    justify-content: space-between;
}

.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;
}

.info-secure {
    border: 2px dashed #EDEDED;
    font-size: 15px;
    border-radius: 6px;
    padding: 16px 16px;
    margin-bottom: 24px;
    margin-top: 8px;
}

.info-secure .about_purchase {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    color: #313C52;
}

.info-secure .info-secure-row {
    display: flex;
    flex-direction: row;
    margin-top: 1rem;
    gap: 1rem;
}

.info-secure .info-secure-row .sub {
    font-weight: 400;
    font-size: 14px;
    color: #7E7E7E;
}

.row {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
}

#card-details-mobile {
    visibility: hidden;
    opacity: 0;
    height: 0;
    display: none;
}

.card-detail-toggle-icon {
    display: none;
}

.empty-shipping {
    border: 1px dashed #dddddd;
    border-radius: 8px;
    padding: 24px;
    position: static;
    margin-top: 1rem;
    display: none;
}

.empty-shipping p {
    font-size: 12px;
    line-height: 15px;
    color: #999999;
    margin: 10px 0 0 0;
}

.person-received-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.5s ease;
}

.person-received-content label {
    margin-top: 1rem;
}

.hidden-checkbox:checked + .person-received-content {
    display: flex;
    opacity: 1;
    max-height: 150px;
}

#shipping {
    display: flex;
    flex-direction: column;
}

#shipping label {
    -webkit-transition: all 0.1s ease-in;
    width: auto;
    line-height: 1.5;
    border-radius: 8px;
    display: flex;
    padding: 1.5rem 2rem;
    gap: 1rem;
    margin-top: 1rem;
    cursor: pointer;
    opacity: .7;
    border: 2px solid #DDDDDD;
}

#shipping label .shipping-name {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
}

#shipping label .shipping-information {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #999999;
}

#shipping .shipping-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#shipping input {
    display: none;
}

#shipping input:checked + label {
    border-color: #007bff;
    background-color: #f0f8ff;
    opacity: 1;
}

#shipping:empty ~ .empty-shipping {
    display: block;
}

.shipping-description {
    margin-top: .5rem;
    margin-left: .5rem;
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    color: #999999;
}

.countdown-timer-container {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem;
}

body:has(.countdown-timer-container) #footer {
    padding-bottom: calc(60px + 1rem);
}

.checkout-timer {
    text-align: center;
    font-weight: 700;
    flex-direction: row;
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
}

.countdown-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 1rem;
}

.countdown-content .digit.run-time {
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
}

#collapse-receiver {
    display: none;
}

.btn-buy {
    padding: 16px 24px;
    cursor: pointer;
    background-color: #23d07d;
    color: #ffffff !important;
    border-radius: 8px;
    text-transform: uppercase;
    font: normal 500 16px Inter;
    min-width: 218px;
    white-space: nowrap;
    border: none;
    margin-left: auto;
    display: block;
}

#footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    padding: 1rem;
    z-index: 1000;
    margin-top: auto;
}

#footer .footer-payment-method {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.card-detail-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.card-detail-title .total-plan {
    background-color: #4B8FEF;
    color: #ffffff;
    width: 24px;
    height: 24px;
    font-size: 12px;
    line-height: 24px;
    border-radius: 50px;
    float: right;
    font-weight: bold;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-column-gap: 12px;
    grid-row-gap: 10px;
    grid-template-columns: 50px auto 80px;
    margin-bottom: 16px;
    color: #313C52;
}

.product-grid:only-child {
    margin: 0 !important;
}

.product-grid:last-child {
    margin-bottom: 0;
}

.product-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.name_product_card {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.02em;
}

.info-small {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #909090;
}

.ellipsis-h {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.ellipsis-w {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-amount {
    margin-left: auto;
    color: #A6A6A6;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.subtotal {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.total {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

#total-amount {
    font-weight: 700;
}

.total-hr {
    margin: 1rem 0;
    border-top: 1px solid #DDDDDD;
}

.discount-content {
    position: relative;
    display: flex !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    padding: 0 !important;
}

.coupon-input-content {
    display: flex;
    flex-direction: row;
}

.coupon-input-content input {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    width: 100%;
}

.coupon-input-content #add-coupon {
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
    border: solid 1px #027bff;
    width: 50px;
    background-color: #027bff;
    cursor: pointer;
    display: inline;
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    text-decoration: none;
    color: #FFF;
}

.coupon-input-add {
    margin-bottom: 0;
}

.coupon-input-remove {
    justify-content: space-between;
    margin-bottom: 0;
}

.coupon-input-remove-text {
    display: flex;
    flex-direction: row;
    width: calc(100% - 35px);
}

.coupon-input-remove-text .coupon-code {
    border-radius: 8px;
    border: 1px solid #6acd85;
    background: #ecf5f1;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    color: #59bf75;
    text-align: center;
    padding: 10px 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 80px);
}

.coupon-input-remove .coupon-input-remove-text {
    font-size: 20px;
    align-content: center;
}

.coupon-input-remove .coupon-input-remove-text span {
    font-size: 14px;
    align-content: center;
    color: #999;
    margin-left: 1rem;
}

.coupon-input-content #remove-coupon {
    border-radius: 8px;
    border: solid 1px red;
    width: 35px;
    height: 35px;
    background-color: #ff00000a;
    color: red;
    font-weight: 500;
    font-size: 27px;
    cursor: pointer;
    text-align: center;
    line-height: 30px;
}

.coupon-input-remove {
    display: none;
}

.card-security {
    display: flex;
    justify-content: space-around;
    margin: 0 auto 2rem auto;
}

.card-security .btn-security {
    color: #313c52;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 24px;
    position: static;
    width: 178px;
    height: 40px;
    left: 85px;
    top: 638px;
    background: #ffffff;
    border: 1px solid #f7f6f8;
    box-sizing: border-box;
    border-radius: 60px;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    outline: none;
}

.card-security .btn-security img {
    margin-right: .5rem;
}

.payment-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-payment-method-content {
    display: flex;
    justify-content: center;
    width: 100%;
}

.card-payment-method-content input[name="payment_method"] {
    display: none;
    justify-content: center;
}

body:has(input[name="payment_method"]:checked) .payment-method-description {
    opacity: 1;
    transition: all .5s ease;
    visibility: visible;
    height: auto;
}

body:has(input[name="payment_method"]:checked#pix) .pix-description,
body:has(input[name="payment_method"]:checked#billet) .billet-description,
body:has(input[name="payment_method"]:checked#credit-card) .credit-card-description {
    opacity: 1;
    transition: all .5s ease;
    visibility: visible;
    height: auto;
    margin-top: 1rem;
    display: block;
}

label:has(input[name="payment_method"]:checked) {
    border-color: #007bff;
    background-color: #f0f8ff;
    opacity: 1;
}

.payment-method-description {
    width: 100%;
    opacity: 0;
    height: 0;
    visibility: hidden;
    font-size: 14px;
    color: #999999;
}

.payment-method-description .pix-description,
.payment-method-description .billet-description,
.payment-method-description .credit-card-description {
    opacity: 0;
    height: 0;
    visibility: hidden;
    display: none;
}

.payment-method-label {
    padding: 1rem;
    border: 2px solid #DDDDDD;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    max-width: 30%;
    width: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: .7;
    justify-content: space-between;
    position: relative;
}

.payment-method-label:first-of-type {
    margin-right: 1rem;
}

.payment-method-label:last-of-type {
    margin-left: 1rem;
}

.payment-method-label img {
    width: 70px;
    height: auto;
    border-radius: 8px;
}

.payment-method-label span {
    margin-bottom: 5px;
}

.payment-method-label .automatic-discount {
    position: absolute;
    bottom: -9px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    text-align: center;
    min-width: 52px;
    height: 18px;
    padding: 2px;
    background: #59bf75;
    border-radius: 8px;
    letter-spacing: 0;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 10px;
}

.payment-method-label:hover {
    border-color: #007bff;
    background-color: #f0f8ff;
}

.automatic-discount-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0 2rem 0;
}

.automatic-discount-percent {
    border-radius: 8px;
    border: 1px solid #6acd85;
    background: #ecf5f1;
    font-style: normal;
    font-weight: 800;
    font-size: 12px;
    color: #59bf75;
    width: 30%;
    text-align: center;
    padding: 5px;
    height: fit-content;
}

.automatic-discount-text {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    color: #313c52;
}

.automatic-discount-content span {
    padding: 0 5px;
    text-wrap: nowrap;
    color: #59bf75;
}

.list-detail {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    overflow: hidden;
    transition: height 0.3s ease;
    margin: 0;
}

.list-detail .list-detail-amount {
    color: #6acd85;
    margin: .4rem 0;
}

.list-detail .list-detail-text {
    margin: .4rem 0;
}

.list-detail .list-detail-amount:empty,
.list-detail .list-detail-amount:empty ~ .list-detail-text {
    display: none;
    margin: 0;
}

div:has(.list-detail-amount:not(:empty)) .hr-details {
    display: block;
}

.hr-details {
    display: none;
}

#shipping-detail-amount {
    color: #313C52;
}

.hidden-checkbox {
    display: none;
    opacity: 0;
}

.toggle-label {
    cursor: pointer;
    color: #007bff;
    text-decoration: underline;
}

.d-none {
    display: none;
}

.d-flex {
    display: flex;
}

.label-no-number {
    cursor: pointer;
    color: #A6A6A6;
    font-size: 13px;
    font-weight: 400;
}

#number {
    transition: background-color 0.5s ease, color 0.5s ease;
}

#no_number {
    position: absolute;
    opacity: 0;
}

#no_number:checked ~ #number {
    pointer-events: none;
    background-color: #e5e5e5;
    color: #a0a0a0;
    cursor: not-allowed;
}

.alert-billet {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #FAFAFA;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    font-stretch: normal;
    text-align: left;
    color: #797979;
}

.alert-billet span {
    font-weight: 600;
    color: #000;
}

.alert-billet ul li {
    margin-bottom: .5rem;
}

.payment-flags {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: #999999;
}

.payment-flags .installments-text span {
    font-weight: 700;
}

.payment-card-flags {
    display: flex;
    gap: .5rem;
}

.payment-card-flags input[name="payment_card"] {
    display: none;
}

.payment-card-flags .card-flag svg {
    width: 44px;
    height: 30px;
    opacity: 0.3;
}

.payment-card-flags .card-flag input:checked ~ svg {
    opacity: 1;
}

.input-valid {
    border: 2px solid green;
}

.input-invalid {
    border: 2px solid red;
}

.orderbump-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.orderbump-footer {
    margin: 14px 0 22px 0;
    font-size: 10px;
    line-height: 10px;
    color: #999999;
}

.orderbump-label span {
    color: #59bf75;
}

.orderbump-label {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #373737;
}

.orderbump-body {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.orderbump-body-slider {
    flex-direction: row;
    overflow-x: auto;
}

.orderbump-body-slider .orderbump-purchased {
    margin: 0 auto -12px auto;
}

.orderbump-body-slider .orderbump-plan-description {
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.orderbump-plan {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    /*min-width: max-content;*/
}

.orderbump-plan-border {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: #fff5ee;
    border-radius: 10px;
    border: 2px dashed #f79f1a;
    transition: background-color 2s, opacity 0.5s, filter 0.5s;
    justify-content: space-between;
    gap: 1rem;
    min-width: 240px;
    min-height: calc(78px + 2rem);
}

.orderbump-plan-content {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 100%;
}

.orderbump-plan-image {
    width: 78px;
    height: 78px;
    border-radius: 4px;
    background-color: transparent;
    object-fit: contain;
}

.orderbump-plan-description {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.orderbump-plan-title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: -0.02em;
    color: #313c52;
    text-wrap: wrap;
    word-break: break-all;
}

.orderbump-plan-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 12px;
    color: #999999;
}

.orderbump-plan-old-price {
    font-size: 10px;
    font-weight: 400;
    color: #e81414;
    text-decoration: line-through;
}

.orderbump-plan-price {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    color: #59bf75;
}

.orderbump-plan-border .orderbump-button {
    right: 16px;
    bottom: 16px;
    padding: 9px;
    outline: none !important;
    border: none;
    border-radius: 7px;
    background: #ff8710;
    color: #ffffff;
    font-size: 14px;
    line-height: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all, opacity 0.5s, filter 0.5s;
    gap: 1rem;
}

.orderbump-plan .orderbump-plan-actions {
    display: flex;
    flex-wrap: nowrap;
}

.orderbump-purchased {
    visibility: hidden;
    opacity: 0;
    margin: 0 auto -12px auto;
    width: 150px;
    padding: 5px 9px;
    border-radius: 4px;
    background-color: #59bf75;
    background-image: url('/img/verified.svg');
    background-position: 95%;
    background-repeat: no-repeat;
    font-size: 10px;
    line-height: 12px;
    font-weight: 800;
    color: #fff;
    z-index: 1;
    transition: all, opacity 0.5s, filter 0.5s;
}

.orderbump-checkbox {
    display: none;
}

.orderbump-checkbox:checked ~ .orderbump-plan-border {
    background-color: #f3fff7;
    border: 2px dashed #59bf75;
}

.orderbump-checkbox:checked ~ .orderbump-purchased {
    visibility: visible;
    opacity: 1;
}

.orderbump-checkbox:checked ~ .orderbump-plan-border .orderbump-button {
    visibility: hidden;
    height: 0;
    margin: 0;
    opacity: 0;
}

.orderbump-checkbox:checked ~ .orderbump-plan-border .orderbump-trash {
    visibility: visible;
    opacity: 1;
}

.orderbump-trash {
    width: 18px;
    height: 18px;
    background-image: url(../../img/trash.svg);
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    visibility: hidden;
    opacity: 0;
    transition: all, opacity 0.5s, filter 0.5s;
}

.info-secure {
    display: none
}

.card-steps {
    display: none
}

input[name='step'], .back_step {
    display: none;
}

.btn-buy {
    display: none;
}

div:has(:not(input[name="step"][value="payment"]:checked)):has(input[name="payment_method"]:checked) .btn-buy {
    display: block;
}

#recaptcha{
    margin-bottom: 1rem;
}

#safe-pay-checked,
#payment_error_checked,
#has-payment-checked {
    opacity: 0;
    visibility: hidden;
    display: none;
}

#safe-pay-checked:checked + #safe_pay,
#payment_error_checked:checked + #payment_error,
#has-payment-checked:checked + #has-payment {
    opacity: 1;
    visibility: visible;
}

#safe_pay, #payment_error, #has-payment {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-safe-pay, .modal-payment-error, .modal-has-payment {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 700px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.safe_pay_content {
    margin: 0 1.5rem
}

.payment_error_content, .has-payment-content {
    max-width: 400px;
    width: auto;
}

.has-payment-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.has-payment-content a,
.has-payment-content button {
    width: 50%;
    height: auto;
    background-color: #6e6e6e;
    color: white;
    padding: 10px;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #707070;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
}

.safe_pay_header, .payment_error_header, .has-payment-header {
    display: flex;
    justify-content: space-between;
}

.has-payment-header div {
    display: flex;
    gap: 1rem;
}

.safe_pay_header img,
.payment_error_header img,
.has-payment-header img {
    width: 30px;
}

.has-payment-header h3 {
    margin: 8px 0;
}

.safe_pay_header .btn-close,
.payment_error_header .btn-close,
.has-payment-header .btn-close {
    float: right;
    cursor: pointer;
    opacity: 0.75;
    margin-top: .5rem;
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
}

.title-safe {
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #313c52;
    margin-top: 17px;
}

.title-safe span {
    color: #59bf75;
}

.description-safe,
.has-payment-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #636363;
    margin-top: 13px;
}

.sub-title-safe {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #3d4456;
    margin: 32px 0;
}

.row-safe {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row-safe > .col-safe {
    margin-bottom: 1.5rem;
    align-items: flex-start;
    display: flex;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    min-height: 1px;
    box-sizing: border-box;
    padding-right: 15px;
    padding-left: 15px;
}

.row-safe .col-safe img {
    margin-right: 16px;
    vertical-align: middle;
    border-style: none;
}

.row-safe .col-safe .title-group {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #3d4456;
}

.row-safe .col-safe .description-group {
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    color: #636363;
    margin-top: 8px;
}

.btn-safe {
    cursor: pointer;
    margin: 1.5rem auto 0;
    padding: 12px 24px;
    border: 0;
    border-radius: 4px;
    background-color: #59bf75;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: white;
    white-space: nowrap;
    width: fit-content;
}

.card-review-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.review-content {
    display: flex;
    gap: 1rem;
}

.review-photo {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
}

.card-review-hr {
    width: 100%;
    border-top: 1px solid #DDDDDD;
    margin: 1rem 0;
}

.review-description {
    margin-top: 1rem;
}

.card-review .review-description:not(:last-of-type) {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #DDDDDD;
}

.rating {
    --size: 16px;
    display: inline-block;
    position: relative;
}

.stars,
.stars-fill {
    display: flex;
    gap: 3px;
}

.stars svg,
.stars-fill svg {
    width: var(--size);
    height: var(--size);
    flex-shrink: 0;
}

.stars {
    color: transparent;
    fill: transparent;
    stroke: #909090;
    stroke-width: 2px;
    z-index: 1;
}

.stars-fill {
    fill: var(--color);
    stroke: none;
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    top: 0;
    left: 0;
    width: var(--percent);
    z-index: 2;
    pointer-events: none;
}

.topbar {
    width: 100%;
    min-height: 60px;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.social-proof-message {
    font-size: 13px;
    text-align: center;
    margin-top: 2rem;
    font-weight: 500;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    to {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }
}

.popup {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 16px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
    z-index: 1500;
}

.popup.show {
    animation: slideUp 0.5s forwards;
}

.popup.hide {
    animation: slideDown 0.5s forwards;
}

.popup.hidden {
    display: none;
}

.popup.success {
    background-color: #0fbe63;
    border: 1px solid #00a14e;
}

.popup.error {
    background-color: #dc4756;
    border: 1px solid #9c0c1a;
}

.popup.info {
    background-color: #325d97;
    border: 1px solid #1e406e;
}

@media (min-width: 577px) {
    .container {
        padding-right: 15px;
        padding-left: 15px;
        /*width: 540px;*/
        width: 100%;
        max-width: 100%;
    }

    .automatic-discount-content {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .btn-buy {
        margin: 0 auto;
    }

    .payment-method-label {
        width: 30%;
        padding: .5rem;
    }

    .payment-method-label img {
        width: 50px;
    }

    .payment-method-label:first-of-type {
        margin-right: .5rem;
    }

    .payment-method-label:last-of-type {
        margin-left: .5rem;
    }

    .input-container-25 {
        max-width: 100%;
    }

    .orderbump-plan-border {
        flex-direction: column;
    }

    .orderbump-plan-border .orderbump-button {
        padding: 5px 10px;
    }
}

@media (min-width: 769px) {
    .row {
        flex-direction: row;
        gap: 1rem;
    }

    .row-safe .col-safe {
        width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .container {
        padding-right: 15px;
        padding-left: 15px;
        width: 720px;
        max-width: 100%;
    }

    .payment-flags {
        flex-direction: row;
    }
}

@media (max-width: 992px) {
    .last-input-container {
        margin-bottom: 1rem;
    }

    .checkout-logo.in-banner {
        margin: -25px 0 0 0;
        max-height: 64px;
    }

    .card-content {
        flex-direction: column;
        padding-top: 1rem;
    }

    .mobile-view {
        display: flex !important;
        margin-bottom: .5rem;
    }

    .mobile-view .btn-security {
        background-color: #f3f3f3;
    }

    .desktop-view {
        display: none !important;;
    }

    #card-details-body {
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.2s ease-in;
    }

    #card-details-mobile:checked ~ #card-details-body {
        max-height: 500px;
        transition: max-height 0.2s ease-in;
    }

    #card-details-mobile:checked + .card-detail-title .card-detail-toggle-icon svg {
        transform: rotate(180deg);
        color: #0a58ca;
    }

    .card-detail-icons {
        display: flex;
    }

    .card-detail-toggle-icon {
        display: block;
        padding: 3px 0 0 10px;
    }

    .card-detail-toggle-icon-rotated svg {
        transform: rotate(180deg);
    }

    .card-review {
        margin-top: 2rem;
        margin-bottom: 0;
    }

    .orderbump-body-slider {
        min-height: 150px;
    }
}

@media (min-width: 993px) {
    .container {
        padding-right: 15px;
        padding-left: 15px;
        width: 960px;
        max-width: 100%;
    }

    .mobile-view {
        display: none !important;
    }

    .desktop-view {
        display: flex !important;
    }

    .checkout-logo.in-banner {
        position: absolute;
        bottom: -50px;
        left: 0;
        margin: 0;
        padding: 10px;
        background-color: #ffffff;
        border-radius: 8px;
    }

    .number-input-container {
        max-width: 25%;
        position: relative;
    }

    .card-content-right {
        max-width: 40%;
        width: auto;
    }
}

@media (min-width: 1201px) {
    .container {
        padding-right: 15px;
        padding-left: 15px;
        width: 100%;
        max-width: 1140px;
    }
}
