/**
 * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
 * Version 1.5.0 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2016, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {
	.featherlight-next,
	.featherlight-previous {
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		width: 50%;
		cursor: pointer;
		/* preventing text selection */
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		/* IE9 hack, otherwise navigation doesn't appear */
		background: rgba(0,0,0,0);
	}

	.featherlight-next {
		right: 0;
	}

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

	.featherlight-next span,
	.featherlight-previous span {
		display: none;
		position: absolute;

		top: 50%;
		width: auto;

		font-size: 60px;
		line-height: 60px;

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

		text-shadow: 0px 0px 35px #666;
		color: #fff;
		font-style: normal;
		font-weight: normal;
		font-family: Arial, sans-serif;
	}
	.featherlight-next span {
		right: 30px;
		text-align: right;
	}

	.featherlight-previous span {
		left: 30px;
		text-align: left;
	}


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

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