.slideshow {
	width: 740px;
	height: 555px;
	position: relative;
	text-align: center;
	line-height: 1150px;
	margin: 0 auto;
	padding-bottom: 30px;
	margin-top: 100px;
}

.slideshow[data-transition="zoom"] {
	overflow: hidden;
}

/* slideshow item */
.slideshow--item {
	width: 740px;
	height: 555px;
	line-height: 1.5;
	position: absolute;
	top: 0;
	visibility: hidden;
}

.slideshow--bullet:checked + .slideshow--item {
	visibility: visible;
}

.slideshow[data-transition="fade"] .slideshow--item {
	visibility: visible;
	opacity: 0;
	transition: .3s ease-out opacity;
}

.slideshow[data-transition="fade"] .slideshow--bullet:checked + .slideshow--item {
	opacity: 1;
}

.slideshow[data-transition="zoom"] .slideshow--item {
	visibility: visible;
	opacity: 1;
	transform: scale(0.000001);
	transition: .3s ease-out transform;
}

.slideshow[data-transition="zoom"] .slideshow--bullet:checked + .slideshow--item {
	opacity: 1;
	transform: scale(1);
}

/* slideshow navigation */
.slideshow--nav{
	position: relative;
	margin: 0 auto;
	/*bottom: 37px;*/
	width: 50px;
	height: 13px;
	background-color: blue;
	display: none;
	z-index: 88;
	cursor: pointer;
	color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.slideshow--nav:after {
	width: 50px;
	height: 50px;
	display: block;
	content: '\25B6';
	font-size: 14px;
	line-height: 50px;
	color: #fff;
	position: absolute;
	top: 50%;
	right: 0px;
	margin-top: -.5em;
	/*padding: 10px;*/
	background-color: #5E1D17;
}
/*.slideshow--nav:after:hover{
	background-color: blueviolet;
}*/

.slideshow--nav-previous {
	left: -19px;
	bottom: 50px;
	display: block;
}

.slideshow--nav-previous:after {
	-webkit-transform: scaleX(-1);
	-moz-transform: scaleX(-1);
	transform: scaleX(-1);
	right: auto;
	left: 0px;
}

.slideshow--nav-next {
	left: 31px;
	bottom: 63px;
	display: block;
}

/* Radiobuttons to control the slideshow */
.slideshow--bullet {
	cursor: pointer;
	font-size: .75em;
	width: 12px;
	height: 12px;
	display: inline-block;
	position: relative;
	z-index: 99;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #5E1D17;
	border: #5E1D17 2px solid;
	border-radius: 1em;
	transition: .3s ease-out background,
				.3s ease-out transform;
}

.slideshow--bullet:checked {
	background: rgba(0, 0, 0, 0);
	outline: none;
	-webkit-transform: scale(1.3);
	-moz-transform: scale(1.3);
	transform: scale(1.3);
}
@media screen and (max-width: 1500px) {
.slideshow {
	width: 600px;
	height: 450px;
	line-height: 940px;
}
.slideshow--item {
	width: 600px;
	height: 450px;
}
.slideshow img{
	
	height: 450px;
}
}
@media screen and (max-width: 1300px) {
	.slideshow {
		width: 500px;
		height: 375px;
		line-height: 785px;
	}
	.slideshow--item {
		width: 500px;
		height: 375px;
	}
	.slideshow img{
		width: 500px;
		height: 374px;
	}
	}
@media screen and (max-width: 950px) {
	.slideshow {
		width: 500px;
		height: 374px;
		line-height: 785px;
	}
	
	.slideshow--item {
		width: 500px;
		height: 374px;
	}
	.slideshow img{
		width: 500px;
		height: 374px;
	}
}
@media screen and (max-width: 530px) {
	.slideshow {
		width: 300px;
		height: 224px;
		line-height: 485px;
	}
	
	.slideshow--item {
		width: 300px;
		height: 224px;
	}
	.slideshow img{
		width: auto;
		height: 224px;
	}
}
