.acfc-image-area > .acfc-original-item {
	display: none !important;
}

.acfc-slider {
	position: relative;
	width: min(100%, var(--acfc-reference-width, 260px));
	max-width: var(--acfc-reference-width, 260px);
	margin: 0;
	outline: none;
}

.acfc-viewport {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #fff;
}

.acfc-slide {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
}

.acfc-slide[hidden] {
	display: none !important;
}

.acfc-slide img {
	display: block;
	width: 100% !important;
	height: auto !important;
	max-width: 100% !important;
	margin: 0 !important;
	object-fit: contain !important;
	object-position: center center;
	background: #fff;
	user-select: none;
	-webkit-user-drag: none;
}

.acfc-arrow {
	position: absolute;
	top: 50%;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.58);
	color: #fff;
	font: inherit;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition: background-color .18s ease, transform .18s ease;
	-webkit-appearance: none;
	appearance: none;
}

.acfc-arrow:hover,
.acfc-arrow:focus-visible {
	background: rgba(0, 0, 0, 0.82);
	transform: translateY(-50%) scale(1.05);
}

.acfc-arrow:focus-visible,
.acfc-dot:focus-visible,
.acfc-slider:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.acfc-prev {
	left: 12px;
}

.acfc-next {
	right: 12px;
}

.acfc-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 28px;
	padding-top: 10px;
}

.acfc-dot {
	display: block;
	width: 9px;
	height: 9px;
	min-width: 9px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #b8b8b8;
	cursor: pointer;
	transition: transform .18s ease, background-color .18s ease;
	-webkit-appearance: none;
	appearance: none;
}

.acfc-dot:hover {
	transform: scale(1.2);
}

.acfc-dot.is-active {
	background: #333;
	transform: scale(1.15);
}

@media (max-width: 767px) {
	.acfc-slider {
		width: 100%;
		max-width: 100%;
	}

	.acfc-arrow {
		width: 40px;
		height: 40px;
		font-size: 19px;
	}

	.acfc-prev {
		left: 8px;
	}

	.acfc-next {
		right: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.acfc-arrow,
	.acfc-dot {
		transition: none;
	}
}


/* Full-screen image viewer */
.acfc-lightbox-trigger {
	cursor: zoom-in;
}

body.acfc-lightbox-open {
	overflow: hidden !important;
}

.acfc-lightbox[hidden] {
	display: none !important;
}

.acfc-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px;
	background: rgba(0, 0, 0, 0.82);
	opacity: 0;
	transition: opacity .18s ease;
}

.acfc-lightbox.is-open {
	opacity: 1;
}

.acfc-lightbox-stage {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(94vw, 1400px);
	height: calc(100vh - 56px);
	height: calc(100dvh - 56px);
}

.acfc-lightbox-image {
	display: block;
	width: auto !important;
	height: auto !important;
	max-width: 100% !important;
	max-height: 100% !important;
	margin: 0 auto !important;
	object-fit: contain !important;
	background: #fff;
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.35);
	cursor: default;
}

.acfc-lightbox-close {
	position: fixed;
	top: 18px;
	right: 22px;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.62);
	color: #fff;
	font-size: 36px;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.acfc-lightbox-arrow {
	position: fixed;
	top: 50%;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.62);
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	-webkit-appearance: none;
	appearance: none;
}

.acfc-lightbox-prev {
	left: 22px;
}

.acfc-lightbox-next {
	right: 22px;
}

.acfc-lightbox-close:hover,
.acfc-lightbox-close:focus-visible,
.acfc-lightbox-arrow:hover,
.acfc-lightbox-arrow:focus-visible {
	background: rgba(0, 0, 0, 0.86);
	outline: 2px solid #fff;
	outline-offset: 2px;
}

@media (max-width: 767px) {
	.acfc-lightbox {
		padding: 14px;
	}

	.acfc-lightbox-stage {
		width: 100%;
		height: calc(100vh - 28px);
		height: calc(100dvh - 28px);
	}

	.acfc-lightbox-close {
		top: 10px;
		right: 10px;
		width: 42px;
		height: 42px;
		font-size: 31px;
	}

	.acfc-lightbox-arrow {
		width: 42px;
		height: 42px;
		font-size: 20px;
	}

	.acfc-lightbox-prev {
		left: 10px;
	}

	.acfc-lightbox-next {
		right: 10px;
	}
}

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