


*, *:before, *:after {
    --theme-color: rgb(20, 71, 140);
}

a:not(.btn) {
    color: rgb(20, 71, 140) !important;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
}

a:not(.btn):hover {
    color: rgb(22, 78, 154) !important;
}

.btn.btn-primary {
    --bs-btn-color: rgb(255, 255, 255);
    --bs-btn-bg: rgb(20, 71, 140);
    --bs-btn-border-color: rgb(20, 71, 140);
    --bs-btn-hover-color: rgb(255, 255, 255);
    --bs-btn-hover-bg: rgb(22, 78, 154);
    --bs-btn-hover-border-color: rgb(18, 62, 123);
    --bs-btn-active-color: rgb(255, 255, 255);
    --bs-btn-active-bg: rgb(24, 85, 168);
    --bs-btn-active-border-color: rgb(19, 68, 134);
    --bs-btn-disabled-color: rgb(255, 255, 255);
    --bs-btn-disabled-bg: rgb(20, 71, 140);
    --bs-btn-disabled-border-color: rgb(16, 57, 112);
}

.btn.btn-outline-primary {
    --bs-btn-color: rgb(20, 71, 140);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: rgb(20, 71, 140);
    --bs-btn-hover-color: rgb(255, 255, 255);
    --bs-btn-hover-bg: rgb(22, 78, 154);
    --bs-btn-hover-border-color: rgb(18, 62, 123);
    --bs-btn-active-color: rgb(255, 255, 255);
    --bs-btn-active-bg: rgb(24, 85, 168);
    --bs-btn-active-border-color: rgb(19, 68, 134);
    --bs-btn-disabled-color: rgb(255, 255, 255);
    --bs-btn-disabled-bg: rgb(20, 71, 140);
    --bs-btn-disabled-border-color: rgb(16, 57, 112);
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus,
.form-control.focus {
    border-color: rgb(20, 71, 140);
    box-shadow: 0 0 0 0.25rem rgba(20, 71, 140, 0.25);
}