:root {
    --header-height: 50px;
    --nav-width: 64px;
    --first-color: #6A0DAD;
    /* #4723D9; */
    --first-color-light: #AFA5D9;
    --white-color: #F7F6FB;
    --body-font: 'Nunito', sans-serif;
    --normal-font-size: 14px;
    --z-fixed: 100
}

*,
::before,
::after {
    box-sizing: border-box
}

body {
    margin: 0 0 0 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: .5s
}

a {
    text-decoration: none
}

/* END Of HEADER + SIDEBAR */
.scrollbar {
    overflow-y: hidden;
    /* scrollbar-width: thin; */
}

.scrollbar:hover {
    overflow-y: scroll;
}

/* width */
.scrollbar::-webkit-scrollbar {
    width: 6px;
}

/* Track */
.scrollbar-left::-webkit-scrollbar-track {
    box-shadow: inset 0 0 10px grey;
    border-radius: 0px;
}

/* Handle */
.scrollbar-left::-webkit-scrollbar-thumb {
    background: lightskyblue;
    border-radius: 10px;
}

/* width */
::-webkit-scrollbar {
    width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 4px grey;
    border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: lightskyblue;
    border-radius: 4px;
}

/* END of SCROLLBAR */

img {
    pointer-events: none;
}

.fs09 {
    font-size: 9px;
}

.fs10 {
    font-size: 10px;
}

.fs11 {
    font-size: 11px;
}

.fs12 {
    font-size: 12px;
}

.fs13 {
    font-size: 13px;
}

.fs14 {
    font-size: 14px;
}

.bg-yellow {
    background-color: rgba(238, 188, 28, 0.9);
}

.bg-green {
    background-color: rgba(75, 192, 192, 0.9);
}

.bg-red {
    background-color: rgba(255, 99, 132, 0.9);
}

.bg-purple {
    background-color: rgba(153, 102, 255, 0.9);
}

.bg-blue {
    background-color: rgba(54, 162, 235, 0.9);
}

.bg-grey {
    background-color: rgba(155, 155, 155, 0.9);
}
