/**
 * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
 * Version 1.3.2 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2015, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {
	.featherlight-next,
	.featherlight-previous {
		display: block;
		position: absolute;
		top:50%;
		margin-top:-15px;
		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 {
		left: auto;
		right: 13px;
	}
	.featherlight-previous {
		left: 13px;
		right: auto;
	}

/*
	.featherlight-next:hover,
	.featherlight-previous:hover {
		background: rgba(255,255,255,0.25);
	}
*/


	.featherlight-next span,
	.featherlight-previous span {
/* 		display: none; */
		display: inline-block;
		position: relative;

		/*top: 50%;
		left: 5%;
		width: 82%;*/

		/* center horizontally */
		text-align: center;

/* 		font-size: 80px; */
		font-size: 35px;
		line-height: 80px;

		/* center vertically */
		/*margin-top: -40px;*/

/*		text-shadow: 0px 0px 5px #fff;
 		color: #fff; */
		color: #ccc;
		font-style: normal;
		font-weight: normal;
	}
	.featherlight-next span {
		/*right: 5%;
		left: auto;*/
	}


	.featherlight-next:hover span,
	.featherlight-previous:hover span {
		display: inline-block;
	}
	
	
	/* modificaciones para que use el mismo estilo que la web */
	.featherlight-previous span::after {
	    margin-left: -4px;
	    transform: rotate(-135deg);
	}
	
	.featherlight-next span::after {
	    margin-left: -7px;
	    transform: rotate(45deg);
	}
	.featherlight-next span::after, .featherlight-previous span::after {
	    border-color: #fff;
	}
	.featherlight-next span::after, .featherlight-previous span::after {
	    border-style: solid;
	    border-width: 3px 3px 0 0;
	    content: "";
	    display: block;
	    height: 11px;
	    left: 50%;
	    margin-top: -6px;
	    position: absolute;
	    top: 50%;
	    width: 11px;
	}
	
	.featherlight-next span, .featherlight-previous span {
		background-color: #999;
	    border-radius: 50%;
	    display: block;
	    float: none;
	    height: 27px;
	    line-height: 100;
	    overflow: hidden;
	    position: relative;
	    text-indent: -9999px;
	    width: 27px;
		opacity:0.8;
	}
	.featherlight-next span:hover, .featherlight-previous span:hover {
		opacity:1;
	}
	/* modificaciones para que use el mismo estilo que la web */
	
	

	/* Hide navigation while loading */
	.featherlight-loading .featherlight-previous, .featherlight-loading .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;
	}
}

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
	.featherlight-next,
	.featherlight-previous {
		top: 10px;
		right: 10px;
		left: 85%;
	}

	.featherlight-previous {
		left: 10px;
		right: 85%;
	}

	.featherlight-next span,
	.featherlight-previous span {
		margin-top: -30px;
		font-size: 40px;
	}
}
