/* * ===================================================================
         * Custom CSS Styles
         * ===================================================================
        */
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input {
    -moz-appearance: textfield;
    text-align: center;
    font-weight: 400;
}

.custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.payment-tab.active {
    border-color: #14B8A6;
    background-color: #F0FDFA;
}

/* Styles for the new frequency section */
.frequency-tab {
    transition: all 0.3s ease;
    cursor: pointer;
}

.frequency-tab.active {
    background-color: #0d9488;
    /* A darker teal for active state */
    color: white;
    border-color: #0d9488;
}

.frequency-tab.active .icon-container {
    filter: brightness(0) invert(1);
}


/* Progress Bar Styles */
.progress-step {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.progress-step .step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #E5E7EB;
    /* brand-border */
    color: #4B5563;
    /* brand-text-medium */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.progress-step .step-label {
    margin-top: 8px;
    font-weight: 600;
    color: #4B5563;
    /* brand-text-medium */
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background-color: #FFFFFF;
    border-color: #1F2937;
    /* brand-dark */
}

.progress-step.active .step-label {
    color: #1F2937;
    /* brand-dark */
}

.progress-step.completed .step-number {
    background-color: #14B8A6;
    /* brand-teal */
    border-color: #14B8A6;
    /* brand-teal */
    color: #FFFFFF;
}

.progress-bar-line {
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #E5E7EB;
    /* brand-border */
    z-index: 0;
}

.progress-bar-line-active {
    position: absolute;
    top: 18px;
    left: 0;
    height: 2px;
    background-color: #1F2937;
    /* brand-dark */
    z-index: 0;
    width: 0;
    transition: width 0.3s ease;
}



/* Campaign Details Two */
.campaign-details p {
    margin-bottom: 15px;
}

.campaign-details h1 {
    font-size: 34px;
    line-height: 48px;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.campaign-details h2 {
    font-size: 30px;
    line-height: 40px;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.campaign-details h3 {
    font-size: 28px;
    line-height: 36px;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.campaign-details h4 {
    font-size: 26px;
    line-height: 32px;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.campaign-details h5 {
    font-size: 22px;
    line-height: 30px;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.campaign-details h6 {
    font-size: 20px;
    line-height: 28px;
    color: #1A1A1A;
    margin-bottom: 15px;
}

@media screen and (max-width: 767px) {

    .campaign-details h1 {
        font-size: 28px;
        line-height: 40px;
        color: #1A1A1A;
        margin-bottom: 15px;
    }

    .campaign-details h2 {
        font-size: 24px;
        line-height: 32px;
        color: #1A1A1A;
        margin-bottom: 15px;
    }

    .campaign-details h3 {
        font-size: 22px;
        line-height: 30px;
        color: #1A1A1A;
        margin-bottom: 15px;
    }

    .campaign-details h4 {
        font-size: 26px;
        line-height: 34px;
        color: #1A1A1A;
        margin-bottom: 15px;
    }

    .campaign-details h5 {
        font-size: 22px;
        line-height: 30px;
        color: #1A1A1A;
        margin-bottom: 15px;
    }

    .campaign-details h6 {
        font-size: 18px;
        line-height: 24px;
        color: #1A1A1A;
        margin-bottom: 15px;
    }
}

/* Checkout Layout One*/
/* Checkout Form */
.bg-color-green {
    background-color: #01ad61;
}

.checkout-form-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 999;
    background: #FCFCFC;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;

}
.checkout-page-mobile-menu {
    margin-top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.checkout-form-wrapper.active {
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
}

.checkout-form-wrapper .checkout-form-inner {
    height: 100%;
    background-color: #fcfcfc;
}

.checkout-form-wrapper .checkout-preview-sidebar {
    overflow-y: scroll;
    padding-bottom: 70px;
}

.donar-info-wrapper {
    background-color: rgba(240, 240, 240, 0.30);
}

@media screen and (max-width: 991px) {
    .checkout-form-wrapper .checkout-preview-sidebar {
        overflow-y: inherit;
        padding-bottom: inherit;
    }

    .checkout-form-wrapper .checkout-form-inner {
        overflow-y: scroll;
    }
}

.checkout-form-wrapper .checkout-preview-sidebar .checkout-summary .summary-total-price {
    border-bottom: 0;
}

.progress-step-wrapper .progress-step {
    flex-direction: row;
}

.progress-step-wrapper .progress-step.active .icon {
    background-color: var(--color-blue);
    color: var(--color-white);
    border: none;
}

.progress-step-wrapper .progress-step.active span {
    text-decoration: underline;
}

#cart-preview-items-container .cart-item:last-child {
    border-bottom: none;
}

/* Select Field */
.custom-select-wrapper {
    position: relative;
    /*width: 250px;*/
    font-family: sans-serif;
}

.custom-select-wrapper .select-dropdown-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}

.custom-select-display {
    cursor: pointer;
}

.custom-select-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #E2E2E2;
    border-radius: 12px;
    margin-top: 4px;
    z-index: 100;
    padding: 12px;
}

.custom-select-options .frequency-tab {
    padding: 8px;
    cursor: pointer;
    border-radius: 8px;
    color: var(--color-black);
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-select-options .frequency-tab span {
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    font-size: 16px;
    color: var(--color-blue);
}

.custom-select-options .frequency-tab:hover {
    background: #f3f3f3;
}

.custom-select-options .frequency-tab.active {
    background: #E7F0FD;
}

.custom-select-options .frequency-tab.active span {
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
}

#quick-donate-form .selected-product {
    width: 200px;
}


.checkout-form-wrapper .iti--separate-dial-code .iti__selected-flag {
    background-color: transparent !important;
}

/* Checkout Layout 2 */
/*.checkout-cart-item .cart-qty-btn-one {*/
/*    display: block !important;*/
/*}*/
/*.checkout-cart-item .cart-qty-btn-two {*/
/*    display: none !important;*/
/*}*/
/*.cart-qty-btn-two {*/
/*    display: none !important;*/
/*}*/

/* Checkout Layout 3 */
.amount-btn.selected {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.donation-form-amount-btn.selected {
    border-color: #009a44 !important;
}

#quick-donate-form #singleBtn.active,
#quick-donate-form #monthlyBtn.active {
    background-color: #009a44 !important;
    color: #fff !important;
}

#donor-info-form .iti {
    width: 100%;
}

.progress-step-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    margin-left: -120px;
}

.checkout-form-inner .checkout-header {
    display: none;
}

@media screen and (max-width: 767px) {
    .checkout-form-wrapper .checkout-form-inner {
        padding-bottom: 50px;
    }
    .checkout-form-inner .checkout-header {
        display: flex;
    }

    .progress-step-wrapper {
        gap: 15px;
        margin-left: 0;
    }

    .watan-navbar .checkout-btn {
        display: none;
    }
}