:root {
    /* Cembra Brand Colors */
    --light-blue: #c0d0ff;
    --blue: #004d8c;
    --dark-blue: #00375f;
    --ch-blue: #0A84FF;
    --light-purple: #e5bee9;
    --purple: #895ebb;
    --dark-purple: #4d3771;
    --light-green: #baec9f;
    --green: #00801C;
    --dark-green: #134f4c;
    --light-red: #fbc6c1;
    --red: #ED6A6A;
    --dark-red: #6a0b08;
    --white: #fff;
    --main-bg: #edf4f6;
    --active-bg: #d3e0f1;
    --light-gray: #F6F6F6;
    --gray: #707070;
    --dark-gray: #2F2F2F;
    /* Semantic Colors (aliases for easier usage) */
    --color-primary: var(--blue);
    --color-primary-dark: var(--dark-blue);
    --color-success: var(--green);
    --color-success-light: var(--light-green);
    --color-danger: var(--red);
    --color-active: var(--active-bg);
    --color-main: var(--main-bg);
    --color-confirm-btn: var(--ch-blue);
    --color-destructive-btn: var(--white);
    --color-method-info-border: #CEF4DE;
    --color-validation-text: #E20707;
    /* Neutral Colors */
    --color-border: #d3e0f1;
    --color-border-gray: #dbdbdb;
    --color-gray-lighter: #f8f9fa;
    --color-disabled: #A4A4A4;
    --color-select-option-bg: #D3E0F1
}

