/**
 * Button Theme Overrides
 * Override Bootstrap's default blue button styles with the site's red theme
 */

/* Override Bootstrap primary button with red theme */
.btn-primary {
    background: linear-gradient(135deg, #e52d27, #b31217) !important;
    border-color: #b31217 !important;
}

.btn-primary:hover, 
.btn-primary:focus {
    background: linear-gradient(135deg, #b31217, #e52d27) !important;
    border-color: #e52d27 !important;
}

.btn-primary:active,
.btn-primary:active:focus {
    background: #b31217 !important;
    border-color: #b31217 !important;
}

.btn-outline-primary {
    color: #e52d27 !important;
    border-color: #e52d27 !important;
}

.btn-outline-primary:hover {
    color: #fff !important;
    background-color: #e52d27 !important;
}
