/**
 * Exhibitor accordion Swiper gallery styles.
 *
 * Enqueued on pages that render exhibitor accordion items with image
 * galleries (exhibitor archive, exhibition-year taxonomy, Content
 * Sections page template).
 */

.exhibitor-swiper-container {
	width: 100%;
	overflow: hidden;
}

.exhibitor-swiper {
	width: 100%;
	height: 100%;
}

.exhibitor-swiper .swiper-slide {
	opacity: 0;
	transition: opacity 0.5s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.exhibitor-swiper .swiper-slide-active {
	opacity: 1;
}

.exhibitor-swiper-container .image-container {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.exhibitor-swiper-container .image-container img {
	max-width: 100%;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.exhibitor-swiper-container .swiper-pagination {
	position: relative !important;
	bottom: auto !important;
	margin-top: 0.5rem;
}

.exhibitor-swiper-container .swiper-pagination-bullet {
	width: 20px !important;
	height: 20px !important;
	background: transparent !important;
	border: none !important;
	color: black !important;
	font-size: 24px !important;
	line-height: 1 !important;
	opacity: 0.5 !important;
	transition: opacity 0.3s !important;
	margin: 0 4px !important;
}

.exhibitor-swiper-container .swiper-pagination-bullet-active {
	opacity: 1 !important;
}

.exhibitor-swiper-container .swiper-pagination-bullet::before {
	content: '-' !important;
}

.exhibitor-swiper-container .swiper-pagination-bullet-active::before {
	content: '+' !important;
}
