body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
    display: flex;
    height: 100vh;
    width: 100vw;
}

#sidebar {
    flex: 0 0 auto;
}

#content {
    flex: 1 1 auto;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    outline: none;
    transition: all 0.3s;
}

/* Collapsible */

.collapse-item {
    width: max-content;
}

.collapse-item:not(.expanded) .show-expanded,
.collapse-item.expanded .show-collapsed {
    display: none !important;
}

.collapse-item-toggle {
    outline: none;
    border: none;
    cursor: pointer;
}

/* Sidebar */

#sidebar {
    display: flex;
    flex-direction: column;
    max-width: 350px;
    background: white;
    color: #6E6E6E;
	border-right: #D7D7D7 1px dotted;
    transition: all 0.7s;
}

#sidebar .sidebar-header {
    flex: 1 1 auto;
}

#sidebar .sidebar-header img.show-expanded {
    width: 100%;
    padding: 20px;
}

#sidebar .sidebar-header img.show-collapsed {
    width: 60px;
    padding: 8px;
}

#sidebar p {
    margin: 0;
    padding: 10px;
    display: block;
    width: 100%;
}

#sidebar ul.components {
    flex: 1 1 100%;
    overflow-y: auto;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

#sidebar ul.components::-webkit-scrollbar {
    display: none;
}


ul.components li a {
    padding: 10px;
    padding-right: 16px;
    font-size: 1em;
    display: block;
    background: white;
}

ul.components li a:hover {
    background: #f2f2f2;
}

ul.components li a.active-content {
    background: #e6e6e6;
}

ul.components li a[data-toggle="collapse"] {
    position: relative;
}

ul.components li a:not(:last-child)::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
    font-size: 18px;
}

ul.components ul li a {
    font-size: 0.8em;
    padding-left: 30px;
}

ul.components ul ul li a {
    padding-left: 50px;
}

ul.components ul ul ul li a {
    padding-left: 70px;
}

ul.components ul ul ul ul li a {
    padding-left: 90px;
}

ul.components ul ul ul ul ul li a {
    padding-left: 110px;
}


/* I-Frame */

#content {
    background: #ffffff;
    padding: 0px;
    min-height: 100vh;
    transition: all 0.3s;
    border: none;
    overflow: scroll;
}
