.bg-gold {
    background-color: var(--gold);
}
.text-gold {
    color: var(--gold);
}
.table thead td {
    vertical-align: bottom;
}
/* user type radio buttons */
:is(.payment_type, .user_type) .btn-group .btn {
    border: 1px solid var(--border-color);
    color: var(--text-color);
    white-space: nowrap;
}
:is(.payment_type, .user_type) .btn-group .btn.active {
    border: 0;
    background: var(--gold);
    color: #fff;
}
:is(.payment_type, .user_type) .btn-group :is(.btn.focus, .btn:focus) {
    box-shadow: unset;
}
:is(.payment_type, .user_type) .btn-group .btn.is-disabled {
    background-color: #e9ecef;
    border-color: var(--border-color);
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.65;
}
.table tbody tr:last-child td {
    border-bottom: 1px solid #dee2e6;
}

/* bottom bar css */
.bottomMemberBar {
    justify-content: center;
    align-items: center;
    background: #fff;
    height: 60px;
    display: flex;
    position: fixed;
}

.move_words_left {
    position: relative;
    left: -75px;
}

.banquest_logo_hgt {
    height: 25px;
}

/* this stops text from wrapping, used on bottom row of the donation campaign, it was wrapping with a blank space between words */
.text_no_wrap {
    white-space: nowrap;
}

/* end bottom bar css */

.pledges-summary-table {
    table-layout: fixed;
    thead th {
        background-color: #f5f6f7;
    }
    tbody tr {
        border-bottom: 1px solid #e2e5e8;
    }
    th, td {
        position: relative;
        padding: .5rem 1.2rem;
    }
    :is(thead, tbody) :is(th, td):not(:last-child):after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        width: 2px;
        height: 60%;
        background: #999;
        transform: translateY(-50%);
    }
    th:after {
        background: #cacaca !important;
    }
    .payment-surcharge {
        font-size: 1rem;
        padding-bottom: 0;
        text-align: right;
    }
    .payment-total {
        border: 0;
        font-size: 1.3rem;
        font-weight: bold;
        text-align: right;
    }

}
.payment-schedule {
    h4 {
        font-weight: bold;
    }
}
.pointer-events-none {
    pointer-events: none;
}


:root {
    --gold: #9F843B;
    --border-color: #ced4da;
    --text-color: #495057;
}


