body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

html {
    height: -webkit-fill-available;
}

main {
    display: flex;
    min-height: 100vh;
}

div#sidebar_fix {

    position: fixed;
    width: 280px;
    height: 100vh;
    display: flex;
    flex-direction: column;

}

.btn-sidebar {
    padding: .4em;
    font-size: 1.1em;
    color: var(--white);
    background: var(--blueLight);
    height: fit-content;
    margin-left: 4px;
}

.btn-sidebar:hover {
    color: var(--offWhite);
}

.nav-flush .nav-link {
    border-radius: 0;
}

div#sidebar_logo {
    background: var(--offWhite);
    height: 160px;
    border-bottom: 5px solid white;
}

#sidebar_logo img {
    max-width: 100%;
    height: 100%;
}

div#sidebar_user {
    border-top: 10px solid var(--greyLight);
    background: var(--blue);
    display: flex;
}

div#sidebar_user_info {
    flex-grow: 1;
    padding: 5px 10px;
}

div#sidebar_user_name {
    color: var(--white);
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    width: 100px;
}

div#sidebar_user_title {
    color: var(--white);
    font-size: 10px;
}

div#sidebar_menu {
    padding: 15px 0;
    flex-grow: 1;
    background: var(--grey);
}

.sidebar_user_button {
    padding: 6px;
}

.sidebar-menu-link-parent,
.sidebar-menu-link{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    text-align: left;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
    text-decoration: none;
    color: var(--white);
    font-weight: bold;
    background: var(--sidebar-child);
}
.sidebar-menu-link-parent:hover,
.sidebar-menu-link:hover{
    background: var(--sidebar-hover)!important;
    color: var(--white);
}


div#sidebar_menu > .sidebar-menu-link,
div#sidebar_menu > .sidebar-menu-link-parent {
    background: var(--sidebar-parent);
}


div#sidebar_user img {
    height: 50px;
    width: 50px;
    padding: 5px;
}

.sidebar-menu-link-parent::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    filter: invert(1);
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}