.eon-slider {
	position: relative;
	overflow: hidden;
	max-width: 100%;
}

.eon-slides {
	display: flex;
	transition: transform 0.6s ease;
}

.eon-slide {
	min-width: 100%;
}

.eon-slide img {
	width: 100%;
	display: block;
	cursor: pointer;
}

.eon-prev,
.eon-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0,0,0,0.5);
	color: #fff;
	border: none;
	padding: 10px 15px;
	cursor: pointer;
	font-size: 20px;
}

.eon-prev { left: 10px; }
.eon-next { right: 10px; }

.eon-dots {
	text-align: center;
	margin-top: 10px;
}

.eon-dots button {
	height: 10px;
	width: 10px;
	margin: 5px;
	border-radius: 50%;
	border: none;
	background: #ccc;
	cursor: pointer;
}

.eon-dots button.active {
	background: #333;
}

/* Lightbox */

.eon-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.8);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.eon-lightbox img {
	max-width: 90%;
	max-height: 90%;
}

.eon-lightbox.active {
	display: flex;
} 
