/* Custom styles to override or add to Tailwind */
.swiper-container {
	width: 100%;
	height: 100%;
}
.swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
}
.swiper-button-next, .swiper-button-prev {
	color: #1f2937;
	background-color: #d1d5db;
	border-radius: 9999px;
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.2s ease-in-out;
}
.swiper-button-next::after, .swiper-button-prev::after {
	font-size: 1rem;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
	background-color: #9ca3af;
}
.swiper-pagination-bullet-active {
	background-color: #1f2937;
}
