.bhcc-js #sq-home-slider-section {
	display: none !important;
}

.bhcc-carousel[hidden] {
	display: none !important;
}

.bhcc-carousel {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #fff;
	isolation: isolate;
}

.bhcc-viewport {
	overflow: hidden;
	width: 100%;
}

.bhcc-track {
	display: flex;
	width: 100%;
	transition: transform .55s cubic-bezier(.22, .61, .36, 1);
	will-change: transform;
}

.bhcc-slide {
	flex: 0 0 100%;
	width: 100%;
	margin: 0;
	aspect-ratio: 16 / 9;
	display: grid;
	place-items: center;
	background: #fff;
}

.bhcc-slide-2 {
	background: #050505;
}

.bhcc-slide picture,
.bhcc-slide img {
	display: block;
	width: 100%;
	height: 100%;
}

.bhcc-slide img {
	object-fit: contain;
}

.bhcc-arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	transform: translateY(-50%);
	width: 46px;
	height: 58px;
	border: 0;
	border-radius: 6px;
	background: rgba(0, 0, 0, .42);
	color: #fff;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	transition: background .2s ease, opacity .2s ease;
}

.bhcc-arrow:hover,
.bhcc-arrow:focus-visible {
	background: rgba(0, 0, 0, .72);
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.bhcc-prev { left: 18px; }
.bhcc-next { right: 18px; }

.bhcc-dots {
	position: absolute;
	left: 50%;
	bottom: 16px;
	z-index: 2;
	display: flex;
	gap: 9px;
	transform: translateX(-50%);
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(0, 0, 0, .28);
}

.bhcc-dots button {
	width: 10px;
	height: 10px;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .9);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.bhcc-dots button[aria-selected="true"] {
	background: #fff;
}

@media (max-width: 767px) {
	.bhcc-slide {
		aspect-ratio: 1 / 1;
	}

	.bhcc-arrow {
		width: 36px;
		height: 46px;
		font-size: 24px;
	}

	.bhcc-prev { left: 8px; }
	.bhcc-next { right: 8px; }
	.bhcc-dots { bottom: 10px; }
}

@media (prefers-reduced-motion: reduce) {
	.bhcc-track {
		transition: none;
	}
}
