	.ac--container {
		width: 100%;
		margin: 2px auto;
		overflow: hidden;
		box-shadow: 1px 1px 4px rgba(0,0,0,0.08);
		border: 7px solid rgba(255,255,255,0.6);
	}

	.ac--container figure {
		position: absolute;
		top: 0;
		left: 50px; /* width of visible piece */
		width: 100%;
		box-shadow: 0 0 0 1px rgba(255,255,255,0.6);
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}

	.ac--container > figure {
		position: relative;
		left: 0 !important;
	}

	.ac--container img {
		display: block;
		width: 100%;
		height:100%;
	}

	.ac--container input {
		position: absolute;
		top: 0;
		left: 0;
		width: 50px; /* just cover visible part */
		height: 100%;
		cursor: pointer;
		border: 0;
		padding: 0;
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
		opacity: 0;
		z-index: 100;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
	}
	.ac--container input:checked{
		width: 5px;
		left: auto;
		right: 0px;
	}
	.ac--container input:checked ~ figure {
		-webkit-transition: all 0.7s ease-in-out;
		-moz-transition: all 0.7s ease-in-out;
		-o-transition: all 0.7s ease-in-out;
		-ms-transition: all 0.7s ease-in-out;
		transition: all 0.7s ease-in-out;
		left: 80%;
	}

	.ac--container figcaption {
		width: 100%;
		height: 100%;
		background: rgba(87, 73, 81, 0.1);
		position: absolute;
		top: 0px;
		-webkit-transition: all 0.2s linear;
		-moz-transition: all 0.2s linear;
		-o-transition: all 0.2s linear;
		-ms-transition: all 0.2s linear;
		transition: all 0.2s linear;
	}

	.ac--container figcaption span {
		position: absolute;
		top: 40%;
		margin-top: -30px;
		right: 20px;
		left: 20px;
		overflow: hidden;
		text-align: center;
		background: rgba(87, 73, 81, 0.3);
		line-height: 20px;
		font-size: 18px;
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
		opacity: 0;
		text-transform: uppercase;
		letter-spacing: 4px;
		font-weight: 700;
		padding: 20px;
		color: #fff;
		text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
	}

	.ac--container input:checked + figcaption,
	.ac--container input:checked:hover + figcaption{
		background: rgba(87, 73, 81, 0);
	}

	.ac--container input:checked + figcaption span {
		-webkit-transition: all 0.4s ease-in-out 0.5s;
		-moz-transition: all 0.4s ease-in-out 0.5s;
		-o-transition: all 0.4s ease-in-out 0.5s;
		-ms-transition: all 0.4s ease-in-out 0.5s;
		transition: all 0.4s ease-in-out 0.5s;

		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=99)";
		filter: alpha(opacity=99);
		opacity: 1;

		top: 50%;
	}

	.ac--container #ia-selector-last:checked + figcaption span {
		-webkit-transition-delay: 0.3s;
		-moz-transition-delay: 0.3s;
		-o-transition-delay: 0.3s;
		-ms-transition-delay: 0.3s;
		transition-delay: 0.3s;
	}

	.ac--container input:hover + figcaption {
		background: rgba(87, 73, 81, 0.03);
	}

	.ac--container input:checked ~ figure input{
		z-index: 1;
	}

	@media screen and (max-width: 767px) {
		.ac--container {
			width: 750px;
			height:250px;
			border: 0;
		}

		.ac--container figure {
			left: 0px;
			width: 750px;
			height:250px;
		}

		.ac--container input {
			width: 40px;
			height:250px;
		}

		.ac--container input:checked ~ figure {
			left: 360px;
			height:250px;
		}

		.ac--container figcaption span {
			font-size: 16px;
		}
	}

	@media screen and (max-width: 520px) {
		.ac--container {
			width: 510px;
		}

		.ac--container figure {
			left: 20px;
			width: 180px;
		}

		.ac--container input {
			width: 40px;
		}

		.ac--container input:checked ~ figure {
			left: 180px;
		}

		.ac--container figcaption span {
			font-size: 12px;
			letter-spacing: 2px;
			padding: 10px;
			margin-top: -20px;
		}
	}
	figure { margin: 0; }
	html, input { font-family: sans-serif; }