


*, *:before, *:after {
    --theme-color: rgb(210, 50, 104);
}

a:not(.btn) {
    color: rgb(210, 50, 104) !important;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
}

a:not(.btn):hover {
    color: rgb(186, 44, 92) !important;
}

.btn.btn-primary {
    --bs-btn-color: rgb(255, 255, 255);
    --bs-btn-bg: rgb(210, 50, 104);
    --bs-btn-border-color: rgb(210, 50, 104);
    --bs-btn-hover-color: rgb(255, 255, 255);
    --bs-btn-hover-bg: rgb(186, 44, 92);
    --bs-btn-hover-border-color: rgb(149, 35, 74);
    --bs-btn-active-color: rgb(255, 255, 255);
    --bs-btn-active-bg: rgb(163, 38, 80);
    --bs-btn-active-border-color: rgb(130, 30, 64);
    --bs-btn-disabled-color: rgb(255, 255, 255);
    --bs-btn-disabled-bg: rgb(210, 50, 104);
    --bs-btn-disabled-border-color: rgb(168, 40, 83);
}

.btn.btn-outline-primary {
    --bs-btn-color: rgb(210, 50, 104);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: rgb(210, 50, 104);
    --bs-btn-hover-color: rgb(255, 255, 255);
    --bs-btn-hover-bg: rgb(186, 44, 92);
    --bs-btn-hover-border-color: rgb(149, 35, 74);
    --bs-btn-active-color: rgb(255, 255, 255);
    --bs-btn-active-bg: rgb(163, 38, 80);
    --bs-btn-active-border-color: rgb(130, 30, 64);
    --bs-btn-disabled-color: rgb(255, 255, 255);
    --bs-btn-disabled-bg: rgb(210, 50, 104);
    --bs-btn-disabled-border-color: rgb(168, 40, 83);
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus,
.form-control.focus {
    border-color: rgb(210, 50, 104);
    box-shadow: 0 0 0 0.25rem rgba(210, 50, 104, 0.25);
}