/* =====================================================
   BUTTON FIXES - WHITE TEXT ON ORANGE BUTTONS
   Add this to the END of /assets/css/style.css
   ===================================================== */

/* PRIMARY BUTTONS - ORANGE WITH WHITE TEXT */
.btn-primary,
a.btn-primary,
button.btn-primary,
.btn.btn-primary,
a.btn.btn-primary,
button.btn.btn-primary {
    background-color: #F77F00 !important;
    border-color: #F77F00 !important;
    color: #FFFFFF !important;
}

.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover,
.btn.btn-primary:hover,
a.btn.btn-primary:hover,
button.btn.btn-primary:hover {
    background-color: #E56F00 !important;
    border-color: #E56F00 !important;
    color: #FFFFFF !important;
}

/* OUTLINE BUTTONS */
.btn-outline-primary,
a.btn-outline-primary,
button.btn-outline-primary {
    color: #F77F00 !important;
    border-color: #F77F00 !important;
    background-color: transparent !important;
}

.btn-outline-primary:hover,
a.btn-outline-primary:hover,
button.btn-outline-primary:hover {
    background-color: #F77F00 !important;
    border-color: #F77F00 !important;
    color: #FFFFFF !important;
}

/* FORCE WHITE TEXT ON ALL BUTTON CHILDREN */
.btn-primary *,
.btn-primary span,
.btn-primary i,
.btn-primary svg {
    color: #FFFFFF !important;
}

/* BUTTON SIZES */
.btn-primary.btn-sm,
.btn-primary.btn-lg {
    color: #FFFFFF !important;
}

.btn-primary.btn-sm:hover,
.btn-primary.btn-lg:hover {
    color: #FFFFFF !important;
}
