/* Remodal's necessary styles */

/* hide scroll bar */
html.remodal-is-locked{
	overflow:hidden;
	touch-action:none;-ms-touch-action:none;
}

/* anti FOUC */
.remodal,
[data-remodal-id]{display:none;}

/* necessary styles of the overlay */
.remodal-overlay{
	bottom:-5000px;
	display:none;
	left:-5000px;
	position:fixed;
	right:-5000px;
	top:-5000px;
	z-index:9999;
}

/* necessary styles of the wrapper */
.remodal-wrapper{
	-webkit-overflow-scrolling:touch;
	bottom:0;
	display:none;
	left:0;
	overflow:auto;
	position:fixed;
	right:0;
	text-align:center;
	top:0;
	z-index:10000;
}

	.remodal-wrapper:after{
		content:'';
		display:inline-block;
		height:100%;
		margin-left:-0.05em;
	}

/* fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper{backface-visibility:hidden;-webkit-backface-visibility:hidden;}

/* necessary styles of the modal dialog */
.remodal{
	outline:none;
	position:relative;
	text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;
}

/* disable anti-FOUC */
.remodal-is-initialized{display:inline-block;}