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

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
    will-change: opacity, transform;
    animation-duration: 0.4s;
    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: 30px;
    background: url("../img/bg-black.jpg") repeat left top;
    background-size: 100px auto;
    border: 2px solid #ff2296;
    
    will-change: opacity, transform;
    box-shadow: 0px 10px 14px 0px rgba(0, 0, 0, 0.4);
}

.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: 100px;
    height: 100px;
    margin: 0;
    outline: 0;
	border: 0;
    background: url("../img/ink_close.png") no-repeat center center;
    background-size: contain;
    cursor: pointer;
    text-decoration: none;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: -35px;
    right: -35px;
    z-index: 10;
    
    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;
    font: var(--fa-font-regular);
    font-size: 2rem;
    letter-spacing: 0;
    line-height: 1em;
    color: #1c2324;
    
    will-change: transform;
    transition: all 0.2s ease-out;
}

.remodal-close:hover {
    transform: scale(0.95);
}
.remodal-close:hover::before {
    transform: rotate(180deg);
}


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




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

@media (max-width: 800px) {

.remodal {
    width: 80%;
}
.remodal-close {
    width: 80px;
    height: 80px;
    top: -25px;
    right: -25px;
}
.remodal-close::before {
    font-size: 1.5rem;
}
  
}



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

@media (max-width: 500px) {

.remodal-close {
    width: 60px;
    height: 60px;
    top: -5px;
    right: -5px;
}
.remodal-close::before {
    font-size: 1.1rem;
}

.remodal {
    border-radius: 20px;
}

  
}
