.fullscreen-btn {

}

body.fullscreen-open {
	width:			100%;
	height:			100%;
	overflow:		hidden;
}

.fullscreen-container {
	position:		fixed;
	top:			0;
	left:			0;
	width:			100%;
	height:			100%;
	padding:		10px;
	background:		rgba(255,255,255,0.5);
	opacity:		0;
	transition:		opacity 200ms;
	z-index:		9000;
}

.fullscreen-container-instant {
	transition:		none!important;
}

body.fullscreen-open .fullscreen-container {
	opacity:		1;
}

.fullscreen-content {
	width:			100%;
	height:			100%;
	background:		#fff;
	position:		relative;
	overflow:		hidden;
}

.fullscreen-content-img > img {
	position:		absolute;
}

.fullscreen-content-iframe > iframe {
	width:			100%;
	height:			100%;
}

.fullscreen-close {
	position:		absolute;
	top:			0px;
	right:			0px;
	border:			none;
	background:		transparent;
	padding:		20px;
	font-size:		2em;
	z-index:		9999;
	line-height:		.5em;
}
