.carousel-container {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.carousel-container .img-container {
	position: absolute;
	top: 0;
	left: 0;
	transition: left 0.5s linear;
}

.carousel-container .img-item {
	display: inline-table;
	margin: 0 !important;
}

.carousel-container span {
	position: absolute;
	z-index: 1;
	font-size: 3rem;
	color: #0099ff;
	top: 50%;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	cursor: pointer;
	padding: 10px;
}

.carousel-container span:hover {
	background-color: #e5e5e5;
}

.carousel-container .prev {
	left: 1rem;
}

.carousel-container .next {
	right: 1rem;
}

.carousel-container .index-show {
	position: absolute;
	z-index: 1;
	padding: 4px 6px;
	color: #000;
	background-color: #fff;
	bottom: 2%;
	left: 50%;
	transform: translate(-50%, 0);
	display: table;
	font-size: 1.5rem;
    font-weight: bold;
}