.header-user-buttons {
    margin-top: 19px;
    height: 40px;
    width: 80px;
    display: flex;
    align-items: center;
    position: relative;
    padding-left:12px;
}

.cart {
    cursor: pointer;
    position: absolute;
    top: 7px;
    width: 22px;
    height: 21px;
    background: url('../images/cart.png');
}

#cart-count {
    position: absolute;
    width: 11px;
    height: 11px;
    right: -5px;
    border-radius: 100%;
    background: #1AB09D;
    font-family: Assistant;
    line-height: 9px;
    color: white;
    font-weight: 700;
    font-size: 8px;
    text-align: center;
    padding-left: 1px;
}

.header-user-icon-wrapper {
    cursor: pointer;
    width: 40px;
    position: absolute;
    height: 100%;
    border-radius: 5px;
    background:  white;
    padding-top: 8px;
    padding-left: 8px;
}

#cart-icon-wrapper{
    left: 0;
}

#profile-icon-wrapper{
    right: -12px;
}

.profile-icon {
    width: 24px;
    height: 24px;
    background: url('../images/profile.png');
    cursor: pointer;
}

.profile-menu {
    display: none;
    position: absolute;
    top: 51px;
    right: 0;
    height: 134px;
    width: 272px;
    background-color: white;
    overflow: hidden;
    border-radius: 0 0 5px 5px;
    z-index: 5;
}

.profile-item-border{
    height: 1px;
    width: 244px;
    background-color: #EDF2F7;
    margin-left: 14px;
}

.profile-menu__item{
    width: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.profile-menu__item:hover, #profile-menu__email:hover{
    background-color: rgba(255, 178, 0, 0.17);
    transition: background-color 0.3s;
}

.profile-menu__item h1{
    margin-left: 7px;
    font-family: Assistant;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 34px;
    letter-spacing: -0.408px;
    color: #4A5568;
}

.profile-menu__item h2{
    font-family: 'Assistant';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 34px;
    letter-spacing: -0.408px;
    color: #4A5568;    
}

#profile-menu__email{
    height: 43px;
    background: #F7FAFC;
    padding-left: 14px;
    padding-top: 4px;
    display: inline-block;
}

#profile-menu__edit{
    height: 49px;
}

.profile-icon-edit{
    width: 17px;
    height: 18px;
    margin-left: 16px;
    margin-right: 10px;
    background: url('../images/edit.png');
}

#profile-menu__logout{
    height: 41px;
}

.profile-icon-logout{
    background: url('../images/logout.png');
    width: 14px;
    height: 17px;
    margin-left: 17px;
    margin-right: 11px;
}