/*
    This file overrides color of .btn-primary from bootstrap default(007bff) to walmart blue(0071dc)
    To address a11y non-compliant color contrast issues (WDE-7445)
*/

.btn-primary {
    color: #fff;
    background-color: #0071dc;
    border-color: #0071dc;
}

.btn-primary:hover {
    color: #fff;
    background-color: #005eb8;
    border-color: #0056a9;
}

.btn-primary:focus,
.btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 113, 220, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: #0071dc;
    border-color: #0071dc;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0056a9;
    border-color: #004e99;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 113, 220, 0.5);
}
