div {
    display: block;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    max-width: none;
    padding-left: 0px;
    padding-right: 0px;
    outline: none;
    margin-left: auto;
    margin-right: auto;
    min-height: calc(100vh - 380px);
    box-sizing: border-box;
    text-shadow: none;
    color: #333333;
    line-height: 1.5rem;
}

/* ---------- COLORS ---------- */
:root {
    --navs-light-grey: #D4D4D4;
    --navs-dark-grey: #6c757d;
    --navs-blue: #008c95;
    --navs-dark-blue: #005c62;
    --navs-light-orange: #eb976a;
    --navs-mid-light-orange: #e57a3f;
    --navs-mid-dark-orange: #cb6026;
    --navs-orange: #e26b2a;
    --navs-dark-orange: #cf5e1a;
    --navs-yellow: #d19f2a;
}


/* ---------- HEADER ---------- */

header {
    /*background-image: linear-gradient(rgba(0, 140, 149, 0.6), rgba(0, 214, 228, 0.6));*/
    background-color: var(--navs-blue);
}

.navs-logo {
    width: 256px;
}

.user-icon{
    font-size: 12px;
}

.button-text{
    font-size: 14px;
    font-weight: 600;
}

.basket-icon {
    font-size: 30px;
}

.basket-icon:hover {
    color: var(--navs-light-grey) !important;
}

.basket-badge {
    background-color: var(--navs-dark-blue);
}

.login-logout-btn {
    background-color: rgb(255, 255, 255);
    font-size: 1rem;
    border-radius: .25rem;
    font-weight: 500;
    color: var(--navs-blue);
    line-height: 35px;
    border: 0;
}

.person-login-icon {
    width: .8rem;
    height: .8rem;
    fill: var(--navs-blue);
}

.donations-navbar {
    height: 50px;
}

.nav-ul {
    height: 52px;
}

.nav-li {
    font-weight: 600;
}

.logout-text{
    font-size: 8px;
    font-weight: 600;
    line-height: 5px;
}

.logout-image{
    font-size: 30px;
}

.logout-image:hover {
    color: var(--navs-light-grey) !important;
}

.acct-dropdown {
    border: none;
    background-color: var(--navs-blue);
    width: auto;
    border: solid 1px;
    border-color: white;
    border-radius: 5px;
    margin-left: 5px;
    padding: 3px;
}

/* ---------- CONTENT ---------- */
.content-region {
    min-height: calc(100vh - 380px);
}

/* ---------- Tooltip ---------- */

.custom-popover {
    --bs-popover-border-color: #008c95;
    --bs-popover-bg: #008c95;
    --bs-popover-body-color: var(--bs-white);
    z-index: 106000;
}

