/* ============================== */
/* SWIPER DOTS */
/* ============================== */

.ao-swiper.swiper-pagination {
	position: static;
	display: none;
	justify-content: center;
	margin-top: 2rem;
}
.ao-swiper.swiper-pagination .swiper-pagination-bullet {
	width: 0.75rem;
	height: 0.75rem;
	margin: 0 .25rem;
	border-radius: 50%;
	transition: background 0.3s;
}

@media (max-width: 768px) {
	.ao-swiper.swiper-pagination {
		display: flex;
	}
}
/* ======= LIGHT BACKGROUND =======  */

.lightBK .ao-swiper.swiper-pagination .swiper-pagination-bullet{
	background: rgba(92, 102, 116, 0.4);
}
.lightBK .ao-swiper.swiper-pagination .swiper-pagination-bullet-active {
	background: rgba(92, 102, 116, 1);
}
/* ======= DARK BACKGROUNDS =======  */

.darkBK .ao-swiper.swiper-pagination .swiper-pagination-bullet{
	background: rgba(255, 255, 255, 0.5);
}
.darkBK .ao-swiper.swiper-pagination .swiper-pagination-bullet-active{
	background: rgba(255, 255, 255, 1);
}
/* ============================== */
/* SWIPER ARROWS */
/* ============================== */

.ao-swiper.swiper-button-wrapper {
	/* position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 1rem;*/
	z-index: 2;
	display:block;
}
.ao-swiper.swiper-button-prev,
.ao-swiper.swiper-button-next {
	color: #fff;
	width: 2.5rem;
	height: 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: background 0.3s ease;
	/*	position: static;*/
}
.ao-swiper.swiper-button-prev {
	border-top-right-radius: 5rem;
	border-bottom-right-radius: 5rem;
	left: -1.5rem;
}
.ao-swiper.swiper-button-next {
	border-top-left-radius: 5rem;
	border-bottom-left-radius: 5rem;
	right: -1.5rem;
}
.ao-swiper.swiper-button-prev:hover,
.ao-swiper.swiper-button-next:hover {
	background: rgba(0, 0, 0, 0.4);
}
.ao-swiper.swiper-button-next:after,
.ao-swiper.swiper-button-prev:after {
	font-size: 1.125rem;
}
@media (min-width: 768px) {
	.ao-swiper.swiper-button-wrapper {
		display:none;
	}
}
/* ============================== */
/* LOADER SPINNER */
/* ============================== */

.ao-swiper.swiper-loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 3.125rem;
	height: 3.125rem;
	border-radius: 50%;
	animation: loadingSpinner 0.8s linear infinite;
	z-index: 10;
}
@keyframes loadingSpinner {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}
/* ======= LIGHT BACKGROUND =======  */

.lightBK .ao-swiper.swiper-loader {
	border: 0.3rem solid rgba(92, 102, 116, 0.4);
	border-top: 0.3rem solid rgba(92, 102, 116, 0.1);
}
/* ======= DARK BACKGROUNDS =======  */

.darkBK .ao-swiper.swiper-loader {
	border: 0.3125rem solid rgba(255, 255, 255, 0.4);
	border-top: 0.3125rem solid rgba(255, 255, 255, 1);
}