#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background: #fff;
}

#sidebar.active {
    margin-left: -250px;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #fff;
}

#sidebar .sidebar-header .companyTitle {
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 7px;
}

#sidebar ul.components {
    padding: 1rem;
    font-size: 1.2rem;
}

#sidebar ul p {
    padding: 10px;
}

#sidebar ul li {
    border-radius: 8px;
    font-weight: bold;
    color: #000;
    font-size: 1rem;
}

#sidebar ul li:hover {
    background: #ffc107;
}

#sidebar ul li a {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    white-space: nowrap;
    padding: 1rem 1.5rem;
    cursor: pointer;
    white-space: normal;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    background: #ffc107;
    border-radius: 8px;
}

#sidebar a[aria-expanded="true"].dropdown-toggle::after {
    font-family: "Font Awesome 5 Free";
    content: "\f107"!important;
    transition: 1s;
}

a[data-toggle="collapse"] {
    position: relative;
    color: #000;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.list-unstyled.collapse.show {
    background-color: #ffc107;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.dropdown-toggle::after {
    border: none!important;
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    display: inline-block;
    padding-right: 3px;
    vertical-align: 0;
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 13px;
}

ul ul a {
    font-size: 0.9em !important;
}

#content {
    width: calc(100% - 250px);
    display: block;
    margin-left: auto;
}

#content.active {
    width: 100%;
}

@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #content {
        width: 100%;
    }
    #content.active {
        width: calc(100% - 250px);
    }
    #sidebarCollapse span {
        display: none;
    }
}

.navbar {
    height: 5rem;
    padding: 0 0.9375 rem;
    background: #fff;
    transition: all .2s ease;
}

.navbar .sidebarCollapseSpan {
    font-size: 1.5rem;
}

.mCSB_inside>.mCSB_container {
    margin-right: 5px !important;
}