/* menu bottom */
.menu-bottom {
	padding: 13.5px 0;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	display: none;
	z-index: 100;
	background: #fff;
	box-shadow: 0px -6px 16.3px 0px rgba(0, 0, 0, 0.19);
	will-change: transform;
	transform: translateZ(0);
}
.menu-bottom__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}
.menu-bottom__item {
	text-decoration: none;
}
.menu-bottom__item img {
	display: block;
	margin: 0 auto 5px auto;
}
.menu-bottom__item p {
	color: #58595b;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 145%;
	white-space: nowrap;
}
@media (max-width: 768px) {
	/* menu bottom */
	.menu-bottom {
		display: block;
	}
}
