body {
    margin: 0;
    font-family: "Lato", sans-serif;
}

div.content {
    margin-left: 55px;
    padding: 1px 16px;
}

.sidebar {
    margin: 0;
    padding: 0;
    width: 200px;
    background-color: #06335C;
    position: fixed;
    height: 100%;
    overflow: auto;
}

.sidebar a,
.dropdown-btn {
    display: block;
    color: white;
    padding: 16px;
    text-decoration: none;
}

.sidebar a.active {
    background-color: white;
    /*color: #262626;*/
    color: var(--brand-blue-dark);
}

.sidebar a:hover:not(.active) {
    background-color: #555;
    color: white;
}

@media screen and (max-width: 700px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }
    .sidebar a {
        float: left;
    }
    .sidebar>img {
        max-width: 40%;
    }
    #menu_logout {
        position: initial!IMPORTANT;
    }
    div.content {
        padding: 0;
    }
}

@media screen and (max-width: 400px) {
    .sidebar a:not(:first-child) {
        display: none;
    }
    .sidebar a {
        text-align: center;
    }
    .sidebar a.icon {
        float: right;
        display: block;
    }
    .sidebar>img {
        max-width: 30%;
    }
}

@media screen and (max-width: 600px) {
    .sidebar.responsive {
        position: relative;
    }
    .sidebar.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .sidebar.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}

.sidebar .icon {
    display: none;
}


/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */

.dropdown-container {
    display: none;
    background-color: #262626;
    padding-left: 8px;
}


/* Optional: Style the caret down icon */

.fa-caret-down {
    float: right;
    padding-right: 8px;
    color: #525252;
    font-size: 2em;
}

#menu_logout {
    /*position: absolute;*/
    bottom: 0;
    width: inherit;
}

a.dropdown-btn:hover>i {
    color: white;
}


/*
.sidebar>* {
    height: calc(100% / 11);
    max-height: 80px;
}
*/

.div_menu {
    float: left;
    height: 100%;
    background-color: #2B2E33;
    position: fixed;
    overflow-y: auto;
}

#menu_checkbox,
.btn span,
.btn2 span {
    /* Hide the checkbox input & word "Menu" in the button */
    display: none;
}


/* Menu button - starts */

.btn {
    display: block;
    background-color: var(--brand-blue-dark);
    color: #fff;
    width: 55px;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    cursor: pointer;
    transition: width .3s ease-in-out;
}

@media screen and (max-height: 560px) {
    .btn {
        display: none;
    }
}

.btn2 {
    display: block;
    background-color: #2B2E33;
    color: #fff;
    width: 55px;
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
    cursor: pointer;
    transition: width .3s ease-in-out;
    font-size: 1.5em;
}


/* Menu button - ends */


/* Effect of showing the sidebar - starts */

#menu_checkbox:checked~.sidebar {
    transform: translateX(0);
}

#menu_checkbox:checked+.btn {
    width: 200px;
    padding: 0 20px;
}


/* Effect of showing the sidebar - ends */

.open {
    width: 200px;
    padding: 0 20px;
    overflow: hidden;
}

.openText>span {
    display: inline;
}

.btn2:hover {
    background-color: #161920;
    border-left: 4px solid var(--brand-blue-light);
}

.menu-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
    background: #f7f7f7;
    z-index: 10;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: 2px 0 18px rgba(0, 0, 0, 0.26);
}

.menu-bar {
    left: 55px;
    z-index: 5;
    width: 0;
    height: 0;
    transition: all 0.3s ease-in-out;
}

.menu-bar li a {
    display: block;
    height: 4em;
    line-height: 4em;
    text-align: center;
    color: #72739f;
    text-decoration: none;
    position: relative;
    font-family: verdana;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.1s ease-in-out;
}

.menu-bar li:first-child a {
    height: 50px;
    background: var(--brand-blue-dark);
    color: #fff;
    line-height: 2.3;
    font-size: 1.5em;
}

.menu-bar li a:hover {
    background-color: #161920;
    color: #fff;
}

.openSub {
    /*width: 10em;*/
	width: 150px;
    height: 100%;
}

.openSubParent {
    background-color: #161920!IMPORTANT;
}

.fa,
.fab,
.fad,
.fal,
.far,
.fas {
    line-height: unset;
}

ul.leftSpacing {
    left: 200px;
}

.cornerIndicator {
    background: linear-gradient(to bottom right, transparent 50%, var(--brand-blue-light) 0) bottom right/20px 20px no-repeat, #2B2E33;
}

label.active {
    background-color: white;
    color: var(--brand-blue-dark);
}

div.leftSpacing {
    margin-left: 200px;
    transition: all 0.3s ease-in-out;
}

div.leftSpacing_openSub {
    margin-left: 205px;
    transition: all 0.3s ease-in-out;
}

div.content.leftSpacing.leftSpacing_openSub {
	margin-left: 350px;
	transition: all 0.3s ease-in-out;
}