/*
 *  Remodal - v1.0.3
 *  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 */

/* causes jump to top
html.remodal-is-locked { 

   overflow: hidden!important;    avoids dual scrollbars 
  
}*/

html.remodal-is-locked body{
  overflow: hidden!important
}

/*html, body { overflow: auto !important; margin: 0; } /*avoids jump to top*/ 

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;

  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
 
  top: 0em;
  right: 0em;
  bottom: 0em;
  left: 0em;
   

  display: none;
  overflow: auto;

  text-align: center;

  /* -webkit-overflow-scrolling: touch; */
}

.remodal-wrapper:after {
  display: inline-block;

  height: 100%;
  margin-left: -0.05em;

  content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
   -webkit-transform: translateZ(0px); 
   /* -webkit-backface-visibility: hidden;
    backface-visibility: hidden;  */
}

/* Necessary styles of the modal dialog */

.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 {
  /* Disable Anti-FOUC */
  display: inline-block;
}

.modal-top,
.modal-bottom{
   padding: 2rem 4%;
}

.modal-body {
  background-color: rgba(255, 255, 255, 1);
  border-radius: .5rem; 
  overflow: hidden;
}

.modal-bottom{
  background-color: #fff;
  padding-bottom: 3rem
}

.remodal .done {
  display: none;
}

.remodal {
  
  width: auto
}

.page.members .content:after,
.squeeze-main .content:after{
  position: absolute;
  content: "";
  top: 6px;
  bottom: 6px;
  right: 6px;
  left: 6px;
  background-color: #fff;
  background-color: rgba(255,255,255,.9);  
  
  z-index: -1;

   -webkit-border-radius: 2px;
           border-radius: 2px;

} 



.page.members .remodal.content:after {
    background-color: rgba(255,255,255,1);
}
.modal__col--ddl-r{
  padding-right: 2rem 
}
.modal__col-img{
  -webkit-flex: 0 1 37.5%;
          flex: 0 1 37.5%;
}

.modal__col-info{
  -webkit-flex: 0 1 60%;
          flex: 0 1 60%;
}

.modal__col-inline {
  display: inline-block;
  position: relative;
  vertical-align: top;  
outline: 0px dashed #0cf;
}

.subscribe-modal__col-full{
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.page-ty .subscribe-modal__col-full{
  max-width: 620px;
}

.modal__txt{
  margin-bottom: 1.25rem;
  text-align: center;
}

