html, body {
	margin: 0;
	padding: 0;
}

.menuWrapper {
	overflow: hidden;
	position: sticky;
	top: 0;
	z-index: 10;
	background-image: url("../content/images/pizzalini/home-hero-background.png");
}

.menuLimiter {
	max-width: 100%;
	padding-top: 8px;
	padding-bottom: 20px;
	margin-bottom: -20px;
	overflow-x: scroll;
	-webkit-overflow-scrolling: touch;
	-webkit-mask-image: linear-gradient(90deg,transparent 0,rgba(0,0,0,.25) 9px,#000 18px,#000 calc(100% - 18px),rgba(0,0,0,.25) calc(100% - 9px),transparent);
	mask-image: linear-gradient(90deg,transparent 0,rgba(0,0,0,.25) 9px,#000 18px,#000 calc(100% - 18px),rgba(0,0,0,.25) calc(100% - 9px),transparent);
}

.menu {
	font: 12px/16px 'Gotham Pro', sans-serif;
	display: flex;
	list-style: none;
	padding: 0 10px;
	margin: 0 10px;
	text-transform: uppercase;
}

.menu-item {
	margin-right: 8px;
	margin-top: 0;
	white-space: normal;
	width: 120px;
	text-align: center;
	color:white;
	line-height: 1.15;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 0 0 120px;
	overflow: hidden;
}

.menu-item:last-child {
	margin-right: 0;
	padding-right: 15px;
}

.menu-item a {
	color: #ffffff;
	border: 0;
	box-shadow: none;
	text-decoration: none;
}

.menu-item a:hover, .menu-item.is__active a {color: #e30016;}

.menu-item a img {
	width: 46px !important;
	border-radius: 50% !important;
	border: 2px solid #fff !important;
	background:white;
}

.menu-item p {
	width: 100%;
	margin-top: 5px;
	margin-bottom: 0px;
	line-height: 1.15;
	white-space: normal;
	overflow-wrap: break-word;
	word-break: break-word;
	hyphens: auto;
}

.menu-item.is__active {pointer-events: none;}

.dragscroll {cursor: grab;}

@media only screen and (min-width: 768px) {
	.menu {
		font: 9px/12px 'Gotham Pro', sans-serif;
		padding: 0 82px 0 8px;
		justify-content: flex-start;
		gap: 6px;
	}

	.menu-item {
		flex: 0 0 clamp(88px, 9vw, 110px);
		width: clamp(88px, 9vw, 110px);
		min-width: 88px;
		max-width: 110px;
		margin-right: 0;
		overflow: hidden;
	}

	.menu-item:last-child {
		padding-right: 0;
	}

	.menu-item a img {
		width: 36px !important;
	}
}

@media only screen and (min-width: 1000px) {
	.menu.menu--centered-desktop.is-fit-to-screen {
		justify-content: center;
	}

	.menu:not(.menu--centered-desktop.is-fit-to-screen) {
		justify-content: flex-start;
	}
}
