html{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    line-height: 1.5;
    font-size: 11px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

html *{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    line-height: 1.5;
}

#nav-bar-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 60px;
    padding: 0 20px;
    color: #fff;
}

#nav-bar-header-left {
    margin-right: 10px;
    z-index: 40;
}

.fa-bars {
    font-size: 20px;
    color: #fff;
}

#home-side-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.3s;
    z-index: 999;
    color: #fff;
}

#home-side-bar-top {
    padding: 20px;
}

#page-links {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.link {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.link i {
    margin-right: 10px;
}

.link a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

#home-side-bar-bottom {
    padding: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

#logout-btn {
    background-color: orange;
    color: #fff;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
}

#logout-btn:hover {
    background-color: darkorange;
}

#logout-btn:hover,
#logout-btn:focus,
#logout-btn:active {
    color: #fff;
}

@media screen and (max-width: 768px) {
    #nav-bar-header {
        justify-content: center;
    }
}

#tabs {
    width: 100%;
    height: 9vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
}

li {
    font-size: 20px;
    list-style-type: none;
    padding: 10px 20px;
    background-color: #222;
    color: #fff;
    border-bottom: 2px solid #444;
    cursor: pointer;
}

li.tab.active {
    background-color: #333;
    border-bottom-color: #fff;
}

li.active {
    background-color: #333;
    border-bottom-color: #fff;
}

li:hover {
    background-color: #333;
}

/* main {
    position: absolute;
    left: 0;
    width: 100vw;
    height: 71vh;
} */

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}