﻿/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 0.3.1 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2014, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {
	.featherlight {
		display: none;
		position:fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 9999;
		height: 100%;
		text-align: center;
		cursor: pointer;
		background: #333;
		background: rgba(0, 0, 0, 0.8);
	}

	.featherlight .featherlight-close {
		position:absolute; 
		top:-7%; 
		right:-5px; 
		display:block;
		font-size:18px;
		font-weight:700;
		font-family: 'Open Sans', sans-serif;
		background:#9fbf69;
		color:#fff;
		font-weight:700;
		padding:3px;
		border-radius:50%;
		width:25px;
		height:25px;
		overflow:hidden;
		line-height: 17px;
		text-align: center;
		cursor:pointer;
	}
	.featherlight .featherlight-close:hover{
		color:#000;
	}

	.featherlight:before {
		content: '';
		display: inline-block;
		height: 100%;
		vertical-align: middle;
		margin-right: -0.25em;
	}
.featherlight .featherlight-content *
	{
		color:#fff;
	}
	.featherlight .featherlight-content {
		text-align: left;
		display: inline-block;
		vertical-align: middle;
		position: relative;
		padding: 2%;
		width: 95% !important;
		height:85% !important;
		margin-top:5%;
		/*max-height: 95%;
		overflow: auto;*/
		cursor: auto;
	}
	.featherlight .featherlight-content h2{
		position:absolute;
		top:-7%;
		display:block;
		width:100%;
		font-weight:400;
		left: 0;
		right: 0;
		text-align: center;
z-index:-1;
	}

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

	.featherlight-iframe .featherlight-content {
		min-height: 60%;
	}

	.featherlight iframe {
		border: none;
		position: absolute;
		top: 0; bottom: 0;
		left: 0; right: 0;
		height: 100%;
		width: 100%;
	}

	.featherlight .featherlight-image {
		max-width: 100%;
		max-height: 85vh;
	}
}