RemodalRemodalRemodalRemodal/*
 *  Remodal - v1.1.1
 *  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 default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
    z-index: 10000;

    background: rgba(255,255,255,0.2);
    
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
    will-change: opacity, transform;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */

.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */

.remodal {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 20px 0;
    box-sizing: border-box;
    
    will-change: opacity, transform;
    box-shadow: 8px 8px 12px 1px rgba(0, 0, 0, 0.16);
	
	background: rgba(255,255,255,0.78);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
    will-change: opacity, transform;
    animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
    will-change: opacity, transform;
    animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */

.remodal-close {
    width: 50px;
    height: 50px;
    display: block;
    margin: 0;
    padding: 0;
    outline: 0;
    background: #fff;
	border: 2px solid;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
	box-sizing: border-box;
    
    position: absolute;
    top: -25px;
    left: -25px;
    z-index: 10;
    
    will-change: transform;
    transition: all 0.2s ease-out;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.15);
}
.remodal-close::before,
.remodal-close::after {
    content: "";
    display: block;
    margin: 0;
    
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    
    transition: all 0.15s ease-out;
}
.remodal-close::before {
    transform: rotate(45deg);
}
.remodal-close::after {
    transform: rotate(-45deg);
}
.remodal-close:hover {
    transform: scale(0.88);
}


/* Dialog buttons */

.remodal-confirm,
.remodal-cancel {
  font: inherit;

  display: inline-block;
  overflow: visible;

  min-width: 110px;
  margin: 0;
  padding: 12px 0;

  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;

  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;

  border: 0;
}

/* Keyframes
   ========================================================================== */

@-webkit-keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.2);

    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);

    opacity: 1;
  }
  to {
    transform: scale(0.4);
    opacity: 0;
    filter: blur(0);
  }
}

@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);

    opacity: 1;
  }
  to {
    transform: scale(0.4);
    opacity: 0;
    filter: blur(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;
  }
}

/* Media queries
   ========================================================================== */

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 1000px;
  }
}

/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}




/* --------- < 1050px > --------- */

@media (max-width: 1050px) {

.remodal {
    width: 90%;
}
  
}



/* --------- < 500px > --------- */

@media (max-width: 500px) {

.remodal-close {
    width: 36px;
    height: 36px;
    top: -15px;
    left: -15px;
}
.remodal-close::before {
    font-size: 2.6rem;
}
  
}
