:root {
    --bs-primary: #ff00ff;
}
@font-face {
    font-family: "Ubuntu";
    src: url("../fonts/Ubuntu-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Ubuntu";
    src: url("../fonts/Ubuntu-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Ubuntu";
    src: url("../fonts/Ubuntu-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}

body {
    font-family: "Ubuntu", sans-serif;
}

.text-primary {
    color: var(--bs-primary) !important;
}


.btn-primary {
    background-color: var(--bs-primary);
    border-color:  var(--bs-primary);
}

.table-dark {
    background-color: var(--bs-primary);
    color: white;
}

.table-dark th {
    background-color: var(--bs-primary);
    color: white;
}

.roze-tabel {
    --bs-table-striped-bg: #ffe6ec;
}

.client-nav {
    padding: .75rem 0;
    background-color: white;
}

@media (max-width: 767.98px) {
    .client-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: #ffe6ec;
        border-top: 1px solid var(--bs-primary);
    }

    body {
        padding-bottom: 80px;
    }
}


.client-nav .nav-link {
    color: #6c757d;
    padding: .8rem 1.2rem;
    font-size: 1.4rem;
    transition: .2s;
}

.client-nav .nav-link:hover {
    color: var(--bs-primary);
}

.client-nav .nav-link.active {
    color: var(--bs-primary);
    border-bottom: 3px solid var(--bs-primary);
}

.progress-table th:first-child,
.progress-table td:first-child {
    position: sticky;
    left: 0;
    background: white;
    z-index: 1;
}
a {
    color: black
}