.pending-icon {
    padding-left: 3px;
    color: #e16b2a;
}

    /* ---------- BUTTONS ---------- */
    .home-tab-highlight {
        color: var(--bs-white);
        background-color: transparent;
        border: solid 3px transparent;
        border-radius: 5px;
    }
        .home-tab-highlight:hover {
            color: var(--bs-white);
            background-color: var(--navs-blue);
            border: solid 3px transparent;
            border-radius: 5px;
        }

        .home-tab-highlight.active {
            color: var(--bs-white);
            background-color: var(--navs-blue);
            border: solid 3px var(--navs-blue);
            border-radius: 5px;
        }
    
    @media (min-width: 768px) {
        .home-tab-highlight {
            border-radius: 5px 5px 0px 0px;
        }
            .home-tab-highlight:hover {
                border-radius: 5px 5px 0px 0px;
            }

            .home-tab-highlight.active {
                color: var(--navs-blue);
                background-color: var(--bs-white);
                border-bottom: solid 3px var(--bs-white);
                border-radius: 5px 5px 0px 0px;
            }
    }

    .blue-text-btn {
        text-align: center;
        justify-content: center;
        transition: border .15s linear;
        position: relative;
        display: inline-flex;
        align-items: center;
        padding: 0 1rem;
        background: none;
        background-color: transparent;
        background-clip: border-box;
        border: solid 1px var(--navs-light-grey);
        border-radius: .25rem;
        line-height: 1.875rem;
        text-decoration: none;
        color: var(--navs-blue);
        white-space: normal;
        user-select: none;
    }
    
        .blue-text-btn:active {
            border-color: var(--navs-blue);
            color: var(--navs-dark-blue);
        }
        
        .blue-text-btn:focus {
            border-color: var(--navs-blue);
            color: var(--navs-dark-blue);
            box-shadow: 0 0 3px var(--navs-light-grey);
            outline: 0;
        }
        
        .blue-text-btn:hover {
            border-color: var(--navs-blue);
            color: var(--navs-dark-blue);
        }
    
    .button-color{
        background-color: var(--navs-blue);
        color: white;
    }
    
        .button-color:hover{
            background-color: var(--navs-dark-blue);
            color: white;
        }
    
    .button-disabled{
        background-color: #8e9c9c;
        color: white;
        border: 1px solid #8e9c9c;
        border-radius: 0.375rem;
        padding: 6px;
    }





    .checkout-amount-btn {
        background-color: var(--navs-orange);
        color: white;
        border: 1px solid var(--navs-orange);
        border-radius: 0.375rem;
        padding: 6px;
        cursor: pointer;
        opacity: .65;
    }

        .checkout-amount-btn:hover {
            background-color: var(--navs-orange);
            border: 1px solid var(--navs-orange);
            color: white;
            opacity: 1;
        }

.btn-check + .checkout-amount-btn:hover {
    background-color: var(--navs-orange);
    border: 1px solid var(--navs-orange);
    color: white;
    opacity: 1;
}

.btn-check:checked + .checkout-amount-btn {
    background-color: var(--navs-orange);
    border: 1px solid var(--navs-orange);
    color: white;
    opacity: 1;
}

