#footer-panel {
	display: none;
}

@media (max-width: 575px) {
	#footer-panel {
		position: fixed;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        row-gap: 4px;
        column-gap: 8px;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 10px 20px;
        background-color: rgba(0, 0, 0, .6);
        color: white;
        z-index: 1000;
        box-shadow: 0px -5px 5px -5px rgba(34, 60, 80, 0.6);
        backdrop-filter: blur(10px);
        
        transition: opacity 0.3s ease, transform 0.3s ease;
		opacity: 0;
		transform: translateY(20px);
		pointer-events: none;
	}
	
	#footer-panel.visible {
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}
	
	.footer-panel__item {
		display: flex;
		flex-direction: column;
		align-items: center;
		row-gap: 8px;
		
		text-decoration: none;
	}
	
	.footer-panel__title {
		color: #fff;
		font-size: 2.9cqw;
	}
	
	.footer-panel__btn {
		display: flex;
		width: 50px;
		height: 50px;
		background: #911e45;
		margin: auto;
		
		
		background-repeat: no-repeat;
        background-position: center;
	}
	
	.footer-panel__btn:before {
		content: '';
		display: block;
		margin: auto;
		
		width: 60%;
		height: 60%;
		
		
		mask-repeat: no-repeat;
		mask-size: cover;
		background-color: #fff;
	}
	
	.footer-panel__btn.icon-phone:before {
		mask-image: url(../icons/mobile-header-phone.svg);
	}
	
	.footer-panel__btn.icon-order:before {
		mask-image: url(../icons/order.svg);
	}
	
	.footer-panel__btn.icon-whatsapp:before {
		mask-image: url(../icons/whatsapp_white_20.svg);
	}
	
	.footer-panel__btn.icon-telegram:before {
		mask-image: url(../icons/footer/telegram.svg);
	}
	
	.footer-panel__btn.icon-max:before {
		mask-image: url(../icons/max_white.svg);
	}

}

@media (max-width: 410px) {
	.footer-panel__title {
		/*font-size: 3.4cqw;*/
		font-size: 2.9cqw;
	}
}