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

.featherlight-next,
.featherlight-previous {
	border: 1px solid #e1e1e1;
	display: block;
	height: 65px;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	width: 65px;
}

.featherlight-next {
	left: 64px;
}

.featherlight .featherlight-next svg,
.featherlight .featherlight-previous svg {
	stroke: #222;
	height: 36px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%) translateY(-50%);
	top: 50%;
	width: 36px;
}

.featherlight .featherlight-next:hover,
.featherlight .featherlight-next:focus,
.featherlight .featherlight-previous:hover,
.featherlight .featherlight-previous:focus {
	background-color: #222;
	border-color: #222;
	color: #fff;
}

.featherlight .featherlight-next:hover svg,
.featherlight .featherlight-next:focus svg,
.featherlight .featherlight-previous:hover svg,
.featherlight .featherlight-previous:focus svg {
	stroke: #fff;
}

/* Hide navigation while loading */
.featherlight-loading .featherlight-previous, .featherlight-loading .featherlight-next {
	display:none;
}