/*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;
	-webkit-transition: opacity 120ms ease-out;
	-moz-transition: opacity 120ms ease-out;
	-ms-transition: opacity 120ms ease-out;
	-o-transition: opacity 120ms ease-out;
	transition: opacity 120ms ease-out;
}

/*viewport in visible state*/
.jsplash-viewport.jsplash-visible{
	opacity: 1;
	-webkit-transition: opacity 240ms ease-out;
	-moz-transition: opacity 240ms ease-out;
	-ms-transition: opacity 240ms ease-out;
	-o-transition: opacity 240ms ease-out;
	transition: opacity 240ms ease-out;
}

/*close button*/
.jsplash-closebtn{
	position: absolute;
	top: 1px;
	right: 2px;
	cursor: pointer;
	z-index: 100;
	font: normal normal normal 14px/1 FontAwesome;
	border-radius: 100%;
	width: 25px;
	height: 25px;
	color: #ffffff;
	text-align: center;
	padding: 0;
	font-size: 22px;
	line-height: 25px;
}

.jsplash-closebtn:before {
	content: '\f00d';
}

/*splash window*/
.jsplash-wrapper{
	padding: 20px 30px;
	background-color: #fff;
	box-shadow: 0 4px 14px -2px rgba(0, 0, 0, .32);
	border-radius: 8px;
	background: #31a8ad;
	background: -moz-linear-gradient(top,  #31a8ad 0%, #3c536c 100%);
	background: -webkit-linear-gradient(top,  #31a8ad 0%,#3c536c 100%);
	background: linear-gradient(to bottom,  #31a8ad 0%,#3c536c 100%);
	overflow: hidden;
}



.jsplash-wrapper:before {
	content:'';
	position: absolute;
	width: 300px;
	height: 300px;
	top: -110px;
	right: -120px;
	background: #009688;
	border-radius: 100%;
	box-shadow: inset 20px 0px 0 10px rgba(28, 183, 169, 0.4),inset 7px 50px 0 10px rgba(28, 183, 169, 0.38);
}

/*splash window*/
.jsplash-inner{
	position: relative;
	max-width: 400px;
	height: 100%;
	overflow: auto;
	text-align: center;
	color: #FFF;
}

/*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;
}