/* Ripple Modal Styles */
.modal {
  background: #eee;
  height: 100vh;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: opacity .5s linear;
  transition: opacity .5s linear;
  width: 100vw;
  z-index: 2;
}
.modal.active {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: none;
  transition: none;
}

.ripple-container {
  height: 100vh;
  left: 0;
  overflow: hidden;
  position: fixed;
  pointer-events: none;
  top: 0;
  width: 100vw;
  z-index: 3;
}
.ripple-container .ripple {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #eee;
  border-radius: 50%;
  display: block;
  -webkit-mask-image: -webkit-radial-gradient(circle, #eee, #444);
  mask-image: radial-gradient(circle, #eee, #444);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  -webkit-transform: translate(-50%, -50%) scale(0) translateZ(0) translate3d(0, 0, 0);
  transform: translate(-50%, -50%) scale(0) translateZ(0) translate3d(0, 0, 0);
  overflow: scroll;
  will-change: opacity;
}
.ripple-container .ripple.is-animating {
  -webkit-animation: ripple 1s linear;
  animation: ripple 1s linear;
  -webkit-transform: translate(-50%, -50%) scale(1) translateZ(0) translate3d(0, 0, 0);
  transform: translate(-50%, -50%) scale(1) translateZ(0) translate3d(0, 0, 0);
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0) translateZ(0) translate3d(0, 0, 0);
    transform: translate(-50%, -50%) scale(0) translateZ(0) translate3d(0, 0, 0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1) translateZ(0) translate3d(0, 0, 0);
    transform: translate(-50%, -50%) scale(1) translateZ(0) translate3d(0, 0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1) translateZ(0) translate3d(0, 0, 0);
    transform: translate(-50%, -50%) scale(1) translateZ(0) translate3d(0, 0, 0);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0) translateZ(0) translate3d(0, 0, 0);
    transform: translate(-50%, -50%) scale(0) translateZ(0) translate3d(0, 0, 0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1) translateZ(0) translate3d(0, 0, 0);
    transform: translate(-50%, -50%) scale(1) translateZ(0) translate3d(0, 0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1) translateZ(0) translate3d(0, 0, 0);
    transform: translate(-50%, -50%) scale(1) translateZ(0) translate3d(0, 0, 0);
    opacity: 0;
  }
}
/* Demo Styles */
.link {
  color: #448aff;
  text-decoration: none;
}

.modal-trigger {
  display: block;
}

.modal {
  background: #eee;
  z-index: 11;
}
.modal .close {
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 30px;
  text-indent: -999999px;
  position: absolute;
  left: 30px;
  top: 10px;
  width: 30px;
}
.modal .close:before {
  content: "\f406";
  font-family: 'Genericons', sans-serif;
  text-indent: 0;
  position: absolute;
  left: 0;
  color: #444;
  width: 30px;
}
.modal .wrapper {
  top: 50%;
  left: 50%;
  position: fixed;
  text-align: left;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 75%;
  height: 70%;
}
.modal .wrapper p {
  font-size: 35px;
  font-weight: bold;
  margin-top: -20px;
  margin-bottom: 10px;
  color: #1f254f;
}
.modal .wrapper img {
  display: block;
  width: 70px;
  min-width: 0;
  height: 70px;
  margin: 0;
  position: relative;
  left: 80px;
  top: 0;
  -webkit-transform: translate(0, -118%);
  transform: translate(0, -118%);
}
.modal .wrapper .pickupimg {
  display: block;
  width: 70px;
  min-width: 0;
  height: 70px;
  margin: 0;
  position: relative;
  left: 145px;
  top: 0;
  -webkit-transform: translate(0, -118%);
  transform: translate(0, -118%);
}
.modal .wrapper ul {
  text-align: left;
  margin: 0 auto;
  width: 100%;
  position: absolute;
  top: 50px;
  color: #444;
  font-size: 13px;
  overflow: scroll;
}
.modal .wrapper li{
  line-height: 1.3;
  margin-bottom: 20px;
  text-decoration: none;
}
.modal .wrapper .notice{
  display:block;
  color: #444;
  margin-top: -1em;
}
@media screen and (min-width:750px){
  .link:hover {
    text-decoration: underline;
  }
  .modal .wrapper ul a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width:750px){
  .modal .wrapper ul {
    font-size: 10px;
    line-height: 1.3;
  }
  .modal .close {
    left: 25px;
    top: 15px;
    width: 20px;
    font-size: 20px;
  }
  .modal .close:before {
    width: 20px;
  }
}









