@media (min-width: 480px) {
    .fixed_mobile_menu_wrap {
        display: none;
    }
}
.fixed_mobile_menu_wrap {
    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: 0;
    /* top: 134px; */
    left: 0;
    z-index: 20;
    justify-content: space-between;
    padding: 10px 10px 10px 10px;
    border-top: 1px solid #f3f3f3;
    height: 70px;
}
.fixed_mobile_menu_wrap .item svg,
.fixed_mobile_menu_wrap .item svg * {
    transition: .3s;
}
.fixed_mobile_menu_wrap .home_page_link svg rect {
    fill: #555;
}
.fixed_mobile_menu_wrap .home_page_link:hover svg rect {
    fill: var(--theme-red);
}
.fixed_mobile_menu_wrap .catalog_page_link svg rect {
    fill: #555;
}
.fixed_mobile_menu_wrap .catalog_page_link:hover svg rect {
    fill: var(--theme-red);
}
.fixed_mobile_menu_wrap .item {
    width: 50px;
    position: relative;
}
.fixed_mobile_menu_wrap .item svg {
    max-width: 100%;
    height: auto;
}
.fixed_mobile_menu_wrap .item a {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #555;
}
.fixed_mobile_menu_wrap .item a svg {
    width: 100%;
    max-width: 20px;
    position: absolute;
    top: 0;
}
.fixed_mobile_menu_wrap .item a span {
    width: 100%;
    text-align: center;
    display: block;
    margin-top: 5px;
    transition: .3s;
    position: absolute;
    bottom: 0;
}
.fixed_mobile_menu_wrap .item:hover span {
    color: var(--theme-red);
}
.fixed_mobile_menu_wrap .cart.item svg {
    width: 30px;
    max-width: unset;
}
.fixed_mobile_menu_wrap .cart #cart-total {
    top: 0;
}
.fixed_mobile_menu_wrap .cart .btn {
    width: 40px;
    height: 30px;
}
.fixed_mobile_menu_wrap .cart .cat_name {
    text-align: center;
    width: 100%;
    display: block;
}
.fixed_mobile_menu_wrap .sale_item.item svg {
    max-width: 25px;
}
.fixed_mobile_menu_wrap .sale_item svg .active_part1 {
    fill: #555;
}
.fixed_mobile_menu_wrap .sale_item svg .active_part2 {
    stroke: #555;
}
.fixed_mobile_menu_wrap .sale_item:hover svg .active_part1 {
    fill: var(--theme-red);
}
.fixed_mobile_menu_wrap .sale_item:hover svg .active_part2 {
    stroke: var(--theme-red);
}
.fixed_mobile_menu_wrap .contact_item.item svg {
    max-width: 30px;
}
.fixed_mobile_menu_wrap .contact_item svg path {
    fill: #555;
}
.fixed_mobile_menu_wrap .contact_item:hover svg path {
    fill: var(--theme-red);   
}