html.remodal-is-locked
{
	overflow: hidden;
	-ms-touch-action: none;
		touch-action: none;
}
.remodal, [data-remodal-id]
{
	display: none;
}
.remodal-overlay
{
	display: none;
	position: fixed;
	left: -5000px;
	right: -5000px;
	top: -5000px;
	bottom: -5000px;
	z-index: 9999;
}
.remodal-wrapper
{
	position: fixed;
	z-index: 10000;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: none;
	overflow: auto;
	text-align: center;
	-webkit-overflow-scrolling: touch;
}
.remodal-wrapper:after
{
	content: "";
	display: inline-block;
	height: 100%;
	margin-left: -0.05em;
}
.remodal-overlay, .remodal-wrapper
{
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}
.remodal
{
	position: relative;
	outline: none;
	-webkit-text-size-adjust: 100%;
	   -moz-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
			text-size-adjust: 100%;
}
.remodal-is-initialized
{ 
	display: inline-block;
}
.remodal-bg.remodal-is-opening, .remodal-bg.remodal-is-opened
{
	-webkit-filter: blur(3px);
			filter: blur(3px);
}
.remodal-overlay
{
	background: rgba(0, 0, 0, 0.8);
}
.remodal-overlay.remodal-is-opening, .remodal-overlay.remodal-is-closing
{
	-webkit-animation-duration: 0.3s;
			animation-duration: 0.3s;
	-webkit-animation-fill-mode: forwards;
			animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening
{
	-webkit-animation-name: remodal-overlay-opening-keyframes;
			animation-name: remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing
{
	-webkit-animation-name: remodal-overlay-closing-keyframes;
			animation-name: remodal-overlay-closing-keyframes;
}
.remodal-wrapper
{
	padding: 10px 10px 0;
}
.remodal
{
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
	width: 840px;
	padding: 40px 120px 20px;
	border: 5px solid #0199ff;
	-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
	color: #000;
	background: #fff;
}
.remodal .remodal-close
{
	position: absolute;
	top: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	border-bottom: 0 none;
}
.remodal .success
{
	padding-bottom: 50px;
}
.remodal.remodal-is-opening,
.remodal.remodal-is-closing
{
	-webkit-animation-duration: 0.3s;
			animation-duration: 0.3s;
	-webkit-animation-fill-mode: forwards;
			animation-fill-mode: forwards;
}
.remodal.remodal-is-opening
{
	-webkit-animation-name: remodal-opening-keyframes;
			animation-name: remodal-opening-keyframes;
}
.remodal.remodal-is-closing
{
	-webkit-animation-name: remodal-closing-keyframes;
			animation-name: remodal-closing-keyframes;
}
.remodal, .remodal-wrapper:after
{
	vertical-align: middle;
}

/* Keyframes */
@-webkit-keyframes remodal-opening-keyframes {
	from {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);

	opacity: 0;
	}
	to {
	-webkit-transform: none;
	transform: none;

	opacity: 1;
	}
}
@keyframes remodal-opening-keyframes {
	from {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);

	opacity: 0;
	}
	to {
	-webkit-transform: none;
	transform: none;

	opacity: 1;
	}
}
@-webkit-keyframes remodal-closing-keyframes {
	from {
	-webkit-transform: scale(1);
	transform: scale(1);

	opacity: 1;
	}
	to {
	-webkit-transform: scale(0.95);
	transform: scale(0.95);

	opacity: 0;
	}
}
@keyframes remodal-closing-keyframes {
	from {
	-webkit-transform: scale(1);
	transform: scale(1);

	opacity: 1;
	}
	to {
	-webkit-transform: scale(0.95);
	transform: scale(0.95);

	opacity: 0;
	}
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
	from {
	opacity: 0;
	}
	to {
	opacity: 1;
	}
}
@keyframes remodal-overlay-opening-keyframes {
	from {
	opacity: 0;
	}
	to {
	opacity: 1;
	}
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
	from {
	opacity: 1;
	}
	to {
	opacity: 0;
	}
}

@keyframes remodal-overlay-closing-keyframes {
	from {
	opacity: 1;
	}
	to {
	opacity: 0;
	}
}
.lt-ie9 .remodal-overlay
{
	background: #000;
}
.lt-ie9 .remodal
{
	width: 840px;
}
