.wk-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 1px 16px 1px rgba(0,0,0,.1);
    padding: 10px 0;

    z-index: 999;
    &__wrapper{
        width: 100%;
        position: relative;
        padding-right: 30px;
        padding-left: 80px;
    }
    &__content{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    &__left{
        margin-right: 30px;

        display: flex;
        align-items: center;
    }
    &__logo{
        
        margin-right: 30px;
       
        @include screen('sm'){
            //width: 75px;
            margin-right: 15px;
        }

        img, svg{
            padding: 5px;
            height: 100%;
            max-height: 60px;
            @include screen('sm'){
                //width: 75px;
                max-height: 50px;
            }
            //width: 100%;
        }
    }

    &__right{
        display: flex;
        align-items: center;
    }
    
    &__stoggle{
        width: 20px;
        display: block;
        margin-right: 15px;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        img, svg{
            font-size: 20px;
            display: block;
            width: 100%;
        }
    }
    &__avatar{
        width: 40px;
        height: 40px;
        color: white;
        background-color: $secondary;
        border-radius: 100%;
        margin-right: 10px;
        font-weight: $font_bold;
        position: relative;
        font-size: 15px;
        @include screen('sm'){
            width: 35px;
            height: 35px;
        }
        &-letters{
            position: absolute;
            text-transform: uppercase;
            left: 50%;
            top: 50%;
            transform: translateY(-50%) translateX(-50%);
        }
    }
    &__username{
        margin-right: 10px;
        font-weight: $font_bold;
        @include screen('sm'){
            display:none;
        }
    }
    &__logout{
        img,svg{
            //width: 20px;
            font-size: 18px;
            display: none;
            @include screen('sm'){
                display: block;
            }
        }
        span{
            display: inline;
            @include screen('sm'){
                display:none;
            }
        }
    }
}