#coverflow {
	max-width: 1200px;
	height: 450px;
	background: rgba(0, 0, 0, 0);
	position: relative;
	margin: 0 auto;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	outline: solid 0px;
}

.covers {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
	position: absolute;
}

#coverflow ul {
	top: 64px;
	width: 5000px;
	margin: 0;
	padding: 0;
	position: absolute;
	-webkit-transition: -webkit-transform 0.5s ease;
	transition: transform 0.5s ease;
	-webkit-transform: translate3d(-40px, 0, 0);
	transform: translate3d(-40px, 0, 0);
}

#coverflow li {
	width: 110px;
	list-style: none;
	float: left;
	-webkit-transition: margin 0.5s ease, -webkit-transform 0.5s ease;
	transition: margin 0.5s ease, transform 0.5s ease;
	position: relative;
	pointer-events: none;
	}

#coverflow .imgdiv {
	width: 400px;
	-webkit-transition: -webkit-transform 0.5s ease;
	transition: transform 0.5s ease;
	pointer-events: auto;
	position: relative;
	display: block;
	}

#coverflow .imgdiv img {
	width: 400px;
	display: block;
}

#coverflow .refl {
	display: none;
}

#coverflow .text {
	position: absolute;
	bottom: -20.1%;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
	opacity: 0;
	visibility: hidden;
	pointer-events: auto;
	background: rgba(201, 50, 64, 0.7);
	width: 560px;
	margin-left: -80px;
	color: rgb(255, 255, 255);
	font-family: "Lato", Helvetica, Arial, sans-serif;
	font-size: 18px;
	padding: 5px;
	text-transform: uppercase;
}

@media(max-width: 415px) {
	#coverflow .text {
		width: 360px;
		left: 20px;
		bottom: 4.5%;
		margin-left: 0;
	}
}

#coverflow .text p {
	margin: 5px;
	position: relative;
	text-align: center;
}

li:nth-child(-n+4) .imgdiv,
#coverflow ul li .leftItems {
	-webkit-transform: perspective(600px) rotateY(60deg);
	transform: perspective(600px) rotateY(60deg);
}

li:nth-child(n+6) .imgdiv,
#coverflow ul li .rightItems {
	-webkit-transform: perspective(600px) rotateY(-60deg);
	transform: perspective(600px) rotateY(-60deg);
}

li:nth-child(5) .imgdiv,
#coverflow ul li .straight {
	-webkit-transform: rotateY(0deg) scale(1.4);
	transform: rotateY(0deg) scale(1.4);
}

@media(max-width: 415px){
	li:nth-child(5) .imgdiv,
	#coverflow ul li .straight {
		-webkit-transform: rotateY(0deg) scale(0.9);
		transform: rotateY(0deg) scale(0.9);
	}
}

#coverflow li:nth-child(-n+4),
#coverflow ul li.leftLI {
	-webkit-transform: translate3d(-140px, 0, 0);
	transform: translate3d(-140px, 0, 0);
}

#coverflow li:nth-child(n+6),
#coverflow ul li.rightLI {
	-webkit-transform: translate3d(140px, 0, 0);
	transform: translate3d(140px, 0, 0);
}

#coverflow ul .straightLI {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.notransition {
	-webkit-transition: none !important;
	transition: none !important;
}

#coverflow .imgdiv a,
#coverflow .text {
	cursor: pointer;
	/*grab cursor available for all browsers except IE (we can use external .cur file but uses too much CPU)*/
	cursor: -webkit-grab;
	cursor: grab;
}

#coverflow .Preloader {
	/*none - autoplay:false ; block - autoplay:true*/
	display: none;
}

#coverflow .Lightbox {
	display: block;
}

.ScrollBar {
	width: 750px;
	height: 20px;
	cursor: pointer;
	position: absolute;
	z-index: 100;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	margin-top:460px;
	overflow: hidden;
}

@media(max-width:415px) {
	.ScrollBar {
		margin-top:380px;
	}
}

.ScrollBar .firstArrow,
.ScrollBar .lastArrow{
	display: none;
	width: 20px;
	height: 20px;
	background: #cbced1;
	float: left;
	border-radius: 10px;
}

.ScrollBar .firstTriangle,
.ScrollBar .lastTriangle {
	margin-top: 6px;
	margin-left: 8px;
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
}

.ScrollBar .firstTriangle { border-right: 5px solid #777; }
.ScrollBar .lastTriangle { border-left: 5px solid #777; }

.ScrollBar .dragArea {
	width: 750px;
	height: 20px;
	background: #525c65;
	float: left;
	border-radius: 10px;
}

.ScrollBar .tracker {
	width: 90px;
	height: 16px;
	background: #cbced1;
	margin: 2px;
	border-radius: 10px;
	float: left;
	left: 0;
	z-index: 1000;
	transition: left 0.5s;
}

#coverflow>a {
	display: none;
}

#coverflow {
	margin-bottom: 60px;
	margin-top: 30px;
}

@media(max-width: 415px) {
	#coverflow {
		margin: 0;
	}
}