#img-slider .hcg-slide-container {
	width: auto;
	height: auto;
}

.hcg-slider {
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
}

.hcg-slide-container {
	max-width: 100%;
	display: inline-block;
	position: relative;
}

.hcg-slides {
	display: none;
	overflow: hidden;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
	border: solid 1px #a0a0a0;
}

.hcg-slides img {
	max-width: 100%;
	max-height: 100%;
	display: inline-block;
}

.hcg-slide-text {
	color: #ffffff;
	font-size: 14px;
	padding: 3px 5px;
	position: absolute;
	bottom: 0;
	border-radius: 5px;
	left: 50%;
	text-align: center;
	text-shadow: 0 0 2px #000;
	background-color: rgba(255, 255, 255, 0.30);
	display: inline-block;
	transform: translate(-50%, -5px);
}

.hcg-slide-dot-control {
	margin-top: 0px;
	text-align: center;
}

.hcg-slide-dot {
	cursor: pointer;
	height: 20px;
	width: 20px;
	margin: 0 10px;
	background-color: #42eb80;
	border-radius: 50%;
	display: inline-block;
	font-weight: bold;
	border: none;
}

.hcg-slide-dot.dot-active {
	background-color: #2bb907;
	color: white;
	border-radius: 2px;
}

.hcg-slide-number {
	color: #ffffff;
	font-size: 12px;
	padding: 4px 7px;
	position: absolute;
	border-radius: 5px;
	top: 5px;
	left: 5px;
	background-color: rgba(255, 255, 255, 0.30);
}

/************CSS Animation***********/
.animated {
	animation-name: vanishIn;
	animation-duration: 1s;
}

@keyframes vanishIn {
	0% {
		opacity: 0;
		transform-origin: 50% 50%;
		transform: scale(2, 2);
		-webkit-filter: blur(90px);
	}

	100% {
		opacity: 1;
		transform-origin: 50% 50%;
		transform: scale(1, 1);
		-webkit-filter: blur(0px);
	}
}

.vanishIn {
	animation-name: vanishIn;
}

/* simple slider*/
.slide {
	display: none;
	max-width: 800px;
	width: 100%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.slide img {
	width: 100%;
	display: block;
}

/* Optional: Fade animation */
.fade {
	animation-name: fade;
	animation-duration: 1.5s;
}

@keyframes fade {
	from {
		opacity: .5
	}

	to {
		opacity: 1
	}
}