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

.menuWrapper {
	overflow: hidden;
	position: sticky;
	top: 0px;
	background: linear-gradient(to top right, #5D5D5D, #101010);
	z-index: 1;
}

.menuLimiter {
	max-width: 100%;
	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: 11px/14px 'Gotham Pro', sans-serif;
	display: flex;
	list-style: none;
	padding: 0 15px;
	margin: 0;
	text-transform: uppercase;
}

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

.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: #853046;
	/* Invert colors to make black icons white */
	/* If icons are already white, verify this. */
	/* Assuming standard icons are black/colored, we start with invert. */
	/* filter: brightness(0) invert(1);  Wait, let's verify if they need this first. */
	/* Safest bet based on typical usage: */
	/* mix-blend-mode: ... no. */
}

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

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

.dragscroll {
	cursor: grab;
}

@media only screen and (max-width: 600px) {
	.menu-item {
		margin-right: 8px;
	}
}

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

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

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

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

@media only screen and (min-width: 1000px) {
	.menu {
		justify-content: flex-start;
	}
}
