:root {
    --color-primary: #232323;
}
.app-svg {
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    top: 0;
}
.footer_fixed-menu {display: none;}

.cart-popup-right {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    gap: 10px;
    align-items: center;
    min-width: 120px;
    height: 50px;
    padding: 0 20px;
    border-radius: 30px;
	box-shadow: 0 0 10px rgb(0 0 0 / 50%);
}
.cart-popup.active .cart-popup-right {display: none;}
.cart-popup-right svg {fill: none;stroke: #fff;width: 30px;height: 30px;}

@media (max-width: 767px) {
	.cart-popup-right {
		right: 15px;
		bottom: 80px;
	}
    .footer_fixed-menu {
        position: fixed;
        bottom: 0;
        z-index: 10001;
        width: 100%;
        box-shadow: 0px -5px 60px rgba(39, 49, 96, 0.15);
        border-radius: 10px 10px 0px 0px;
        background: #FFFFFF;
		display: block;
    }
    .footer_fixed-menu ul {
        display: flex;
        margin: 0;
        padding: 0 15px;
        list-style: none;
        font-size: 12px;
    }
    .footer_fixed-menu ul li {width: 20%;}
    .footer_fixed-menu ul li a {
        display: flex;
        flex-direction: column;
        padding: 10px 0 15px;
        align-items: center;
        height: 70px;
		float: none;
    }
    .footer_fixed-menu ul li svg {width: 20px;height: 20px;fill: var(--color-primary);margin: auto 0;}
    .footer_fixed-menu ul li.active {color: var(--color-blue);}
    .footer_fixed-menu ul li.active svg {fill: var(--color-blue);}
    .footer_fixed-menu ul li.item2 svg {width: 24px;height: 16px;}
    .footer_fixed-menu ul li.item3 svg {height: 19px;}
    .footer_fixed-menu ul li.item5 svg {width: 17px;height: 14px;}

    .footer_fixed-menu ul li.item4 svg {fill: none;}
    .footer_fixed-menu ul li.item1 svg, .footer_fixed-menu ul li.item3 svg, .footer_fixed-menu ul li.item4 svg {stroke: var(--color-primary);}
    .footer_fixed-menu ul li.item1.active svg, .footer_fixed-menu ul li.item3.active svg, .footer_fixed-menu ul li.item4.active svg {stroke: var(--color-blue);}

    .footer_fixed-menu ul li.item4 .svg {position: relative;}
    .footer_fixed-menu ul li.item4 .svg .js-count-cart {
        position: absolute;
        right: -10px;
        top: -6px;
        color: rgb(255, 255, 255);
        width: 18px;
        text-align: center;
        height: 18px;
        font-size: 9px;
        line-height: 18px;
        display: none;
        background: var(--color-green);
        border-radius: 50%;
    }
    .footer_fixed-menu ul li.item4 .svg.active .js-count-cart {display: block;}
}