/**
 * Featherlight Animations
 * Version 0.2.0
 *
 * Copyright 2015, WP Site Care
 * MIT Licensed.
 */
@-webkit-keyframes featherlightLoader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes featherlightLoader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 1.2.3 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2015, Noel Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
 */
.featherlight {
	background: transparent;
	cursor: pointer;
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	text-align: center;
	white-space: nowrap;
	z-index: 2147483647;
}

.featherlight * {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.featherlight:last-of-type {
	background: rgba(0, 0, 0, 0.8);
}

.featherlight:before {
	content: "";
	display: inline-block;
	height: 100%;
	margin-right: -0.25em;
	vertical-align: middle;
}

.featherlight .featherlight-content {
	background: #fff;
	border: 0;
	cursor: auto;
	display: inline-block;
	max-height: 95%;
	max-width: 90%;
	min-width: inherit;
	overflow: auto;
	padding: 0;
	position: relative;
	text-align: left;
	vertical-align: middle;
	white-space: normal;
}

.featherlight .featherlight-inner {
	display: block;
}

.featherlight .featherlight-close-icon {
	background: rgba(255, 255, 255, 0.3);
	color: #000;
	cursor: pointer;
	font: Arial, sans-serif;
	line-height: 25px;
	position: absolute;
	top: 0;
	right: 0;
	text-align: center;
	width: 20px;
	z-index: 9999;
}

.featherlight .featherlight-image {
	border: 20px solid #fff;
	max-width: 100%;
}

@media only screen and (max-width: 1024px) {
	.featherlight .featherlight-image {
		border: 10px solid #fff;
	}
}

.featherlight iframe {
	border: 0;
}

.featherlight-iframe .featherlight-content {
	border-bottom: 0;
	padding: 0;
}


/* Animated Loader
--------------------------------------------- */

.featherlight-loading .featherlight-content {
	-webkit-animation: featherlightLoader 1s infinite linear;
	animation: featherlightLoader 1s infinite linear;
	background: transparent;
	border: 8px solid #909090;
	border-left-color: #fff;
	font-size: 10px;
}

.featherlight-loading .featherlight-content,
.featherlight-loading .featherlight-content:after {
	-webkit-border-radius: 50%;
	border-radius: 50%;
	height: 10em;
	width: 10em;
}

.featherlight-loading .featherlight-close,
.featherlight-loading .featherlight-inner {
	display: none;
}

/**
 * Featherlight Gallery - an extension for the ultra slim jQuery lightbox
 * Version 1.2.3 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2015, Noel Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
 */
.featherlight-next,
.featherlight-previous {
	background: transparent;
	cursor: pointer;
	display: block;
	position: absolute;
	top: 20px;
	right: 20px;
	bottom: 0;
	left: 80%;
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

@media only screen and (max-width: 1024px) {
	.featherlight-next,
	.featherlight-previous {
		top: 10px;
		right: 10px;
		left: 85%;
	}
}

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

@media only screen and (max-width: 1024px) {
	.featherlight-next:hover,
	.featherlight-next:focus,
	.featherlight-previous:hover,
	.featherlight-previous:focus {
		background: none;
	}
}

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

.featherlight-next span,
.featherlight-previous span {
	color: #fff;
	display: none;
	font-size: 80px;
	font-style: normal;
	font-weight: normal;
	line-height: 80px;
	margin-top: -40px;
	position: absolute;
	top: 50%;
	left: 5%;
	text-align: center;
	text-shadow: 0 0 5px #fff;
	width: 82%;
}

@media only screen and (max-width: 1024px) {
	.featherlight-next span,
	.featherlight-previous span {
		display: block;
		font-size: 40px;
		margin-top: -30px;
	}
}

.featherlight-previous {
	right: 80%;
	left: 20px;
}

@media only screen and (max-width: 1024px) {
	.featherlight-previous {
		right: 85%;
		left: 10px;
	}
}

.featherlight-next span {
	right: 5%;
	left: auto;
}

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