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 {
  background: rgba(0, 0, 0, 0.4);
  z-index: 10000;
}

.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;
    border-radius: 4px;
    background: #000;
    
    will-change: opacity, transform;
    box-shadow: 0px 6px 8px 1px rgba(0, 0, 0, 0.3);
}

.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;
    border: 0;
    outline: 0;
    background: #000;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 10;
    
    will-change: transform;
    transition: all 0.2s ease-out;
    box-shadow: 0px 3px 6px 0 rgba(0, 0, 0, 0.4);
}
.remodal-close::before {
    content: "\f00d";
    display: block;
    margin: 0;
    font: var(--fa-font-thin);
    
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -0.5em;
    
    color: #fff;
    font-size: 3.4rem;
    line-height: 1em;
    letter-spacing: 0;
    text-align: center;
    
    transition: all 0.15s ease-out;
	-webkit-transition: all 0.15s ease-out;
}
.remodal-close:hover {
    transform: scale(0.85);
}


/* 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;
}
  
}
