.carousel-container {
	margin: auto;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--lx-gap);
	background-color: #10100e;
}
.carousel-container .carousel {
	aspect-ratio: 16/9;
	width: 100%;
	position: relative;
	overflow: hidden;
}
.carousel-container .carousel .item {
	opacity: 0;
	width: 100%;
	height: 100%;
	display: none;
	transition: opacity 0.5s ease-in-out;
}
.carousel-container .carousel .item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
.carousel-container .carousel .item .caption {
	width: 100%;
	padding: 0.5em;
	position: absolute;
	bottom: 0;
	text-align: center;
	font-size: 12px;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.5);
}
.carousel-container .carousel .item.active {
	opacity: 1;
	display: block;
}
.carousel-container .btn {
	/* height: 4em; */
	/* width: 4em; */
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	outline: none;
	border: none;
	/* border-radius: 50%; */
	cursor: pointer;
	text-transform: uppercase;
	font-size: 2rem;
	font-weight: 900;
	color: #10100e;
	color: #aaa;
	/* background-color: #ffffff; */
	background: none;
	transition: transform 0.2s ease-in-out;
}
.carousel-container .btn:active,
.carousel-container .btn:focus {
	transform: translateY(-50%) scale(0.9);
}
.carousel-container .btn:hover {
	transform: translateY(-50%) scale(0.96);
}
.carousel-container .next {
	right: 0;
}
.carousel-container .dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.carousel-container .dots .dot {
	cursor: pointer;
	height: 10px;
	width: 10px;
	background-color: #78786f;
	transition: background-color 0.2s ease;
}
.carousel-container .dots .dot.active,
.carousel-container .dots .dot:hover {
	background-color: #ffffe6;
}
