header
{
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 62px;
    padding: 10px;
    z-index: 1004;
    display: table;
    position: fixed;
    transition: top .3s ease;
    background-color: #f9b300;
}

header .logo
{
    left: 15px;
    font-size: 28px;
    position: absolute;
    transition: all .3s ease;
    text-transform: uppercase;
    font-family: 'Bebas Neue', cursive;
}

header .logo:hover
{
    left: 20px;
    transform: scale(1.2);
}

header .logo a
{
    color: #fff;
    transition: all .3s ease;
}

header .logo a:hover
{
    text-decoration: none;
}

header .user
{
    right: 10px;
    position: absolute;
}

header .user-box
{
    cursor: pointer;
}

header .user .user-box .user-profile
{
    top: -14px;
    left: -10px;
    color: #fff;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

header .user .user-box .cover
{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    background-size: cover;
    background-color: #ddd;
    transition: all .3s ease;
    background-position: center;
    background-image: url('../images/empty.png');
}

header .user .user-box:hover .cover
{
    transform: scale(1.2);
}

header .user ul
{
    width: 280px;
}

header .user ul li
{
    font-size: 14px;
}

header .user ul li:first-child
{
    color: #fff;
    padding: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-transform: uppercase;
    background-color: #9c27b0;
}

header .user ul li i
{
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

header .user ul li a
{
    padding: 10px;
}

header .user ul li:nth-child(5)
{
    padding: 10px;
    border-top: 1px solid #ddd;
}

header .user ul li:nth-child(5) b
{
    padding: 10px;
    display: block;
    color: #9c27b0;
}

header .user ul li:nth-child(5) .client-image
{
    width: 100%;
    height: 100px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}