.cl-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    background-color: #fff;
}

.cl-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    padding: 16px;
    background-color: #fff;
}

.cl-box-4 {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cl-box-12-center {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.cl-box-12-column {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

.cl-box-4-column {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cl-box-4-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
}

.cl-box-8 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cl-box-8-column-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cl-box-16 {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cl-box-16-center {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cl-box-16-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cl-box-24 {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.cl-box-24-column {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
}

.cl-box-column-center-grow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.cl-box-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cl-text-12 {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
}

.cl-text-13 {
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
}

.cl-text-14 {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
}

.cl-text-16 {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.cl-text-danger {
    color: #961c37;
}

.cl-text-grey {
    color: #555;
}

.cl-text-light-grey {
    color: #999;
}

.cl-text-dark-grey {
    color: #333;
}

.cl-divider {
    width: 100%;
    height: 0px;
    border: 1px solid #e8e8e8;
    margin: 0;
    color: #e8e8e8;
}

.cl-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    gap: 8px;
    border-radius: 8px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.cl-button-xs {
    font-size: 12px;
    line-height: 18px;
}

.cl-button-md {
    font-size: 16px;
    line-height: 24px;
}

.cl-button-ghost {
    text-decoration: none;
    padding: 0;
    color: #961c37;
    border: 0px solid transparent;
    border-radius: 0.375rem;
    background-color: transparent;
}

.cl-button-outline {
    background-color: #fff;
    border: 1px solid #961c37;
    color: #961c37;
}

.cl-button-solid {
    border: 0px solid transparent;
    background-color: #961c37;
    color: #fff;
}

.cl-button-full {
    width: 100%;
}

.cl-button:disabled {
    background-color: #ced0d2;
    cursor: not-allowed;
}

.cl-radio-card-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 13px 16px;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
    position: relative;
    gap: 8px;
}

.cl-radio-card-label:has(input[type="radio"]:checked) {
    background-color: #fdebee;
    border: 1px solid #c5515c;
}

.cl-radio-input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
    right: 20px;
}

.cl-radio-card-img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.cl-checkbox {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    user-select: none;
}

.cl-checkbox input.cl-checkbox-input {
    border: 0px;
    clip: rect(0px, 0px, 0px, 0px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0px;
    position: absolute;
    width: 1px;
    white-space: nowrap;
    overflow-wrap: normal;
}

.cl-checkbox-box {
    border-radius: 4px;
    display: flex;
    border: 0.5px solid #231f20;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
}

#label-insurance .cl-checkbox-box {
    width: 18px;
    height: 18px;
    gap: 10px;
}

#label-terms-condition .cl-checkbox-box {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    flex-shrink: 0;
    overflow: hidden;
}

.cl-checkbox input:checked + .cl-checkbox-box {
    background-color: #bb2345;
    border-color: #bb2345;
}

.cl-checkbox input:checked + .cl-checkbox-box .cl-check-icon {
    display: block;
}

.cl-checkbox-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #58595b;
}

.cl-check-icon {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 3;
    fill: none;
    display: none;
}

.cl-toooltip {
    font-size: 14px;
    color: #dc9898;
}

.cl-bottom-bar {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    border-top: 1px solid #e8e8e8;
    background-color: #fff;
    position: fixed;
    padding: 16px 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.cl-bottom-bar-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cl-variant-hidden {
    visibility: hidden;
}

.cl-seller-image {
    width: 18px;
    height: 18px;
    object-fit: cover;
}

.cl-product-order-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
}

select.cl-select-native {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

select.cl-select-native:disabled {
    cursor: not-allowed;
}

.cl-select-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cl-select {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.cl-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    background: #fff;
}

#shipper-wrapper .cl-select-trigger {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

#shipper-wrapper .cl-select-trigger:not([data-disabled="true"]):hover {
    background: #f2f2f2;
}

.cl-select-trigger .cl-arrow {
    flex-shrink: 0;
    transition: transform 0.2s ease;
    font-size: 12px;
}

.cl-select.cl-open .cl-select-trigger .cl-arrow {
    transform: rotate(180deg);
}

.cl-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    display: none;
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
}

.cl-select-option {
    padding: 7px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

#shipper-wrapper .cl-select-option {
    padding: 10px 16px;
    border-bottom: 1px solid #e8e8e8;
}

#shipper-wrapper .cl-select-option.shipper-service {
    align-items: flex-start;
    flex-direction: column;
}

.cl-option-image {
    width: 30px;
    height: 16px;
    flex-shrink: 0;
}

.cl-option-image-shipment {
    width: 30px;
    flex-shrink: 0;
}

.cl-select-option:hover {
    background: #f2f2f2;
}

.cl-select-option.cl-active {
    background: #fdebee;
}

.cl-select.cl-open .cl-select-options {
    display: block;
}

span.cl-select-option-placeholder {
    color: #555;
}

span.cl-select-option-selected {
    color: #333;
}

.cl-label-hidden {
    border: 0px;
    clip: rect(0px, 0px, 0px, 0px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0px;
    position: absolute;
    width: 1px;
    white-space: nowrap;
    overflow-wrap: normal;
}

.cl-select[data-disabled] {
    cursor: not-allowed;
}

.cl-select-trigger[data-disabled] {
    background: #e8e8e8;
}

.cl-shipping-header {
    align-items: center;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
    padding: 6px 12px;
}

.cl-shipping-header:hover {
    background-color: #f2f2f2;
}

.cl-shpping-options-wrapper {
    border-radius: 8px;
    box-shadow: 0 4px 10px 2px #0000000d;
    margin-top: 8px;
    max-height: 400px;
    overflow: auto;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 100;
    display: block;
    border: 1px solid rgb(var(--NN200, 214, 223, 235));
    background-color: rgb(255, 255, 255);
}

.cl-shpping-options-wrapper ul {
    margin: 0;
    padding: 0;
}

.cl-shpping-options-wrapper li {
    align-items: center;
    border-bottom: 2px solid #e8e8e8;
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    padding: 10px 16px;
}

#shipper-wrapper {
    padding: 12px 10px;
}

h1.user-payment-heading {
    display: none;
}

span#user-payment-expiry-time {
    color: #bb2345;
}

