/* Slideshow container */
.slideshow-container {
	max-width: 100%;
	position: relative;
	margin: auto;
}

/* effect */
.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	animation-name: fade;
	animation-duration: 1.5s;
}

@-webkit-keyframes fade {
	from { opacity: .4; }
	to { opacity: 1; }
}

@keyframes fade {
	from { opacity: .4; }
	to { opacity: 1; }
}

/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -22px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
}

/* Position the "next button" to the right */
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
	border-bottom: none;
}

.prev {
	left: 0;
	border-radius: 3px 0 0 3px;
	border-bottom: none;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

/* Control buttons styling */
.control_button {
	width: 15px;
	height: 15px;
	border-radius: 20px;
	background: #fff;
	cursor: pointer;
	margin: 0 5px;
}

.control_button.active {
	background-color: #e9e9e9;
	color: #fff;
}

.control_panel {
	display: flex;
	gap: 7px;
	justify-content: center;
	margin-top: -70px;
	position: relative;
}

/* Responsive styles */
@media (max-width: 768px) {
	.slideshow-container {
		margin-top: 40px;
	}
}


.fsize13{
	font-size: 13px !important;
}

.fsize14{
	font-size: 14px !important;
}

.fsize15{
	font-size: 15px !important;
}