/**
 * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
 * Version 0.4.10 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2014, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/

.featherlight-previous,
.featherlight-title,
.featherlight-next {
	display: block;
	position: absolute;
	overflow: hidden;
	height: 28px;
	height: 2.5vw;
	bottom: 0;

	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;

	background-color: #000;
	opacity: 0.6;
	transition: opacity 600ms;
}

.featherlight-previous:hover,
.featherlight-next:hover {
	opacity: 0.8;	
	transition: opacity 300ms;
}

.featherlight-top .featherlight-previous,
.featherlight-top .featherlight-title,
.featherlight-top .featherlight-next {
	bottom: auto;
	top: 0;
}

.featherlight-previous {
	left: 0;
	right: 75%;
	cursor: pointer;
}

.featherlight-title {
	left: 25%;
	right: 25%;
	font-weight: bold;
}

.featherlight-next {
	left: 75%;
	right: 0;
	cursor: pointer;
}

.featherlight-next span,
.featherlight-title span,
.featherlight-previous span {
	display: inline-block;
	width: 100%;

	font-size: 14px;
	font-size: 1.25vw;
	line-height: 28px;
	line-height: 2.5vw;

	vertical-align: middle;
	text-align: center;

	font-family: "Bank Gothic Pro Light", sans-serif;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #db9607;
}

.featherlight-title span {
	color: #ffffff;
}

@media only screen and (max-width: 1024px) {
	.featherlight-next,
	.featherlight-title,
	.featherlight-previous {
		height: 28px;
	}

	.featherlight-next span,
	.featherlight-title span,
	.featherlight-previous span {
		font-size: 14px;
		line-height: 28px;
	}
}
