.btn-custom-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
    font-size: var(--main-font-size);
}
.btn-custom-primary:focus,
.btn-custom-primary.focus {
    color: #fff;
    background-color: #286090;
    border-color: #122b40;
}
.btn-custom-primary:hover {
    color: #fff;
    background-color: #286090;
    border-color: #204d74;
}
.btn-custom-primary:active,
.btn-custom-primary.active,
.open > .dropdown-toggle.btn-custom-primary {
    color: #fff;
    background-color: #286090;
    background-image: none;
    border-color: #204d74;
}
.btn-custom-primary:active:hover,
.btn-custom-primary.active:hover,
.open > .dropdown-toggle.btn-custom-primary:hover,
.btn-custom-primary:active:focus,
.btn-custom-primary.active:focus,
.open > .dropdown-toggle.btn-custom-primary:focus,
.btn-custom-primary:active.focus,
.btn-custom-primary.active.focus,
.open > .dropdown-toggle.btn-custom-primary.focus {
    color: #fff;
    background-color: #204d74;
    border-color: #122b40;
}
.btn-custom-primary.disabled:hover,
.btn-custom-primary[disabled]:hover,
fieldset[disabled] .btn-custom-primary:hover,
.btn-custom-primary.disabled:focus,
.btn-custom-primary[disabled]:focus,
fieldset[disabled] .btn-custom-primary:focus,
.btn-custom-primary.disabled.focus,
.btn-custom-primary[disabled].focus,
fieldset[disabled] .btn-custom-primary.focus {
    background-color: #337ab7;
    border-color: #2e6da4;
}