ngine-slider {
	display: block;
	width: 100%;
	position: relative;
	overflow: hidden;
}

ngine-slider ul {
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
	white-space: nowrap;
	font-size: 0px;
}

ngine-slider li {
	padding: 0;
	width: 100%;
	display: inline-block;
	white-space: normal;
	vertical-align: middle;
}

ngine-slider button {
	border: none;
	width: 32px;
	height: 32px;
	position: absolute;
	top: calc(50% - 30px);
	bottom: calc(50% - 30px);
	background-color: rgba(0, 0, 0, 0.3);
	cursor: pointer;
	border-radius: 50%;
}

ngine-slider button.left {
	left: 5px;
}

ngine-slider button.right {
	right: 5px;
}

ngine-slider button.left:before {
	position: absolute;
	display: block;
	width: 12px;
	height: 12px;
	border-top: 2px solid white;
	border-left: 2px solid white;
	transform: rotate(135deg);
	transform: rotate(-45deg);
	top: calc(50% - 6px);
	left: calc(50% - 4px);
	content: "";
}

ngine-slider button.right:before {
	position: absolute;
	display: block;
	width: 12px;
	height: 12px;
	border-top: 2px solid white;
	border-left: 2px solid white;
	transform: rotate(135deg);
	top: calc(50% - 6px);
	right: calc(50% - 4px);
	content: "";
}

ngine-slider button:hover {
	background-color: rgba(0, 0, 0, 0.6);
}

ngine-slider button:active {
	background-color: rgba(0, 0, 0, 0.9);
}