.ccat-carousel {
	position: relative;
	width: 100%;
	padding: 0 42px;
}

.ccat-viewport {
	overflow: hidden;
	touch-action: pan-y pinch-zoom;
}

.ccat-track {
	display: flex;
	transition: transform 0.35s ease;
	will-change: transform;
}

.ccat-item {
	flex: 0 0 12.5%;
	display: flex;
	align-items: center;
	padding: 10px;
	box-sizing: border-box;
}

.ccat-link {
	display: block;
	text-decoration: none;
}

.ccat-image {
	display: block;
	width: 100%;
	height: auto;
	padding: 30px;
	-webkit-user-drag: none;
	user-select: none;
}

.ccat-nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	cursor: pointer;
	transform: translateY(-50%);
}

.ccat-nav-prev {
	left: 0;
}

.ccat-nav-next {
	right: 0;
	background: none !important;
}

button.ccat-nav.ccat-nav-prev {
	background: none;
}

.ccat-arrow {
	font-size: 28px;
	line-height: 1;
}

.ccat-nav:hover .ccat-arrow,
.ccat-nav:focus .ccat-arrow {
	color: var(--e-global-color-primary, var(--primary, #1e73be));
}

.ccat-nav[disabled] {
	opacity: 0.35;
	cursor: default;
}

@media (max-width: 1024px) {
	.ccat-item {
		flex-basis: 25%;
	}
}

@media (max-width: 767px) {
	.ccat-carousel {
		padding: 0 34px;
	}

	.ccat-item {
		flex-basis: 50%;
	}

	img.ccat-image {
		padding: 10px;
	}

	.ccat-nav {
		width: 30px;
		height: 30px;
	}

	.ccat-arrow {
		font-size: 24px;
	}
}
