/*viewport*/
.jsplash-viewport{
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.57);
	opacity: 0;
	z-index: 9999;
	transition: opacity 120ms ease-out;
}

/*viewport in visible state*/
.jsplash-viewport.jsplash-visible{
	opacity: 1;
	transition: opacity 240ms ease-out;
}

/*close button*/
.jsplash-closebtn{
	position: absolute;
	top: -7px;
	right: -10px;
	cursor: pointer;
	z-index: 100;
	font: normal normal normal 14px/1 FontAwesome;
	background-color: #281D11;
	border-radius: 100%;
	width: 25px;
	height: 25px;
	color: #FFFFFF;
	text-align: center;
	box-shadow: 0 0 1px 0px rgba(0, 0, 0, 0.14),-2px 6px 6px -2px rgba(0, 0, 0, 0.42);
	padding: 0;
	font-size: 30px;
	line-height: 25px;
}

.jsplash-closebtn:before {
	content: "\f00d";
	content: '\f05c';
}

/*splash window*/
.jsplash-wrapper{
	background: #FFFFFF;
	padding: 12px;
	background-color: #fff;
	box-shadow: 0 3px 14px -1px rgba(0, 0, 0, .32);
	border-radius: 7px;
}

/*splash window*/
.jsplash-inner{
	position: relative;
	max-width: 400px;
	height: 100%;
	overflow: auto;
	text-align: center;
}

/*fullscreen mode*/
.jsplash-wrapper.jsplash-fullscreen{
	width: 100%;
	height: 100%;
	padding: 0;
	overflow-y: auto;
}

.jsplash-fullscreen .jsplash-inner{
	padding: 12px;
	max-width: auto;
	height: auto;
	overflow: auto;
}