/* =================================================================
   Emerald Image Slider
   ================================================================= */

.emerald-img-slider {
	--emerald-img-slider-h: 640px;
	--emerald-img-slider-radius: 20px;
	position: relative;
	width: 100%;
	height: var(--emerald-img-slider-h);
	overflow: hidden;
	border-radius: var(--emerald-img-slider-radius);
}

.emerald-img-slider__swiper,
.emerald-img-slider__swiper .swiper-wrapper,
.emerald-img-slider__swiper .swiper-slide {
	height: 100%;
}

.emerald-img-slider__swiper .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: cover;
}

.emerald-img-slider__pager {
	position: absolute !important;
	left: 50% !important;
	right: auto !important;
	bottom: 22px !important;
	top: auto !important;
	z-index: 2;
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: auto !important;
	padding: 8px 14px;
	border: 0.61px solid #ffffff54;
	border-radius: 999px;
	background: rgba(31, 45, 42, 0.42);
	box-shadow: 0 4.92px 19.67px 0 #1f2d2a14;
	-webkit-backdrop-filter: blur(5.29px);
	backdrop-filter: blur(5.29px);
	transform: translateX(-50%);
}

.emerald-img-slider__pager .swiper-pagination-bullet {
	display: block;
	flex: none;
	width: 7px;
	height: 7px;
	margin: 0 !important;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
	opacity: 1;
	transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
}

.emerald-img-slider__pager .swiper-pagination-bullet-active {
	width: 9px;
	height: 9px;
	background: #ffffff;
}

@media (max-width: 767px) {
	.emerald-img-slider__pager {
		bottom: 16px !important;
		padding: 7px 12px;
	}
}
