/*
 *  Remodal - v1.1.0
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */


/* Hide scroll bar */
html.remodal-is-locked { -ms-touch-action: none; overflow: hidden; 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 { -webkit-backface-visibility: hidden; backface-visibility: hidden; }


/* Necessary styles of the modal dialog */
.remodal { -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; outline: none; position: relative; text-size-adjust: 100%; }
.remodal-is-initialized { /* Disable Anti-FOUC */ display: inline-block; }