.ebcw-shell {
	--ebcw-gap: 0px;
	--ebcw-cutout-size: 44px;
	--ebcw-cutout-color: #fff;
	--ebcw-cutout-y: 50%;
	position: relative;
	width: 100%;
	max-width: 100%;
	isolation: isolate;
}

.ebcw-shell--cutouts {
	overflow: hidden;
}

.ebcw-shell--cutouts::before,
.ebcw-shell--cutouts::after {
	content: "";
	position: absolute;
	top: var(--ebcw-cutout-y);
	z-index: 4;
	width: var(--ebcw-cutout-size);
	height: var(--ebcw-cutout-size);
	border-radius: 50%;
	background: var(--ebcw-cutout-color);
	transform: translateY(-50%);
	pointer-events: none;
}

.ebcw-shell--cutouts::before {
	left: calc(var(--ebcw-cutout-size) / -2);
}

.ebcw-shell--cutouts::after {
	right: calc(var(--ebcw-cutout-size) / -2);
}

.ebcw-carousel {
	position: relative;
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.ebcw-viewport {
	position: relative;
	overflow: hidden;
	width: 100%;
	min-width: 0;
	direction: ltr;
	touch-action: pan-y;
	cursor: grab;
}

.ebcw-carousel:not(.is-draggable) .ebcw-viewport {
	cursor: default;
}

.ebcw-viewport.is-dragging {
	cursor: grabbing;
	user-select: none;
}

.ebcw-track {
	display: flex;
	align-items: stretch;
	gap: var(--ebcw-gap);
	width: max-content;
	will-change: transform;
	transform: translate3d(0, 0, 0);
}

.ebcw-slide {
	flex: 0 0 auto;
	min-width: 0;
	height: auto;
}

.ebcw-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 96px;
	padding: 18px 20px;
	box-sizing: border-box;
}

.ebcw-brand-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	line-height: 0;
	text-decoration: none !important;
	outline: none;
}

.ebcw-brand-link:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

.ebcw-brand-image {
	display: block;
	width: auto;
	height: auto;
	max-width: 120px;
	max-height: 60px;
	object-fit: contain;
	opacity: .7;
	transition-property: opacity, filter, transform;
	transition-duration: .3s;
	transition-timing-function: ease;
	transform: translateZ(0);
	backface-visibility: hidden;
}

.ebcw-item:hover .ebcw-brand-image {
	opacity: 1;
}

.ebcw-arrow {
	position: absolute !important;
	top: 50% !important;
	z-index: 6 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 42px;
	height: 42px;
	min-width: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: #111;
	font: inherit !important;
	font-size: 18px;
	line-height: 1 !important;
	text-align: center !important;
	text-decoration: none !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	transform: translateY(-50%);
	transition: color .25s ease, background-color .25s ease, opacity .25s ease, transform .25s ease;
	cursor: pointer !important;
	box-sizing: border-box !important;
}

.ebcw-arrow::before,
.ebcw-arrow::after {
	content: none !important;
}

.ebcw-arrow:hover,
.ebcw-arrow:focus,
.ebcw-arrow:active {
	background: #111;
	color: #fff;
	transform: translateY(-50%) scale(1.04);
}

.ebcw-arrow:focus-visible {
	outline: 2px solid currentColor !important;
	outline-offset: 3px !important;
}

.ebcw-arrow svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.ebcw-arrow--prev {
	left: 8px;
}

.ebcw-arrow--next {
	right: 8px;
}

.ebcw-arrow[disabled] {
	opacity: .35;
	pointer-events: none;
}

.ebcw-empty {
	padding: 28px;
	text-align: center;
}

.elementor-editor-active .ebcw-carousel:not(.is-initialized) .ebcw-track {
	width: 100%;
}

.elementor-editor-active .ebcw-carousel:not(.is-initialized) .ebcw-slide {
	width: 20%;
}

@media (max-width: 767px) {
	.ebcw-arrow {
		width: 36px;
		height: 36px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ebcw-track,
	.ebcw-brand-image,
	.ebcw-arrow {
		transition-duration: 0.001ms !important;
	}
}
