/*
 *
 * Description: ynp lightbox css
 * Author: Gary Pass
 * Author Url: http://www.yournetpass.com
 * Version: 1.0.0
 * License: GPL3
 */
 
/*  Copyright 2017  Gary Pass  ( email : gary@yournetpass.com )

	This program is free software: you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation, either version 3 of the License, or
  (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

	You should have received a copy of the GNU General Public License
  along with this program.  If not, see http://www.gnu.org/licenses/.
*/

#ynp-lightbox-overlay
{
	z-index: 10000;
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8 );
}

#ynp-lightbox-loading-indicator
{
	z-index: 10001;
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	max-width: 96%;
	max-height: 96%;
	margin: 20px 2%;
	padding: 20px;
	background-color: #FFFFFF;
}

#ynp-lightbox-content
{
	z-index: 10001;
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	max-width: 96%;
	margin: 20px 2%;
	padding: 0;
	transition: left 200ms ease-in-out;
}

#ynp-container-lightbox-close
{
	clear: both;
	float: right;
	overflow: hidden;
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
}

#ynp-lightbox-close
{
	float: right;
	position: relative;
	width: 20px;
	height: 20px;
	margin: 0;
	padding: 0;
	background-image: url(images/black/button-close.png);
	cursor: pointer;
}

#ynp-lightbox-header
{
	overflow: hidden;
	position: relative;
	width: 96%;
	margin: 0;
	padding: 20px 2% 0 2%;
	background-color: #FFFFFF;
}

#ynp-lightbox-title
{
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	visibility: hidden;
}

#ynp-lightbox-copy
{
	overflow: hidden;
	position: relative;
	width: 96%;
	margin: 0;
	padding: 0 2% 10px;
	visibility: hidden;
	background-color: #FFFFFF;
}

#ynp-lightbox-footer
{
	overflow: hidden;
	position: relative;
	width: 96%;
	margin: 0;
	padding: 0 2% 20px;
	visibility: hidden;
	background-color: #FFFFFF;
}