/* ============ Fix CSS ============ */
.slideshow-list-inner {
	padding-left: 5px !important;
}
.slideshow-list-inner2 {
	width: 100%;
	position: relative;
	overflow: hidden;
	margin-bottom: 4px;
}
.slideshow-no-wrap {
	position: relative;
	overflow: hidden;
	border-radius: 7px;
	font-size: 1.1em;
}

/* ============ Slideshow container ============ */
.slideshow-container {
	position: relative;
	overflow: hidden;
}

/* ============ Slides ============ */
.slideshow-slides {
	height: 0;
	opacity: 0;
	transition: all 1s ease;
	overflow: hidden;
	background-size: 100% 100%;
	background-position: top;
	background-repeat: no-repeat;
	position: relative;
}

.slideshow-slides-text {
	text-align: center;
	padding: 10px 50px 10px 50px;
	background-color: rgba(255, 255, 255, 0.8);
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

/* ============ Image navigator container ============ */
.slideshow-image-navigator-container {
	position: absolute;
	top: 0;
	right: -22px;
	bottom: 0;
	margin-right: 5px;
	overflow-x: hidden;
	overflow-y: scroll;
	scroll-behavior: smooth;
}
.slideshow-image-navigator-container img {
	margin: 2px;
	border: 1px solid #000000;
	cursor: pointer;
	opacity: 0.5;
	border-radius: 3px;
}
img.slideshow-active, .slideshow-image-navigator-container img:hover {
	opacity: 1;
}

/* Dot navigator container */
.slideshow-dot-navigator-container {
	text-align: center;
	padding: 10px;
	background: #ddd;
}
.slideshow-dot-navigator {
	cursor: pointer;
	height: auto;
	width: auto;
	padding: 3px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}
.slideshow-active, .slideshow-dot-navigator:hover {
	background-color: #717171;
	color: #ffffff;
}

/* ============ Next & previous buttons ============ */
.slideshow-prev, .slideshow-next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -30px;
	padding: 5px;
	color: #888;
	font-weight: bold;
	font-size: 20px;
	user-select: none;
}

.slideshow-prev:hover, .slideshow-next:hover {
	background-color: rgba(0,0,0,0.8);
	color: white;
	text-decoration: none;
}

.slideshow-prev {
	left: 0;
	border-radius: 0 3px 3px 0;
}
.slideshow-next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

/* ============ Responsive ============ */
@media (max-width: 700px) {
	.slideshow-list-inner {
		margin-right: 0 !important;
	}
	.slideshow-image-navigator-container {
		display: none;
	}
	.slideshow-no-wrap {
		margin-right: 0 !important;
	}
}