


*, *:before, *:after {
    --theme-color: rgb(3, 3, 3);
}

a:not(.btn) {
    color: rgb(3, 3, 3) !important;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
}

a:not(.btn):hover {
    color: rgb(3, 3, 3) !important;
}

.btn.btn-primary {
    --bs-btn-color: rgb(255, 255, 255);
    --bs-btn-bg: rgb(3, 3, 3);
    --bs-btn-border-color: rgb(3, 3, 3);
    --bs-btn-hover-color: rgb(255, 255, 255);
    --bs-btn-hover-bg: rgb(3, 3, 3);
    --bs-btn-hover-border-color: rgb(2, 2, 2);
    --bs-btn-active-color: rgb(255, 255, 255);
    --bs-btn-active-bg: rgb(4, 4, 4);
    --bs-btn-active-border-color: rgb(3, 3, 3);
    --bs-btn-disabled-color: rgb(255, 255, 255);
    --bs-btn-disabled-bg: rgb(3, 3, 3);
    --bs-btn-disabled-border-color: rgb(2, 2, 2);
}

.btn.btn-outline-primary {
    --bs-btn-color: rgb(3, 3, 3);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: rgb(3, 3, 3);
    --bs-btn-hover-color: rgb(255, 255, 255);
    --bs-btn-hover-bg: rgb(3, 3, 3);
    --bs-btn-hover-border-color: rgb(2, 2, 2);
    --bs-btn-active-color: rgb(255, 255, 255);
    --bs-btn-active-bg: rgb(4, 4, 4);
    --bs-btn-active-border-color: rgb(3, 3, 3);
    --bs-btn-disabled-color: rgb(255, 255, 255);
    --bs-btn-disabled-bg: rgb(3, 3, 3);
    --bs-btn-disabled-border-color: rgb(2, 2, 2);
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus,
.form-control.focus {
    border-color: rgb(3, 3, 3);
    box-shadow: 0 0 0 0.25rem rgba(3, 0.25);
}