/*
Copyright 01-Mar-2018 - Little Fire Digital Ltd
-----------------------------------------------------------------------
Reuse and modification by permission only
*/
/* 
	Created on : 01-Mar-2018, 13:07:26
	Author     : simon
	Compyright     : Little Fire Digital Ltd  01-Mar-2018
*/

#modal_overlay {
	position: fixed;
	display: none;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba( 0, 0, 0, 0 );
	z-index: 10000;
}

#modal_window {
	position: fixed;
	transform: translate( -50%, -50% );
	left: 50%;
	top: 50%;
	display: none;
	background-color: rgba( 255, 255, 255, 0 );
	border-radius: 3px;
	padding: 5px;
	z-index: 10001;
}

#modal_window > * {
	margin: 0;
}

#modal_content {
	overflow-y: auto;
}

#modal_content > iframe {
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;	
}

.modal_visible #wrapper {
	transition: filter 1s ease;
}

.modal_visible {
	position: relative;
}


.modal_visible #modal_overlay {
	transition: background-color 1s ease;	
	display: block;	
}

.modal_visible #modal_window {
	transition: background-color .5s ease;	
	display: block;
}

.modal_active #wrapper {
	filter: blur(3px);
}

.modal_active #modal_overlay {	
	background-color: rgba( 0, 0, 0, .5 );
}

.modal_active #modal_window {	
	background-color: rgba( 255, 255, 255, 1 );
}


.modal_content {
	display: none;
}