/**
 * Logo Carousel Styles
 */

.angie-logo-carousel-wrapper {
	position: relative;
	width: 100%;
}

.angie-logo-carousel-wrapper .angie-logo-carousel-swiper {
	width: 100%;
	height: 100%;
	padding-bottom: 30px;
	overflow: hidden;
}

.angie-logo-carousel-wrapper .angie-logo-carousel-swiper .swiper-wrapper {
	align-items: center;
}

.angie-logo-carousel-wrapper .angie-logo-carousel-swiper .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
	box-sizing: border-box;
}

/* Editor fallback before Swiper initialises */
.angie-logo-carousel-wrapper .angie-logo-carousel-swiper:not(.swiper-initialized) .swiper-wrapper {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 20px;
}

.angie-logo-carousel-wrapper .angie-logo-carousel-swiper:not(.swiper-initialized) .swiper-slide {
	flex: 0 0 auto;
	width: auto;
}

.logo-carousel-item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 150px;
	position: relative;
	transition: all 0.3s ease;
	overflow: hidden;
	box-sizing: border-box;
}

.logo-carousel-link {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	cursor: pointer;
}

.logo-carousel-img {
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	transition: all 0.3s ease;
	user-select: none;
	-webkit-user-drag: none;
	pointer-events: none;
}

.angie-logo-carousel-wrapper .angie-logo-carousel-next,
.angie-logo-carousel-wrapper .angie-logo-carousel-prev {
	color: #333;
}

.angie-logo-carousel-wrapper .angie-logo-carousel-pagination .swiper-pagination-bullet {
	background: #ccc;
	opacity: 1;
}

.angie-logo-carousel-wrapper .angie-logo-carousel-pagination .swiper-pagination-bullet-active {
	background: #333;
}

.elementor-editor-active .angie-logo-carousel-wrapper,
.elementor-editor-active .angie-logo-carousel-wrapper * {
	visibility: visible;
}