/*.checkout-amount-btn {
    background-color: var(--navs-mid-light-orange);
    color: white;
    border: 1px solid var(--navs-mid-light-orange);
    border-radius: 0.375rem;
    padding: 6px;
    cursor: pointer;
}

    .checkout-amount-btn:hover {
        background-color: var(--navs-mid-dark-orange);
        border: 1px solid var(--navs-mid-dark-orange);
        color: white;
    }

.btn-check + .checkout-amount-btn:hover {
    background-color: var(--navs-mid-dark-orange);
    border: 1px solid var(--navs-mid-dark-orange);
    color: white;
}

.btn-check:checked + .checkout-amount-btn {
    background-color: var(--navs-mid-dark-orange);
    border: 1px solid var(--navs-mid-dark-orange);
      color: white;
        }

*/




    .clear-button {
        background-color: white; 
        border: white
    }
    
    .donate-action-btn{
        background-color: white;
        color: var(--navs-blue);
        border: 1px solid var(--navs-light-grey);
        border-radius: 0.375rem;
        padding: 6px;
    }
    
        .donate-action-btn:hover{
            background-color: var(--navs-blue);
            color: white;
            border: 1px solid var(--navs-blue);
            border-radius: 0.375rem;
            padding: 6px;
        }
    
        .donate-action-btn-disabled{
            background-color: white;
            color: var(--navs-light-grey);
            border: 1px solid var(--navs-light-grey);
            border-radius: 0.375rem;
            padding: 6px;
        }
    
    .increment-btn {
        background: #ffffff;
        border-radius: 0.25rem;
        border: 1px solid lightgray;
        width: 1.875rem;
        height: 1.875rem;
        color: rgb(116, 116, 116);
    }
    
        .increment-btn:active {
            color: var(--navs-dark-blue);
        }
        
        .increment-btn:focus {
            color: var(--navs-dark-blue);
            box-shadow: 0 0 3px var(--navs-light-grey);
            outline: 0;
        }
        
        .increment-btn:hover {
            color: var(--navs-dark-blue);
        }

    .orange-btn {
        background-color: var(--navs-orange);
        color: white;
        border: 1px solid var(--navs-orange);
        border-radius: 0.375rem;
        padding: 6px;
        cursor: pointer;
    }

        .orange-btn:hover {
            background-color: var(--navs-dark-orange);
            border: 1px solid var(--navs-dark-orange);
            color: white;
        }
        
        .btn-check+.orange-btn:hover {
            background-color: var(--navs-dark-orange);
            border: 1px solid var(--navs-dark-orange);
            color: white;
        }
        
        .btn-check:checked+.orange-btn {
            background-color: var(--navs-dark-grey);
            border: 1px solid var(--navs-dark-grey);
            color: white;
        }
        
    .pay-option-btn {
        background-color: white;
        color: var(--navs-blue);
        border: 1px solid var(--navs-light-grey);
        border-radius: 0.375rem;
        padding: 6px;
    }
        .pay-option-btn:hover {
            background-color: var(--navs-dark-grey);
            border: 1px solid var(--navs-dark-grey);
            color: white;
        }
        
        .btn-check+.pay-option-btn:hover {
            background-color: var(--navs-dark-grey);
            border: 1px solid var(--navs-dark-grey);
            color: white;
        }
        
        .btn-check:checked+.pay-option-btn {
            background-color: var(--navs-yellow);
            border: 1px solid var(--navs-yellow);
            color: white;
        }

    .redirect-btn {
        text-align: center;
        justify-content: center;
        transition: border .15s linear;
        position: relative;
        display: inline-flex;
        align-items: center;
        padding: 0 1rem;
        background: none;
        background-color: transparent;
        background-clip: border-box;
        border: solid 1px var(--navs-light-grey);
        border-radius: .25rem;
        line-height: 1.875rem;
        text-decoration: none;
        color: var(--navs-blue);
        white-space: normal;
        user-select: none;
    }
    
        .redirect-btn:active {
            background-color: rgb(243, 243, 243);
            color: var(--navs-dark-blue);
        }
        
        .redirect-btn:focus {
            background-color: rgba(0, 140, 149, 0.05);
            color: var(--navs-dark-blue);
            box-shadow: 0 0 3px var(--navs-light-grey);
            outline: 0;
        }
        
        .redirect-btn:hover {
            background-color: rgba(0, 140, 149, 0.05);
            color: var(--navs-dark-blue);
        }
        
    .standard-btn {
        padding: 0.25rem 2rem;
        background: var(--navs-blue);
        border: solid 1px var(--navs-blue);
        border-radius: 0.25rem;
        color: #FFFFFF;
        line-height: 1.875rem;
    }

        .standard-btn:active {
            background: var(--navs-dark-blue);
            color: #FFFFFF;
            border-color: var(--navs-dark-blue);
        }

        .standard-btn:hover {
            background: var(--navs-dark-blue);
            color: #FFFFFF;
            border-color: var(--navs-dark-blue);
        }

        .standard-btn:focus {
            background: var(--navs-dark-blue);
            color: #FFFFFF;
            border-color: var(--navs-dark-blue);
        }     

    .thumbnail-btn {
        width: 100px !important;
        height: 100px !important;
        opacity: .5;
        border: none;
    }

        .thumbnail-btn.active {
            opacity: 1;
        }

    .small-function-icon {
        background-color: white;
        height: 2rem;
        width: 2rem;
        text-align: center;
        line-height: 2rem !important;
        border-radius: 0.375rem;
        border: solid 1px var(--navs-light-grey);
    }

    .gift-form-group .btn:hover .clear-icon {
        color: #6c757d;
    }

    .nav-link {
        color: var(--navs-blue);
    }


    /* ---------- FORM ELEMENTS ---------- */

    .form-check-input:checked {
        background-color: var(--navs-blue);
        border-color: var(--navs-blue);
    }

    .gift-card-check-labels {
        font-size: .65rem;
    }

    .gift-form-header {
        background: var(--navs-blue);
        border: 1px solid #dee2e6;
        border-top: none;
        padding: 1rem 1rem .5rem 1rem;
        border-bottom: none;
        text-align: center;
        color: white;
    }

    .gift-form-subtitle {
        border: 1px solid #dee2e6;
        border-top: none;
        padding: 1rem 1rem .5rem 1rem;
        border-bottom: none;
        text-align: center;
    }

    .gift-form-group {
        padding-right: 2em;
        padding-left: 2em;
        padding-top: 1em;
        padding-bottom: 1em;
        border: 1px solid #dee2e6;
    }

    .gift-form-top {
        background: var(--navs-blue);
        border: 1px solid #dee2e6;
        border-bottom: none;
        padding: .5rem;
        text-align: center;
        border-top-left-radius: 0.375rem;
        border-top-right-radius: 0.375rem;
    }

    .gift-options {
        background: white;
        border-left: 1px solid #dee2e6;
        border-right: 1px solid #dee2e6;
        border-bottom: 1px solid #dee2e6;
        padding: 1rem 2rem;
    }

    .gift-option-tab {
        font-size: 1.1rem;
    }

    .label-text {
        font-size: 12px;
    }

    .disclaimer-text {
        font-size: 11px;
    }

    .receipt-text {
        font-size: 12px;
    }

    .value-text {
        font-size: 15px;
        font-weight: 600;
    }

    .radio-tab {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .required {
        color: red;
    }

    .inline-form-control {
        border: none;
        outline: none !important;
    }

    .inline-form-container:focus-within {
        color: #212529;
        background-color: #fff;
        border-color: #86b7fe;
        outline: 0;
        box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
    }

    .row-bordered {
        border-bottom: 2px solid #ccc;
        margin: 0 15px;
    }

    .freq-sub {
        font-size: 12px;
        text-indent: 20px;
        margin-bottom: 13px;
        line-height: 0.8;
    }

    /* ------ Search and Filters ------  */
    .search-box .search-icon {
        position: absolute;
        z-index: 2;
        display: block;
        width: 2.375rem;
        height: 2.375rem;
        line-height: 2.375rem;
        text-align: center;
        pointer-events: none;
        color: #aaa;
        font-size: .7rem;
    }

    .search-box .clear-search-btn {
        padding: 0;
        background: transparent;
        position: absolute;
        top: 50%;
        margin-top: -0.4375rem;
        line-height: 1;
        border: 0;
        z-index: 2;
        right: 1.5rem;
    }

        .search-box .clear-search-btn:active .clear-icon {
            color: #005c62;
        }

        .search-box .clear-search-btn:hover .clear-icon {
            color: #005c62;
        }

        .search-box .clear-search-btn:focus .clear-icon {
            color: #005c62;
        }

    .search-box .clear-icon {
        width: 0.875rem;
        height: 0.875rem;
        color: #696969;
    }

    .search-input {
        padding: 0.25rem 2rem;
        border: solid 1px #D4D4D4;
        border-radius: 0.25rem;
        line-height: 1.875rem;
    }

    #search-input {
        padding: 0.25rem 2rem;
        border: solid 1px #D4D4D4;
        border-radius: 0.25rem;
        line-height: 1.875rem;
    }

        #search-input:active {
            border-color: rgb(27, 150, 255);
            box-shadow: 0 0 3px #008c95;
        }

    #search-dropdown {
        max-height: 306px;
        overflow-y: auto;
    }

    .search-dropdown {
        max-height: 306px;
        overflow-y: auto;
    }

    .read-more {
        color: var(--navs-blue);
        text-decoration: none;
    }

        .read-more:hover {
            color: var(--navs-dark-orange);
        }

    .search-list-item:active {
        background-color: white;
        color: var(--navs-dark-grey);
    }

    .search-other-btn {
        color: var(--navs-blue);
        text-decoration: none;
        border: 1px solid var(--navs-light-grey);
        border-radius: 0.375rem;
        padding: 6px;
    }

        .search-other-btn:hover {
            color: var(--navs-dark-orange);
            border: 1px solid var(--navs-light-grey);
            border-radius: 0.375rem;
            padding: 6px;
        }

    /* ---------- ICONS ---------- */
    .amount-sign {
        position: absolute;
        z-index: 2;
        display: block;
        width: 1.3rem;
        line-height: 2.6rem;
        text-align: end;
        pointer-events: none;
        opacity: .75;
    }

