body {
	overflow-x: hidden
}
.rotating-slider {
	margin: 5em auto;
	height: 360px;
	position: relative;
	width: 480px
}
.rotating-slider ul.direction-controls {
	list-style: none;
	margin: 0;
	padding: 0
}
.rotating-slider ul.direction-controls li.left-arrow button{
	position: absolute;
	top: 150%;
	left: 200%;
	transform: translatey(-50%);
	background: ;
	border:none;
}
.rotating-slider ul.direction-controls li.left-arrow button:hover{background: ;}
.rotating-slider ul.direction-controls li.right-arrow button{
	position: absolute;
	top: 150%;
	right: 200%;
	transform: translatey(-50%);
	background: ;
	border:none;
}
.rotating-slider ul.direction-controls li.right-arrow button:hover{background: ;}
@media (max-width: 1600px) {
	.rotating-slider ul.direction-controls li.left-arrow button{display:none;}
	.rotating-slider ul.direction-controls li.right-arrow button{display:none;}
}



.rotating-slider ul.direction-controls li button {
	width:37px;height:56px;font-size:0px;
}

.rotating-slider ul.slides {
	border-radius: 50%;
	height: 100%;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	top: 0;
	left: 50%;
	transform: translatex(-50%) rotate(0);
	transform-origin: center center;
	width: 100%
}
.rotating-slider ul.slides li {
	background-color: #ecf0f1;
	background-position: center;
	background-size: cover;
	display: block;
	list-style: none;
	position: absolute;
	top: 0;
	left: 50%;
	text-align: center;
	transform-origin: bottom center;
	width: 100%
}
