
header {
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 36px;
    padding: 14px;
    position: fixed;
    top: 12px;
    left: 0px;
    z-index: 100;
    width: 100vw;
}




nav {
    background-color: #121212;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 300px;
    min-height: calc(100vh - 140px);
    box-shadow: #00000012 0 2px 8px;
    padding-top: 100px;
    padding-bottom: 40px;
    transition: all ease-in-out 0.4s;
    display: flex;
    flex-direction: column;
    overflow: auto;
}
nav.hidden {
    transform: translateX(-100%);
}
nav > img {
    width: 120px;
    margin-left: 18px;
    margin-bottom: 24px;
    position: relative;
    top: -130px;
}
nav > div {
    color: #efefef;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 26px;
    margin-left: 42px;
    margin-bottom: 24px;
}
nav > ul:first-of-type {
    display: flex;
    flex-direction: column;
    flex: 1;
}
nav ul {
    width: 100%;
}
nav li {
    list-style: none;
    width: 100%;
}
nav li > .menu-item {
    display: inline-block;
    color: #efefef;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 24px;
    margin-left: 30px;
    width: 152px;
    background-size: 28px auto;
    background-repeat: no-repeat;
    background-position: 24px 12px;
    border-radius: 8px;
}
nav li > .menu-item:hover {
    color: #efefef;
    background-color: #1e1e1e;
}

nav > ul > li > ul > li > .menu-item {
    padding-left: 40px;
    font-weight: 500;
}





header > div:nth-of-type(1) > div {
    position: relative;
    top: 11px;
    left: 26px;
    width: 44px;
    height: 44px;
    border-radius: 30px;
    margin-top: 1px;
    cursor: pointer;
    /*background-color: #fff;
    box-shadow: #00000012 0 0px 8px;*/
    transition: all ease-in-out 0.3s;
}
header > div:nth-of-type(1) > div.menu-open {
    background-color: transparent;
    box-shadow: inset;
}
header > div:nth-of-type(1) > div > div{
	display: inline-block;
	position: absolute;
	vertical-align: top;
	background-color: #555555;
	border-radius: 0px;
	height: 3px;
	width: 25px;
    transition: all 0.3s;
    border-radius: 0px;
}
header > div:nth-of-type(1) > div > div:nth-of-type(1){
	top: 12px;
	left: 10px;
}
header > div:nth-of-type(1) > div > div:nth-of-type(2){
	top: 20px;
	left: 10px;
}
header > div:nth-of-type(1) > div > div:nth-of-type(3){
	top: 28px;
	left: 10px;
}
header > div:nth-of-type(1) > div.menu-open  > div:nth-of-type(1){
	top: 20px;
	transform: rotate(45deg);
}
header > div:nth-of-type(1) > div.menu-open  > div:nth-of-type(2){
	display: none;
}
header > div:nth-of-type(1) > div.menu-open  > div:nth-of-type(3){
	top: 20px;
	transform: rotate(-45deg);
}


@media (max-width: 780px) {
    header > div:nth-of-type(1) > div {
        position: relative;
        top: -7px;
        left: 4px;
    }
}



/**
* Header part
*/
header > div:nth-of-type(1) > a > img {
    height: 30px;
    margin-top: 6px;
    margin-left: 48px;
    width: auto;
}
header > div {
    margin-right: 60px;
    display: flex;
    align-items: center;
}
header #user-profile {
    position: relative;
}
header #user-profile > span {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    font-weight: 700;
    margin-right: 20px;
}
header #user-profile > div:first-of-type {
    height: 40px;
    width: 40px;
    background-color: #9295f6;
    border-radius: 30px;
    cursor: pointer;
}
header #user-profile > #user-menu {
    display: none;
    width: 200px;
    position: absolute;
    top: 50px;
    left: -180px;
    background-color: #fff;
    box-shadow: #00000022 0 1px 6px;
    border-radius: 8px;
    padding: 16px;
    flex-direction: column;
}
header #user-profile > #user-menu.open {
    display: flex !important;
}
header #user-profile > #user-menu span {
    margin-bottom: 34px;
}
header #user-profile > #user-menu a {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    font-weight: 700;
}

.horizontal-navbar {
    display: flex;
    padding: 0px !important;
    border-bottom: 1px solid #ddd;
    margin-left: 8px;
}
.horizontal-navbar > div {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #333;
    font-size: 14px;
    padding: 8px 24px;
    transition: all ease-in-out 0.17s;
    border-bottom: 4px solid transparent;
    text-wrap: nowrap;
    white-space: nowrap;
}
.horizontal-navbar > div:hover {
    color: #121212;
    cursor: pointer;
}
.horizontal-navbar > div.selected {
    color: #121212;
    border-bottom: 4px solid #121212;
}