.img-carousel {
	max-width: 100%;
	position: relative;
	width: 400px;
	justify-content: center;
	display: block;
	margin: auto;
}

.img-slide {
	display: none;
}

.slideimg {
	width: 100%;
	height: 50%;
}

.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 45%;
	width: auto;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	background-color: rgba(12,12,12,0.6);
	border-radius: 0 6px 6px 0;
	user-select: none;
}

.next {
	right: 0;
	border-radius: 6px 0 0 6px;
}

.text {
	color: #f2f2f2;
	font-size: 15px;
	padding: 8px 12px;
	position: absolute;
	bottom: 8px;
	width: 100%;
	text-align: center;
}

.fade {
	animation-name: fade;
	animation-duration: 1.5s;
}

@keyframes fade {
	from { opacity: 0 }
	to { opacity: 1 }
} 