#user-payment-method-wrapper {
    border-radius: 8px;
    color: #fff;
    padding: 24px 32px;
    background-color: #c5515c;
    border: 1px solid #e8e8e8;
    background-image: url("../img/bank_bg_mobile.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#user-payment-method-wrapper hr {
    color: #fff;
    border: 1px solid #fff;
}

#user-payment-number {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
}

#user-payment-channel {
    align-self: flex-start;
}

.payment-method-type-img {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    align-self: flex-start;
    object-fit: cover;
}

.payment-channel-img {
    width: 40px;
    flex-shrink: 0;
    object-fit: contain;
}

#user-payment-instructions ol li {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #a5a8aa;
    margin: 8px 0;
}

#user-payment-instructions .accordion-body {
    padding: 4px;
}

#user-payment-instructions .accordion-button {
    padding-top: 14px;
    padding-bottom: 14px;
    color: #58595b;
}

button#btn-user-payment-copy {
    font-size: 12px;
    line-height: 18px;
    color: #fff;
}

#user-address-container .alert.alert-danger {
    margin-bottom: 0;
    font-size: 14px;
}

@media (min-width: 768px) {
    .cl-card {
        border-radius: 8px;
        border: 1px solid #e8e8e8;
        padding: 24px;
        gap: 24px;
    }

    .cl-bottom-bar {
        border-radius: 8px;
        border: 1px solid #e8e8e8;
        padding: 24px 0;
    }

    #user-payment-method-wrapper {
        background-image: url("../img/bank_bg_desktop.svg");
    }

    h1.user-payment-heading {
        display: block;
        font-weight: 400;
        font-size: 32px;
        line-height: 40px;
        color: #231f20;
        margin-bottom: 24px;
    }

    #user-payment-number {
        font-size: 20px;
    }

    button#btn-user-payment-copy {
        font-size: 16px;
        line-height: 24px;
    }
}
