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 {
  -webkit-filter: none;
  filter: none;
}


/* Default theme styles of the overlay */

.remodal-overlay {
    z-index: 10000;
}

/* Default theme styles of the wrapper */

.remodal-wrapper {
    padding: 10px 10px 0;
    background: rgba(255,255,255,0.2);

    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    
    will-change: opacity, transform;
    animation-duration: 0.3s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
.remodal-wrapper.remodal-is-opening {
    animation-name: remodal-overlay-opening-keyframes;
}
.remodal-wrapper.remodal-is-closing {
    animation-name: remodal-overlay-closing-keyframes;
}

/* 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;
    filter: drop-shadow(0px 12px 10px rgba(0,0,0,0.3));
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
    animation-duration: 0.6s;
    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: 60px;
    height: 60px;
    display: block;
    margin: 0;
    outline: 0;
    background: #fcff0e;
    border-radius: 50%;
    box-shadow: 0px 3px 0px 0px rgba(0,0,0,1);
	border: 1px solid #000;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    
    position: absolute;
    top: -30px;
    right: -30px;
    z-index: 20;
    
    will-change: transform;
    transition: all 0.2s ease-out;
    filter: drop-shadow(0px 0px 3px rgba(0,0,0,0.2));
}
.remodal-close::before {
    content: "\e59b";
    display: inline-block;
    margin: 0.15em 0 0 0;
    font: var(--fa-font-regular);
    font-size: 1.8rem;
    letter-spacing: 0;
    line-height: 1em;
    color: #1c2324;
    
    will-change: transform;
    transition: all 0.2s ease-out;
}

.remodal-close:hover {
    transform: scale(0.95) translateY(4px);
    box-shadow: 0px 1px 0px 0px rgba(0,0,0,1);
}
.remodal-close:hover::before {
    transform: rotate(180deg) translateY(2px);
}


/* 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: translateY(-80px) scale(1.15); /*scale(1.2)*/
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

@keyframes remodal-opening-keyframes {
  from {
    transform: translateY(-80px) scale(1.15); /*scale(1.2)*/
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    transform: none;
    opacity: 1;
  }
  to {
    transform: translateY(80px); /*scale(0.4)*/
    opacity: 0;
  }
}

@keyframes remodal-closing-keyframes {
  from {
    transform: none;
    opacity: 1;
  }
  to {
    transform: translateY(80px); /*scale(0.4)*/
    opacity: 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;
}




/* --------- < 1100px > --------- */

@media (max-width: 1100px) {

.remodal {
    width: 80%;
}

  
}



/* --------- < 800px > --------- */

@media (max-width: 800px) {


}



/* --------- < 500px > --------- */

@media (max-width: 500px) {

.remodal {
    width: calc(100% - 40px);
    filter: drop-shadow(0px 8px 8px rgba(0,0,0,0.25));
}
.remodal-close {
    width: 40px;
    height: 40px;
    top: -20px;
    right: -20px;
}
.remodal-close::before {
    margin: 0.05em 0 0 0;
    font-size: 1.2rem;
}
.remodal-close:hover::before {
    transform: rotate(180deg) translateY(0);
}

  
}