@font-face {
    font-family: 'FiraSans';
    src: url('../fonts/FiraSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'FiraSans';
    src: url('../fonts/FiraSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
}

body {
    font-family: 'FiraSans', Trebuchet MS, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    color: var(--blue);
    background-color: #fff;
}

.container {
    max-width: 580px;
    min-width: 336px;
    margin: 1rem auto 1.5rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blockUI.blockMsg.blockElement {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.red {
    color: red;
}

.form-label {
    margin-bottom: 0;
}

.content {
    margin: 0 auto;
    max-width: 460px;
    text-align: center;
    padding: 40px 0 0 0;
}

.checkout-form__datepicker-wrapper {
    position: relative;
}

.checkout-form__datepicker-wrapper .date-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
}

/* Checkout Layout */
.checkout-layout {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: auto;
}

.checkout-header {
    width: 100%;
    background-color: var(--white);
}

.checkout-header__container {
    max-width: 580px;
    min-width: 336px;
    display: flex;
    margin: 0 auto;
    padding: 16px 0;
    flex-direction: column;
    gap: 1rem;
}

.checkout-header__logo {
    height: 40px;
    width: auto;
    display: block;
}

.checkout-content {
    background: var(--light-gray);
    flex-grow: 1;
    padding: 0;
    min-width: 336px;
}

@media (min-width: 375px) {
    .container{
        width: 336px;
    }

    .checkout-header {
        padding: 0;
        width: 336px;
        margin: 0 auto;
    }
}

@media (min-width: 390px) {
    .container {
        width: 100%;
    }

    .checkout-content {
        padding: 0 27px;
    }

    .checkout-header {
        padding: 0 27px;
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .container,
    .checkout-header__container {
        max-width: 780px;
    }

   .error__icon img {
       width: 1.5rem !important;
       height: 1.5rem !important;
   }

    .checkout-form__payment-info-wrapper,
    .checkout-form__payment-data-wrapper,
    .incorrect-link__content-wrapper,
    .error__content-wrapper,
    .decline__header-wrapper,
    .decline__content-wrapper {
        padding: 2rem !important;
    }

    .checkout-header__container {
        padding: 2rem 0;
    }

    .communication-channel__radio-box {
        padding: 1.5rem;
    }

    .buttons-area {
       max-width: 234px !important;
    }

    .checkout-form__btn {
        padding: 14px 26px !important;
    }

    .checkout-field,
    input[type="text"],
    .choices__inner,
    .payment-info__amount,
    .terms-and-conditions__label,
    .terms-and-conditions__label a,
    .checkout-form__btn,
    .payment-info__total-amount,
    .secure-payment__footer-content,
    .incorrect-link__content-wrapper p,
    .error__content-wrapper p,
    .decline__header-wrapper p,
    .decline__error-box,
    .error-wrapper p,
    .rejection-reason_request {
        font-size: 18px !important;
    }

    .payment-info__bottom-section,
    .payment-method-info p,
    .communication-channel__radio-box-label span:nth-child(2),
    .payment-info__amount--secondary,
    .numInputWrapper input,
    .flatpickr-current-month .choices__inner,
    .flatpickr-rContainer span {
        font-size: 16px !important;
    }

    .checkout__session-id {
        font-size: 14px !important;
    }
}

.checkout-footer {
    padding-top: 2rem;
    background-color: var(--light-gray);
}

.checkout-footer__container {
    background-color: var(--color-main);
    border-top: 1px solid var(--light-blue);
    padding: 32px 27px;
    text-align: center;
}

.checkout-footer__container p {
    margin: 0;
    font-size: 1rem;
}


/* Checkout Form view */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkout-form__payment-info-wrapper {
    width: 100%;
    background: var(--white);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    align-self: stretch;
    border-radius: 1rem;
}

.checkout-form__payment-info-wrapper p {
    margin: 0;
}

.payment-info__amount {
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    justify-content: space-between;
    font-size: 16px;
    color: var(--dark-gray);
}

.payment-info__total-amount {
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    justify-content: space-between;
    font-size: 16px;
    color: var(--dark-gray);
}

.payment-info__amount .currency {
    color: var(--gray)
}

.payment-info__amount .amount {
    font-weight: 600;
}

.payment-info__total-amount .currency {
    color: var(--gray);
}

.payment-info__total-amount .amount {
    font-weight: 600;
}

.payment-info__amount--secondary {
    font-size: 14px;
    color: var(--gray);
}

.payment-info__amount--secondary .amount {
    font-weight: 400;
}

.payment-info__bottom-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.payment-info__field-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.payment-info__field-wrapper img {
    width: 16px;
    height: 16px;
    aspect-ratio: 1/1;
}

.payment-info__field-wrapper p {
    color: var(--gray);
    text-wrap: wrap;
}

.checkout-form__payment-data-wrapper {
    width: 100%;
    background: var(--white);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    align-self: stretch;
    border-radius: 1rem;
}

.checkout-fields {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkout-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
}

.checkout-field__label {
    color: var(--dark-gray);
}

.checkout-field__label .form-label {
    margin-bottom: 0;

}

.checkout-field__label .required-indicator {
    margin-left: 0.25rem;
}

.checkout-field__value {
    width: 100%;
    color: var(--gray);
}

.checkout-field--extra {
    margin-top: -0.5rem;
    font-size: 0.875rem;
}

.payment-method-info {
    display: none;
    width: 100%;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    border-radius: 0.5rem;
    border: 2px solid var(--color-method-info-border);
    color: var(--green);
    margin-top: 0.25rem;
}
.payment-method-info__field {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.payment-method-info__field p,
.cembra-invoice__installment-wrapper p {
    margin: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.cembra-invoice__installment-wrapper #cp-invoice__subtext {
   margin-left: 1.5rem;
   margin-top: 0.5rem;
   color: var(--gray);
}

.payment-method-info__field .chevron-down {
    background-image: url(../images/Payment__Chevrondown.svg)
}

.chevron-toggle {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.chevron-toggle img {
    transition: transform 0.5s ease;
}

.chevron-toggle.chevron-up img {
    transform: rotate(180deg);
}

.checkout-form__btn {
    box-sizing: border-box;
    text-wrap: nowrap;
    width: 100%;
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
    font-weight: 600;
    line-height: 1.5rem;
    font-size: 1rem;
    border: 1px solid transparent;
    text-decoration: none;
}
.checkout-form__btn:hover {
    cursor: pointer
}

.checkout-form__btn-confirm, 
.checkout-form__btn--back-to-shop {
    background: var(--color-confirm-btn);
    color: var(--white);
}

.checkout-form__btn-confirm[disabled] {
    background: var(--color-border-gray);
    color: var( --color-disabled);
    cursor: not-allowed;
}

.checkout-form__btn-reject {
    background: var(--color-destructive-btn);
    color: var(--ch-blue);
}

.secure-payment__footer-content {
    color: var(--green);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5rem;
    letter-spacing: -0.64px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.secure-payment__footer-content p,
.secure-payment__footer-content svg{
   margin: 0 auto;
}

.secure-payment__footer-content img {
    display: flex;
    width: 108px;
    height: 20px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    aspect-ratio: 27/5;
    flex: 1 0 0;
    margin: 0 auto;
}

.terms-and-conditions__wrapper {
    display: flex;
    align-content: end;
    gap: 0.5rem;
}

.terms-and-conditions__label-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.terms-and-conditions__label {
    color: var(--gray);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
}

.terms-and-conditions__label a {
    color: var(--gray);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.communication-channel__radio-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--color-border);
    border-radius: 0.5rem;
    padding: 1rem;
    width: 100%;
    cursor: pointer;
    min-height: 3.5rem;
}

.communication-channel__radio-box input {
    display: none;
}

.communication-channel__radio-box-icon {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.communication-channel__radio-box input:checked + .communication-channel__radio-box-icon {
    border-color: var(--ch-blue);
}

.communication-channel__radio-box-icon::after {
    content: "";
    width: 10.5px;
    height: 10.5px;
    background: var(--ch-blue);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.2s;
}

.communication-channel__radio-box input:checked + .communication-channel__radio-box-icon::after {
    transform: translate(-50%, -50%) scale(1);
}

.communication-channel__radio-box-label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: var(--gray)
}

.communication-channel__radio-box-label span:first-child {
    color: var(--dark-gray);
    line-height: 24px;
    max-height: 20px;
    align-self: stretch;
}

.communication-channel__radio-box-label span:nth-child(2) {
    font-size: 14px;
    line-height: 16px; 
}


.checkout-field__value:has(.communication-channel__radio-box) {
    display: flex;
    gap: 1rem;
}

.communication-channel__radio-box input[type="radio"] {
    margin: 0;
}

.communication-channel__radio-box--disabled {
    border-color: var(--gray);
    background-color: var(--color-border-gray);
    cursor: not-allowed;
}

.communication-channel__radio-box--disabled .communication-channel__radio-box-label span {
    color: var(--gray);
}

.communication-channel__radio-box--disabled input:checked + .communication-channel__radio-box-icon {
    border-color: var(--gray);
}

.communication-channel__radio-box--disabled input + .communication-channel__radio-box-icon {
    border-color: var(--gray);
}

.communication-channel__radio-box--disabled .communication-channel__radio-box-icon::after {
    background: var(--gray);
}

.checkout-select-field {
    border: 2px solid var(--color-border);
    border-radius: 0.5rem;
    width: 100%;
    height: 3.5rem;
    outline: none;
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-family: 'FiraSans', Trebuchet MS, sans-serif;
}

.checkout-select-field:focus {
    border: 2px solid var(--ch-blue);
}

.checkout__session-id-wrapper {
    display: flex;
    padding: 4px 27px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}

.checkout__session-id {
    margin: 0 auto;
    color: var(--gray);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

/*Decline View*/
.decline__header-wrapper {
    background: var(--white);
    border-radius: 1rem;
    padding: 16px 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.decline__header-wrapper p {
    color: var(--red);
    margin: 0 auto;
    line-height: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
}

.decline__content-wrapper {
    background: var(--white);
    border-radius: 1rem;
    padding: 1rem;
    color: var(--dark-gray)
}

.decline__error-box,
.decline__error-box ul {
    display:flex;
    flex-direction: column;
    gap: 1rem;
}

.decline__error-box ul {
    margin: 0;
    padding-inline-start: 1.5rem;
}

.decline__error-box {
    text-align: left;
}

.rejection-reason_request {
    margin: 0;
}

.rejection-reason_request a {
    font-size: inherit;
}

/* Error views */
.incorrect-link__content-wrapper,
.error__content-wrapper,
.loader__wrapper {
    background: var(--white);
    border-radius: 1rem;
    padding: 1rem;
}

.incorrect-link__content-wrapper p,
.error__content-wrapper p {
    text-align: center;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--red);
}

/* Shared */
.hidden {
    display: none;
}

.error__icon {
    background: var(--light-gray);
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.error__icon img {
    width: 1.25rem;
    height: 1.25rem;
}

.back-to-shop__btn-wrapper {
    width: 100%;
    background: var(--white);
    border-radius: 1rem;
}

a {
    font-family: 'FiraSans', Trebuchet MS, sans-serif;
    color: #004d8c;
    font-size: 14px;
}

input[type="text"] {
    border: 2px solid var(--color-border);
    border-radius: 0.5rem;
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--dark-gray);
    width: 100%;
    outline: none;
}

input[type="text"]:focus {
    border: 2px solid var(--ch-blue);
}

input::placeholder {
    color: var(--gray)
}

.content-body {
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    padding: 15px;
}

.field-validation-error {
    margin-top: 0.25rem;
    display: block !important;
    color: var(--color-validation-text);
    word-wrap: normal;
    white-space: normal;
    font-size: 14px;
}

.client-side-validation-error {
    margin-top: 0.25rem;
    color: var(--color-validation-text);
    word-wrap: normal;
    white-space: normal;
    font-size: 14px;
}

.field-validation-error.server-error--dismissed {
    display: none !important;
}

.field-validation-valid {
    display: none;
}

[data-val-required-js] {
    display: none;
}

.js-enabled [data-val-required-js].field-validation-error {
    display: block !important;
}

.validation-summary-errors {
    text-align: left;
    color: red;
}

.alert {
    padding: 8px 35px 8px 14px;
    margin: 5px 0 0 0;
    color: #c09853;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    background-color: #fcf8e3;
    border: 1px solid #fbeed5;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.alert-heading {
    color: inherit;
}

.alert .close {
    position: relative;
    top: -2px;
    right: -21px;
    line-height: 18px;
}

.alert-danger,
.alert-error {
    color: #b94a48;
    background-color: #f2dede;
    border-color: #eed3d7;
    width: 96%;
    padding: 10px 0 10px 10px;
}


.table-label {
    font-family: 'FiraSans', Trebuchet MS, sans-serif;
    color: #004d8c;
    font-size: 14px;
    font-weight: bold;
    vertical-align: top;
}

.text-box {
    font-family: 'FiraSans', Trebuchet MS, sans-serif;
    color: #004d8c;
    font-size: 14px;
}

.input-validation-error {
    border: 2px solid var(--red) !important;
}

.checkbox-icon--error {
    border-color: var(--red) !important;
}

.table-value {
    font-family: 'FiraSans', Trebuchet MS, sans-serif;
    color: #004d8c;
    font-size: 14px;
    padding: 0 0 0 15px !important;
}

.top-confirm-text {
    font-size: 14px;
}

.buttons-area {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.gradient {
    height: 3px;
    background: rgb(245, 246, 246);
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y1ZjZmNiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjIxJSIgc3RvcC1jb2xvcj0iI2RiZ GNlMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ5JSIgc3RvcC1jb2xvcj0iI2I4YmFjNiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjgwJSIgc3RvcC1jb2xvcj0i2RkZGZlMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNWY2ZjYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(left, rgba(245, 246, 246, 1) 0%, rgba(219, 220, 226, 1) 21%, rgba(184, 186, 198, 1) 49%, rgba(221, 223, 227, 1) 80%, rgba(245, 246, 246, 1) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(245, 246, 246, 1)), color-stop(21%, rgba(219, 220, 226, 1)), color-stop(49%, rgba(184, 186, 198, 1)), color-stop(80%, rgba(221, 223, 227, 1)), color-stop(100%, rgba(245, 246, 246, 1)));
    background: -webkit-linear-gradient(left, rgba(245, 246, 246, 1) 0%, rgba(219, 220, 226, 1) 21%, rgba(184, 186, 198, 1) 49%, rgba(221, 223, 227, 1) 80%, rgba(245, 246, 246, 1) 100%);
    background: -o-linear-gradient(left, rgba(245, 246, 246, 1) 0%, rgba(219, 220, 226, 1) 21%, rgba(184, 186, 198, 1) 49%, rgba(221, 223, 227, 1) 80%, rgba(245, 246, 246, 1) 100%);
    background: -ms-linear-gradient(left, rgba(245, 246, 246, 1) 0%, rgba(219, 220, 226, 1) 21%, rgba(184, 186, 198, 1) 49%, rgba(221, 223, 227, 1) 80%, rgba(245, 246, 246, 1) 100%);
    background: linear-gradient(to right, rgba(245, 246, 246, 1) 0%, rgba(219, 220, 226, 1) 21%, rgba(184, 186, 198, 1) 49%, rgba(221, 223, 227, 1) 80%, rgba(245, 246, 246, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f6f6', endColorstr='#f5f6f6', GradientType=1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

.modal {
    position: absolute;
    left: 50%;
    top: 10%;
    width: 400px;
    height: 400px;
    margin-left: -200px;
    background-color: #FFFFFF;
    z-index: 10;
    outline: 9999px solid rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.tos-text {
    margin: 10px;
    width: 380px;
    text-align: left;
    height: 330px;
    overflow-y: scroll;
}

#lngChooserPanel {
    text-align: right;
    border-bottom: 1px #baec9f;
}

#lngChooserPanel a {
    color: #baec9f;
    font-weight: bold;
}

h3.overlayText {
    color: #fff;
    font-family: 'FiraSans', Trebuchet MS, sans-serif;
    font-size: 14px;
}

@media (max-width: 600px) {
    .content {
        margin: 0 auto;
        max-width: 460px;
        text-align: center;
        padding: 20px 0 0 0;
    }
}

@media only screen and (min-width: 800px) {
    .table-value,
    .table-label {
        white-space: nowrap;
    }
}

@media (min-width: 768px) {
    .buttons-area {
        max-width: 188px;
        width: 100%;
        margin: 0 auto;
    }
}

/* Custom Checkbox Styles */
.custom-checkbox {
    display: inline-flex;
    cursor: pointer;
    user-select: none;
    align-items: start;
    position: relative;
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 20px;
    height: 20px;
    margin: 0;
    z-index: 1;
}

input[type="checkbox"] {
    border: 2px solid var(--color-border) !important
}

.checkbox-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    background-color: white;
    transition: all 0.2s ease;
    position: relative;
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-icon {
    background-color: var(--green);
    border-color: var(--green);
    background-image: url('/images/Checkbox_Icon.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.custom-checkbox input[type="checkbox"]:disabled + .checkbox-icon {
    opacity: 0.5;
    cursor: not-allowed;
}

input[type='checkbox'] {
    margin: 0;
    height: 1.5rem;
    width: 1.5rem;
}

/* Loader */
.loader__wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.container.checkout-loading > *:not(.loader-overlay) {
    display: none;
}

.loader-overlay {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.loader-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.loader-content__title {
    color: var(--ch-blue);
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    margin: 0;
}

.loader-content__subtitle {
    color: var(--gray);
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

.loader {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    position: relative;
    margin: auto;
    background: conic-gradient( from 0deg, rgba(10, 132, 255, 0) 0deg, rgba(10, 132, 255, 0.1) 45deg, rgba(10, 132, 255, 0.3) 90deg, rgba(10, 132, 255, 0.6) 150deg, #0A84FF 360deg );
    animation: spin 1s linear infinite;
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 16px), white calc(100% - 16px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 12px), white calc(100% - 12px));
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Buttons min css */
.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-family: 'FiraSans', Trebuchet MS, sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: pre-wrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    *touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 20px;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.btn:hover,
.btn:focus,
.btn.focus {
    color: #004d8c;
    text-decoration: none;
}

.btn:active,
.btn.active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
}

a.btn {
    text-decoration: none;
}

a.btn.disabled,
fieldset[disabled] a.btn {
    pointer-events: none;
}

.btn-default {
    color: #004d8c;
    background-color: #ffffff;
    border-color: #004d8c;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
    color: #004d8c;
    background-color: #e6e6e6;
    border-color: #004d8c;
}

.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
    background-image: none;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
    background-color: #64b439;
    border-color: #004d8c;
}

.btn-default .badge {
    color: #64b439;
    background-color: #ffffff;
}

.btn-confirm {
    color: #004d8c;
    background-color: #baec9f;
    border-color: #004d8c;
}

.btn-confirm:focus,
.btn-confirm.focus {
    color: #004d8c;
    background-color: #e6e6e6;
    border-color: #004d8c;
}

.btn-confirm:hover {
    color: #004d8c;
    background-color: #e6e6e6;
    border-color: #004d8c;
}

.btn-confirm:active,
.btn-confirm.active,
.open > .dropdown-toggle.btn-confirm {
    color: #004d8c;
    background-color: #e6e6e6;
    border-color: #004d8c;
    background-image: none;
}

.btn-confirm:active:hover,
.btn-confirm.active:hover,
.open > .dropdown-toggle.btn-confirm:hover,
.btn-confirm:active:focus,
.btn-confirm.active:focus,
.open > .dropdown-toggle.btn-confirm:focus,
.btn-confirm:active.focus,
.btn-confirm.active.focus,
.open > .dropdown-toggle.btn-confirm.focus {
    color: #004d8c;
    background-color: #d4d4d4;
    border-color: #004d8c;
}

.btn-confirm.disabled,
.btn-confirm[disabled],
fieldset[disabled] .btn-confirm,
.btn-confirm.disabled:hover,
.btn-confirm[disabled]:hover,
fieldset[disabled] .btn-confirm:hover,
.btn-confirm.disabled:focus,
.btn-confirm[disabled]:focus,
fieldset[disabled] .btn-confirm:focus,
.btn-confirm.disabled.focus,
btn-confirm[disabled].focus,
fieldset[disabled] .btn-confirm.focus,
.btn-confirm.disabled:active,
.btn-confirm[disabled]:active,
fieldset[disabled] .btn-confirm:active,
.btn-confirm.disabled.active,
.btn-confirm[disabled].active,
fieldset[disabled] .btn-confirm.active {
    background-color: #fff;
    border-color: #004d8c;
}

.btn-confirm .badge {
    color: #004d8c;
}
