:root {
    --primary-font: 'Roboto', sans-serif;
    --primary-bg: #E2E2E2;
    --primary-bg2: #F2F2F2;
    --color: #0076FF;
    --color2: #E20F00;
    --gray: #999999;
}

::placeholder {
    color: #999999 !important;
}

body {
    margin-bottom: 50px;
    background-color: #F6F9FF;
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    &::-webkit-scrollbar {
        display: none;
    }
}

a {
    text-decoration: none;
}

a:hover {
    opacity: 0.7;
}

.card {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0 10px rgba(1, 41, 112, 0.1);
}

input,
select,
textarea {
    border-radius: 5px !important;
    font-size: 14px !important;
    font-family: 'Comfortaa', sans-serif !important;
}

.font-comfortaa {
    font-family: 'Comfortaa', sans-serif !important;
}

.font-lulo {
    font-family: "Lulo Clean W01 One Bold" !important;
}

label {
    font-size: 14px !important;
    font-family: 'Comfortaa', sans-serif !important;
}

input[type="checkbox"] {
    font-size: 14px !important;
}

a {
    font-family: 'Comfortaa', sans-serif !important;
}

.pagination .active a {
    color: white !important;
}

.btn {
    font-family: "Lulo Clean W01 One Bold" !important;
    font-size: 12px;
}

button,
textarea,
select,
input:focus {
    box-shadow: inset 0 0px 0 transparent !important;
}

button,
textarea,
select,
input:focus-visible {
    border-color: #DEE2E6 !important;
}

.active a {
    color: gray !important;
}

.active a:hover {
    color: #0076FF !important;
}

.color-gray {
    color: var(--gray) !important;
}

.bg-secondary {
    background-color: var(--primary-bg) !important;
    font-family: "Lulo Clean W01 One Bold" !important;
}

.bg-secondary2 {
    background-color: var(--primary-bg2) !important;
}

.bg-primary {
    background-color: var(--color) !important;
}

.bg-danger {
    background-color: var(--color2) !important;
}

thead tr th {
    background-color: var(--primary-bg) !important;
    font-weight: 500;
}

.primary-btn {
    padding: 10px 30px;
    border-radius: 5px !important;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background-color: #0055cc;
}

/* INDIVIDUAL CLASSES */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 55px;

}

aside {
    margin: 0;
    padding: 0;
    width: 250px;
    position: fixed;
    height: 100%;
    overflow: auto;
    background-color: #fff;
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    &::-webkit-scrollbar {
        display: none;
    }
}

.sidebar {
    height: 100%;

}

.sidebar ul .header {
    font-weight: 500;
}

.sidebar ul li.header {
    padding: 15px 10px 15px 20px;
}

.sidebar ul li a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    padding: 15px 10px 15px 20px;
    display: block;
}

.sidebar ul li a:hover {
    color: var(--color);
}