.carousel-prev,
.carousel-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding: 1em;
	border: none;
	cursor: pointer;
	font-size: 2em;
}

.carousel-prev {
	left: 2em;
}

.carousel-next {
	right: 0px;
	bottom: 0px;
}

.carousel-navigation {
	position: absolute;
	bottom: 1em;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 1em;
}

.carousel-bullet {
	width: 1em;
	height: 1em;
	border: none;
	background: var(--primary);
	opacity: 0.5;
	cursor: pointer;
	border-radius: 50%;
	scale: 0.4;
}

.carousel-bullet.is-active {
	/* background: #1c69d3; */
	opacity: 1;
	scale: 0.5;
}

#carousel-btn-container {
	z-index: 9999 !important;
}

