.lhce-carousel {
	position: relative;
	width: 100%;
	max-width: 100%;
	padding: 10px 40px;
	box-sizing: border-box;
	overflow: visible;
	min-width: 0;
}

/* important inside Elementor flex/grid containers */
.elementor-widget-container,
.elementor-widget-lhce_logo_hover_carousel,
.elementor-widget-lhce_logo_hover_carousel .elementor-widget-container {
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

/* constrain the actual swiper box */
.lhce-carousel.swiper {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

/* keep wrapper full width but do not let it define layout width outside parent */
.lhce-carousel .swiper-wrapper {
	overflow: visible;
	box-sizing: border-box;
}

/* slide content can overflow for tooltip, but slide width must remain bounded */
.lhce-carousel .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	height: auto;
	overflow: visible;
	box-sizing: border-box;
}

.lhce-item {
	position: relative;
	text-align: center;
	padding: 20px 10px 40px;
	outline: none;
	overflow: visible;
	width: 100%;
	box-sizing: border-box;
}

.lhce-icon-wrap {
	position: relative;
	display: inline-block;
	overflow: visible;
}

.lhce-icon-img {
	max-width: 90px;
	width: auto;
	height: auto;
	display: block;
	margin: 0 auto;
}

.lhce-caption {
	margin-top: 18px;
	font-size: 16px;
	line-height: 1.35;
	font-style: italic;
	max-width: 170px;
	margin-left: auto;
	margin-right: auto;
	color: #1E1E1E;
}

.lhce-tooltip {
	position: absolute;
	bottom: calc(100% + 18px);
	left: 50%;
	transform: translateX(-50%);
	min-width: 200px;
	max-width: 240px;
	background: #83979a;
	border: 3px solid #008491;
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease;
	z-index: 9999;
	text-align: left;
	box-sizing: border-box;
	pointer-events: auto;
	border-radius: 8px;
}

.lhce-tooltip::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 12px solid #83979a;
}

.lhce-tooltip-inner {
	background: #fff;
	color: #333;
	padding: 10px;
	font-size: 14px;
	line-height: 1.4;
	border-radius: 4px;
}

.lhce-tooltip-inner a {
	text-decoration: underline;
}

.lhce-tooltip-inner p {
	margin-bottom: 0
}

.lhce-item:hover .lhce-tooltip,
.lhce-item:focus .lhce-tooltip,
.lhce-item.lhce-active .lhce-tooltip {
	opacity: 1;
	visibility: visible;
}

.lhce-swiper-button-prev,
.lhce-swiper-button-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 30;
	width: 28px;
	height: 28px;
	cursor: pointer;
}

.lhce-swiper-button-prev {
	left: 0;
}

.lhce-swiper-button-next {
	right: 0;
}

.lhce-swiper-button-prev::after,
.lhce-swiper-button-next::after {
	font-size: 20px;
	color: #666;
	font-family: swiper-icons;
}

.lhce-swiper-button-prev::after {
	content: 'prev';
}

.lhce-swiper-button-next::after {
	content: 'next';
}

@media (max-width: 767px) {
	.lhce-carousel {
		padding-left: 25px;
		padding-right: 25px;
	}

	.lhce-tooltip {
		min-width: 160px;
		max-width: 200px;
	}
}