
*{
    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: 20px 32px 20px 256px;
    height: 96px;
    z-index: 100;
    background-color: var(--primary-color-light);
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
    justify-content:flex-end;
    transition: .3s;
}

.head-search-box{
    width: 250px;
    height: 100%;
    position: relative;
    transition: .3s;
}
.head-search-box .search-bar{
    width: 100%;
    height: 100%;
    background-color: #fff;
    border:none;
    border-radius: 12px;
    padding: 18px 30px 18px 55px;
    color: var(--primary-color-bg);
}

.head-search-box .search-label{
    position: absolute;
    top: 15px;
    left: 18px;
}

.head-nav-menu{
    display: flex;
    align-items: center;
    margin: 0;
}
.head-nav-menu  > li:not(:last-child){
    margin-right: 22px;
}
.head-nav-menu a{
    display: inline-block;
}
.login-btn img{
    width: 42px;
    cursor: pointer;
}

.user-select{
    position: relative;
    height: 32px;
    padding: 0 10px 0 16px;
    border:1px solid var(--font-color-light);
    border-radius: 50px;
    /*color: var(--primary-font-color);*/
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}
.user-display-box,.user-item{
    cursor: pointer;
}
.display-name{
    color: var(--primary-font-color);
    display: inline-block;
    margin-top: 2px;
    vertical-align: middle;
}
.display-name,
.user-name{
    font-family: var(--bold-sans-font);
    text-transform: uppercase;
}
.user-list{
    position: absolute;
    top: 30px;
    right: 0;
    min-width: 132px;
    max-height: 332px;
    overflow: hidden;
    overflow-y: auto;
    background-color: #fff;
    padding: 20px;
    padding-right: 25px;
    box-shadow: 4px 4px 50px rgba(10, 30, 92, 0.1);
    opacity: 0;
    transition: .8s;
}
.user-list.show{
    animation: fadeIn .2s ease-in forwards;
}
@keyframes fadeIn {
    0%{top:30px;opacity: 0;}
    100%{top:38px;opacity: 1;}
}
.user-item:not(:last-child){
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}
.user-item > div:first-child{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    white-space: nowrap;
}
.user-name{
    margin-right: 16px;
}
.user-completed .user-name{
    color: #2EA105;
}
.user-in-progress .user-name{
    color: #F15B5B;
}


/*.user-select{
    min-width: 92px;
    height: 32px;
    border:1px solid var(--font-color-light);
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    text-transform: uppercase;
}*/
/*.user-select .form-select{
    color:var(--primary-font-color);
}
.user-select .dropdown button,
.user-select .dropdown button:focus,
.user-select .dropdown button:active,
.user-select .form-select{
    width: 90px;
    height: 32px;
    padding: 5px 5px 5px 10px;
    border:1px solid var(--font-color-light) !important;
    border-radius: 50px;
    font-size: 11px;
    cursor: pointer;
    font: 11px var(--bold-sans-font);
    text-transform: uppercase;
    background-color: transparent !important;
    color: var(--primary-font-color) !important;
    outline: none !important;
    box-shadow: none !important;
    background: url(../assets/Arrow-down.svg)  no-repeat calc(100% - 5px);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.user-select .form-select:focus{
    min-width: 90px;
    width: auto;
}
.user-select .dropdown button .user-name{
    font: 11px var(--bold-sans-font);
}
.user-select .dropdown-menu{
    border-radius: 12px;
    border:1px solid var(--font-color-light) !important;
}
.user-select .dropdown-menu .dropdown-item{
    color: var(--primary-font-color) !important;
    font: 13px var(--semibold-sans-font);
}
.user-select .dropdown-toggle::after{
    border: none;
}*/

.head-nav-menu .toggle-menu{
    cursor: pointer;
}


/*old*/
.symbol{
    display: none;
    transition: .5s;
}
.head-logo .logo{
    width: 115px;
	transition: .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: #fff;
}
#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: 50px;
    z-index: 115;
}

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



/* ====== MEDIAQUERY ====== */
@media screen and (min-width: 1024px){
  
}
@media screen and (min-width: 1200px){
  .head-search-box{
    width: 530px;
  }
  .dash-header{
    padding: 20px 160px 20px 256px;
  }
}

@media screen and (max-width: 991px){
  .dash-header{
    padding: 20px 32px 20px 92px;
  } 
}
@media screen and (max-width: 576px){
  .head-nav-menu  > li:not(:last-child){
    margin-right: 15px;
  }  
}
