div.future_gallery {
	width: 90%;
	position: relative;
	overflow: hidden;
	padding: 5%;
}

div.future_gallery ul.thumbnails {
	width: 90%;
	max-height: 25%;
	z-index: 999;
	position: absolute;
	bottom: 5%;
	left: 5%;
}

div.future_gallery ul.thumbnails li {
	display: inline-block;
	position: relative;
	list-style-type: none;
	cursor: pointer;
	padding: 0;
	margin: 0 5% 0 0;
	filter: grayscale(0.6);
	-webkit-filter: grayscale(0.6);
	transition: 1s;
}

div.future_gallery ul.thumbnails li:hover,
div.future_gallery ul.thumbnails li.current {
	filter: grayscale(0);
	-webkit-filter: grayscale(0);
	transition: 1s;
}

div.future_gallery ul.thumbnails li img {
	filter: blur(1px);
	-webkit-filter: blur(1px);
	transition: 1s;
	width: 100%;
}

div.future_gallery ul.thumbnails li.current img,
	div.future_gallery ul.thumbnails li:hover img {
	filter: blur(0px);
	-webkit-filter: blur(0px);
	transition: 1s;
}

div.future_gallery ul.thumbnails h2 {
	position: absolute;
	bottom: 0;
	width: 100%;
	margin: 0;
	padding: 1% 0px;
	text-align: center;
	background: #000;
	color: #fff;
}

div.future_gallery .current_content {
	clear: both;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	filter: grayscale(0) blur(0px) opacity(1);
	-webkit-filter: grayscale(0) blur(0px) opacity(1);
	transition: 1s;
	background-size: auto 100%;
}

div.future_gallery .current_content.transition {
	filter: grayscale(1) blur(5px) opacity(0.5);
	-webkit-filter: grayscale(1) blur(5px) opacity(0.5);
	transition: 1s;
}

div.future_gallery .current_content .text {
	top: 5%;
	left: 5%;
	position: absolute;
	width: 90%;
	max-height: 60%;
	padding: 2%;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	overflow: auto;
	box-sizing: padding-box;
	transform: translateX(-130%);
	transition: 1s;
}

div.future_gallery .current_content .text.show {
	z-index: 999;
	transform: translateX(0%);
	transition: 1s;
}

div.future_gallery .current_content .text .inner {
	position: relative;
	padding-bottom: 20px;
}

div.future_gallery .current_content .text .inner .link {
	position: absolute;
	right: 0;
	bottom: 0;
}

p.cleaner {
	clear: both;
}

@media screen and (max-width: 400px) {
	div.future_gallery ul.thumbnails h2 {
		font-size: 12px !important;
	}
}