.top_menu_wrapper {
    background-color: #eeeeee;
}
.header {
    display: flex;
    justify-content: space-between;
    padding-top: 17px;
    padding-bottom: 17px;
}
.top_menu {
    display: flex;
}

.top_menu_item {
    cursor: pointer;
}

.top_menu_item span{
    margin-right: 5px;
}

.top_menu_item.active .top_menu_item_link {
    color: #dd1552;
    text-decoration: underline;
}

.top_menu_item:not(:first-child) {
    margin-left: 25px;
}
.top_menu_item_link {
    color: #656565;
}
.top_menu_item--sale .top_menu_item_link {
    color: #dd1552;
    font-weight: 700;
}

.top_menu_item--label {
    padding-left: 22px;
    position: relative;
    color: #656565;
}

.top_menu_item--label:after {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}
.top_menu_item--sale:after {
    content: '';
    width: 12px;
    height: 13px;
    background: url("images/sale.svg") center center no-repeat;
    background-size: cover;
}
.top_menu_item--user:after {
    content: '';
    width: 12px;
    height: 13px;
    background: url("images/user.svg") center center no-repeat;
    background-size: cover;
}
.top_menu_item--logout:after {
    content: '';
    width: 12px;
    height: 13px;
    background: url("images/close.svg") center center no-repeat;
    background-size: cover;
}
.profile{
    display: flex;
}

.lang_item{
    color: #656565;
}
.lang_item--active{
    color: #000000;
}
@media screen and (max-width: 1024px) {
    .top_menu_wrapper {
        display: none;
    }
}