.amount-sign-edit {
    position: absolute;
    z-index: 2;
    display: block;
    width: 1rem;
    line-height: 1;
    left: 0.75rem; /* Position from left edge of input */
    top: 50%;
    transform: translateY(-50%); /* Center vertically */
    pointer-events: none;
    opacity: .75;
}

    .card-header-icon {
        color: white;
        border-radius: 0.25rem;
        height: 1.75rem;
        width: 1.75rem;
        text-align: center;
        line-height: 1.75rem !important;
        font-size: .9rem;
    }

    .cc-icon {
        position: absolute;
        z-index: 2;
        display: block;
        width: 1rem;
        line-height: 1.8rem;
        text-align: end;
        pointer-events: none;
        opacity: .35;
    }

    .grey-icon {
        color: #808080;
    }

    .mini-function-icon {
        color: white;
        height: 1.5rem;
        width: 1.5rem;
        text-align: center;
        line-height: 1.5rem !important;
        border-radius: 0.375rem;
    }

    .security-icon {
        color: var(--navs-blue);
    }


    /* ---------- IMAGES ---------- */

    .carousel-thumbnails {
        position: relative;
        display: block;
        justify-content: start;
        margin: 0;
    }

        .carousel-thumbnails [data-bs-target] {
            text-indent: 0px;
            opacity: 1;
        }

    .photo-lg {
        max-height: 400px;
        max-width: 400px !important;
    }

    .photo-md {
        max-height: 200px;
        max-width: 200px !important;
    }

    .photo-sm {
        max-height: 100px;
        max-width: 100px !important;
    }

    .staff-photo {
        border-radius: 10px;
        width: 100%;
        height: auto;
        font-size: clamp(4rem, 10vw, 8rem);
        color: var(--navs-blue);
    }

    /* ---------- LINKS ---------- */

    .orange-text {
        color: var(--navs-orange);
        text-decoration: none;
    }

        .orange-text:hover {
            color: var(--navs-orange);
        }

    .blue-text {
        color: var(--navs-blue);
        text-decoration: none;
    }

        .blue-text:hover {
            color: var(--navs-blue);
        }

    .link-card {
        cursor: pointer;
    }

        .link-card:hover {
            transition: all 0.2s;
            background-color: rgb(245, 245, 245);
            box-shadow: #392f2c 0px 0px 3px !important;
        }

    .orange-link {
        color: #e16b2a;
        text-decoration: none;
    }

        .orange-link:hover {
            color: #e16b2a;
            text-decoration: underline;
        }

    /* ---------- Spinner ---------- */

    #spinner-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9999;
    }

    #spinner-overlay .spinner-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #spinner-overlay .spinner-border {
        width: 3rem;
        height: 3rem;
    }

    /* ---------- Misc ---------- */

    .info-section .card {
        height: 100%;
    }

    #bill-state:disabled {
        color: var(--navs-light-grey);
    }

    #fund_description {
        height: 150px;
        overflow: hidden;
    }

    .fund-badge {
        font-size: .7rem;
        background-color: rgb(243, 243, 243);
        color: rgb(51, 51, 51);
        padding: 8px;
    }


    /* ---------- FOOTER ---------- */

    footer {
        bottom: 0;
        background-color: #392f2c;
        color: #9b8474;
        font-size: 1rem;
        line-height: 1.5;
        padding: 60px;
    }

    @media (min-width: 768px) {
        .navs-logo {
            width: 256px;
        }
    }

    @media (max-width: 767px) {
        .navs-logo {
            width: 220px;
        }
    }

    @media (min-width: 305px) {
        .ecfa {
            width: 69px;
        }

        .icon-default-width {
            width: 25px;
        }

        .icon-fb-width {
            width: 14px;
        }

        .icon-youtube-width {
            width: 32px;
        }
    }

    @media (max-width: 304px) {
        .small-footer-text-size {
            font-size: .8rem;
        }

        .ecfa {
            width: 53px;
        }

        .icon-default-width {
            width: 17px;
        }

        .icon-fb-width {
            width: 10px;
        }

        .icon-youtube-width {
            width: 32px;
        }
    }
