header{
    padding: 32px 16px 32px 16px;
    padding-bottom: 0;
    max-width: 280px;
    width: 280px;
    box-sizing: border-box;
    position: fixed;
    height: 100%;
    border-right: 1px solid #EAECF0;
    overflow-y: scroll;
    overflow-x: hidden;
}

header::-webkit-scrollbar {
    display: none;
}
   
header {
    -ms-overflow-style: none;  
    scrollbar-width: none;  
  }

.header__content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.header__logo{
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #101828;
}

.header__links_wrapper.first{
    margin-top: 24px;
}

.header__links_wrapper.second{
    margin-top: 24px;
    margin-bottom: auto;
}

.header__links_wrapper.third{
    margin-bottom: 24px;
    margin-top: 24px;
}

.header__links_wrapper{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header__link{
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 8px 12px;
    gap: 8px;
    width: 248px;
    height: 38px;
    background: #FFFFFF;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
    transition: 0.3s;
    position: relative;
}

.bell::before{
    content: attr(data-count);
    position: absolute;
    right: 12px;
    background: #FEF3F2;
    border-radius: 16px;
    padding: 2px 8px 2px 8px;
    color: #D92D20;
}

.header__link.active{
    background: #F9FAFB;
    color: #101828;
}

.header__link:hover{
    background: #F9FAFB;
    color: #101828;
    transition: 0.3s;
}

.header__link_icon{
    width: 20px;
    height: 20px;
}

.header__log{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #EAECF0;
    padding-top: 24px;
    padding-bottom: 32px;
}

.header__log_icon{
    background: #F2F4F7;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__log_icon img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
}

.log__data_name{
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
}

.log__data_email{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #475467;
}

.burger__line{
    background: #667085;
    width: 16px;
    height: 2px;
}

.header__burger{
    padding: 2px 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3px;
    position: relative;
}

.header__burger .burger__line{
    transition: 0.3s;
}

.header__burger.active .burger__line:first-child{
    transform: rotate(45deg);
    position: absolute;
    transition: 0.3s;
}

.header__burger.active .burger__line:nth-child(2){
    opacity: 0;
    transition: 0.3s;
}

.header__burger.active .burger__line:last-child{
    transform: rotate(-45deg);
    position: absolute;
    transition: 0.3s;
}

.header__mobile{
    padding-top: env(safe-area-inset-top);
    display: none;
    align-items: center;
    justify-content: space-between;
}

.header_right{
    padding-left: 190px;
}

.header__log_exit{
    cursor: pointer;
    transition: 0.3s;
}

.header__log_exit:hover{
    opacity: 0.8;
    transition: 0.3s;
}

@media(max-width:630px){
    .header__mobile{
        display: flex;
    }

    header{
        position: fixed;
        width: 100%;
        max-width: 100%;
        padding: 16px;
        background: #fff;
        height: auto;
        top: 0;
        z-index: 10;
        border: none;
        border-bottom: 1px solid #EAECF0;
        
    }

    .header__content{
        display: none;
        height: auto;
    }

    .header__logo{
        display: none;
    }

    .header__link{
        width: 100%;
    }

    .header__log_data{
        margin-right: auto;
        margin-left: 12px;
    }
}