:root {
    --lighter-blue: #E9F6FD;
    --light-blue: #A2D9F7;
    --blue: #0C50BB;
    --orange: #EF7F1A;
    --peach: #FCD5A6;
    --grey: #5B5B5B;
    --dark-grey: #2B2A29;
}
.blue-text {
    color: var(--blue);
}
.orange-text {
    color: var(--orange);
}
body {
    color: var(--grey);
}
.division-switch {
    background-color: white;
    color: var(--blue);
}
.division-selected {
    background-color: var(--blue);
    color: white;
}
.logo,
.logo-alt {
    background-color: white;
    color: var(--grey);
}
.payment-switch {
    background-color: white;
    color: var(--blue);
}
.payment-selected {
    background-color: var(--blue);
    color: white;
}
.call-request-title {
    color: var(--orange);
}
.call-request-form {
    background-color: var(--peach);
}
.call-request-form button {
    background-color: var(--orange);
    color: white;
}
.bg-white {
    background-color: white !important;
}
.bg-light-blue {
    background-color: var(--light-blue) !important;
}
.bg-lighter-blue {
    background-color: var(--lighter-blue) !important;
}