/* Slideshow */
.slideshow {
	opacity: 0;
	transition: opacity 0.2s ease;
	width: 100%;
	height: 620px;
	background: black;
	overflow: hidden;
	position: relative;
}
 .slideshow:-webkit-full-screen {
 width: 100% !important;
 height: 100% !important;
}
.slideshow-images {
	width: 100%;
	height: 100%;
}
.slideshow-image-container {
	width: 100%;
	height: 100%;/*background: #323232;*/
}
.slideshow-background {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	filter: blur(10px);
	transform: scale(1.03);
	transition: background-image 0.3s ease;
}
.slideshow-image-container {
	position: absolute;
	width: 100%;
	height: 100%;
	visibility: hidden;
	opacity: 0;
	transition: all 0.5s ease;
}
.slideshow-image-container.active {
	opacity: 1;
	visibility: visible;
}
.slideshow-image-darken {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
}
.slideshow-image-container.active .slideshow-image {
	right: 0;
	bottom: 0;
}
.slideshow.cover .slideshow-image {
	background-size: cover !important;
}
.slideshow-image {
	position: absolute;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: all 0.5s ease;
	/*right: 50%;*/
	bottom: 15%;
}
.slideshow-controls {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
 .slideshow:-webkit-full-screen .slideshow-image-darken {
 background-color: rgba(0,0,0,0.95);
}
 .slideshow:-webkit-full-screen .slideshow-background {
 filter: none;
}
.slideshow-close {
	position: absolute;
	top: 0;
	right: 0;
	padding: 16px 24px;
	font-size: 24px;
	cursor: pointer;
	text-shadow: 2px 2px 16px rgba(0,0,0,0.3);
}
.slideshow-nav i {
	position: absolute;
	font-size: 30px;
	left: 45%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.slideshow-nav-right i {
	left: 55%;
}
.slideshow-nav {
	position: absolute;
	top: 50%;
	background-color: rgba(0,0,0,0.6);
	width: 50px;
	height: 100px;
	transform: translateY(-50%);
	cursor: pointer;
	z-index: 3;
}
.slideshow-nav-left {
}
.slideshow-nav-right {
	right: 0;
}
.slideshow-thumbnail {
	transition: all 0.3s ease;
	opacity: 0.5;
	box-shadow: 0 2px 2px rgba(0,0,0,0.3);
	display: inline-block;
	width: 50px;
	height: 40px;
	background-size: cover;
	border: 2px solid white;
	cursor: pointer;
	margin: 0px 5px;
}
.slideshow-thumbnail:hover {
	opacity: 0.8;
}
.slideshow-thumbnail.active {
	transform: scale(1.3);
	opacity: 1;
}
.small-thumbnails .slideshow-thumbnail {
	width: 24px;
	height: 20px;
}
.slideshow-thumbnails-wrapper {
	position: absolute;
	bottom: 2%;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	text-align: center;
}
.slideshow.fullscreen {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 100;
	background-color: black;
}
.slideshow-dot {
	background-color: white;
	transition: all 0.3s ease;
	opacity: 0.5;
	box-shadow: 0 2px 2px rgba(0,0,0,0.3);
	display: inline-block;
	width: 14px;
	height: 14px;
	border-radius: 16px;
	cursor: pointer;
	margin: 0px 5px;
}
.slideshow-dot:hover {
	opacity: 0.8;
}
.slideshow-dot.active {
	transform: scale(1.3);
	opacity: 1;
}
