/**
 * Featherlight – 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.
**/

html.with-featherlight {
	overflow: hidden; }

	
.featherlight {
	display: none;
	position:fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: 2147483647;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	transition: opacity .6s ease-in-out;
	background: linear-gradient(90deg, rgba(28, 80, 142,.80) 0%, rgb(12, 35, 64,.80) 100%);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);}

.featherlight:last-of-type {
	background: rgba(12, 35, 64, 0.95); }

.featherlight:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle; }

.featherlight .featherlight-content {
	text-align: left;
	vertical-align: middle;
	display: inline-block;
	overflow: auto;
	padding: 0;
	margin-left: 5%;
	max-width: 900px;
	margin-right: 5%;
	max-height: 95%;
	cursor: auto;
	color: #fff;
	white-space: normal;
	border-radius: 20px;
	padding: 2rem;
	box-sizing: border-box;
	background: var(--color__blue-medium);
	box-shadow: 0 0 20px rgba(0,0,0,.3); }

.featherlight .featherlight-content img {
	border-radius: 20px;
	max-height: 80vh;
	margin: 0 auto; }
	
.featherlight .featherlight-inner {
display: block; }

.featherlight script.featherlight-inner,
.featherlight link.featherlight-inner,
.featherlight style.featherlight-inner {
	display: none; }

.featherlight .featherlight-close-icon {
	position: absolute;
	z-index: 9999;
	overflow: hidden;
	top: 3.5rem;
	right: 3.5rem;
	line-height: 25px;
	width: 20px;
	height: 20px;
	cursor: pointer;
	text-align: center;
	text-indent: -99em;
	font-family: Arial, sans-serif;
	background: #fff;
	background: url('../svg/icon__close__white.svg');
	background-size: 20px;
	color: #000;
	border: none;
	padding: 0; }

.featherlight .featherlight-close-icon::-moz-focus-inner {
	border: 0;
	padding: 0; }

.featherlight .featherlight-image {
	width: 100%; }


.featherlight-iframe .featherlight-content {
	border-bottom: 0;
	padding: 0;
	-webkit-overflow-scrolling: touch; }

.featherlight iframe {
	border: none; }

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

@media only screen and (max-width: 1024px) {
	.featherlight .featherlight-content {
		margin-left: 20px;
		margin-right: 20px;
		max-height: 90%;
		padding: 10px 10px 0;
		border-bottom: 10px solid transparent;	}
}

@media print {
	html.with-featherlight > * > :not(.featherlight) {
		display: none;
	}
}

.featherlight .caption {	
	text-align: center;
	padding: 2rem; }
	
.featherlight-next,
.featherlight-previous {
	position: absolute;
	top: 50%;
	overflow: hidden;
	text-indent: -99em;
	opacity: 1;
	bottom: 3.8rem;
	width: 3.8rem;
	height:  3.8rem;
	display: block;
	z-index: 999;
	transition: all .3s;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='38px' height='38px' viewBox='0 0 38 38' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(-1190.000000, -1393.000000)' fill='%23FFFFFF'%3E%3Cg transform='translate(1190.000000, 1393.000000)'%3E%3Cpath d='M19,0 C29.4934102,0 38,8.50658975 38,19 C38,29.4934102 29.4934102,38 19,38 C8.50658975,38 0,29.4934102 0,19 C0,8.50658975 8.50658975,0 19,0 Z M15.9415509,6.14946774 L12.8505323,9.33914152 L21.5968566,18.3646198 L12.8505323,27.3879322 L15.9415509,30.5780392 L27.7791037,18.3648364 L15.9415509,6.14946774 Z' id='Combined-Shape'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }

.featherlight-next {
	transform: translate(-3rem, -2rem);
	right: -2rem; 	}
	
.featherlight-previous { 
	left: -2rem;
	transform: translate(3rem, -2rem) rotate(180deg); }	
	
	
	
	
@media all and (max-width: 760px) {	

	.featherlight .featherlight-content,
	.featherlight .featherlight-content img {
		border-radius: 10px; }	
	
	.featherlight-next,
	.featherlight-previous {
		margin-top: -4rem;
		width: 2.5rem;
		height: 2.5rem; }
}		
	
	
	
/* Undo Blur for content inside iFrame */	
html.with-featherlight #container {
	filter: blur(0); }

html.with-featherlight #footer {
	display: none; }	
	
html.with-featherlight #container .inner {
	padding-left: 0;
	padding-right: 0; }	
	
	
	
	
	
	
	