
*{
    box-sizing: border-box;
}
body{
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.dash-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 40px;
    height: 85px;
    z-index: 110;
    background-color: var(--light-color);
    border-bottom:1px solid var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
}
.symbol{
    display: none;
    transition: .5s;
}
.head-logo .logo{
     width: 180px; 
	transition:all .5s;
}
.dash-header .nav-menu img
{
    width: 28px;
    transition: .5s;
}
.dash-header .nav-links{
    white-space: nowrap;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}
.dash-header .nav-links li{
    display: inline-block;
    /*margin: 0 10px;*/
}
.dash-header .nav-links li a{
	font:14px 'SFPRODISPLAY-REGULAR';
    display: block;
    color:#212529;
    padding:5px 10px;
    text-decoration: none;
    white-space: nowrap;
}
/*.dash-header .nav-links li a:hover{
    background-color:#e9ecef;
}*/
#profile{
	margin-left: 0;
    position: relative;
}
#profile #logoutdropdownMenuLink{
    border:none;
    color: #000000;
}
#profile #logoutdropdownMenuLink:focus{
	box-shadow: none;
	outline: none;
}
#profile-pic{
    display: inline-block;
}
#profile-pic img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    object-fit: cover;
    border-radius: 50%;
    transition: .5s;
}
#profile .dropdown-menu{
    position: absolute;
    top: 30px;
    z-index: 115;
    left: unset;
    right: 0;
}

#main-dash-header #profile #logoutdropdownMenuLink::after{
    content: '';
    position: absolute;
    top: 50%;
    right: -3px;
    width: 8px;
    height: 6px;
    background: #000;
    clip-path: polygon(0 0, 100% 0, 50% 100%, 50% 100%);
}
.open > .dropdown-menu {
    display: block;
    opacity: 1;
}





