@media (max-width: 480px) {
    .part_for_title_products .row_price {
        display: none;
    }
    .part_for_title_products .favorite,
    .part_for_title_products .compare {
        display: none;
    }
}
@media (min-width: 480px) {
    .wrap_mobile_buttons {
        display: none;
    }
}

.wrap_mobile_buttons {
    width: 100%;
    box-shadow: 2px 0px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    background: #fff;
    position: fixed;
    bottom: 70px;
    left: 0;
    z-index: 20;
    justify-content: space-between;
    padding: 10px 10px 10px 10px;
    border-top: 1px solid #f3f3f3;
    height: 61px;
}
.wrap_mobile_buttons .block_price {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}
.wrap_mobile_buttons .block_price .sale_price {
    color: #A7A7A7;
    font-size: 14px;
    position: relative;
    font-weight: 300;
    position: relative;
    display: inline-flex;
}
.wrap_mobile_buttons .block_price .sale_price:after {
    content: '';
    position: absolute;
    width: 100%;
    top: 10px;
    right: 0;
    background: var(--theme-red);
    height: 1px;
}
.wrap_mobile_buttons .block_price .regular_price {
    font-size: 22px;
    color: var(--theme-red);
    font-weight: 600;
    margin-top: 3px;
}
.wrap_mobile_buttons .block_buy_button {
    
}
.wrap_mobile_buttons .block_buy_button button {
    background: #00A046;
    border-color: #00A046;
    display: flex;
    font-size: 16px;
    height: 40px;
    border-radius: 3px;
    justify-content: center;
    text-shadow: none;
}
.wrap_mobile_buttons .block_buy_button button img {
    margin-right: 10px;
}
.wrap_mobile_buttons .fav_com_buttons {
    gap: 12px;
}
.wrap_mobile_buttons .fav_com_buttons .favorite,
.wrap_mobile_buttons .fav_com_buttons .compare {
    width: 40px;
    height: 40px;
}
.wrap_mobile_buttons .fav_com_buttons .favorite button,
.wrap_mobile_buttons .fav_com_buttons .compare button {
    background: #fff;
    border: none;
    padding: 0;
    width: 100%;
    height: 100%;
    position: relative;
}
.wrap_mobile_buttons .fav_com_buttons .favorite span,
.wrap_mobile_buttons .fav_com_buttons .compare span {
    position: absolute;
    background: var(--theme-red);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    bottom: 0px;
    right: 0;
}
.wrap_mobile_buttons .fav_com_buttons .favorite button img,
.wrap_mobile_buttons .fav_com_buttons .compare button img {
    width: 100%;
    height: auto;
    padding: 8px;
}