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



.featherlight-next:hover,
.featherlight-previous:hover {
	background: rgba(255,255,255,0);
}


.featherlight-next span
 {
	display: inerherit;
	position: absolute;

	top: 50%;
	right:10px;

	/* center horizontally */
	text-align: center;

	font-size: 32px;
	line-height: 80px;

	/* center vertically */
	margin-top: -40px;

	text-shadow: 0px 0px 5px #fff;
	color: #000000;
	font-style: normal;
	font-weight: normal;
	cursor:pointer;
}


.featherlight-previous span {
	display: inerherit;
	position: absolute;

	top: 50%;
	left:10px;

	/* center horizontally */
	text-align: center;

	font-size: 32px;
	line-height: 80px;

	/* center vertically */
	margin-top: -40px;

	text-shadow: 0px 0px 5px #fff;
	color: #000000;
	font-style: normal;
	font-weight: normal;
	cursor:pointer;
}


.featherlight-next:hover span,
.featherlight-previous:hover span {
	display: inline-block;
}

.featherlight-swipe-aware .featherlight-next,
.featherlight-swipe-aware .featherlight-previous {
	display: none;
}

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

/* Hide navigation in case of single image */
.featherlight-first-slide.featherlight-last-slide .featherlight-previous,
.featherlight-first-slide.featherlight-last-slide .featherlight-next {
	display:none;
}


/* Always display arrows on touch devices */
@media only screen and (max-device-width: 1024px){
	.featherlight-next:hover,
	.featherlight-previous:hover {
		background: none;
	}
	.featherlight-next span,
	.featherlight-previous span {
		display: block;
	}
}
