@charset 'UTF-8';

/*!
 * three-dots - v0.2.3
 * CSS loading animations made with single element
 * https://nzbin.github.io/three-dots/
 *
 * Copyright (c) 2018 nzbin
 * Released under MIT License
 */

/**
 * ==============================================
 * Dot Elastic
 * ==============================================
 */

.dot-elastic {
  position: relative;
  width: 10px;
  height: 10px;
  -webkit-animation: dot-elastic 1s infinite linear;
  animation: dot-elastic 1s infinite linear;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

.dot-elastic::before,
.dot-elastic::after {
  position: absolute;
  top: 0;
  display: inline-block;
  content: '';
}

.dot-elastic::before {
  left: -15px;
  width: 10px;
  height: 10px;
  -webkit-animation: dot-elastic-before 1s infinite linear;
  animation: dot-elastic-before 1s infinite linear;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

.dot-elastic::after {
  left: 15px;
  width: 10px;
  height: 10px;
  -webkit-animation: dot-elastic-after 1s infinite linear;
  animation: dot-elastic-after 1s infinite linear;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

@-webkit-keyframes dot-elastic-before {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  25% {
    -webkit-transform: scale(1, 1.5);
    transform: scale(1, 1.5);
  }

  50% {
    -webkit-transform: scale(1, .67);
    transform: scale(1, .67);
  }

  75% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes dot-elastic-before {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  25% {
    -webkit-transform: scale(1, 1.5);
    transform: scale(1, 1.5);
  }

  50% {
    -webkit-transform: scale(1, .67);
    transform: scale(1, .67);
  }

  75% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@-webkit-keyframes dot-elastic {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  25% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  50% {
    -webkit-transform: scale(1, 1.5);
    transform: scale(1, 1.5);
  }

  75% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes dot-elastic {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  25% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  50% {
    -webkit-transform: scale(1, 1.5);
    transform: scale(1, 1.5);
  }

  75% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@-webkit-keyframes dot-elastic-after {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  25% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  50% {
    -webkit-transform: scale(1, .67);
    transform: scale(1, .67);
  }

  75% {
    -webkit-transform: scale(1, 1.5);
    transform: scale(1, 1.5);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes dot-elastic-after {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  25% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  50% {
    -webkit-transform: scale(1, .67);
    transform: scale(1, .67);
  }

  75% {
    -webkit-transform: scale(1, 1.5);
    transform: scale(1, 1.5);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

/**
 * ==============================================
 * Dot Pulse
 * ==============================================
 */

.dot-pulse {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  margin: 30px auto;
  -webkit-animation: dot-pulse 1.5s infinite linear;
  animation: dot-pulse 1.5s infinite linear;
  -webkit-animation-delay: .25s;
  animation-delay: .25s;
  color: #000;
  border-radius: 5px;
  background-color: #000;
  -webkit-box-shadow: 9999px 0 0 -5px;
  box-shadow: 9999px 0 0 -5px;
}

.dot-pulse::before,
.dot-pulse::after {
  position: absolute;
  top: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  content: '';
  color: #000;
  border-radius: 5px;
  background-color: #000;
}

.dot-pulse::before {
  margin-left: -10px;
  -webkit-animation: dot-pulse-before 1.5s infinite linear;
  animation: dot-pulse-before 1.5s infinite linear;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-box-shadow: 9984px 0 0 -5px;
  box-shadow: 9984px 0 0 -5px;
}

.dot-pulse::after {
  -webkit-animation: dot-pulse-after 1.5s infinite linear;
  animation: dot-pulse-after 1.5s infinite linear;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  -webkit-box-shadow: 10014px 0 0 -5px;
  box-shadow: 10014px 0 0 -5px;
}

@-webkit-keyframes dot-pulse-before {
  0% {
    -webkit-box-shadow: 9984px 0 0 -5px;
    box-shadow: 9984px 0 0 -5px;
  }

  30% {
    -webkit-box-shadow: 9984px 0 0 2px;
    box-shadow: 9984px 0 0 2px;
  }

  60%, 100% {
    -webkit-box-shadow: 9984px 0 0 -5px;
    box-shadow: 9984px 0 0 -5px;
  }
}

@keyframes dot-pulse-before {
  0% {
    -webkit-box-shadow: 9984px 0 0 -5px;
    box-shadow: 9984px 0 0 -5px;
  }

  30% {
    -webkit-box-shadow: 9984px 0 0 2px;
    box-shadow: 9984px 0 0 2px;
  }

  60%, 100% {
    -webkit-box-shadow: 9984px 0 0 -5px;
    box-shadow: 9984px 0 0 -5px;
  }
}

@-webkit-keyframes dot-pulse {
  0% {
    -webkit-box-shadow: 9999px 0 0 -5px;
    box-shadow: 9999px 0 0 -5px;
  }

  30% {
    -webkit-box-shadow: 9999px 0 0 2px;
    box-shadow: 9999px 0 0 2px;
  }

  60%, 100% {
    -webkit-box-shadow: 9999px 0 0 -5px;
    box-shadow: 9999px 0 0 -5px;
  }
}

@keyframes dot-pulse {
  0% {
    -webkit-box-shadow: 9999px 0 0 -5px;
    box-shadow: 9999px 0 0 -5px;
  }

  30% {
    -webkit-box-shadow: 9999px 0 0 2px;
    box-shadow: 9999px 0 0 2px;
  }

  60%, 100% {
    -webkit-box-shadow: 9999px 0 0 -5px;
    box-shadow: 9999px 0 0 -5px;
  }
}

@-webkit-keyframes dot-pulse-after {
  0% {
    -webkit-box-shadow: 10014px 0 0 -5px;
    box-shadow: 10014px 0 0 -5px;
  }

  30% {
    -webkit-box-shadow: 10014px 0 0 2px;
    box-shadow: 10014px 0 0 2px;
  }

  60%, 100% {
    -webkit-box-shadow: 10014px 0 0 -5px;
    box-shadow: 10014px 0 0 -5px;
  }
}

@keyframes dot-pulse-after {
  0% {
    -webkit-box-shadow: 10014px 0 0 -5px;
    box-shadow: 10014px 0 0 -5px;
  }

  30% {
    -webkit-box-shadow: 10014px 0 0 2px;
    box-shadow: 10014px 0 0 2px;
  }

  60%, 100% {
    -webkit-box-shadow: 10014px 0 0 -5px;
    box-shadow: 10014px 0 0 -5px;
  }
}

/**
 * ==============================================
 * Dot Flashing
 * ==============================================
 */

.dot-flashing {
  position: relative;
  width: 10px;
  height: 10px;
  -webkit-animation: dot-flashing 1s infinite linear alternate;
  animation: dot-flashing 1s infinite linear alternate;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

.dot-flashing::before,
.dot-flashing::after {
  position: absolute;
  top: 0;
  display: inline-block;
  content: '';
}

.dot-flashing::before {
  left: -15px;
  width: 10px;
  height: 10px;
  -webkit-animation: dot-flashing 1s infinite alternate;
  animation: dot-flashing 1s infinite alternate;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

.dot-flashing::after {
  left: 15px;
  width: 10px;
  height: 10px;
  -webkit-animation: dot-flashing 1s infinite alternate;
  animation: dot-flashing 1s infinite alternate;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

@-webkit-keyframes dot-flashing {
  0% {
    background-color: #9880ff;
  }

  50%, 100% {
    background-color: rgba(152, 128, 255, .2);
  }
}

@keyframes dot-flashing {
  0% {
    background-color: #9880ff;
  }

  50%, 100% {
    background-color: rgba(152, 128, 255, .2);
  }
}

/**
 * ==============================================
 * Dot Collision
 * ==============================================
 */

.dot-collision {
  position: relative;
  width: 10px;
  height: 10px;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

.dot-collision::before,
.dot-collision::after {
  position: absolute;
  top: 0;
  display: inline-block;
  content: '';
}

.dot-collision::before {
  left: -10px;
  width: 10px;
  height: 10px;
  -webkit-animation: dot-collision-before 2s infinite ease-in;
  animation: dot-collision-before 2s infinite ease-in;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

.dot-collision::after {
  left: 10px;
  width: 10px;
  height: 10px;
  -webkit-animation: dot-collision-after 2s infinite ease-in;
  animation: dot-collision-after 2s infinite ease-in;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

@-webkit-keyframes dot-collision-before {
  0%, 50%, 75%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  25% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }
}

@keyframes dot-collision-before {
  0%, 50%, 75%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  25% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }
}

@-webkit-keyframes dot-collision-after {
  0%, 50%, 75%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  25% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }
}

@keyframes dot-collision-after {
  0%, 50%, 75%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  25% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }
}

/**
 * ==============================================
 * Dot Revolution
 * ==============================================
 */

.dot-revolution {
  position: relative;
  width: 10px;
  height: 10px;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

.dot-revolution::before,
.dot-revolution::after {
  position: absolute;
  display: inline-block;
  content: '';
}

.dot-revolution::before {
  top: -15px;
  left: 0;
  width: 10px;
  height: 10px;
  -webkit-transform-origin: 5px 20px;
  transform-origin: 5px 20px;
  -webkit-animation: dot-revolution 1.4s linear infinite;
  animation: dot-revolution 1.4s linear infinite;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

.dot-revolution::after {
  top: -30px;
  left: 0;
  width: 10px;
  height: 10px;
  -webkit-transform-origin: 5px 35px;
  transform-origin: 5px 35px;
  -webkit-animation: dot-revolution 1s linear infinite;
  animation: dot-revolution 1s linear infinite;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

@-webkit-keyframes dot-revolution {
  0% {
    -webkit-transform: rotateZ(0deg) translate3d(0, 0, 0);
    transform: rotateZ(0deg) translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: rotateZ(360deg) translate3d(0, 0, 0);
    transform: rotateZ(360deg) translate3d(0, 0, 0);
  }
}

@keyframes dot-revolution {
  0% {
    -webkit-transform: rotateZ(0deg) translate3d(0, 0, 0);
    transform: rotateZ(0deg) translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: rotateZ(360deg) translate3d(0, 0, 0);
    transform: rotateZ(360deg) translate3d(0, 0, 0);
  }
}

/**
 * ==============================================
 * Dot Carousel
 * ==============================================
 */

.dot-carousel {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  -webkit-animation: dot-carousel 1.5s infinite linear;
  animation: dot-carousel 1.5s infinite linear;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
  -webkit-box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
  box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
}

@-webkit-keyframes dot-carousel {
  0% {
    -webkit-box-shadow: 9984px 0 0 -1px #9880ff, 9999px 0 0 1px #9880ff, 10014px 0 0 -1px #9880ff;
    box-shadow: 9984px 0 0 -1px #9880ff, 9999px 0 0 1px #9880ff, 10014px 0 0 -1px #9880ff;
  }

  50% {
    -webkit-box-shadow: 10014px 0 0 -1px #9880ff, 9984px 0 0 -1px #9880ff, 9999px 0 0 1px #9880ff;
    box-shadow: 10014px 0 0 -1px #9880ff, 9984px 0 0 -1px #9880ff, 9999px 0 0 1px #9880ff;
  }

  100% {
    -webkit-box-shadow: 9999px 0 0 1px #9880ff, 10014px 0 0 -1px #9880ff, 9984px 0 0 -1px #9880ff;
    box-shadow: 9999px 0 0 1px #9880ff, 10014px 0 0 -1px #9880ff, 9984px 0 0 -1px #9880ff;
  }
}

@keyframes dot-carousel {
  0% {
    -webkit-box-shadow: 9984px 0 0 -1px #9880ff, 9999px 0 0 1px #9880ff, 10014px 0 0 -1px #9880ff;
    box-shadow: 9984px 0 0 -1px #9880ff, 9999px 0 0 1px #9880ff, 10014px 0 0 -1px #9880ff;
  }

  50% {
    -webkit-box-shadow: 10014px 0 0 -1px #9880ff, 9984px 0 0 -1px #9880ff, 9999px 0 0 1px #9880ff;
    box-shadow: 10014px 0 0 -1px #9880ff, 9984px 0 0 -1px #9880ff, 9999px 0 0 1px #9880ff;
  }

  100% {
    -webkit-box-shadow: 9999px 0 0 1px #9880ff, 10014px 0 0 -1px #9880ff, 9984px 0 0 -1px #9880ff;
    box-shadow: 9999px 0 0 1px #9880ff, 10014px 0 0 -1px #9880ff, 9984px 0 0 -1px #9880ff;
  }
}

/**
 * ==============================================
 * Dot Typing
 * ==============================================
 */

.dot-typing {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  -webkit-animation: dot-typing 1.5s infinite linear;
  animation: dot-typing 1.5s infinite linear;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
  -webkit-box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
  box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
}

@-webkit-keyframes dot-typing {
  0% {
    -webkit-box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
    box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
  }

  16.667% {
    -webkit-box-shadow: 9984px -10px 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
    box-shadow: 9984px -10px 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
  }

  33.333% {
    -webkit-box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
    box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
  }

  50% {
    -webkit-box-shadow: 9984px 0 0 0 #9880ff, 9999px -10px 0 0 #9880ff, 10014px 0 0 0 #9880ff;
    box-shadow: 9984px 0 0 0 #9880ff, 9999px -10px 0 0 #9880ff, 10014px 0 0 0 #9880ff;
  }

  66.667% {
    -webkit-box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
    box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
  }

  83.333% {
    -webkit-box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px -10px 0 0 #9880ff;
    box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px -10px 0 0 #9880ff;
  }

  100% {
    -webkit-box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
    box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
  }
}

@keyframes dot-typing {
  0% {
    -webkit-box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
    box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
  }

  16.667% {
    -webkit-box-shadow: 9984px -10px 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
    box-shadow: 9984px -10px 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
  }

  33.333% {
    -webkit-box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
    box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
  }

  50% {
    -webkit-box-shadow: 9984px 0 0 0 #9880ff, 9999px -10px 0 0 #9880ff, 10014px 0 0 0 #9880ff;
    box-shadow: 9984px 0 0 0 #9880ff, 9999px -10px 0 0 #9880ff, 10014px 0 0 0 #9880ff;
  }

  66.667% {
    -webkit-box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
    box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
  }

  83.333% {
    -webkit-box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px -10px 0 0 #9880ff;
    box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px -10px 0 0 #9880ff;
  }

  100% {
    -webkit-box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
    box-shadow: 9984px 0 0 0 #9880ff, 9999px 0 0 0 #9880ff, 10014px 0 0 0 #9880ff;
  }
}

/**
 * ==============================================
 * Dot Windmill
 * ==============================================
 */

.dot-windmill {
  position: relative;
  top: -10px;
  width: 10px;
  height: 10px;
  -webkit-transform-origin: 5px 15px;
  transform-origin: 5px 15px;
  -webkit-animation: dot-windmill 2s infinite linear;
  animation: dot-windmill 2s infinite linear;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

.dot-windmill::before,
.dot-windmill::after {
  position: absolute;
  display: inline-block;
  content: '';
}

.dot-windmill::before {
  top: 15px;
  left: -8.66254px;
  width: 10px;
  height: 10px;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

.dot-windmill::after {
  top: 15px;
  left: 8.66254px;
  width: 10px;
  height: 10px;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

@-webkit-keyframes dot-windmill {
  0% {
    -webkit-transform: rotateZ(0deg) translate3d(0, 0, 0);
    transform: rotateZ(0deg) translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: rotateZ(720deg) translate3d(0, 0, 0);
    transform: rotateZ(720deg) translate3d(0, 0, 0);
  }
}

@keyframes dot-windmill {
  0% {
    -webkit-transform: rotateZ(0deg) translate3d(0, 0, 0);
    transform: rotateZ(0deg) translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: rotateZ(720deg) translate3d(0, 0, 0);
    transform: rotateZ(720deg) translate3d(0, 0, 0);
  }
}

/**
 * ==============================================
 * Dot Bricks
 * ==============================================
 */

.dot-bricks {
  position: relative;
  top: 8px;
  left: -9999px;
  width: 10px;
  height: 10px;
  -webkit-animation: dot-bricks 2s infinite ease;
  animation: dot-bricks 2s infinite ease;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
  -webkit-box-shadow: 9991px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff, 10007px 0 0 0 #9880ff;
  box-shadow: 9991px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff, 10007px 0 0 0 #9880ff;
}

@-webkit-keyframes dot-bricks {
  0% {
    -webkit-box-shadow: 9991px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff, 10007px 0 0 0 #9880ff;
    box-shadow: 9991px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff, 10007px 0 0 0 #9880ff;
  }

  8.333% {
    -webkit-box-shadow: 10007px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff, 10007px 0 0 0 #9880ff;
    box-shadow: 10007px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff, 10007px 0 0 0 #9880ff;
  }

  16.667% {
    -webkit-box-shadow: 10007px -16px 0 0 #9880ff, 9991px -16px 0 0 #9880ff, 10007px 0 0 0 #9880ff;
    box-shadow: 10007px -16px 0 0 #9880ff, 9991px -16px 0 0 #9880ff, 10007px 0 0 0 #9880ff;
  }

  25% {
    -webkit-box-shadow: 10007px -16px 0 0 #9880ff, 9991px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff;
    box-shadow: 10007px -16px 0 0 #9880ff, 9991px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff;
  }

  33.333% {
    -webkit-box-shadow: 10007px 0 0 0 #9880ff, 9991px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff;
    box-shadow: 10007px 0 0 0 #9880ff, 9991px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff;
  }

  41.667% {
    -webkit-box-shadow: 10007px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff;
    box-shadow: 10007px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff;
  }

  50% {
    -webkit-box-shadow: 10007px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff, 9991px -16px 0 0 #9880ff;
    box-shadow: 10007px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff, 9991px -16px 0 0 #9880ff;
  }

  58.333% {
    -webkit-box-shadow: 9991px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff, 9991px -16px 0 0 #9880ff;
    box-shadow: 9991px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff, 9991px -16px 0 0 #9880ff;
  }

  66.666% {
    -webkit-box-shadow: 9991px 0 0 0 #9880ff, 10007px 0 0 0 #9880ff, 9991px -16px 0 0 #9880ff;
    box-shadow: 9991px 0 0 0 #9880ff, 10007px 0 0 0 #9880ff, 9991px -16px 0 0 #9880ff;
  }

  75% {
    -webkit-box-shadow: 9991px 0 0 0 #9880ff, 10007px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff;
    box-shadow: 9991px 0 0 0 #9880ff, 10007px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff;
  }

  83.333% {
    -webkit-box-shadow: 9991px -16px 0 0 #9880ff, 10007px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff;
    box-shadow: 9991px -16px 0 0 #9880ff, 10007px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff;
  }

  91.667% {
    -webkit-box-shadow: 9991px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff;
    box-shadow: 9991px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff;
  }

  100% {
    -webkit-box-shadow: 9991px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff, 10007px 0 0 0 #9880ff;
    box-shadow: 9991px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff, 10007px 0 0 0 #9880ff;
  }
}

@keyframes dot-bricks {
  0% {
    -webkit-box-shadow: 9991px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff, 10007px 0 0 0 #9880ff;
    box-shadow: 9991px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff, 10007px 0 0 0 #9880ff;
  }

  8.333% {
    -webkit-box-shadow: 10007px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff, 10007px 0 0 0 #9880ff;
    box-shadow: 10007px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff, 10007px 0 0 0 #9880ff;
  }

  16.667% {
    -webkit-box-shadow: 10007px -16px 0 0 #9880ff, 9991px -16px 0 0 #9880ff, 10007px 0 0 0 #9880ff;
    box-shadow: 10007px -16px 0 0 #9880ff, 9991px -16px 0 0 #9880ff, 10007px 0 0 0 #9880ff;
  }

  25% {
    -webkit-box-shadow: 10007px -16px 0 0 #9880ff, 9991px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff;
    box-shadow: 10007px -16px 0 0 #9880ff, 9991px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff;
  }

  33.333% {
    -webkit-box-shadow: 10007px 0 0 0 #9880ff, 9991px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff;
    box-shadow: 10007px 0 0 0 #9880ff, 9991px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff;
  }

  41.667% {
    -webkit-box-shadow: 10007px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff;
    box-shadow: 10007px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff;
  }

  50% {
    -webkit-box-shadow: 10007px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff, 9991px -16px 0 0 #9880ff;
    box-shadow: 10007px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff, 9991px -16px 0 0 #9880ff;
  }

  58.333% {
    -webkit-box-shadow: 9991px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff, 9991px -16px 0 0 #9880ff;
    box-shadow: 9991px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff, 9991px -16px 0 0 #9880ff;
  }

  66.666% {
    -webkit-box-shadow: 9991px 0 0 0 #9880ff, 10007px 0 0 0 #9880ff, 9991px -16px 0 0 #9880ff;
    box-shadow: 9991px 0 0 0 #9880ff, 10007px 0 0 0 #9880ff, 9991px -16px 0 0 #9880ff;
  }

  75% {
    -webkit-box-shadow: 9991px 0 0 0 #9880ff, 10007px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff;
    box-shadow: 9991px 0 0 0 #9880ff, 10007px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff;
  }

  83.333% {
    -webkit-box-shadow: 9991px -16px 0 0 #9880ff, 10007px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff;
    box-shadow: 9991px -16px 0 0 #9880ff, 10007px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff;
  }

  91.667% {
    -webkit-box-shadow: 9991px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff;
    box-shadow: 9991px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff, 10007px -16px 0 0 #9880ff;
  }

  100% {
    -webkit-box-shadow: 9991px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff, 10007px 0 0 0 #9880ff;
    box-shadow: 9991px -16px 0 0 #9880ff, 9991px 0 0 0 #9880ff, 10007px 0 0 0 #9880ff;
  }
}

/**
 * ==============================================
 * Dot Floating
 * ==============================================
 */

.dot-floating {
  position: relative;
  width: 10px;
  height: 10px;
  -webkit-animation: dot-floating 3s infinite cubic-bezier(.15, .6, .9, .1);
  animation: dot-floating 3s infinite cubic-bezier(.15, .6, .9, .1);
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

.dot-floating::before,
.dot-floating::after {
  position: absolute;
  top: 0;
  display: inline-block;
  content: '';
}

.dot-floating::before {
  left: -12px;
  width: 10px;
  height: 10px;
  -webkit-animation: dot-floating-before 3s infinite ease-in-out;
  animation: dot-floating-before 3s infinite ease-in-out;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

.dot-floating::after {
  left: -24px;
  width: 10px;
  height: 10px;
  -webkit-animation: dot-floating-after 3s infinite cubic-bezier(.4, 0, 1, 1);
  animation: dot-floating-after 3s infinite cubic-bezier(.4, 0, 1, 1);
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

@-webkit-keyframes dot-floating {
  0% {
    left: calc(-50% - 5px);
  }

  75% {
    left: calc(50% + 105px);
  }

  100% {
    left: calc(50% + 105px);
  }
}

@keyframes dot-floating {
  0% {
    left: calc(-50% - 5px);
  }

  75% {
    left: calc(50% + 105px);
  }

  100% {
    left: calc(50% + 105px);
  }
}

@-webkit-keyframes dot-floating-before {
  0% {
    left: -50px;
  }

  50% {
    left: -12px;
  }

  75% {
    left: -50px;
  }

  100% {
    left: -50px;
  }
}

@keyframes dot-floating-before {
  0% {
    left: -50px;
  }

  50% {
    left: -12px;
  }

  75% {
    left: -50px;
  }

  100% {
    left: -50px;
  }
}

@-webkit-keyframes dot-floating-after {
  0% {
    left: -100px;
  }

  50% {
    left: -24px;
  }

  75% {
    left: -100px;
  }

  100% {
    left: -100px;
  }
}

@keyframes dot-floating-after {
  0% {
    left: -100px;
  }

  50% {
    left: -24px;
  }

  75% {
    left: -100px;
  }

  100% {
    left: -100px;
  }
}

/**
 * ==============================================
 * Dot Fire
 * ==============================================
 */

.dot-fire {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  -webkit-animation: dot-fire 1.5s infinite linear;
  animation: dot-fire 1.5s infinite linear;
  -webkit-animation-delay: -.85s;
  animation-delay: -.85s;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
  -webkit-box-shadow: 9999px 22.5px 0 -5px #9880ff;
  box-shadow: 9999px 22.5px 0 -5px #9880ff;
}

.dot-fire::before,
.dot-fire::after {
  position: absolute;
  top: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  content: '';
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

.dot-fire::before {
  -webkit-animation: dot-fire 1.5s infinite linear;
  animation: dot-fire 1.5s infinite linear;
  -webkit-animation-delay: -1.85s;
  animation-delay: -1.85s;
  -webkit-box-shadow: 9999px 22.5px 0 -5px #9880ff;
  box-shadow: 9999px 22.5px 0 -5px #9880ff;
}

.dot-fire::after {
  -webkit-animation: dot-fire 1.5s infinite linear;
  animation: dot-fire 1.5s infinite linear;
  -webkit-animation-delay: -2.85s;
  animation-delay: -2.85s;
  -webkit-box-shadow: 9999px 22.5px 0 -5px #9880ff;
  box-shadow: 9999px 22.5px 0 -5px #9880ff;
}

@-webkit-keyframes dot-fire {
  1% {
    -webkit-box-shadow: 9999px 22.5px 0 -5px #9880ff;
    box-shadow: 9999px 22.5px 0 -5px #9880ff;
  }

  50% {
    -webkit-box-shadow: 9999px -5.625px 0 2px #9880ff;
    box-shadow: 9999px -5.625px 0 2px #9880ff;
  }

  100% {
    -webkit-box-shadow: 9999px -22.5px 0 -5px #9880ff;
    box-shadow: 9999px -22.5px 0 -5px #9880ff;
  }
}

@keyframes dot-fire {
  1% {
    -webkit-box-shadow: 9999px 22.5px 0 -5px #9880ff;
    box-shadow: 9999px 22.5px 0 -5px #9880ff;
  }

  50% {
    -webkit-box-shadow: 9999px -5.625px 0 2px #9880ff;
    box-shadow: 9999px -5.625px 0 2px #9880ff;
  }

  100% {
    -webkit-box-shadow: 9999px -22.5px 0 -5px #9880ff;
    box-shadow: 9999px -22.5px 0 -5px #9880ff;
  }
}

/**
 * ==============================================
 * Dot Spin
 * ==============================================
 */

.dot-spin {
  position: relative;
  width: 10px;
  height: 10px;
  -webkit-animation: dot-spin 1.5s infinite linear;
  animation: dot-spin 1.5s infinite linear;
  color: transparent;
  border-radius: 5px;
  background-color: transparent;
  -webkit-box-shadow: 0 -18px 0 0 #9880ff, 12.72793px -12.72793px 0 0 #9880ff, 18px 0 0 0 #9880ff, 12.72793px 12.72793px 0 0 rgba(152, 128, 255, 0), 0 18px 0 0 rgba(152, 128, 255, 0), -12.72793px 12.72793px 0 0 rgba(152, 128, 255, 0), -18px 0 0 0 rgba(152, 128, 255, 0), -12.72793px -12.72793px 0 0 rgba(152, 128, 255, 0);
  box-shadow: 0 -18px 0 0 #9880ff, 12.72793px -12.72793px 0 0 #9880ff, 18px 0 0 0 #9880ff, 12.72793px 12.72793px 0 0 rgba(152, 128, 255, 0), 0 18px 0 0 rgba(152, 128, 255, 0), -12.72793px 12.72793px 0 0 rgba(152, 128, 255, 0), -18px 0 0 0 rgba(152, 128, 255, 0), -12.72793px -12.72793px 0 0 rgba(152, 128, 255, 0);
}

@-webkit-keyframes dot-spin {
  0%, 100% {
    -webkit-box-shadow: 0 -18px 0 0 #9880ff, 12.72793px -12.72793px 0 0 #9880ff, 18px 0 0 0 #9880ff, 12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0);
    box-shadow: 0 -18px 0 0 #9880ff, 12.72793px -12.72793px 0 0 #9880ff, 18px 0 0 0 #9880ff, 12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0);
  }

  12.5% {
    -webkit-box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72793px -12.72793px 0 0 #9880ff, 18px 0 0 0 #9880ff, 12.72793px 12.72793px 0 0 #9880ff, 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0);
    box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72793px -12.72793px 0 0 #9880ff, 18px 0 0 0 #9880ff, 12.72793px 12.72793px 0 0 #9880ff, 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0);
  }

  25% {
    -webkit-box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 0 #9880ff, 12.72793px 12.72793px 0 0 #9880ff, 0 18px 0 0 #9880ff, -12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0);
    box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 0 #9880ff, 12.72793px 12.72793px 0 0 #9880ff, 0 18px 0 0 #9880ff, -12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0);
  }

  37.5% {
    -webkit-box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72793px 12.72793px 0 0 #9880ff, 0 18px 0 0 #9880ff, -12.72793px 12.72793px 0 0 #9880ff, -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0);
    box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72793px 12.72793px 0 0 #9880ff, 0 18px 0 0 #9880ff, -12.72793px 12.72793px 0 0 #9880ff, -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0);
  }

  50% {
    -webkit-box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 0 #9880ff, -12.72793px 12.72793px 0 0 #9880ff, -18px 0 0 0 #9880ff, -12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0);
    box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 0 #9880ff, -12.72793px 12.72793px 0 0 #9880ff, -18px 0 0 0 #9880ff, -12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0);
  }

  62.5% {
    -webkit-box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72793px 12.72793px 0 0 #9880ff, -18px 0 0 0 #9880ff, -12.72793px -12.72793px 0 0 #9880ff;
    box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72793px 12.72793px 0 0 #9880ff, -18px 0 0 0 #9880ff, -12.72793px -12.72793px 0 0 #9880ff;
  }

  75% {
    -webkit-box-shadow: 0 -18px 0 0 #9880ff, 12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 0 #9880ff, -12.72793px -12.72793px 0 0 #9880ff;
    box-shadow: 0 -18px 0 0 #9880ff, 12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 0 #9880ff, -12.72793px -12.72793px 0 0 #9880ff;
  }

  87.5% {
    -webkit-box-shadow: 0 -18px 0 0 #9880ff, 12.72793px -12.72793px 0 0 #9880ff, 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72793px -12.72793px 0 0 #9880ff;
    box-shadow: 0 -18px 0 0 #9880ff, 12.72793px -12.72793px 0 0 #9880ff, 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72793px -12.72793px 0 0 #9880ff;
  }
}

@keyframes dot-spin {
  0%, 100% {
    -webkit-box-shadow: 0 -18px 0 0 #9880ff, 12.72793px -12.72793px 0 0 #9880ff, 18px 0 0 0 #9880ff, 12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0);
    box-shadow: 0 -18px 0 0 #9880ff, 12.72793px -12.72793px 0 0 #9880ff, 18px 0 0 0 #9880ff, 12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0);
  }

  12.5% {
    -webkit-box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72793px -12.72793px 0 0 #9880ff, 18px 0 0 0 #9880ff, 12.72793px 12.72793px 0 0 #9880ff, 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0);
    box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72793px -12.72793px 0 0 #9880ff, 18px 0 0 0 #9880ff, 12.72793px 12.72793px 0 0 #9880ff, 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0);
  }

  25% {
    -webkit-box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 0 #9880ff, 12.72793px 12.72793px 0 0 #9880ff, 0 18px 0 0 #9880ff, -12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0);
    box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 0 #9880ff, 12.72793px 12.72793px 0 0 #9880ff, 0 18px 0 0 #9880ff, -12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0);
  }

  37.5% {
    -webkit-box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72793px 12.72793px 0 0 #9880ff, 0 18px 0 0 #9880ff, -12.72793px 12.72793px 0 0 #9880ff, -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0);
    box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72793px 12.72793px 0 0 #9880ff, 0 18px 0 0 #9880ff, -12.72793px 12.72793px 0 0 #9880ff, -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0);
  }

  50% {
    -webkit-box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 0 #9880ff, -12.72793px 12.72793px 0 0 #9880ff, -18px 0 0 0 #9880ff, -12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0);
    box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 0 #9880ff, -12.72793px 12.72793px 0 0 #9880ff, -18px 0 0 0 #9880ff, -12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0);
  }

  62.5% {
    -webkit-box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72793px 12.72793px 0 0 #9880ff, -18px 0 0 0 #9880ff, -12.72793px -12.72793px 0 0 #9880ff;
    box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72793px 12.72793px 0 0 #9880ff, -18px 0 0 0 #9880ff, -12.72793px -12.72793px 0 0 #9880ff;
  }

  75% {
    -webkit-box-shadow: 0 -18px 0 0 #9880ff, 12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 0 #9880ff, -12.72793px -12.72793px 0 0 #9880ff;
    box-shadow: 0 -18px 0 0 #9880ff, 12.72793px -12.72793px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 0 #9880ff, -12.72793px -12.72793px 0 0 #9880ff;
  }

  87.5% {
    -webkit-box-shadow: 0 -18px 0 0 #9880ff, 12.72793px -12.72793px 0 0 #9880ff, 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72793px -12.72793px 0 0 #9880ff;
    box-shadow: 0 -18px 0 0 #9880ff, 12.72793px -12.72793px 0 0 #9880ff, 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72793px 12.72793px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72793px -12.72793px 0 0 #9880ff;
  }
}

/**
 * ==============================================
 * Dot Falling
 * ==============================================
 */

.dot-falling {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  -webkit-animation: dot-falling 1s infinite linear;
  animation: dot-falling 1s infinite linear;
  -webkit-animation-delay: .1s;
  animation-delay: .1s;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
  -webkit-box-shadow: 9999px 0 0 0 #9880ff;
  box-shadow: 9999px 0 0 0 #9880ff;
}

.dot-falling::before,
.dot-falling::after {
  position: absolute;
  top: 0;
  display: inline-block;
  content: '';
}

.dot-falling::before {
  width: 10px;
  height: 10px;
  -webkit-animation: dot-falling-before 1s infinite linear;
  animation: dot-falling-before 1s infinite linear;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

.dot-falling::after {
  width: 10px;
  height: 10px;
  -webkit-animation: dot-falling-after 1s infinite linear;
  animation: dot-falling-after 1s infinite linear;
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

@-webkit-keyframes dot-falling {
  0% {
    -webkit-box-shadow: 9999px -15px 0 0 rgba(152, 128, 255, 0);
    box-shadow: 9999px -15px 0 0 rgba(152, 128, 255, 0);
  }

  25%, 50%, 75% {
    -webkit-box-shadow: 9999px 0 0 0 #9880ff;
    box-shadow: 9999px 0 0 0 #9880ff;
  }

  100% {
    -webkit-box-shadow: 9999px 15px 0 0 rgba(152, 128, 255, 0);
    box-shadow: 9999px 15px 0 0 rgba(152, 128, 255, 0);
  }
}

@keyframes dot-falling {
  0% {
    -webkit-box-shadow: 9999px -15px 0 0 rgba(152, 128, 255, 0);
    box-shadow: 9999px -15px 0 0 rgba(152, 128, 255, 0);
  }

  25%, 50%, 75% {
    -webkit-box-shadow: 9999px 0 0 0 #9880ff;
    box-shadow: 9999px 0 0 0 #9880ff;
  }

  100% {
    -webkit-box-shadow: 9999px 15px 0 0 rgba(152, 128, 255, 0);
    box-shadow: 9999px 15px 0 0 rgba(152, 128, 255, 0);
  }
}

@-webkit-keyframes dot-falling-before {
  0% {
    -webkit-box-shadow: 9984px -15px 0 0 rgba(152, 128, 255, 0);
    box-shadow: 9984px -15px 0 0 rgba(152, 128, 255, 0);
  }

  25%, 50%, 75% {
    -webkit-box-shadow: 9984px 0 0 0 #9880ff;
    box-shadow: 9984px 0 0 0 #9880ff;
  }

  100% {
    -webkit-box-shadow: 9984px 15px 0 0 rgba(152, 128, 255, 0);
    box-shadow: 9984px 15px 0 0 rgba(152, 128, 255, 0);
  }
}

@keyframes dot-falling-before {
  0% {
    -webkit-box-shadow: 9984px -15px 0 0 rgba(152, 128, 255, 0);
    box-shadow: 9984px -15px 0 0 rgba(152, 128, 255, 0);
  }

  25%, 50%, 75% {
    -webkit-box-shadow: 9984px 0 0 0 #9880ff;
    box-shadow: 9984px 0 0 0 #9880ff;
  }

  100% {
    -webkit-box-shadow: 9984px 15px 0 0 rgba(152, 128, 255, 0);
    box-shadow: 9984px 15px 0 0 rgba(152, 128, 255, 0);
  }
}

@-webkit-keyframes dot-falling-after {
  0% {
    -webkit-box-shadow: 10014px -15px 0 0 rgba(152, 128, 255, 0);
    box-shadow: 10014px -15px 0 0 rgba(152, 128, 255, 0);
  }

  25%, 50%, 75% {
    -webkit-box-shadow: 10014px 0 0 0 #9880ff;
    box-shadow: 10014px 0 0 0 #9880ff;
  }

  100% {
    -webkit-box-shadow: 10014px 15px 0 0 rgba(152, 128, 255, 0);
    box-shadow: 10014px 15px 0 0 rgba(152, 128, 255, 0);
  }
}

@keyframes dot-falling-after {
  0% {
    -webkit-box-shadow: 10014px -15px 0 0 rgba(152, 128, 255, 0);
    box-shadow: 10014px -15px 0 0 rgba(152, 128, 255, 0);
  }

  25%, 50%, 75% {
    -webkit-box-shadow: 10014px 0 0 0 #9880ff;
    box-shadow: 10014px 0 0 0 #9880ff;
  }

  100% {
    -webkit-box-shadow: 10014px 15px 0 0 rgba(152, 128, 255, 0);
    box-shadow: 10014px 15px 0 0 rgba(152, 128, 255, 0);
  }
}

/**
 * ==============================================
 * Dot Stretching
 * ==============================================
 */

.dot-stretching {
  position: relative;
  width: 10px;
  height: 10px;
  -webkit-transform: scale(1.25, 1.25);
  transform: scale(1.25, 1.25);
  -webkit-animation: dot-stretching 2s infinite ease-in;
  animation: dot-stretching 2s infinite ease-in;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

.dot-stretching::before,
.dot-stretching::after {
  position: absolute;
  top: 0;
  display: inline-block;
  content: '';
}

.dot-stretching::before {
  width: 10px;
  height: 10px;
  -webkit-animation: dot-stretching-before 2s infinite ease-in;
  animation: dot-stretching-before 2s infinite ease-in;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

.dot-stretching::after {
  width: 10px;
  height: 10px;
  -webkit-animation: dot-stretching-after 2s infinite ease-in;
  animation: dot-stretching-after 2s infinite ease-in;
  color: #9880ff;
  border-radius: 5px;
  background-color: #9880ff;
}

@-webkit-keyframes dot-stretching {
  0% {
    -webkit-transform: scale(1.25, 1.25);
    transform: scale(1.25, 1.25);
  }

  50%, 60% {
    -webkit-transform: scale(.8, .8);
    transform: scale(.8, .8);
  }

  100% {
    -webkit-transform: scale(1.25, 1.25);
    transform: scale(1.25, 1.25);
  }
}

@keyframes dot-stretching {
  0% {
    -webkit-transform: scale(1.25, 1.25);
    transform: scale(1.25, 1.25);
  }

  50%, 60% {
    -webkit-transform: scale(.8, .8);
    transform: scale(.8, .8);
  }

  100% {
    -webkit-transform: scale(1.25, 1.25);
    transform: scale(1.25, 1.25);
  }
}

@-webkit-keyframes dot-stretching-before {
  0% {
    -webkit-transform: translate(0) scale(.7, .7);
    transform: translate(0) scale(.7, .7);
  }

  50%, 60% {
    -webkit-transform: translate(-20px) scale(1, 1);
    transform: translate(-20px) scale(1, 1);
  }

  100% {
    -webkit-transform: translate(0) scale(.7, .7);
    transform: translate(0) scale(.7, .7);
  }
}

@keyframes dot-stretching-before {
  0% {
    -webkit-transform: translate(0) scale(.7, .7);
    transform: translate(0) scale(.7, .7);
  }

  50%, 60% {
    -webkit-transform: translate(-20px) scale(1, 1);
    transform: translate(-20px) scale(1, 1);
  }

  100% {
    -webkit-transform: translate(0) scale(.7, .7);
    transform: translate(0) scale(.7, .7);
  }
}

@-webkit-keyframes dot-stretching-after {
  0% {
    -webkit-transform: translate(0) scale(.7, .7);
    transform: translate(0) scale(.7, .7);
  }

  50%, 60% {
    -webkit-transform: translate(20px) scale(1, 1);
    transform: translate(20px) scale(1, 1);
  }

  100% {
    -webkit-transform: translate(0) scale(.7, .7);
    transform: translate(0) scale(.7, .7);
  }
}

@keyframes dot-stretching-after {
  0% {
    -webkit-transform: translate(0) scale(.7, .7);
    transform: translate(0) scale(.7, .7);
  }

  50%, 60% {
    -webkit-transform: translate(20px) scale(1, 1);
    transform: translate(20px) scale(1, 1);
  }

  100% {
    -webkit-transform: translate(0) scale(.7, .7);
    transform: translate(0) scale(.7, .7);
  }
}

/**
 * ==============================================
 * Experimental: Gooey Effect
 * Dot Gathering
 * ==============================================
 */

.dot-gathering {
  position: relative;
  width: 12px;
  height: 12px;
  margin: -1px 0;
  color: transparent;
  border-radius: 6px;
  background-color: black;
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

.dot-gathering::before,
.dot-gathering::after {
  position: absolute;
  top: 0;
  left: -50px;
  display: inline-block;
  width: 12px;
  height: 12px;
  content: '';
  -webkit-animation: dot-gathering 2s infinite ease-in;
  animation: dot-gathering 2s infinite ease-in;
  opacity: 0;
  color: transparent;
  border-radius: 6px;
  background-color: black;
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

.dot-gathering::after {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

@-webkit-keyframes dot-gathering {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }

  35%, 60% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }
}

@keyframes dot-gathering {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }

  35%, 60% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }
}

/**
 * ==============================================
 * Experimental: Gooey Effect
 * Dot Hourglass
 * ==============================================
 */

.dot-hourglass {
  position: relative;
  top: -15px;
  width: 12px;
  height: 12px;
  margin: -1px 0;
  -webkit-transform-origin: 5px 20px;
  transform-origin: 5px 20px;
  -webkit-animation: dot-hourglass 2.4s infinite ease-in-out;
  animation: dot-hourglass 2.4s infinite ease-in-out;
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
  color: transparent;
  border-radius: 6px;
  background-color: black;
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

.dot-hourglass::before,
.dot-hourglass::after {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  content: '';
  color: transparent;
  border-radius: 6px;
  background-color: black;
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

.dot-hourglass::before {
  top: 30px;
}

.dot-hourglass::after {
  -webkit-animation: dot-hourglass-after 2.4s infinite cubic-bezier(.65, .05, .36, 1);
  animation: dot-hourglass-after 2.4s infinite cubic-bezier(.65, .05, .36, 1);
}

@-webkit-keyframes dot-hourglass {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }

  25% {
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
  }

  50% {
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
  }

  75% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes dot-hourglass {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }

  25% {
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
  }

  50% {
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
  }

  75% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes dot-hourglass-after {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  25% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  75% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes dot-hourglass-after {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  25% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  75% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/**
 * ==============================================
 * Experimental: Gooey Effect
 * Dot Overtaking
 * ==============================================
 */

.dot-overtaking {
  position: relative;
  width: 12px;
  height: 12px;
  margin: -1px 0;
  -webkit-animation: dot-overtaking 2s infinite cubic-bezier(.2, .6, .8, .2);
  animation: dot-overtaking 2s infinite cubic-bezier(.2, .6, .8, .2);
  color: black;
  border-radius: 6px;
  background-color: transparent;
  -webkit-box-shadow: 0 -20px 0 0;
  box-shadow: 0 -20px 0 0;
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

.dot-overtaking::before,
.dot-overtaking::after {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  content: '';
  color: black;
  border-radius: 6px;
  background-color: transparent;
  -webkit-box-shadow: 0 -20px 0 0;
  box-shadow: 0 -20px 0 0;
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

.dot-overtaking::before {
  -webkit-animation: dot-overtaking 2s infinite cubic-bezier(.2, .6, .8, .2);
  animation: dot-overtaking 2s infinite cubic-bezier(.2, .6, .8, .2);
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}

.dot-overtaking::after {
  -webkit-animation: dot-overtaking 1.5s infinite cubic-bezier(.2, .6, .8, .2);
  animation: dot-overtaking 1.5s infinite cubic-bezier(.2, .6, .8, .2);
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

@-webkit-keyframes dot-overtaking {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes dot-overtaking {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

/**
 * ==============================================
 * Experimental: Gooey Effect
 * Dot Shuttle
 * ==============================================
 */

.dot-shuttle {
  position: relative;
  left: -15px;
  width: 12px;
  height: 12px;
  margin: -1px 0;
  color: transparent;
  border-radius: 6px;
  background-color: black;
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

.dot-shuttle::before,
.dot-shuttle::after {
  position: absolute;
  top: 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  content: '';
  color: transparent;
  border-radius: 6px;
  background-color: black;
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

.dot-shuttle::before {
  left: 15px;
  -webkit-animation: dot-shuttle 2s infinite ease-out;
  animation: dot-shuttle 2s infinite ease-out;
}

.dot-shuttle::after {
  left: 30px;
}

@-webkit-keyframes dot-shuttle {
  0%, 50%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  25% {
    -webkit-transform: translateX(-45px);
    transform: translateX(-45px);
  }

  75% {
    -webkit-transform: translateX(45px);
    transform: translateX(45px);
  }
}

@keyframes dot-shuttle {
  0%, 50%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  25% {
    -webkit-transform: translateX(-45px);
    transform: translateX(-45px);
  }

  75% {
    -webkit-transform: translateX(45px);
    transform: translateX(45px);
  }
}

/**
 * ==============================================
 * Experimental: Emoji
 * Dot Bouncing
 * ==============================================
 */

.dot-bouncing {
  font-size: 10px;
  position: relative;
  height: 10px;
}

.dot-bouncing::before {
  position: relative;
  display: inline-block;
  content: '⚽🏀🏐';
  -webkit-animation: dot-bouncing 1s infinite;
  animation: dot-bouncing 1s infinite;
}

@-webkit-keyframes dot-bouncing {
  0% {
    top: -20px;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  34% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  35% {
    top: 20px;
    -webkit-transform: scale(1.5, .5);
    transform: scale(1.5, .5);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  45% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  90% {
    top: -20px;
  }

  100% {
    top: -20px;
  }
}

@keyframes dot-bouncing {
  0% {
    top: -20px;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  34% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  35% {
    top: 20px;
    -webkit-transform: scale(1.5, .5);
    transform: scale(1.5, .5);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  45% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  90% {
    top: -20px;
  }

  100% {
    top: -20px;
  }
}

/**
 * ==============================================
 * Experimental: Emoji
 * Dot Rolling
 * ==============================================
 */

.dot-rolling {
  font-size: 10px;
  position: relative;
  height: 10px;
}

.dot-rolling::before {
  position: relative;
  display: inline-block;
  content: '⚽';
  -webkit-transform: translateX(-25px);
  transform: translateX(-25px);
  -webkit-animation: dot-rolling 3s infinite;
  animation: dot-rolling 3s infinite;
}

@-webkit-keyframes dot-rolling {
  0% {
    content: '⚽';
    -webkit-transform: translateX(-25px) rotateZ(0deg);
    transform: translateX(-25px) rotateZ(0deg);
  }

  16.667% {
    content: '⚽';
    -webkit-transform: translateX(25px) rotateZ(720deg);
    transform: translateX(25px) rotateZ(720deg);
  }

  33.333% {
    content: '⚽';
    -webkit-transform: translateX(-25px) rotateZ(0deg);
    transform: translateX(-25px) rotateZ(0deg);
  }

  34.333% {
    content: '🏀';
    -webkit-transform: translateX(-25px) rotateZ(0deg);
    transform: translateX(-25px) rotateZ(0deg);
  }

  50% {
    content: '🏀';
    -webkit-transform: translateX(25px) rotateZ(720deg);
    transform: translateX(25px) rotateZ(720deg);
  }

  66.667% {
    content: '🏀';
    -webkit-transform: translateX(-25px) rotateZ(0deg);
    transform: translateX(-25px) rotateZ(0deg);
  }

  67.667% {
    content: '🏐';
    -webkit-transform: translateX(-25px) rotateZ(0deg);
    transform: translateX(-25px) rotateZ(0deg);
  }

  83.333% {
    content: '🏐';
    -webkit-transform: translateX(25px) rotateZ(720deg);
    transform: translateX(25px) rotateZ(720deg);
  }

  100% {
    content: '🏐';
    -webkit-transform: translateX(-25px) rotateZ(0deg);
    transform: translateX(-25px) rotateZ(0deg);
  }
}

@keyframes dot-rolling {
  0% {
    content: '⚽';
    -webkit-transform: translateX(-25px) rotateZ(0deg);
    transform: translateX(-25px) rotateZ(0deg);
  }

  16.667% {
    content: '⚽';
    -webkit-transform: translateX(25px) rotateZ(720deg);
    transform: translateX(25px) rotateZ(720deg);
  }

  33.333% {
    content: '⚽';
    -webkit-transform: translateX(-25px) rotateZ(0deg);
    transform: translateX(-25px) rotateZ(0deg);
  }

  34.333% {
    content: '🏀';
    -webkit-transform: translateX(-25px) rotateZ(0deg);
    transform: translateX(-25px) rotateZ(0deg);
  }

  50% {
    content: '🏀';
    -webkit-transform: translateX(25px) rotateZ(720deg);
    transform: translateX(25px) rotateZ(720deg);
  }

  66.667% {
    content: '🏀';
    -webkit-transform: translateX(-25px) rotateZ(0deg);
    transform: translateX(-25px) rotateZ(0deg);
  }

  67.667% {
    content: '🏐';
    -webkit-transform: translateX(-25px) rotateZ(0deg);
    transform: translateX(-25px) rotateZ(0deg);
  }

  83.333% {
    content: '🏐';
    -webkit-transform: translateX(25px) rotateZ(720deg);
    transform: translateX(25px) rotateZ(720deg);
  }

  100% {
    content: '🏐';
    -webkit-transform: translateX(-25px) rotateZ(0deg);
    transform: translateX(-25px) rotateZ(0deg);
  }
}

/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/

:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(1s * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(1s * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(1s * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(1s * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(1s / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * .8);
  -webkit-animation-duration: calc(var(--animate-duration) * .8);
  animation-duration: calc(1s * .8);
  animation-duration: calc(var(--animate-duration) * .8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(1s * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(1s * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

/* Attention seekers  */

@-webkit-keyframes bounce {
  from, 20%, 53%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  40%, 43% {
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
  }

  70% {
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(.95);
    transform: translate3d(0, 0, 0) scaleY(.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}

@keyframes bounce {
  from, 20%, 53%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  40%, 43% {
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
  }

  70% {
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(.95);
    transform: translate3d(0, 0, 0) scaleY(.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}

.animate__bounce {
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, .75, 1);
    transform: scale3d(1.25, .75, 1);
  }

  40% {
    -webkit-transform: scale3d(.75, 1.25, 1);
    transform: scale3d(.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, .85, 1);
    transform: scale3d(1.15, .85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, .75, 1);
    transform: scale3d(1.25, .75, 1);
  }

  40% {
    -webkit-transform: scale3d(.75, 1.25, 1);
    transform: scale3d(.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, .85, 1);
    transform: scale3d(1.15, .85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shakeX {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

@-webkit-keyframes shakeY {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}

@keyframes shakeY {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}

.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.animate__headShake {
  -webkit-animation-name: headShake;
  animation-name: headShake;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
    transform: skewX(-.78125deg) skewY(-.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(.39063deg) skewY(.39063deg);
    transform: skewX(.39063deg) skewY(.39063deg);
  }

  88.8% {
    -webkit-transform: skewX(-.19531deg) skewY(-.19531deg);
    transform: skewX(-.19531deg) skewY(-.19531deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
    transform: skewX(-.78125deg) skewY(-.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(.39063deg) skewY(.39063deg);
    transform: skewX(.39063deg) skewY(.39063deg);
  }

  88.8% {
    -webkit-transform: skewX(-.19531deg) skewY(-.19531deg);
    transform: skewX(-.19531deg) skewY(-.19531deg);
  }
}

.animate__jello {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-animation-name: jello;
  animation-name: jello;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(1s * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

/* Back entrances */

@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(.7);
    transform: translateY(-1200px) scale(.7);
    opacity: .7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(.7);
    transform: translateY(0px) scale(.7);
    opacity: .7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(.7);
    transform: translateY(-1200px) scale(.7);
    opacity: .7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(.7);
    transform: translateY(0px) scale(.7);
    opacity: .7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(.7);
    transform: translateX(-2000px) scale(.7);
    opacity: .7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(.7);
    transform: translateX(0px) scale(.7);
    opacity: .7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(.7);
    transform: translateX(-2000px) scale(.7);
    opacity: .7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(.7);
    transform: translateX(0px) scale(.7);
    opacity: .7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(.7);
    transform: translateX(2000px) scale(.7);
    opacity: .7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(.7);
    transform: translateX(0px) scale(.7);
    opacity: .7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(.7);
    transform: translateX(2000px) scale(.7);
    opacity: .7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(.7);
    transform: translateX(0px) scale(.7);
    opacity: .7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(.7);
    transform: translateY(1200px) scale(.7);
    opacity: .7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(.7);
    transform: translateY(0px) scale(.7);
    opacity: .7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(.7);
    transform: translateY(1200px) scale(.7);
    opacity: .7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(.7);
    transform: translateY(0px) scale(.7);
    opacity: .7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

/* Back exits */

@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(.7);
    transform: translateY(0px) scale(.7);
    opacity: .7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(.7);
    transform: translateY(700px) scale(.7);
    opacity: .7;
  }
}

@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(.7);
    transform: translateY(0px) scale(.7);
    opacity: .7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(.7);
    transform: translateY(700px) scale(.7);
    opacity: .7;
  }
}

.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(.7);
    transform: translateX(0px) scale(.7);
    opacity: .7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(.7);
    transform: translateX(-2000px) scale(.7);
    opacity: .7;
  }
}

@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(.7);
    transform: translateX(0px) scale(.7);
    opacity: .7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(.7);
    transform: translateX(-2000px) scale(.7);
    opacity: .7;
  }
}

.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(.7);
    transform: translateX(0px) scale(.7);
    opacity: .7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(.7);
    transform: translateX(2000px) scale(.7);
    opacity: .7;
  }
}

@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(.7);
    transform: translateX(0px) scale(.7);
    opacity: .7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(.7);
    transform: translateX(2000px) scale(.7);
    opacity: .7;
  }
}

.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(.7);
    transform: translateY(0px) scale(.7);
    opacity: .7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(.7);
    transform: translateY(-700px) scale(.7);
    opacity: .7;
  }
}

@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(.7);
    transform: translateY(0px) scale(.7);
    opacity: .7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(.7);
    transform: translateY(-700px) scale(.7);
    opacity: .7;
  }
}

.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

/* Bouncing entrances  */

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
    opacity: 0;
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
    opacity: 1;
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
    opacity: 0;
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
    opacity: 1;
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}

.animate__bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: calc(1s * .75);
  -webkit-animation-duration: calc(var(--animate-duration) * .75);
  animation-duration: calc(1s * .75);
  animation-duration: calc(var(--animate-duration) * .75);
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
    opacity: 0;
  }

  60% {
    -webkit-transform: translate3d(0, 25px, 0) scaleY(.9);
    transform: translate3d(0, 25px, 0) scaleY(.9);
    opacity: 1;
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(.95);
    transform: translate3d(0, -10px, 0) scaleY(.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(.985);
    transform: translate3d(0, 5px, 0) scaleY(.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
    opacity: 0;
  }

  60% {
    -webkit-transform: translate3d(0, 25px, 0) scaleY(.9);
    transform: translate3d(0, 25px, 0) scaleY(.9);
    opacity: 1;
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(.95);
    transform: translate3d(0, -10px, 0) scaleY(.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(.985);
    transform: translate3d(0, 5px, 0) scaleY(.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
    opacity: 0;
  }

  60% {
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
    opacity: 1;
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(.98);
    transform: translate3d(-10px, 0, 0) scaleX(.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(.995);
    transform: translate3d(5px, 0, 0) scaleX(.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
    opacity: 0;
  }

  60% {
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
    opacity: 1;
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(.98);
    transform: translate3d(-10px, 0, 0) scaleX(.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(.995);
    transform: translate3d(5px, 0, 0) scaleX(.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  from {
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
    opacity: 0;
  }

  60% {
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
    opacity: 1;
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(.98);
    transform: translate3d(10px, 0, 0) scaleX(.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(.995);
    transform: translate3d(-5px, 0, 0) scaleX(.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  from {
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
    opacity: 0;
  }

  60% {
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
    opacity: 1;
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(.98);
    transform: translate3d(10px, 0, 0) scaleX(.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(.995);
    transform: translate3d(-5px, 0, 0) scaleX(.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  from {
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
    opacity: 0;
  }

  60% {
    -webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
    transform: translate3d(0, -20px, 0) scaleY(.9);
    opacity: 1;
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(.95);
    transform: translate3d(0, 10px, 0) scaleY(.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(.985);
    transform: translate3d(0, -5px, 0) scaleY(.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  from {
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
    opacity: 0;
  }

  60% {
    -webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
    transform: translate3d(0, -20px, 0) scaleY(.9);
    opacity: 1;
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(.95);
    transform: translate3d(0, 10px, 0) scaleY(.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(.985);
    transform: translate3d(0, -5px, 0) scaleY(.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

/* Bouncing exits  */

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    opacity: 1;
  }

  to {
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
    opacity: 0;
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    opacity: 1;
  }

  to {
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
    opacity: 0;
  }
}

.animate__bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
  -webkit-animation-duration: calc(1s * .75);
  -webkit-animation-duration: calc(var(--animate-duration) * .75);
  animation-duration: calc(1s * .75);
  animation-duration: calc(var(--animate-duration) * .75);
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(.985);
    transform: translate3d(0, 10px, 0) scaleY(.985);
  }

  40%, 45% {
    -webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
    transform: translate3d(0, -20px, 0) scaleY(.9);
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
    opacity: 0;
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(.985);
    transform: translate3d(0, 10px, 0) scaleY(.985);
  }

  40%, 45% {
    -webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
    transform: translate3d(0, -20px, 0) scaleY(.9);
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
    opacity: 0;
  }
}

.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    -webkit-transform: translate3d(20px, 0, 0) scaleX(.9);
    transform: translate3d(20px, 0, 0) scaleX(.9);
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
    opacity: 0;
  }
}

@keyframes bounceOutLeft {
  20% {
    -webkit-transform: translate3d(20px, 0, 0) scaleX(.9);
    transform: translate3d(20px, 0, 0) scaleX(.9);
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
    opacity: 0;
  }
}

.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(.9);
    transform: translate3d(-20px, 0, 0) scaleX(.9);
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
    opacity: 0;
  }
}

@keyframes bounceOutRight {
  20% {
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(.9);
    transform: translate3d(-20px, 0, 0) scaleX(.9);
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
    opacity: 0;
  }
}

.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(.985);
    transform: translate3d(0, -10px, 0) scaleY(.985);
  }

  40%, 45% {
    -webkit-transform: translate3d(0, 20px, 0) scaleY(.9);
    transform: translate3d(0, 20px, 0) scaleY(.9);
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
    opacity: 0;
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(.985);
    transform: translate3d(0, -10px, 0) scaleY(.985);
  }

  40%, 45% {
    -webkit-transform: translate3d(0, 20px, 0) scaleY(.9);
    transform: translate3d(0, 20px, 0) scaleY(.9);
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
    opacity: 0;
  }
}

.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

/* Fading entrances  */

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInDownBig {
  from {
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeftBig {
  from {
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInRightBig {
  from {
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInUpBig {
  from {
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
  from {
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInTopLeft {
  from {
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  from {
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInTopRight {
  from {
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  from {
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInBottomLeft {
  from {
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  from {
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInBottomRight {
  from {
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

/* Fading exits */

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    opacity: 0;
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    opacity: 0;
  }
}

.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
    opacity: 0;
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
    opacity: 0;
  }
}

.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
  }
}

.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
    opacity: 0;
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
    opacity: 0;
  }
}

.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    opacity: 0;
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    opacity: 0;
  }
}

.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
    opacity: 0;
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
    opacity: 0;
  }
}

.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    opacity: 0;
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    opacity: 0;
  }
}

.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
    opacity: 0;
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
    opacity: 0;
  }
}

.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutTopLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
    opacity: 0;
  }
}

@keyframes fadeOutTopLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
    opacity: 0;
  }
}

.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
    opacity: 0;
  }
}

@keyframes fadeOutTopRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
    opacity: 0;
  }
}

.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
    opacity: 0;
  }
}

@keyframes fadeOutBottomRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
    opacity: 0;
  }
}

.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
    opacity: 0;
  }
}

@keyframes fadeOutBottomLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
    opacity: 0;
  }
}

.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}

/* Flippers */

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animate__animated.animate__flip {
  -webkit-animation-name: flip;
  animation-name: flip;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.animate__flipInX {
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.animate__flipInY {
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.animate__flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-animation-duration: calc(1s * .75);
  -webkit-animation-duration: calc(var(--animate-duration) * .75);
  animation-duration: calc(1s * .75);
  animation-duration: calc(var(--animate-duration) * .75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.animate__flipOutY {
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-animation-duration: calc(1s * .75);
  -webkit-animation-duration: calc(var(--animate-duration) * .75);
  animation-duration: calc(1s * .75);
  animation-duration: calc(var(--animate-duration) * .75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

/* Lightspeed */

@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}

.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

/* Rotating entrances */

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__rotateIn {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__rotateInDownLeft {
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__rotateInDownRight {
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__rotateInUpLeft {
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__rotateInUpRight {
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

/* Rotating exits */

@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.animate__rotateOut {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.animate__rotateOutDownLeft {
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.animate__rotateOutDownRight {
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.animate__rotateOutUpLeft {
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.animate__rotateOutUpRight {
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

/* Specials */

@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.animate__hinge {
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(1s * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

@-webkit-keyframes jackInTheBox {
  from {
    -webkit-transform: scale(.1) rotate(30deg);
    transform: scale(.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    opacity: 0;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes jackInTheBox {
  from {
    -webkit-transform: scale(.1) rotate(30deg);
    transform: scale(.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    opacity: 0;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rollIn {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    opacity: 0;
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    opacity: 0;
  }
}

.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

/* Zooming entrances */

@-webkit-keyframes zoomIn {
  from {
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 1;
  }
}

@keyframes zoomInDown {
  from {
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 1;
  }
}

.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 1;
  }
}

@keyframes zoomInLeft {
  from {
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 1;
  }
}

.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 1;
  }
}

@keyframes zoomInRight {
  from {
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 1;
  }
}

.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 1;
  }
}

@keyframes zoomInUp {
  from {
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 1;
  }
}

.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

/* Zooming exits */

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
    opacity: 0;
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
    opacity: 0;
  }

  to {
    opacity: 0;
  }
}

.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 1;
  }

  to {
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 0;
  }
}

@keyframes zoomOutDown {
  40% {
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 1;
  }

  to {
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 0;
  }
}

.animate__zoomOutDown {
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    opacity: 1;
  }

  to {
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    opacity: 0;
  }
}

@keyframes zoomOutLeft {
  40% {
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    opacity: 1;
  }

  to {
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    opacity: 0;
  }
}

.animate__zoomOutLeft {
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    opacity: 1;
  }

  to {
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    opacity: 0;
  }
}

@keyframes zoomOutRight {
  40% {
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    opacity: 1;
  }

  to {
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    opacity: 0;
  }
}

.animate__zoomOutRight {
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 1;
  }

  to {
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 0;
  }
}

@keyframes zoomOutUp {
  40% {
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    opacity: 1;
  }

  to {
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    opacity: 0;
  }
}

.animate__zoomOutUp {
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

/* Sliding entrances */

@-webkit-keyframes slideInDown {
  from {
    visibility: visible;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    visibility: visible;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    visibility: visible;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    visibility: visible;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    visibility: visible;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    visibility: visible;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    visibility: visible;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    visibility: visible;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

/* Sliding exits */

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/**
 * Swiper 6.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 9, 2020
 */

@font-face {
  font-family: swiper-icons;
  font-weight: 400;
  font-style: normal;
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA') format('woff');
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  list-style: none;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  margin: 0 auto;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight {
  height: auto;
}

.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-transition-property: height,-webkit-transform;
  transition-property: height,-webkit-transform;
  transition-property: transform,height;
  transition-property: transform,height,-webkit-transform;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  z-index: 10;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(var(--swiper-navigation-size)/ 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
  cursor: pointer;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  cursor: auto;
  pointer-events: none;
  opacity: .35;
}

.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  font-variant: initial;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none !important;
  text-transform: none;
}

.swiper-button-prev {
  right: auto;
  left: 10px;
}

.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  font-variant: initial;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none !important;
  text-transform: none;
}

.swiper-container-rtl .swiper-button-next {
  right: auto;
  left: 10px;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
  --swiper-navigation-color: #fff;
}

.swiper-button-next.swiper-button-black,
.swiper-button-prev.swiper-button-black {
  --swiper-navigation-color: #000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  z-index: 10;
  -webkit-transition: .3s opacity;
  transition: .3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  text-align: center;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  -webkit-transform: scale(.33);
  transform: scale(.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(.66);
  transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(.33);
  transform: scale(.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(.66);
  transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(.33);
  transform: scale(.33);
}

.swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  opacity: .2;
  border-radius: 100%;
  background: #000;
}

button.swiper-pagination-bullet {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  top: 50%;
  right: 10px;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin: 6px 0;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  width: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: .2s transform,.2s top;
  transition: .2s transform,.2s top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: .2s transform,.2s left;
  transition: .2s transform,.2s left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: .2s transform,.2s right;
  transition: .2s transform,.2s right;
}

.swiper-pagination-progressbar {
  position: absolute;
  background: rgba(0, 0, 0, .25);
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.swiper-pagination-white {
  --swiper-pagination-color: #fff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  position: relative;
  border-radius: 10px;
  background: rgba(0, 0, 0, .1);
  -ms-touch-action: none;
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  z-index: 50;
  bottom: 3px;
  left: 1%;
  width: 98%;
  height: 5px;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  z-index: 50;
  top: 1%;
  right: 3px;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, .5);
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  margin-left: -21px;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-top-color: transparent;
  border-radius: 50%;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.swiper-container .swiper-notification {
  position: absolute;
  z-index: -1000;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  -webkit-transition-property: opacity;
  transition-property: opacity;
  pointer-events: none;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  z-index: 1;
  visibility: hidden;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active {
  visibility: visible;
  pointer-events: auto;
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-next {
  visibility: visible;
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-next + .swiper-slide {
  visibility: visible;
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-prev {
  visibility: visible;
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .6;
  background: #000;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  z-index: 1;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*
 *  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 necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  content: '';
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

.remodal-bg.remodal-is-opened,
.remodal-bg.remodal-is-opening {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

.remodal-overlay {
  background: rgba(43, 46, 56, .9);
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

.remodal-wrapper {
  padding: 10px 10px 0;
}

.remodal {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
}

.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
}

.remodal-close:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
}

.remodal-cancel,
.remodal-close,
.remodal-confirm {
  overflow: visible;
  margin: 0;
  cursor: pointer;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal {
  vertical-align: middle;
}

.remodal.remodal-is-closing {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

.remodal-wrapper:after {
  vertical-align: middle;
}

.remodal-close {
  height: 35px;
  padding: 0;
  -webkit-transition: color .2s;
  transition: color .2s;
  color: #95979c;
  background: 0 0;
}

.remodal-close:focus,
.remodal-close:hover {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, 'Helvetica CY', 'Nimbus Sans L', sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  content: '\00d7';
  text-align: center;
}

.remodal-cancel {
  font: inherit;
  display: inline-block;
  min-width: 110px;
  padding: 12px 0;
  -webkit-transition: background .2s;
  transition: background .2s;
  text-align: center;
  vertical-align: middle;
}

.remodal-confirm {
  font: inherit;
  display: inline-block;
  min-width: 110px;
  padding: 12px 0;
  -webkit-transition: background .2s;
  transition: background .2s;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  background: #81c784;
}

.remodal-confirm:focus,
.remodal-confirm:hover {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:focus,
.remodal-cancel:hover {
  background: #ef5350;
}

.remodal-cancel::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.remodal-close::-moz-focus-inner,
.remodal-confirm::-moz-focus-inner {
  padding: 0;
  border: 0;
}

@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  to {
    -webkit-transform: scale(.95);
    transform: scale(.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  to {
    -webkit-transform: scale(.95);
    transform: scale(.95);
    opacity: 0;
    -webkit-filter: blur(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;
  }
}

.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

html {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

body,
html {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  line-height: 1.65;
  width: 750px;
  margin: 0;
  padding: 0;
  text-align: left;
  color: #000;
  background-color: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
}

body * {
  word-wrap: break-word;
}

blockquote,
dd,
div,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
li,
ol,
p,
pre,
td,
textarea,
th,
ul {
  margin: 0;
  padding: 0;
  background-color: transparent;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-weight: 400;
  font-style: normal;
}

strong {
  font-weight: 700;
}

dl,
ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

td,
th {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 400;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

q:after,
q:before {
  content: '';
}

abbr,
acronym {
  border: 0;
}

:focus {
  outline: 0;
}

pre {
  padding: 0;
}

article,
aside,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
  margin: 0;
  padding: 0;
}

body.is_fixed,
html.is_fixed {
  overflow: hidden;
}

body.is_fixed.os_ios .l_wrapper {
  position: fixed;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #b30000;
  outline: 0;
  -webkit-text-decoration-skip: objects;
}

a img {
  -webkit-box-shadow: #000 0 0 0;
  box-shadow: #000 0 0 0;
}

img {
  width: 100%;
  max-width: 100%;
  border: none;
}

b,
strong {
  font-weight: bolder;
}

form {
  margin: 0;
  padding: 0;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  resize: none;
  cursor: pointer;
  vertical-align: middle;
  color: inherit;
  border: none;
  border-radius: 0;
  outline: 0;
  background: none transparent;
  -webkit-box-shadow: #000 0 0 0;
  box-shadow: #000 0 0 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  -ms-box-sizing: border-box;
}

input,
textarea {
  cursor: text;
}

button,
input[type=file],
select {
  cursor: pointer;
}

input::-ms-clear {
  visibility: hidden;
}

input::-ms-reveal {
  visibility: hidden;
}

select::-ms-expand {
  display: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

.l_footer_nav {
  position: fixed;
  z-index: 88888;
  bottom: 0;
  left: 0;
  display: block;
  width: 750px;
  height: 175px;
  background: url(/common/images/global/footer_nav.png) left bottom no-repeat;
}

.l_footer_nav:after {
  font-size: 0;
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: '';
}

.footer_nav_btn {
  display: block;
  float: left;
  width: 170px;
  height: 160px;
  text-indent: -9999px;
  background-color: transparent;
}

.footer_nav_btn:nth-child(2) {
  width: 205px;
}

.footer_nav_btn:nth-child(3) {
  width: 192px;
}

.footer_nav_btn:nth-child(4) {
  width: 183px;
}

.footer_nav_num {
  font-size: 2.4rem;
  line-height: 46px;
  position: absolute;
  z-index: 2;
  top: -5px;
  right: 13px;
  display: inline-block;
  width: 46px;
  height: 46px;
  text-align: center;
  vertical-align: middle;
  text-indent: 0;
  color: #fff;
  border-radius: 46px;
  background-color: #cf1f08;
  background-color: #fd0011;
}

.l_footer {
  display: block;
  width: 750px;
  padding: 80px 0 60px;
  text-align: center;
}

body.is_login .l_footer {
  padding-bottom: 180px;
}

.l_footer_social {
  display: block;
  width: 378px;
  margin: 0 auto 50px;
}

.l_footer_social:after {
  font-size: 0;
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: '';
}

.l_footer_social li {
  display: block;
  float: left;
  width: 126px;
  height: 110px;
}

.l_footer_link {
  display: inline-block;
  display: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 10px;
}

.l_footer_link span {
  font-size: 1.8rem;
  display: inline-block;
  color: #333;
  border-bottom: 1px solid #333;
}

.l_footer_note {
  font-size: 1.8rem;
  line-height: 1.5;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 660px;
  margin: 25px 0 32px 58px;
  padding: 0 0 0 200px;
  text-align: left;
  color: #333;
  background: url(/common/images/global/icn_alcohol.png) left center no-repeat;
}

.copyright {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: .05rem;
  color: #333;
}

main {
  overflow-x: hidden;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 160px;
  padding: 0 34px 0 14px;
  border-bottom: 2px solid #efefef;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

header .logo {
  width: 360px;
}

header .notification {
  position: relative;
  width: 48px;
  height: 48px;
  margin-right: 13px;
  margin-left: auto;
  pointer-events: auto;
  background: url(/common/images/global/icon_notification.svg) no-repeat left top;
  background-size: contain;
}

header .notification--isactive:before {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  content: '';
  border-radius: 50%;
  background: #ff5353;
}

.islogin {
  position: fixed;
  z-index: 10010;
  top: 0;
  width: 100%;
  background: #fff;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.islogin + main {
  margin-top: 160px;
}

.islogin--mypage {
  border-bottom: 2px solid transparent;
  background: none;
}

.islogin--mypage + main {
  margin-top: 0;
  padding-top: 130px;
}

.islogin--mypage .logo {
  width: 440px;
  margin-left: 55px;
}

.islogin--mypage--three {
  pointer-events: none;
}

.islogin--mypage .menu-trigger span {
  background: #fff;
}

.islogin--mypage .notification {
  background: url(/common/images/global/icon_notification02.svg) no-repeat left top;
}

.islogin--mypage.blk .menu-trigger span {
  background: #000;
}

.islogin--mypage.blk .notification {
  background: url(/common/images/global/icon_notification.svg) no-repeat left top;
  background-size: contain;
}

.logothree {
  position: absolute;
  z-index: 2;
  top: 33px;
  left: 70px;
  width: 440px;
  height: 80px;
}

.topContact_snow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  -webkit-transform: scale(2);
  transform: scale(2);
}

.menu-trigger {
  font-size: 1.0rem;
  z-index: 10001;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100px;
  height: 155px;
  pointer-events: auto;
}

.menu-trigger span {
  font-size: 1.0rem;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.menu-trigger div {
  position: absolute;
  z-index: 10003;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 37px;
  height: 32px;
  margin: auto;
  cursor: pointer;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 14px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger-active span:nth-of-type(1) {
  -webkit-transform: translateY(15px) rotate(-315deg);
  transform: translateY(15px) rotate(-315deg);
}

.menu-trigger-active span:nth-of-type(2) {
  opacity: 0 !important;
}

.menu-trigger-active span:nth-of-type(3) {
  -webkit-transform: translateY(-14px) rotate(315deg);
  transform: translateY(-14px) rotate(315deg);
}

.menu-trigger p {
  font-size: 1.0rem;
  width: 50px;
  margin: auto;
  margin-top: 20px;
  margin-left: -12px;
  text-align: center;
  color: #fff;
}

.menuwrapper.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes-spmodal;
  animation-name: remodal-opening-keyframes-spmodal;
}

.menuwrapper.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes-spmodal;
  animation-name: remodal-closing-keyframes-spmodal;
}

@-webkit-keyframes remodal-opening-keyframes-spmodal {
  from {
    -webkit-transform: translateX(166px);
    transform: translateX(166px);
    opacity: 1;
  }

  to {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes remodal-opening-keyframes-spmodal {
  from {
    -webkit-transform: translateX(166px);
    transform: translateX(166px);
    opacity: 1;
  }

  to {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@-webkit-keyframes remodal-closing-keyframes-spmodal {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }

  to {
    -webkit-transform: translateX(466px);
    transform: translateX(466px);
  }
}

@keyframes remodal-closing-keyframes-spmodal {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }

  to {
    -webkit-transform: translateX(466px);
    transform: translateX(466px);
  }
}

.remodal-wrapper {
  overflow-x: hidden;
  padding: 0;
}

.remodal-overlay {
  background: rgba(0, 0, 0, .4);
}

.remodal {
  max-width: 750px;
  margin-bottom: 0;
}

.close {
  font-size: 3.5rem;
  background: #000;
}

.l_header {
  position: fixed;
  top: 0;
}

.menuwrapper {
  top: 160px;
  width: 466px;
  max-width: 100% !important;
  height: calc(100% - 160px);
  padding: 0;
  text-align: left;
  vertical-align: top;
}

.menuwrapper.hacks {
  top: 220px;
}

.menuwrapper ul {
  background: #fff;
}

.menuwrapper li a {
  font-size: 2.2rem;
  position: relative;
  display: block;
  padding: 90px;
  color: #000;
  background: #fff;
}

.menuwrapper li a:after {
  position: absolute;
  top: 50%;
  right: 40px;
  width: 12px;
  height: 12px;
  content: '';
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  border-top: solid 4px #5bc2dc;
  border-right: solid 4px #5bc2dc;
  border-radius: 2px;
}

.menuwrapper li a:first-child {
  padding-top: 34px;
  padding-bottom: 34px;
}

.menuwrapper li a:first-child:before {
  position: absolute;
  top: 55%;
  left: 45px;
  width: 32px;
  height: 32px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.menuwrapper li a:nth-child(2) {
  padding-top: 24px;
  padding-bottom: 24px;
}

.menuwrapper li a:nth-child(2):before {
  position: absolute;
  top: 0;
  left: 90px;
  width: 100%;
  content: '';
  border-top: 3px dotted #efefef;
}

.menuwrapper li:nth-child(1) a:first-child:before {
  background: url(/common/images/global/icon_g_mypage.svg) no-repeat left top;
  background-size: contain;
}

.menuwrapper li:nth-child(1) a:first-child img {
  width: 106px;
}

.menuwrapper li:nth-child(2) a:first-child:before {
  background: url(/common/images/global/icon_g_uchi.svg) no-repeat left top;
  background-size: contain;
}

.menuwrapper li:nth-child(2) a:first-child img {
  width: 194px;
}

.menuwrapper li:nth-child(3) a:first-child:before {
  background: url(/common/images/global/icon_g_soto.svg) no-repeat left top;
  background-size: contain;
}

.menuwrapper li:nth-child(3) a:first-child img {
  width: 194px;
}

.menuwrapper li:nth-child(4) a:first-child:before {
  background: url(/common/images/global/icon_g_point.svg) no-repeat left top;
  background-size: contain;
}

.menuwrapper li:nth-child(4) a:first-child img {
  width: 162px;
}

.menuwrapper li:nth-child(5) a:first-child:before {
  background: url(/common/images/global/icon_g_tameru.svg) no-repeat left top;
  background-size: contain;
}

.menuwrapper li:nth-child(5) a:first-child img {
  width: 258px;
}

.menuwrapper li:nth-child(6) a:first-child:before {
  background: url(/common/images/global/icon_g_faq.svg) no-repeat left top;
  background-size: contain;
}

.menuwrapper li:nth-child(6) a:first-child img {
  width: 168px;
}

.menuwrapper li:nth-child(7) div {
  position: relative;
  padding: 34px 90px;
}

.menuwrapper li:nth-child(7) div:before {
  position: absolute;
  top: 34px;
  left: 45px;
  width: 32px;
  height: 32px;
  content: '';
  background: url(/common/images/global/icon_g_contact.svg) no-repeat left top;
  background-size: contain;
}

.menuwrapper li:nth-child(7) div img {
  display: block;
  width: 124px;
  margin-bottom: 34px;
}

.menuwrapper li:nth-child(7) a {
  padding: 12px 0;
}

.menuwrapper li:nth-child(7) a:after {
  display: none;
}

.menuwrapper li:nth-child(7) a img {
  width: 286px;
  margin: 0;
}

.menuwrapper li:nth-child(7) p {
  font-size: 1.4rem;
  color: #6a6a6a;
}

.menuwrapper li:nth-child(7) p:nth-of-type(1) {
  font-size: 2.0rem;
  color: #000;
}

.menuwrapper li:nth-child(7) p:nth-of-type(3) {
  margin: 12px 0 0;
  padding: 14px 0;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}

.menuwrapper li:nth-child(8) a {
  padding: 34px 20px;
}

.menuwrapper li:nth-child(8) a:after {
  display: none;
}

.menuwrapper li + li {
  border-top: 4px solid #efefef;
}

.box {
  font-size: 3rem;
  margin: 0 0 100px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.box:active {
  background: #0f0;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.l_footer {
  position: relative;
  margin: 0;
  padding-bottom: 20px;
}

.l_footer_note {
  margin-top: 60px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}

.l_footer:before {
  position: absolute;
  z-index: 1;
  top: -2px;
  left: 0;
  width: 100%;
  height: 4px;
  content: '';
  background: #fff;
}

.l_footer .logo {
  width: 400px;
  margin: 0 auto 52px;
}

.notification-modal {
  position: relative;
  width: 486px;
  margin: 145px 0 0 100px;
  padding: 0;
  vertical-align: top;
  border-radius: 20px;
}

.notification-modal:before {
  position: absolute;
  top: -25px;
  right: 70px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 30px;
  height: 25px;
  content: '';
  border-right: 25px solid transparent;
  border-bottom: 30px solid #efefef;
  border-left: 25px solid transparent;
}

.notification-modal > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 90px;
  border-radius: 20px 20px 0 0;
  background: #efefef;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.notification-modal > div img {
  width: 170px;
  margin: 0 auto;
}

.notification-modal .notxt {
  font-size: 2.0rem;
  border-radius: 20px;
}

.notification-modal ul {
  text-align: left;
}

.notification-modal ul li a {
  font-size: 2.0rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0 30px 64px;
  color: #000;
}

.notification-modal ul li a span {
  position: relative;
  padding: 0 18px 0 0;
  color: #b2b2b2;
}

.notification-modal ul li a span:before {
  position: absolute;
  top: 0;
  left: -40px;
  width: 36px;
  height: 36px;
  content: '';
}

.notification-modal ul li .point span:before {
  background: url(/common/images/global/icon_n_point.svg) no-repeat left top;
  background-size: contain;
}

.notification-modal ul li .alert span:before {
  background: url(/common/images/global/icon_n_alert.svg) no-repeat left top;
  background-size: contain;
}

.notification-modal ul li + li {
  border-top: 1px solid #ccc;
}

.c-linelogin {
  font-size: 2.6rem;
  font-weight: bold;
  position: fixed;
  z-index: 2;
  right: 40px;
  bottom: -200px;
  width: 200px;
  height: 200px;
  padding: 5px;
  -webkit-transition: bottom .3s ease;
  transition: bottom .3s ease;
  text-align: center;
  letter-spacing: -.01em;
  border-radius: 50%;
  background: #fff;
  -webkit-box-shadow: 0 0 8px gray;
  box-shadow: 0 0 8px gray;
}

.c-linelogin .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ff5353;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-linelogin .wrap .line {
  font-family: 'Quicksand', sans-serif;
  font-size: 3.6rem;
}

.c-linelogin .wrap .inner {
  line-height: 1.3;
  position: relative;
  top: -1em;
  display: block;
  color: #fff;
}

.c-linelogin .wrap .inner:before {
  position: absolute;
  right: 0;
  bottom: -30px;
  left: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  border-radius: 2px;
}

.c-linelogin .wrap .free {
  font-weight: normal;
}

.c-linelogin.fix {
  bottom: 40px;
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.7, .7, .7) rotate3d(0, 0, 1, -30deg);
    transform: scale3d(.7, .7, .7) rotate3d(0, 0, 1, -30deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 30deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 30deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.4, 1.4, 1.4) rotate3d(0, 0, 1, -30deg);
    transform: scale3d(1.4, 1.4, 1.4) rotate3d(0, 0, 1, -30deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: visible;
  width: 100%;
  min-height: 100vh;
  background: #5bc2dc;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.desktop > div {
  width: 900px;
  margin: 20px auto;
}

.desktop > div > div {
  font-size: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 17px 0 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.desktop > div > div div {
  font-family: 'Quicksand', sans-serif;
  font-size: 11px;
}

.desktop > div p {
  padding: 0 0 0 100px;
  background: url(/common/images/global/icn_alcohol02.png) left center no-repeat;
  background-size: contain;
}

.desktop img {
  vertical-align: top;
}

.desktop__html {
  width: 100%;
}

.point-swiper-container {
  margin-top: 20px;
  padding: 0 40px;
}

.point-swiper-container .swiper-notification {
  display: none;
}

.point-swiper-container--col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -100px;
  margin-bottom: 100px;
  padding: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.point-swiper-container--col2 > div {
  width: 48%;
  height: auto !important;
  margin-bottom: 20px;
}

.point-swiper-container--col2 > div:first-child {
  width: 100%;
  margin-bottom: 40px;
}

.point-swiper-container .swiper-slide {
  overflow: hidden;
  width: 48%;
  border-radius: 20px;
}

.point-swiper-container .swiper-slide a > div {
  font-size: 2.8rem;
  font-weight: bold;
  height: 100%;
  padding: 10px 20px;
  color: #000;
  background: #dff4f8;
}

.point-swiper-container .swiper-slide a > div p {
  display: -webkit-box;
  /* 制限したい行数が3の場合 */
  overflow: hidden;
  height: 138px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.point-swiper-container .swiper-slide a > div div {
  font-family: 'Quicksand', sans-serif;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 36px;
  padding: 0;
  color: #5bc2dc;
}

.point-swiper-container .swiper-slide a > div div:before {
  position: absolute;
  top: 7px;
  right: -36px;
  width: 30px;
  height: 30px;
  content: '';
  background: url(/common/images/global/icon_po.svg) no-repeat left top;
  background-size: contain;
}

/*-----------*/

/*レイアウト*/

.l-year {
  background: #5bc2dc;
}

.l-content {
  position: relative;
  overflow: hidden;
  padding: 50px 40px 240px;
  background: #5bc2dc;
}

.l-content:after {
  position: absolute;
  bottom: 0;
  left: calc(50% - 120px);
  width: 210px;
  height: 180px;
  content: '';
  background: url(/common/images/global/icon_footerbeal.png) no-repeat left top;
  background-size: contain;
}

.l-content svg {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100vw;
  height: 95px;
  pointer-events: none;
}

.l-content svg .parallax > use {
  -webkit-animation: move-forever 6s cubic-bezier(.55, .5, .45, .5) infinite;
  animation: move-forever 6s cubic-bezier(.55, .5, .45, .5) infinite;
}

@-webkit-keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(85px, 0, 0);
    transform: translate3d(85px, 0, 0);
  }
}

@keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(85px, 0, 0);
    transform: translate3d(85px, 0, 0);
  }
}

.l-content--mypage {
  margin-top: -130px;
  padding: 170px 70px 230px;
}

.l-content--mypage:after {
  top: 220px;
  left: 0;
  width: 100%;
  height: 85%;
  background: url(/common/images/global/bgbgcard.svg) no-repeat left top;
  background-size: cover;
}

.l-content--mypage:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55%;
  content: '';
  pointer-events: none;
  background: url(/common/images/aniv2025/hanabi.png) no-repeat center top;
  background-size: cover;
}

.l-content--year {
  overflow: visible;
  padding-bottom: 38px;
}

.l-content--year:after {
  display: none;
}

.l-content--year:before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  content: '';
  background: #5bc2dc;
}

.l-content--aniv {
  margin-top: -20px;
}

.l-content--enq {
  position: relative;
}

.l-content--enq + .l-content {
  padding-top: 0;
}

.l-content--enq .btns {
  font-size: 0;
  position: absolute;
  right: 0;
  bottom: 60px;
  left: 0;
  display: block;
  width: 80%;
  margin: auto;
}

.l-content--main {
  padding-bottom: 38px;
}

.l-content--main:after {
  display: none;
}

.l-content--fukubiki {
  padding-top: 20px;
  padding-bottom: 120px;
}

.l-content--fukubiki .c-fukubik {
  padding-top: 40px;
}

.l-content--fukubiki02 {
  padding-top: 40px;
  padding-bottom: 200px;
  background: #efefef;
}

.l-content--fukubiki03 {
  padding-top: 40px;
  padding-bottom: 200px;
  background: #efefef;
}

.l-content--fukubiki03:after {
  display: none;
}

.l-content--campaign {
  padding-bottom: 350px;
}

.l-content--campaign__overview {
  height: 580px;
  margin: 0 auto;
  padding: 30px 0;
  border-radius: 20px;
  background: #fff;
}

.l-content--campaign__block {
  font-size: 2.4rem;
  width: calc(100% - 25px);
  height: 100%;
  padding: 0 30px;
  background: #fff;
}

.l-content__block {
  margin-bottom: 120px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
}

.l-content__block--beal {
  position: relative;
  margin-top: 265px;
}

.l-content__block--beal:before {
  position: absolute;
  top: -265px;
  left: 0;
  width: 100%;
  height: 412px;
  content: '';
  pointer-events: none;
  background: url(/common/images/global/bg.png) no-repeat left top;
  background-size: contain;
}

.l-content__block--main {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  padding: 20px 20px 0 20px;
}

.l-content__block--mainbefore {
  margin-bottom: 0;
  padding: 20px 0 0;
}

.l-content__block--yourpoint {
  position: relative;
  margin-top: 30px !important;
}

.l-content__block--card {
  padding: 20px 40px;
}

.l-content__block--store {
  position: relative;
  margin-top: 560px;
  padding: 20px 10px;
}

.l-content__block--store:before {
  position: absolute;
  top: -460px;
  left: 0;
  width: 100%;
  height: 412px;
  content: '';
  pointer-events: none;
  background: url(/common/images/global/bg_targetstore.png) no-repeat center top;
  background-size: contain;
}

.l-content__block--store:after {
  position: absolute;
  top: -560px;
  left: 0;
  width: 100%;
  height: 165px;
  content: '';
  pointer-events: none;
  background: url(/common/images/global/bg_targetstore01.png) no-repeat center top;
  background-size: contain;
}

.l-content__block--info {
  padding: 40px;
}

.l-content__block--mente {
  padding: 40px 80px;
}

.l-content__block + .l-content__block {
  margin-top: -80px;
}

.l-content__fukubiki {
  margin-bottom: 120px;
}

.l-content__fukubiki + .l-content__fukubiki {
  margin-top: -72px;
}

.l-content--q {
  padding-bottom: 80px;
  background: #dff4f8;
}

.l-content--q:after {
  display: none;
}

.l-1aniv {
  background: #5bc2dc;
}

/*-----------*/

/*コンポーネント*/

.c-pagettl--sotonomi {
  width: 290px;
  margin: 0 auto;
  padding: 40px 0 0;
}

.c-ttl {
  margin: 40px auto 0;
  padding-bottom: 10px;
}

.c-ttl span {
  font-size: 2.0rem;
  display: block;
  width: 438px;
  margin: 20px auto;
  text-align: center;
  color: #2199b7;
  border-radius: 20px;
  background: #fff;
}

.c-ttl--mypage {
  width: 202px;
  margin-bottom: 64px;
}

.c-ttl--info {
  width: 352px;
  margin-top: 0;
}

.c-ttl--pt {
  position: relative;
  width: 300px;
  margin-top: 0;
}

.c-ttl--pt a {
  font-size: 2.4rem;
  font-weight: bold;
  position: absolute;
  top: 20px;
  right: -210px;
  padding-right: 40px;
  color: #000;
}

.c-ttl--pt a:after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  content: '';
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg);
  border-top: solid 4px #000;
  border-right: solid 4px #000;
  border-radius: 2px;
}

.c-ttl--campaign {
  width: 350px;
  margin-bottom: 64px;
}

.c-ttl--accumulate {
  position: relative;
  width: 668px;
  margin: 0 auto;
  padding: 120px 0 32px;
}

.c-ttl--accumulate img {
  display: block;
  width: 337px;
  margin: 0 auto;
}

.c-ttl--input {
  width: 560px;
}

.c-ttl--input span {
  width: 419px;
}

.c-ttl--selectstore {
  width: 560px;
}

.c-ttl--selectstore span {
  width: 354px;
}

.c-ttl--shooting {
  width: 440px;
  margin-bottom: 64px;
}

.c-ttl--application {
  width: 346px;
  margin-bottom: 64px;
}

.c-ttl--applicationdone {
  width: 560px;
  margin-bottom: 50px;
}

.c-ttl--applicationdone img {
  display: block;
  width: 170px;
  margin: 0 auto;
}

.c-ttl--applicationdone span {
  width: 530px;
}

.c-ttl--applicationdone span img {
  width: 530px;
}

.c-ttl--pointhistory {
  width: 236px;
  margin-bottom: 64px;
}

.c-ttl--pointstore {
  width: 486px;
}

.c-ttl--pointstore span {
  width: 354px;
}

.c-ttl--privacy {
  width: 339px;
  margin-bottom: 64px;
}

.c-ttl--point {
  width: 402px;
}

.c-ttl--pointproduct {
  width: 510px;
}

.c-ttl--pointproduct > img {
  display: block;
  width: 480px;
  margin: 0 auto;
}

.c-ttl--pointproduct span {
  width: 510px;
}

.c-ttl--pointtameru {
  width: 550px;
}

.c-ttl--pointtameru > img {
  display: block;
  width: 402px;
  margin: 0 auto;
}

.c-ttl--pointtameru span {
  width: 550px;
}

.c-ttl--acceptance {
  width: 500px;
}

.c-ttl--info2 {
  width: 460px;
  margin-bottom: 64px;
}

.c-ttl--info3 {
  width: 286px;
  margin-bottom: 64px;
}

.c-ttl--cardregist {
  width: 300px;
  margin-bottom: 64px;
}

.c-ttl--cardcomp {
  width: 174px;
  margin-bottom: 64px;
}

.c-ttl--store {
  width: 184px;
  margin: 30px auto 42px;
}

.c-contentttl--searchstore {
  position: relative;
  width: 230px;
  margin: 40px 70px 60px;
}

.c-contentttl--searchstore:before {
  position: absolute;
  top: -12px;
  left: -68px;
  width: 64px;
  height: 58px;
  content: '';
  background: url(/common/images/global/icon_ttlsearchstore.png) no-repeat left top;
  background-size: contain;
}

.c-contentttl--storedrink {
  width: 216px;
  margin: 26px  auto 46px;
}

.c-contentttl--shootingbeal {
  width: 276px;
  margin: 26px  auto 46px;
}

.c-contentttl--applicationpoint {
  width: 316px;
  margin: 26px  auto 46px;
}

.c-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 40px 60px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.c-flow__item {
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 160px;
  height: 60px;
  text-align: center;
  color: #b2b2b2;
  border-radius: 35px;
  background: #efefef;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-flow__item:before {
  position: absolute;
  top: 50%;
  left: -10px;
  width: 20px;
  height: 6px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #efefef;
}

.c-flow__item:first-child:before {
  display: none;
}

.c-flow--02 {
  line-height: 1.3;
}

.c-flow--02 .c-flow__item {
  width: 120px;
}

.c-flow--02 .c-flow__item:before {
  left: -30px;
  width: 60px;
}

.c-flow .min {
  width: 100px;
}

.c-flow .max {
  width: 140px;
}

.c-flow .current {
  color: #000;
  background: #ffde00;
}

.c-flow .current:before {
  background: #ffde00;
}

.c-search__input {
  display: none;
}

input[type=radio]:checked + .c-search__item {
  background: #ff5353;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

input[type=radio]:checked + .c-search__item > p:after {
  position: absolute;
  top: 20px;
  left: -30px;
  width: 15px;
  height: 15px;
  content: '';
  border-radius: 50%;
  background: #ff5353;
}

input[type=radio]:checked + .c-search__search {
  background: #efefef;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

input[type=radio]:checked + .c-search__search > p:after {
  position: absolute;
  top: 15px;
  left: -39px;
  width: 15px;
  height: 15px;
  content: '';
  pointer-events: none;
  border-radius: 50%;
  background: #5bc2dc;
}

.c-search__item {
  font-size: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  cursor: pointer;
  text-align: center;
  background: #b2b2b2;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-search__item--store {
  background: none;
}

.c-search__item__select {
  width: 100%;
  margin: 6px;
  padding: 25px 25px 10px;
  text-align: left;
  background: #efefef;
}

.c-search__item__icon {
  width: 185px;
}

.c-search__item__icon img {
  vertical-align: top;
}

.c-search__item__name {
  font-size: 3.0rem;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 20px 0 20px;
  border-bottom: dotted 2px #b2b2b2;
}

.c-search__item__place {
  position: relative;
  padding-left: 30px;
  color: #6a6a6a;
}

.c-search__item__place:before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 16px;
  height: 24px;
  content: '';
  background: url(/common/images/global/icon_map.svg) no-repeat left top;
  background-size: contain;
}

.c-search__item__link {
  padding: 20px 0;
  text-align: center;
}

.c-search__item__link a {
  font-size: 2.0rem;
  position: relative;
  padding: 10px 50px 10px 20px;
  color: #fff;
  border-radius: 10px;
  background: #1a1311;
}

.c-search__item__link a:after {
  position: absolute;
  top: 52%;
  right: 18px;
  width: 22px;
  height: 22px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_external-link.svg) no-repeat left top;
  background-size: contain;
}

.c-search__item > p {
  font-size: 2.8rem;
  position: relative;
  margin: 10px 0 18px 40px;
  color: #fff;
}

.c-search__item > p:before {
  position: absolute;
  top: 10px;
  left: -40px;
  width: 35px;
  height: 35px;
  content: '';
  border-radius: 50%;
  background: #fff;
}

.c-search__search {
  font-size: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  padding: 0 40px;
  cursor: pointer;
  text-align: center;
  background: #efefef;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.c-search__search__select {
  width: 100%;
  margin: 6px;
  padding: 25px 25px 10px;
  text-align: left;
  background: #efefef;
}

.c-search__search__name {
  font-weight: bold;
  margin-bottom: 10px;
  padding: 20px 0;
  border-bottom: dotted 2px #b2b2b2;
}

.c-search__search__place {
  color: #6a6a6a;
}

.c-search__search > p {
  font-weight: bold;
  position: relative;
  margin: 40px 0 48px 50px;
  color: #000;
}

.c-search__search > p:before {
  position: absolute;
  top: 5px;
  left: -50px;
  width: 35px;
  height: 35px;
  content: '';
  border-radius: 50%;
  background: #fff;
}

.c-search__search input {
  font-size: 2.4rem;
  width: 100%;
  margin-top: -10px;
  margin-bottom: 40px;
  padding: 24px 30px;
  border: 2px solid #000;
  border-radius: 10px;
  background: #fff;
}

.c-fraction {
  font-size: 2.0rem;
  margin: 20px 0 20px;
  text-align: center;
  color: #6a6a6a;
}

.c-pager {
  font-size: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 46px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-pager__prev {
  position: relative;
  width: 50px;
  height: 50px;
  border: 3px solid #b2b2b2;
  border-radius: 50%;
}

.c-pager__prev:before {
  position: absolute;
  top: 15px;
  left: 16px;
  width: 12px;
  height: 12px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-bottom: solid 4px #000;
  border-left: solid 4px #000;
  border-radius: 2px;
}

.c-pager__next {
  position: relative;
  width: 50px;
  height: 50px;
  border: 3px solid #b2b2b2;
  border-radius: 50%;
}

.c-pager__next:before {
  position: absolute;
  top: 15px;
  left: 13px;
  width: 12px;
  height: 12px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: solid 4px #000;
  border-right: solid 4px #000;
  border-radius: 2px;
}

.c-pager__item {
  font-family: 'Quicksand', sans-serif;
  font-weight: bold;
  padding: 0 25px;
  color: #b2b2b2;
}

.c-pager .current {
  color: #000;
}

.c-pager--history .c-pager__prev {
  border: 3px solid transparent;
  background: #fff;
}

.c-pager--history .c-pager__prev:before {
  border-bottom: solid 4px #5bc2dc;
  border-left: solid 4px #5bc2dc;
}

.c-pager--history .c-pager__next {
  border: 3px solid transparent;
  background: #fff;
}

.c-pager--history .c-pager__next:before {
  border-top: solid 4px #5bc2dc;
  border-right: solid 4px #5bc2dc;
}

.c-pager--history .c-pager__item {
  color: rgba(255, 255, 255, .5);
}

.c-pager--history .current {
  color: #fff;
}

.c-fixbottom {
  position: fixed;
  z-index: 2;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 180px;
  padding: 0 40px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-transform: translateY(180px);
  transform: translateY(180px);
  background: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.c-fixbottom div div:first-child {
  font-size: 3.3rem;
  font-weight: bold;
  margin-top: 20px;
}

.c-fixbottom div div:last-child {
  font-family: 'Quicksand', sans-serif;
  font-size: 8.0rem;
  font-weight: bold;
  position: relative;
  margin-top: -30px;
  text-align: right;
  color: #ff5353;
}

.c-fixbottom div div:last-child:after {
  position: absolute;
  top: 48px;
  right: -53px;
  width: 50px;
  height: 50px;
  content: '';
  background: url(/common/images/global/icon_po.svg) no-repeat left top;
  background-size: contain;
}

.c-fixbottom a {
  font-size: 3.2rem;
  font-weight: bold;
  position: relative;
  padding: 12px 66px 12px 46px;
  pointer-events: none;
  color: #fff;
  border-radius: 50px;
  background: #b2b2b2;
}

.c-fixbottom a:before {
  position: absolute;
  top: 33px;
  right: 40px;
  width: 12px;
  height: 12px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  border-radius: 2px;
}

.c-fixbottom .isactive {
  pointer-events: auto;
  background: #ff5353;
}

.c-fixbottom--isactive {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.c-applied__box {
  font-size: 2.8rem;
  font-weight: bold;
  position: relative;
  padding: 150px 0 100px;
  text-align: center;
  color: #ff5353;
  background: #fee;
}

.c-applied__box:before {
  position: absolute;
  top: 50px;
  right: 0;
  left: 0;
  width: 90px;
  height: 90px;
  margin: auto;
  content: '';
  background: url(/common/images/global/icon_alert.svg) no-repeat left top;
  background-size: contain;
}

.c-applied__box p {
  font-size: 1.8rem;
  font-weight: normal;
  color: #000;
}

.c-applied__box--card {
  margin-bottom: 50px;
  padding: 100px 0 40px;
}

.c-applied__box--card:before {
  top: 20px;
}

.c-applied__item {
  font-size: 2.8rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 20px;
  padding: 15px 15px 15px 106px;
  color: #ff5353;
  background: #fee;
}

.c-applied__item:before {
  position: absolute;
  left: 20px;
  width: 80px;
  height: 80px;
  margin: auto;
  content: '';
  background: url(/common/images/global/icon_alert.svg) no-repeat left top;
  background-size: contain;
}

.c-applied__item p {
  font-size: 1.8rem;
  font-weight: normal;
  color: #000;
}

.c-btn {
  font-size: 3.2rem;
  font-weight: bold;
  margin: 120px 0;
  text-align: center;
}

.c-btn--mistaketxt {
  font-size: 2.2rem;
  margin: -60px 0 50px;
  text-align: center;
}

.c-btn--use {
  margin: 0 0 40px;
}

.c-btn--use a {
  position: relative;
  display: block;
  width: 560px;
  margin: 0 auto;
  padding: 20px 80px 25px 100px;
  color: #fff;
  border-radius: 50px;
  background: #000;
}

.c-btn--use a:after {
  position: absolute;
  top: 50%;
  left: -50px;
  width: 170px;
  height: 170px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_use.png) no-repeat left top;
  background-size: contain;
}

.c-btn--use a:before {
  position: absolute;
  top: 37px;
  right: 46px;
  width: 14px;
  height: 14px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  border-radius: 2px;
}

.c-btn--use0 {
  margin: 0 0 40px;
}

.c-btn--use0 a {
  position: relative;
  display: block;
  width: 560px;
  margin: 0 auto;
  padding: 20px 80px 25px 100px;
  color: #fff;
  border-radius: 50px;
  background: #000;
}

.c-btn--use0 a:after {
  position: absolute;
  top: 50%;
  left: -13px;
  width: 120px;
  height: 134px;
  content: '';
  -webkit-transform: translateY(-50%) scale(1.14) rotate(-14deg);
  transform: translateY(-50%) scale(1.14) rotate(-14deg);
  background: url(/common/images/global/okisunpo_oji_0p.gif) no-repeat left top;
  background-size: contain;
}

.c-btn--use0 a:before {
  position: absolute;
  top: 37px;
  right: 46px;
  width: 14px;
  height: 14px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  border-radius: 2px;
}

.c-btn--use15 {
  margin: 0 0 40px;
}

.c-btn--use15 a {
  position: relative;
  display: block;
  width: 560px;
  margin: 0 auto;
  padding: 20px 80px 25px 100px;
  color: #fff;
  border-radius: 50px;
  background: #000;
}

.c-btn--use15 a:after {
  position: absolute;
  top: 50%;
  left: -13px;
  width: 120px;
  height: 134px;
  content: '';
  -webkit-transform: translateY(-50%) scale(1.14) rotate(-14deg);
  transform: translateY(-50%) scale(1.14) rotate(-14deg);
  background: url(/common/images/global/okisunpo_oji_15p.gif) no-repeat left top;
  background-size: contain;
}

.c-btn--use15 a:before {
  position: absolute;
  top: 37px;
  right: 46px;
  width: 14px;
  height: 14px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  border-radius: 2px;
}

.c-btn--use29 {
  margin: 0 0 40px;
}

.c-btn--use29 a {
  position: relative;
  display: block;
  width: 560px;
  margin: 0 auto;
  padding: 20px 80px 25px 100px;
  color: #fff;
  border-radius: 50px;
  background: #000;
}

.c-btn--use29 a:after {
  position: absolute;
  top: 50%;
  left: -13px;
  width: 120px;
  height: 134px;
  content: '';
  -webkit-transform: translateY(-50%) scale(1.14) rotate(-14deg);
  transform: translateY(-50%) scale(1.14) rotate(-14deg);
  background: url(/common/images/global/okisunpo_oji_29p.gif) no-repeat left top;
  background-size: contain;
}

.c-btn--use29 a:before {
  position: absolute;
  top: 37px;
  right: 46px;
  width: 14px;
  height: 14px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  border-radius: 2px;
}

.c-btn--use2 {
  margin: 0 0 40px;
}

.c-btn--use2 a {
  position: relative;
  display: block;
  width: 560px;
  margin: 0 auto;
  padding: 20px 80px 25px 100px;
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
  color: #fff;
  border-radius: 50px;
  background: #000;
}

.c-btn--use2 a:after {
  position: absolute;
  top: 50%;
  left: -50px;
  width: 170px;
  height: 170px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_use.png) no-repeat left top;
  background-size: contain;
}

.c-btn--use2 a:before {
  position: absolute;
  top: 37px;
  right: 46px;
  width: 14px;
  height: 14px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  border-radius: 2px;
}

.c-btn--anivafter a:after {
  background: url(/common/images/global/img_point07.svg) no-repeat left top;
  background-size: contain;
}

.c-btn--utxt {
  width: 480px;
  margin: -80px 70px 10px;
  margin-left: auto;
}

.c-btn--howto {
  margin: 60px 0 0;
}

.c-btn--howto a {
  position: relative;
  display: block;
  width: 670px;
  margin: 0 auto;
  padding: 20px 80px 25px 70px;
  color: #fff;
  border-radius: 50px;
  background: #000;
}

.c-btn--howto a:before {
  position: absolute;
  top: 37px;
  right: 46px;
  width: 14px;
  height: 14px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  border-radius: 2px;
}

.c-btn--storesearchback a {
  position: relative;
  padding: 20px 90px 25px 120px;
  color: #fff;
  border-radius: 50px;
  background: #000;
}

.c-btn--storesearchback a:before {
  position: absolute;
  top: 37px;
  left: 46px;
  width: 14px;
  height: 14px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-bottom: solid 4px #fff;
  border-left: solid 4px #fff;
  border-radius: 2px;
}

.c-btn--fback {
  margin-bottom: 160px;
}

.c-btn--search a {
  position: relative;
  padding: 20px 80px 25px 70px;
  color: #fff;
  border-radius: 50px;
  background: #000;
}

.c-btn--search a:before {
  position: absolute;
  top: 37px;
  right: 46px;
  width: 14px;
  height: 14px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  border-radius: 2px;
}

.c-btn--edit {
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
  display: block;
  margin: 60px auto;
  padding: 12px 64px 16px 100px;
  text-align: center;
  color: #5bc2dc;
  border: 2px solid #5bc2dc;
  border-radius: 40px;
}

.c-btn--edit:before {
  position: absolute;
  top: 20px;
  left: 32px;
  width: 24px;
  height: 26px;
  content: '';
  background: url(/common/images/global/icon_edit.svg) no-repeat left top;
  background-size: contain;
}

.c-btn--reshooting {
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
  display: block;
  margin: 60px auto;
  padding: 12px 64px 16px 86px;
  text-align: center;
  color: #5bc2dc;
  border: 2px solid #5bc2dc;
  border-radius: 40px;
}

.c-btn--reshooting:before {
  position: absolute;
  top: 20px;
  left: 32px;
  width: 24px;
  height: 26px;
  content: '';
  background: url(/common/images/global/icon_camera.svg) no-repeat left top;
  background-size: contain;
}

.c-btn--reshooting--white {
  color: #fff;
  border: 2px solid #fff;
}

.c-btn--reshooting--white:before {
  background: url(/common/images/global/icon_camera02.svg) no-repeat left top;
  background-size: contain;
}

.c-btn--reshooting--howto {
  margin-top: -30px;
  color: #fff;
  border: 2px solid #fff;
}

.c-btn--reshooting--howto:before {
  top: 18px;
  width: 26px;
  height: 26px;
  background: url(/common/images/global/icon_hatena.svg) no-repeat left top;
  background-size: contain;
}

.c-btn--receive {
  margin: 50px auto 20px;
}

.c-btn__col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.c-btn__col2 > div {
  margin: 0 auto 120px;
}

.c-btn--phistory a {
  position: relative;
  padding: 20px 80px 25px 58px;
  color: #fff;
  border-radius: 50px;
  background: #000;
}

.c-btn--phistory a:before {
  position: absolute;
  top: 37px;
  right: 46px;
  width: 14px;
  height: 14px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  border-radius: 2px;
}

.c-btn--mypage a {
  position: relative;
  padding: 20px 80px 25px 58px;
  color: #fff;
  border-radius: 50px;
  background: #000;
}

.c-btn--mypage a:before {
  position: absolute;
  top: 35px;
  right: 46px;
  width: 14px;
  height: 14px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  border-radius: 2px;
}

.c-shootingmethod {
  position: relative;
  max-width: 750px !important;
  padding: 0;
  background: #5bc2dc;
}

.c-shootingmethod__at {
  font-size: 2.0rem;
  width: 510px;
  margin: 50px auto 0;
  color: #fff;
}

.c-shootingmethod__txt {
  font-size: 2.8rem;
  font-weight: bold;
  position: relative;
  display: block;
  width: 380px;
  margin: 50px auto 50px;
  text-align: center;
  color: #fff;
}

.c-shootingmethod__ttl {
  position: fixed;
  z-index: 100033;
  top: 0;
  width: 100%;
  padding: 60px 0;
  border-bottom: 2px solid #efefef;
  background: #fff;
}

.c-shootingmethod__ttl img {
  display: block;
  width: 268px;
  margin: 0 auto;
}

.c-shootingmethod__subttl {
  width: 180px;
  margin: 20px auto 60px;
}

.c-shootingmethod__subttl02 {
  width: 130px;
  margin: 20px auto 60px;
}

.c-shootingmethod__img {
  width: 590px;
  margin: 0 auto;
}

.c-shootingmethod__imgs {
  width: 464px;
  margin: 0 auto;
}

.c-shootingmethod__ttlbox {
  width: calc(100% - 80px);
  margin: 220px auto 0;
}

.c-shootingmethod__ttlbox p {
  font-size: 2.0rem;
  margin-top: 30px;
  text-align: left;
  color: #000;
}

.c-shootingmethod__beal {
  width: calc(100% - 80px);
  margin: 60px auto 0;
  margin-bottom: 50px;
  padding: 40px;
  border-radius: 10px;
  background: #fff;
}

.c-shootingmethod__beal .txt {
  font-size: 2.5rem;
  font-weight: bold;
  position: relative;
  margin: 0 0 40px;
  text-align: center;
}

.c-shootingmethod__beal .txt:before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 1px;
  margin: auto;
  content: '';
  background: #000;
}

.c-shootingmethod__beal p {
  font-size: 2.1rem;
  margin-top: 20px;
  text-align: left;
}

.c-shootingmethod__beal .list {
  margin: 50px 0;
  text-align: left;
}

.c-shootingmethod__beal .list li {
  font-size: 2.6rem;
  position: relative;
  padding-left: 1em;
  text-indent: 0;
}

.c-shootingmethod__beal .list li:before {
  position: absolute;
  top: 18px;
  left: 0;
  width: 20px;
  height: 16px;
  content: '';
  background: url(/common/images/shooting_method/icon_check.svg) no-repeat left top;
  background-size: contain;
}

.c-shootingmethod__beal02 {
  margin-top: 220px;
}

.c-shootingmethod__beal + .c-shootingmethod__boxelse {
  border-radius: 10px;
}

.c-shootingmethod__boxelse {
  font-size: 1.8rem;
  width: calc(100% - 80px);
  margin: 0 auto 40px;
  padding: 40px;
  background: #fff;
}

.c-shootingmethod__boxelse .txt {
  font-size: 2.6rem;
  font-weight: bold;
  position: relative;
  display: block;
  margin: 0 0 40px;
  text-align: center;
  background: none;
}

.c-shootingmethod__boxelse .txt:before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 1px;
  margin: auto;
  content: '';
  background: #000;
}

.c-shootingmethod__boxelse ul {
  text-align: left;
}

.c-shootingmethod__boxelse ul li {
  font-size: 2.4rem;
  padding-left: 1em;
  text-indent: -1em;
}

.c-shootingmethod__boxelse .blist {
  font-size: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-shootingmethod__boxelse .blist li {
  width: 275px;
  margin-bottom: 100px;
  padding: 0;
  text-align: center;
}

.c-shootingmethod__boxelse .blist li img {
  display: block;
  margin-bottom: 20px;
}

.c-shootingmethod__boxelse .list {
  margin-bottom: 20px;
}

.c-shootingmethod__boxelse .list li {
  font-size: 2.8rem;
  position: relative;
  text-indent: 0;
}

.c-shootingmethod__boxelse .list li:before {
  position: absolute;
  top: 18px;
  left: 0;
  width: 20px;
  height: 16px;
  content: '';
  background: url(/common/images/shooting_method/icon_check.svg) no-repeat left top;
  background-size: contain;
}

.c-shootingmethod__alert {
  padding: 19px;
  background: #dff4f8;
}

.c-shootingmethod__alert > div {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: left;
}

.c-shootingmethod__alert ul {
  text-align: left;
}

.c-shootingmethod__alert ul li {
  font-size: 2.4rem;
  padding-left: 1em;
  text-indent: -1em;
}

.c-shootingmethod__shut {
  position: absolute;
  top: 35px;
  right: 25px;
  width: 84px;
  height: 84px;
}

.c-shootingmethod__shut:before {
  position: absolute;
  top: 43px;
  left: 0;
  width: 50px;
  height: 6px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #000;
}

.c-shootingmethod__shut:after {
  position: absolute;
  top: 20px;
  left: 22px;
  width: 6px;
  height: 50px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #000;
}

.c-shootingmethod__close {
  font-size: 2.4rem;
  position: relative;
  margin: 100px 0 150px;
  padding: 20px 60px 20px 80px;
  border: 2px solid #000;
  border-radius: 50px;
  background: #fff;
}

.c-shootingmethod__close:before {
  position: absolute;
  top: 37px;
  left: 50px;
  width: 15px;
  height: 2px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #000;
}

.c-shootingmethod__close:after {
  position: absolute;
  top: 30px;
  left: 57px;
  width: 2px;
  height: 15px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #000;
}

.c-camera {
  position: relative;
  width: 436px;
  height: 436px;
  margin: 0 auto;
  border-radius: 50%;
  background: #fff;
  -webkit-box-shadow: 0 0 8px gray;
  box-shadow: 0 0 8px gray;
}

.c-camera:before {
  position: absolute;
  z-index: 2;
  top: 130px;
  right: 0;
  left: 0;
  width: 110px;
  height: 110px;
  margin: auto;
  content: '';
  pointer-events: none;
  background: url(/common/images/global/icon_camera.svg) no-repeat left top;
  background-size: contain;
}

.c-camera p {
  position: absolute;
  right: 0;
  bottom: 110px;
  left: 0;
  width: 202px;
  margin: 0 auto;
  pointer-events: none;
}

.c-camera input[type=file] {
  width: 436px;
  height: 436px;
  opacity: 0;
}

.c-shooting__pic {
  width: 450px;
  margin: 0 auto;
}

.c-point__earnedbox {
  font-family: 'Quicksand', sans-serif;
  font-size: 8.6rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  color: #ff5353;
  border-bottom: 2px dotted #6a6a6a;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-point__earnedbox img {
  vertical-align: middle;
}

.c-point__earnedbox > div:first-child {
  width: 252px;
}

.c-point__earnedbox > div:last-child {
  position: relative;
  padding-right: 70px;
}

.c-point__earnedbox > div:last-child:before {
  position: absolute;
  right: 0;
  bottom: 33px;
  width: 64px;
  height: 64px;
  content: '';
  background: url(/common/images/global/icon_po.svg) no-repeat left top;
  background-size: contain;
}

.c-point__earnedbox .get {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 25px 0 0;
}

.c-point__earnedbox .get img {
  width: 66px;
}

.c-point__earnedbox .get p {
  font-size: 2.2rem;
  color: #d0d0d0;
}

.c-point__earnedbox .get2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 25px 0 0;
}

.c-point__earnedbox .get2 p {
  font-size: 2.2rem;
  color: #d0d0d0;
}

.c-point__earnedtxt {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.c-point__earnedtxt span {
  position: relative;
  top: -3px;
  display: inline-block;
  width: 32px;
}

.c-point__earnedtxt .at {
  font-size: 2.0rem;
  line-height: 1.4;
  display: block;
  width: 100%;
  margin-top: 10px;
  padding-left: 1em;
  text-indent: -1em;
  color: rgba(0, 0, 0, .7);
}

.c-point__acr {
  margin: 60px 0 0;
}

.c-point__acr__btn {
  font-size: 2.8rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 20px;
  padding: 5px 0;
  cursor: pointer;
  text-align: center;
  color: #5bc2dc;
  border: 4px solid #5bc2dc;
  border-radius: 7px;
}

.c-point__acr__btn:after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 12px;
  height: 12px;
  content: '';
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
  border-top: solid 4px #5bc2dc;
  border-right: solid 4px #5bc2dc;
  border-radius: 2px;
}

.c-point__acr__btn.open:after {
  margin-top: 5px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.c-point__acrcontent {
  display: none;
}

.c-point__morebtn {
  font-size: 2.8rem;
  font-weight: bold;
  position: relative;
  display: block;
  padding: 20px 120px;
  color: #000;
}

.c-point__morebtn::after {
  position: absolute;
  top: 50%;
  right: 40px;
  width: 12px;
  height: 12px;
  content: '';
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-top: solid 4px #989898;
  border-right: solid 4px #989898;
  border-radius: 2px;
}

.c-point__morebtn--01:before {
  position: absolute;
  top: 50%;
  left: 40px;
  width: 38px;
  height: 70px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_receipt02.svg) no-repeat left top;
  background-size: auto;
  background-size: contain;
}

.c-point__morebtn--02:before {
  position: absolute;
  top: 50%;
  left: 40px;
  width: 44px;
  height: 44px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_g_point.svg) no-repeat left top;
  background-size: auto;
  background-size: contain;
}

.c-product {
  margin-top: 50px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.c-product__tab {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 110px;
  padding: 0 0 0 110px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-product__tab:before {
  position: absolute;
  top: 50%;
  left: 30px;
  width: 60px;
  height: 60px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-product__tab--beal img {
  width: 140px;
}

.c-product__tab--beal:before {
  background: url(/common/images/global/icon_beal.png) no-repeat left top;
  background-size: contain;
}

.c-product__tab--chuhi img {
  width: 162px;
}

.c-product__tab--chuhi:before {
  background: url(/common/images/global/icon_chuhi.png) no-repeat left top;
  background-size: contain;
}

.c-product__tab--hiball img {
  width: 168px;
}

.c-product__tab--hiball:before {
  background: url(/common/images/global/icon_hiball.png) no-repeat left top;
  background-size: contain;
}

.c-product__tab--nonalcohol img {
  width: 234px;
}

.c-product__tab--nonalcohol:before {
  background: url(/common/images/global/icon_nonalcohol.png) no-repeat left top;
  background-size: contain;
}

.c-product__content {
  display: none;
  padding-bottom: 1px;
}

.c-product__box {
  margin: 0 20px 20px;
  padding: 30px;
  background: #f3f3f2;
}

.c-product__box__name {
  font-size: 3.0rem;
  font-weight: bold;
  text-align: center;
}

.c-product__box__name span {
  font-size: 2.1rem;
}

.c-product__box__pt {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  background: #ff5353;
}

.c-product__box__img {
  width: 210px;
  margin: 20px auto;
}

.c-product__box__pblock {
  font-family: 'Quicksand', sans-serif;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 480px;
  margin: 0 auto;
  border-top: 3px dotted #6a6a6a;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.c-product__box__pblock > div:first-child {
  font-size: 2.0rem;
  letter-spacing: .1em;
}

.c-product__box__pblock > div:first-child span {
  font-size: 2.6rem;
}

.c-product__box__pblock > div:first-child .pt {
  font-size: 4.4rem;
  position: relative;
  top: 2px;
  display: inline-block;
  width: 70px;
  padding: 0 0 0 0;
  text-align: center;
  text-align: right;
  white-space: nowrap;
  color: #5bc2dc;
}

.c-product__box__pblock > div:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-product__box__pblock > div:last-child span {
  font-size: 2.6rem;
}

.c-product__box__pblock > div:last-child .pt {
  font-size: 4.4rem;
  position: relative;
  top: -2px;
  padding: 0 8px 0 16px;
  color: #5bc2dc;
}

.c-product__box__pblock:last-child {
  border-bottom: 3px dotted #6a6a6a;
}

.c-product__box__num {
  font-family: 'Quicksand', sans-serif;
  font-size: 4.4rem;
  font-weight: bold;
  width: 100px;
  margin: 0 10px;
  text-align: center;
  color: #1a1311;
  border: none;
  border-radius: 5px;
  background: #fff;
}

.c-product__box__cdown {
  display: block;
  width: 44px;
  height: 44px;
  background: url(/common/images/global/icon_down.svg) no-repeat left top;
  background-size: contain;
}

.c-product__box__cup {
  display: block;
  width: 44px;
  height: 44px;
  background: url(/common/images/global/icon_up.svg) no-repeat left top;
  background-size: contain;
}

.c-product__box--point {
  background: #fee;
}

.c-product__box--point .pt {
  color: #ff5353 !important;
}

.c-product__boxcol2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-product__boxcol2 > div:first-child {
  width: 200px;
  margin: 0 26px 0 0;
}

.c-product__boxcol2 > div:last-child {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-product__boxcol2 > div:last-child > div {
  width: 100%;
}

.c-product__block {
  position: relative;
  margin-bottom: 40px;
  padding: 0;
  border-radius: 20px;
  background: #fff;
}

.c-product__block:after {
  position: absolute;
  top: 45px;
  right: 40px;
  width: 12px;
  height: 12px;
  content: '';
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  border-top: solid 4px #000;
  border-right: solid 4px #000;
  border-radius: 2px;
}

.c-product__block--beal {
  position: relative;
  margin-top: 265px;
}

.c-product__block--beal:before {
  position: absolute;
  top: -265px;
  left: 0;
  width: 100%;
  height: 412px;
  content: '';
  pointer-events: none;
  background: url(/common/images/global/bg.png) no-repeat left top;
  background-size: contain;
}

.c-product__block--drink {
  position: relative;
  margin-top: 265px;
}

.c-product__block--drink:before {
  position: absolute;
  top: -225px;
  left: -40px;
  width: 215%;
  height: 412px;
  content: '';
  -webkit-animation: bgloop 20s linear infinite;
  animation: bgloop 20s linear infinite;
  pointer-events: none;
  background: url(/common/images/global/img_drinks.png) repeat-x left top;
  background-size: contain;
}

.c-product .open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-product__block + .c-product__block {
  margin-top: 0;
}

.c-applicationpoint__img {
  width: 160px;
}

.c-applicationpoint__name {
  font-size: 3.0rem;
  font-weight: bold;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-applicationpoint__box > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-applicationpoint__box dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0 10px 10px;
  border-bottom: 3px dotted #6a6a6a;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-applicationpoint__box dl:last-child {
  border-bottom: 2px solid #6a6a6a;
}

.c-applicationpoint__box dl dt {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.0rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: -10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-applicationpoint__box dl dt span {
  font-size: 2.6rem;
}

.c-applicationpoint__box dl dt .num {
  font-size: 4.4rem;
  position: relative;
  margin-left: 70px;
}

.c-applicationpoint__box dl dt .num:before {
  position: absolute;
  top: 50%;
  left: -30px;
  width: 20px;
  height: 20px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_num.svg) no-repeat;
  background-size: contain;
}

.c-applicationpoint__box dl dd {
  font-size: 2.6rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -13px;
}

.c-applicationpoint__box dl dd div {
  height: 48px;
  margin-right: 10px;
  padding: 0 20px;
  border-radius: 10px;
  background: #efefef;
}

.c-applicationpoint__box dl dd span {
  font-family: 'Quicksand', sans-serif;
  font-size: 4.4rem;
  font-weight: bold;
  position: relative;
  top: -12px;
  text-align: center;
  color: #5bc2dc;
}

.c-applicationpoint__box--point dl dd span {
  color: #ff5353;
}

.c-applicationpoint__box + .c-applicationpoint__box {
  margin-top: 20px;
}

.c-applicationpoint__total dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0 10px 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-applicationpoint__total dl dt {
  font-family: 'Quicksand', sans-serif;
  font-size: 3.0rem;
  font-weight: bold;
}

.c-applicationpoint__total dl dd {
  font-size: 2.6rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-applicationpoint__total dl dd div {
  height: 70px;
  margin-right: 10px;
  padding: 0 20px;
  border-radius: 10px;
  background: #efefef;
}

.c-applicationpoint__total dl dd span {
  font-family: 'Quicksand', sans-serif;
  font-size: 5.4rem;
  font-weight: bold;
  position: relative;
  top: -12px;
  text-align: center;
  color: #000;
}

.c-notification {
  font-size: 2.4rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 40px;
  color: #fff;
  border-bottom: 4px solid #fff;
  background: #ff5353;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-notification p {
  position: relative;
  margin-right: auto;
  padding-left: 20px;
}

.c-notification p:before {
  position: absolute;
  top: 50%;
  left: -20px;
  width: 40px;
  height: 40px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_alert02.svg) no-repeat left top;
  background-size: contain;
}

.c-notification a {
  font-size: 2.0rem;
  max-width: 460px;
  text-decoration: underline;
  color: #fff;
}

.c-notification + header {
  margin-top: 83px;
}

.c-mypagebox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 54px 0 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.c-mypagebox:after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 12px;
  height: 12px;
  content: '';
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  border-top: solid 4px #000;
  border-right: solid 4px #000;
  border-radius: 2px;
}

.c-mypagebox > div:first-child {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  color: #aaa;
}

.c-mypagebox > div:first-child img {
  width: 242px;
}

.c-mypagebox > div:last-child > div:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #1a1311;
  border-top: 3px dotted #1a1311;
  border-bottom: 3px dotted #1a1311;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.c-mypagebox > div:last-child > div:nth-child(2) > div:first-child {
  font-size: 2.0rem;
}

.c-mypagebox > div:last-child > div:nth-child(2) > div:last-child {
  font-size: 2.4rem;
  position: relative;
  padding-right: 25px;
}

.c-mypagebox > div:last-child > div:nth-child(2) > div:last-child:after {
  position: absolute;
  top: 13px;
  right: 0;
  width: 18px;
  height: 18px;
  content: '';
  background: url(/common/images/global/icon_po.svg) no-repeat left top;
  background-size: contain;
}

.c-mypagebox .point {
  font-family: 'Quicksand', sans-serif;
  font-size: 6.6rem;
  font-weight: bold;
  position: relative;
  padding-right: 50px;
  color: #ff5353;
}

.c-mypagebox .point:after {
  position: absolute;
  top: 33px;
  right: 0;
  width: 46px;
  height: 46px;
  content: '';
  background: url(/common/images/global/icon_po.svg) no-repeat left top;
  background-size: contain;
}

.c-mypagecard {
  position: relative;
  z-index: 1;
  padding-top: 90px;
  border-radius: 20px;
  background: #fff;
  background: #fff url(/common/images/global/bgcard.png) no-repeat left top;
}

.c-mypagecard:before {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 180px;
  height: 64px;
  content: '';
  background: url(/common/images/global/logo.svg) no-repeat left top;
  background-size: contain;
}

.c-mypagecard:after {
  position: absolute;
  top: 30px;
  right: 10px;
  width: 156px;
  height: 36px;
  content: '';
  background: url(/common/images/global/logos.svg) no-repeat left top;
  background-size: contain;
}

.c-mypagecard .txt {
  max-width: 170px;
  margin: 0 auto;
}

.c-mypagecard .point {
  font-family: 'Quicksand', sans-serif;
  font-size: 6.6rem;
  font-weight: bold;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-right: 50px;
  color: #ff5353;
}

.c-mypagecard .point:after {
  position: absolute;
  top: 33px;
  right: 0;
  width: 46px;
  height: 46px;
  content: '';
  background: url(/common/images/global/icon_po.svg) no-repeat left top;
  background-size: contain;
}

.c-mypagecard .btm {
  font-size: 2.0rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  padding: 10px 20px;
  color: #fff;
  border-radius: 0 0 20px 20px;
  background: #000;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.c-mypagecard .btm p:first-child {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.6rem;
  font-weight: bold;
}

.c-mypagecard .btm p:last-child {
  position: relative;
  padding-right: 30px;
}

.c-mypagecard .btm p:last-child:after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  content: '';
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg);
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  border-radius: 2px;
}

.c-mypagecard .gen {
  font-size: 1.6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 20px;
  color: #1a1311;
  border-radius: 8px;
  background: #efefef;
}

.c-mypagecard .gen span {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.6rem;
  font-weight: bold;
  position: relative;
}

.c-mypagecard .gen span:after {
  position: absolute;
  top: 50%;
  right: -20px;
  width: 16px;
  height: 16px;
  content: '';
  -webkit-transform: translateY(-30%);
  transform: translateY(-30%);
  background: url(/common/images/global/icon_po.svg) no-repeat left top;
  background-size: contain;
}

.c-accumulate {
  margin-top: -280px;
  padding: 30px 0 30px;
  background: #efefef;
}

.c-accumulate--emergency {
  padding-bottom: 30px;
}

.c-accumulate .about {
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
  display: block;
  width: 310px;
  margin: 30px auto;
  padding-left: 40px;
  text-decoration: underline;
  color: #000;
}

.c-accumulate .about:before {
  position: absolute;
  top: 11px;
  top: 50%;
  left: 0;
  width: 8px;
  width: 32px;
  height: 8px;
  height: 34px;
  margin: 3px 0 0;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_hatena02.svg) no-repeat left top;
  background-size: contain;
}

.c-accumulate .q {
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
  display: block;
  width: 310px;
  margin: 30px auto;
  padding-left: 40px;
  text-decoration: underline;
  color: #000;
}

.c-accumulate .q:before {
  position: absolute;
  top: 11px;
  top: 50%;
  left: 0;
  width: 8px;
  width: 32px;
  height: 8px;
  height: 32px;
  margin: 3px 0 0;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_hatena03.svg) no-repeat left top;
  background-size: contain;
}

.c-accumulate .col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 40px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.c-accumulate .col2 > div {
  width: 314px;
}

.c-accumulate .col2 .pt {
  font-size: 2.0rem;
  position: relative;
  display: block;
  margin-top: 30px;
  padding: 8px 0 9px;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  background: #b2b2b2;
}

.c-accumulate .col2 .pt:before {
  position: absolute;
  top: 50%;
  left: 20px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-accumulate .col2 .pt:after {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 6px;
  height: 6px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  border-radius: 2px;
}

.c-accumulate .col2 .pt--uchi:before {
  width: 14px;
  height: 26px;
  background: url(/common/images/global/icon_pt_uchi.svg) no-repeat left top;
  background-size: contain;
}

.c-accumulate .col2 .pt--soto:before {
  width: 22px;
  height: 24px;
  background: url(/common/images/global/icon_pt_soto.svg) no-repeat left top;
  background-size: contain;
}

.c-accumulate .col2 .uchi {
  position: relative;
  display: block;
  padding: 20px 0 20px;
  text-align: center;
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .2);
  box-shadow: 0 0 15px rgba(0, 0, 0, .2);
}

.c-accumulate .col2 .uchi:before {
  position: absolute;
  top: 50%;
  left: 30px;
  width: 40px;
  height: 70px;
  margin: auto;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_uchinomi.svg) no-repeat left top;
  background-size: contain;
}

.c-accumulate .col2 .uchi:after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  content: '';
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg);
  border-top: solid 4px #000;
  border-right: solid 4px #000;
  border-radius: 2px;
}

.c-accumulate .col2 .uchi img {
  width: 164px;
  margin-left: 40px;
}

.c-accumulate .col2 .soto {
  position: relative;
  display: block;
  padding: 20px 0 20px;
  text-align: center;
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .2);
  box-shadow: 0 0 15px rgba(0, 0, 0, .2);
}

.c-accumulate .col2 .soto:before {
  position: absolute;
  top: 50%;
  left: 30px;
  width: 52px;
  height: 70px;
  margin: auto;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_sotonomi.svg) no-repeat left top;
  background-size: contain;
}

.c-accumulate .col2 .soto:after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  content: '';
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg);
  border-top: solid 4px #000;
  border-right: solid 4px #000;
  border-radius: 2px;
}

.c-accumulate .col2 .soto img {
  width: 164px;
  margin-left: 40px;
}

.c-accumulate .col2 .soto--emergency {
  pointer-events: none;
}

.c-accumulate .col2 .soto--emergency:before {
  opacity: .2;
}

.c-accumulate .col2 .soto--emergency:after {
  opacity: .2;
}

.c-accumulate .at {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 10px 0 0;
  padding: 0 40px;
  color: #ff5353;
}

.c-info {
  padding: 60px 0 0;
  border-top: 4px solid #fff;
  border-bottom: 4px solid #fff;
  background: #dff4f8;
}

.c-info .swiper-container {
  padding: 50px 0 40px;
}

.c-info .swiper-slide {
  border-radius: 20px;
}

.c-info--pt {
  padding-bottom: 60px;
  background: #efefef;
}

.c-info--pt .q {
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
  display: block;
  width: 310px;
  margin: 30px auto;
  padding-left: 40px;
  text-decoration: underline;
  color: #000;
}

.c-info--pt .q:before {
  position: absolute;
  top: 11px;
  top: 50%;
  left: 0;
  width: 8px;
  width: 32px;
  height: 8px;
  height: 32px;
  margin: 3px 0 0;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_hatena03.svg) no-repeat left top;
  background-size: contain;
}

.c-info__ttl {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 20px;
  color: #5bc2dc;
}

.c-info__ttl--enq {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 32px 0 32px;
  padding: 3px 0;
  text-align: center;
  border-radius: 4px;
  background: #ffde00;
}

.c-info__enqdate {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 52px;
}

.c-info__stxt {
  font-size: 2.2rem;
  margin: 0 0 40px;
}

.c-info__mentetxt {
  font-size: 3.4rem;
  font-weight: bold;
  position: relative;
  margin: 120px auto 60px;
  text-align: center;
  color: #ff5353;
}

.c-info__mentetxt:before {
  position: absolute;
  top: -80px;
  right: 0;
  left: 0;
  width: 60px;
  height: 60px;
  margin: auto;
  content: '';
  background: url(/common/images/global/loader03.svg) no-repeat left top;
  background-size: contain;
}

.c-info__txt {
  font-size: 2.8rem;
}

.c-info__txt .gray {
  font-size: 2.4rem;
  color: #666;
}

.c-info__txt .bd {
  font-weight: bold;
}

.c-info__txt .fb {
  font-size: 3.2rem;
}

.c-info__txt .fs {
  font-size: 2.4rem;
}

.c-info__txt .red {
  color: #e84530;
}

.c-info__txt + .c-info__txt {
  margin-top: 60px;
}

.c-info__txt .link {
  text-decoration: underline;
  color: #5bc2dc;
}

.c-info__img {
  margin: 0 0 40px;
}

.c-info__infotxt {
  font-size: 2.8rem;
  margin: 100px 0 0;
}

.c-info__infotxt .at {
  font-size: 2.0rem;
  color: #707070;
}

.c-info__infotxt .phone {
  font-size: 3.9rem;
  font-weight: bold;
  color: #5bc2dc;
}

.c-info__pt {
  font-size: 2.0rem;
  position: relative;
  display: block;
  width: 314px;
  margin: 30px auto 0;
  padding: 8px 0 9px;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  background: #000;
}

.c-info__pt:before {
  position: absolute;
  top: 50%;
  left: 20px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-info__pt:after {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 6px;
  height: 6px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  border-radius: 2px;
}

.c-info__pt--uchi:before {
  width: 14px;
  height: 26px;
  background: url(/common/images/global/icon_pt_uchi.svg) no-repeat left top;
  background-size: contain;
}

.c-info__pt--soto:before {
  width: 22px;
  height: 24px;
  background: url(/common/images/global/icon_pt_soto.svg) no-repeat left top;
  background-size: contain;
}

.c-info__mente > div:first-child {
  font-size: 3.6rem;
  font-weight: bold;
  margin: 60px 0 20px;
  text-align: center;
}

.c-history {
  padding: 30px 30px 0;
  border-radius: 20px;
  background: #fff;
}

.c-history + .c-history {
  margin-top: 40px;
}

.c-history--noacr {
  padding-bottom: 30px;
}

.c-history__name {
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 1.3;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 120px;
  padding-left: 120px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-history__name:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100px;
  height: 100px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 2px solid #efefef;
  border-radius: 50%;
}

.c-history__name p {
  font-size: 2.4rem;
  width: 100%;
  color: #b2b2b2;
}

.c-history__name--uchi:after {
  position: absolute;
  top: 50%;
  left: 35px;
  width: 32px;
  height: 58px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_uchinomi.svg) no-repeat left top;
  background-size: contain;
}

.c-history__name--soto:after {
  position: absolute;
  top: 50%;
  left: 35px;
  width: 42px;
  height: 58px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_sotonomi.svg) no-repeat left top;
  background-size: contain;
}

.c-history__name--garapon:after {
  position: absolute;
  top: 50%;
  left: 22px;
  width: 60px;
  height: 64px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_garapon.svg) no-repeat left top;
  background-size: contain;
}

.c-history__name--register:after {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 80px;
  height: 56px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_register.svg) no-repeat left top;
  background-size: contain;
}

.c-history__point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-history__point__tag {
  font-size: 2.0rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-history__point__tag p + p {
  margin-left: 10px;
}

.c-history__point__tag p {
  min-width: 144px;
  padding: 0 20px 3px;
  text-align: center;
  color: #fff;
  border-radius: 15px;
}

.c-history__point__tag .app {
  background: #5bde8e;
}

.c-history__point__tag .pt {
  background: #ff5353;
}

.c-history__point__tag .acquired {
  background: #49a4e8;
}

.c-history__point__tag .ng {
  color: #ffde00;
  background: #f00;
}

.c-history__point__tag .end {
  background: #b2b2b2;
}

.c-history__point__tag .atari {
  color: #f00;
  background: #ffde00;
}

.c-history__point__pt {
  font-family: 'Quicksand', sans-serif;
  font-size: 5.6rem;
  font-weight: bold;
  position: relative;
  margin-top: -13px;
  margin-right: 60px;
  color: #ff5353;
}

.c-history__point__pt:before {
  position: absolute;
  top: 24px;
  right: -60px;
  width: 46px;
  height: 46px;
  content: '';
  background: url(/common/images/global/icon_po.svg) no-repeat left top;
  background-size: contain;
}

.c-history__point__pt--ng {
  position: relative;
}

.c-history__point__pt--ng:after {
  position: absolute;
  top: 52.5%;
  left: 0;
  width: 100%;
  height: 4px;
  content: '';
  background: #000;
}

.c-history__point__pt--end {
  color: #b2b2b2;
}

.c-history__at {
  font-size: 2.0rem;
  margin-bottom: 28px;
  color: #f00;
}

.c-history__at--txt {
  font-size: 1.9rem;
  margin-top: 10px;
  color: #f00;
}

.c-history__done {
  font-size: 2.0rem;
  margin-bottom: 28px;
  color: #000;
}

.c-history__detail {
  position: relative;
  width: calc(100% + 60px);
  height: 46px;
  margin-top: 20px;
  margin-left: -30px;
  border-radius: 0 0 20px 20px;
  background: #dff4f8;
}

.c-history__detail:after {
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  content: '';
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  border-top: solid 4px #5bc2dc;
  border-right: solid 4px #5bc2dc;
  border-radius: 2px;
}

.c-history .open:after {
  top: 20px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-history__content {
  display: none;
}

.c-history__content__inner {
  padding-top: 30px;
  border-top: 3px dotted #6a6a6a;
}

.c-history__content__inner .c-history__at {
  text-align: center;
}

.c-history__content__inner .c-history__done {
  text-align: center;
}

.c-history__content__alert {
  font-size: 2.0rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 30px;
  padding: 30px 0 36px 94px;
  color: #f00;
  background: #fee;
}

.c-history__content__alert:before {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 64px;
  height: 64px;
  margin: auto;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_alert.svg) no-repeat left top;
  background-size: contain;
}

.c-history__content__store {
  font-size: 2.6rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-history__content__store__img {
  width: 120px;
  margin-right: 20px;
}

.c-history__content__store__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-history__content__store__product {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-history__content__store__productbox {
  font-size: 2.4rem;
  padding: 10px 20px;
  background: #efefef;
}

.c-history__content__store__productbox + .c-history__content__store__productbox {
  margin-top: 10px;
}

.c-history__content__store__productpoint {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-history__content__store__productpoint > div {
  font-family: 'Quicksand', sans-serif;
  font-weight: bold;
}

.c-history__content__store__productpoint > div:first-child {
  font-size: 2.6rem;
}

.c-history__content__store__productpoint > div:first-child span {
  font-size: 2.0rem;
}

.c-history__content__store__productpoint > div:last-child {
  font-size: 3.0rem;
  min-width: 100px;
  padding-left: 50px;
  text-align: right;
}

.c-history__content__store__productpoint > div:last-child span {
  position: relative;
}

.c-history__content__store__productpoint > div:last-child span:before {
  position: absolute;
  top: 50%;
  left: -30px;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_num.svg) no-repeat;
  background-size: contain;
}

.c-history__content__txt {
  font-size: 2.0rem;
  text-align: center;
}

.c-history__content__txt span {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  margin-right: 20px;
  color: #b2b2b2;
}

.c-history__receive {
  width: 274px;
  margin: 0 auto;
  text-align: center;
  border-radius: 30px;
  background: #5bc2dc;
}

.c-history__receive a {
  font-size: 2.4rem;
  font-weight: bold;
  display: block;
  padding: 10px 0;
  color: #fff;
}

.c-history__receive--done {
  background: #ddd;
}

.c-history__receive--done a {
  pointer-events: none;
}

.c-history__receive__deadline {
  font-size: 2.2rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px auto 0;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-history__receive__deadline p {
  position: relative;
}

.c-history__receive__deadline p:first-child {
  padding-left: 15px;
}

.c-history__receive__deadline p:first-child:before {
  position: absolute;
  top: 50%;
  left: -15px;
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_dead.svg) no-repeat left top;
  background-size: contain;
}

.c-history__receive__deadline .date {
  font-size: 2.4rem;
  padding: 0 10px;
  color: #5bc2dc;
}

.c-history__receive__deadline .date--blk {
  color: #000;
}

.c-history__receive__deadline__at {
  font-size: 2.0rem;
  font-weight: bold;
  position: relative;
  width: calc(100% - 80px);
  margin: 20px auto 40px;
  padding: 20px 20px 20px 80px;
  color: #f00;
  border-radius: 10px;
  background: #fcf0f3;
}

.c-history__receive__deadline__at:before {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 46px;
  height: 46px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_alert.svg) no-repeat left top;
  background-size: contain;
}

.c-history__receive__deadline__txt {
  font-size: 1.9rem;
  margin: 20px auto;
  color: #f00;
}

.c-history__present {
  font-size: 2.8rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-history__present > div:first-child {
  width: 120px;
  margin-right: 30px;
}

.c-privacytxt {
  font-size: 2.4rem;
}

.c-privacytxt .bld {
  font-weight: bold;
}

.c-pointlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.c-pointlist__item {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
}

.c-pointlist__item:after {
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-left: -13px;
  content: '';
  -webkit-transform: rotate(135deg) translateX(-50%);
  transform: rotate(135deg) translateX(-50%);
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  border-radius: 2px;
}

.c-pointlist__item:nth-child(-n + 2) {
  font-size: 2.2rem;
  width: 324px;
  text-align: center;
}

.c-pointlist__item:nth-child(-n + 2) > div {
  margin-bottom: 20px;
}

.c-pointlist__item:nth-child(-n + 2) > div:first-child {
  padding: 15px 0 30px;
  border-bottom: 3px dotted #b4b4b4;
}

.c-pointlist__item:nth-child(-n + 2) > div:first-child img {
  width: 170px;
}

.c-pointlist__item:nth-child(-n + 2) a {
  font-size: 2.0rem;
  position: relative;
  display: block;
  margin-top: 30px;
  padding: 8px 0 9px;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  background: #000;
}

.c-pointlist__item:nth-child(-n + 2) a:after {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 6px;
  height: 6px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  border-radius: 2px;
}

.c-pointlist__item:nth-child(3) {
  width: 315px;
  text-align: center;
}

.c-pointlist__item:nth-child(3) div {
  width: 190px;
  margin: 15px auto 30px;
}

.c-pointlist__item:nth-child(4) {
  width: 315px;
  text-align: center;
}

.c-pointlist__item:nth-child(4) div {
  width: 190px;
  margin: 15px auto 30px;
}

.c-pointlist__item:nth-child(5) .ttl {
  width: 344px;
}

.c-pointlist__item:nth-child(6) .ttl {
  width: 350px;
}

.c-pointlist__item:nth-child(7) .ttl {
  width: 324px;
}

.c-pointlist__item:nth-child(7):after {
  display: none;
}

.c-pointlist__item:nth-child(n + 5) {
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-pointlist__item:nth-child(n + 5) > div:first-child {
  width: 200px;
  margin-right: 34px;
}

.c-pointlist__item:nth-child(n + 5) .txt {
  margin-top: 10px;
}

.c-pointlist__item:nth-child(n + 5) .at {
  margin-top: 10px;
  padding-left: 1em;
  text-indent: -1em;
}

.c-pointlist__item:nth-child(n + 5) .at + .at {
  margin-top: 0;
}

.c-mainv {
  position: relative;
  padding: 100px 0 150px;
}

.c-mainv--bg {
  background: #5bc2dc;
}

.c-mainv__hack {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 246px;
  margin: auto;
  border: 5px solid #5bc2dc;
  background: #5bc2dc;
}

.c-mainv:before {
  position: absolute;
  top: 0;
  left: -10px;
  width: 104%;
  height: 148px;
  content: '';
  background: url(/common/images/global/ttl_accumulate_obi.png) no-repeat left top;
  background-size: contain;
}

.c-mainv > p {
  position: relative;
  margin: 0 auto;
  text-align: center;
}

.c-mainv .txt01 {
  width: 202px;
  margin: 0 auto;
}

.c-mainv .txt02 {
  width: 95%;
  margin: 20px auto 10px;
}

.c-mainv .txt03 {
  width: 95%;
  margin: 0 auto;
}

.c-mainv .txt04 {
  width: 95%;
  margin: 20px auto;
}

.c-mainv .txt05 {
  font-size: 2.0rem;
  font-weight: bold;
  width: 248px;
  margin: 10px auto 30px;
}

.c-mainv .txt05 a {
  position: relative;
  padding-left: 40px;
  color: #000;
}

.c-mainv .txt05 a:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  margin: 2px 0 0;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_hatena02.svg) no-repeat left top;
  background-size: contain;
}

.c-mainv .txt06 {
  width: 95%;
  margin: 20px auto;
}

.c-mainv:after {
  position: absolute;
  bottom: -25px;
  left: -20px;
  width: 670px;
  height: 150px;
  content: '';
  -webkit-animation: bgroop 10s linear infinite;
  animation: bgroop 10s linear infinite;
  background: url(/common/images/global/bg_drinks.png) repeat-x left top;
  background-size: contain;
}

.c-mainv > a {
  display: block;
  width: 560px;
  margin: 25px auto 0;
  padding: 5px;
  text-align: center;
  border-radius: 55px;
  background: #fff;
  -webkit-box-shadow: 0 0 8px gray;
  box-shadow: 0 0 8px gray;
}

.c-mainv > a span {
  font-family: 'Quicksand', sans-serif;
  font-size: 3.2rem;
  font-weight: bold;
  display: block;
  padding: 20px 0;
  color: #fff;
  border-radius: 50px;
  background: #ff5353;
}

.c-mainv > a span span {
  font-size: 2.2rem;
  display: inline;
}

.c-mainv__logo {
  position: relative;
  width: 470px;
  margin: 0 auto;
}

.c-mainv__logo--mente {
  width: 360px;
}

.c-mainv--before {
  padding-bottom: 0;
}

.c-mainv--before:before {
  left: -43px;
  width: 130%;
  height: 172px;
}

.c-mainv--before:after {
  display: none;
}

.c-mainv--before .before {
  position: relative;
  overflow: hidden;
  padding-bottom: 110px;
  border-radius: 0 0 20px 20px;
}

.c-mainv--before .before:after {
  position: absolute;
  bottom: -20px;
  left: 15px;
  width: 670px;
  height: 148px;
  content: '';
  background: url(/common/images/global/bg_drinks.png) repeat-x left top;
  background-size: contain;
}

.c-mainv--before .before .bnr {
  padding: 20px;
}

.c-mainv__20 {
  font-size: 4.0rem;
  font-weight: bold;
  margin: 30px auto;
  text-align: center;
  color: #5bc2dc;
}

.c-mainv__20txt {
  font-size: 2.6rem;
  font-weight: bold;
  margin-top: 30px;
  text-align: center;
}

.c-mainv__rw {
  display: -ms-grid;
  display: grid;
  height: 100svh;
  place-content: center;
  place-items: center;
}

.c-mainv__logos {
  width: 80%;
  margin: 0 auto;
}

.c-mainv__col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 38px 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-mainv__col2 a {
  font-size: 3.2rem;
  font-weight: bold;
  width: 250px;
  margin: 0 20px;
  padding: 13px 0 16px;
  text-align: center;
  border-radius: 40px;
}

.c-mainv__col2 .no {
  color: #5bc2dc;
  background: #dff4f8;
}

.c-mainv__col2 .yes {
  color: #000;
  background: #fff;
}

.c-mainv__col2 .no2 {
  color: #000;
  background: #efefef;
}

.c-mainv__col2 .yes2 {
  color: #5bc2dc;
  background: #dff4f8;
}

@-webkit-keyframes bgroop {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -670px 0;
  }
}

@keyframes bgroop {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -670px 0;
  }
}

@-webkit-keyframes bgloop {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -1440px 0;
  }
}

@keyframes bgloop {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -1440px 0;
  }
}

.c-step {
  padding: 55px 40px 75px;
  border-top: 4px solid #fff;
  border-bottom: 4px solid #fff;
  background: #efefef;
}

.c-step__ttl {
  padding-bottom: 20px;
}

.c-step__item {
  margin: 105px 0 100px;
  padding: 0 40px 40px;
  counter-increment: count;
  border-radius: 20px;
  background: #fff;
}

.c-step__item video {
  width: 100%;
}

.c-step__item .vid {
  margin-bottom: 40px;
}

.c-step__item > div:first-child {
  background: #ffde00;
}

.c-step__item .ttl {
  position: relative;
  width: 590px;
  margin: 0 auto -30px;
  padding: 65px 0 30px;
  -webkit-transform: translateY(-65px);
  transform: translateY(-65px);
  text-align: center;
  border-radius: 100px;
}

.c-step__item .ttl:after {
  position: absolute;
  right: 0;
  bottom: -40px;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 15px;
  height: 20px;
  margin: auto;
  content: '';
  border-top: 20px solid #ffde00;
  border-right: 15px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 15px solid transparent;
}

.c-step__item .ttl:before {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  position: absolute;
  top: 15px;
  right: 0;
  left: 0;
  width: 105px;
  margin: auto;
  content: 'STEP' counter(count);
  color: #ffde00;
  border-radius: 20px;
  background: #fff;
}

.c-step__item:nth-of-type(1) .ttl {
  -webkit-transform: translateY(-85px);
  transform: translateY(-85px);
}

.c-step__item:nth-of-type(1) .ttl img {
  width: 390px;
}

.c-step__item:nth-of-type(2) .ttl img {
  width: 464px;
}

.c-step__item:nth-of-type(3) {
  margin-bottom: 0;
}

.c-step__item:nth-of-type(3) .ttl img {
  width: 402px;
}

.c-step__item .subttl {
  margin-bottom: 10px;
  padding-bottom: 15px;
  border-bottom: 3px dotted #6a6a6a;
}

.c-step__item .subttl img {
  width: 324px;
}

.c-step__item .subttl--02 img {
  width: 214px;
}

.c-step__item .col2 {
  font-size: 2.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-step__item .col2 > div:first-child {
  width: 244px;
  margin-right: 32px;
}

.c-step__item .col2 > div:last-child {
  width: 314px;
}

.c-step__item .col2 + .col2 {
  margin-top: 50px;
}

.c-step__item .col2 p {
  line-height: 1.2;
}

.c-step__item .col2 a {
  font-size: 2.0rem;
  position: relative;
  display: block;
  margin-top: 20px;
  padding: 8px 0 9px;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  background: #000;
}

.c-step__item .col2 a:before {
  position: absolute;
  top: 50%;
  left: 20px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-step__item .col2 a:after {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 6px;
  height: 6px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  border-radius: 2px;
}

.c-step__item .col2 .uchi:before {
  width: 14px;
  height: 26px;
  background: url(/common/images/global/icon_pt_uchi.svg) no-repeat left top;
  background-size: contain;
}

.c-step__item .col2 .soto:before {
  width: 22px;
  height: 24px;
  background: url(/common/images/global/icon_pt_soto.svg) no-repeat left top;
  background-size: contain;
}

.c-step__item .txt {
  font-size: 2.0rem;
}

.c-step__item .txt01 {
  width: 600px;
  margin: 0 auto 0;
}

.c-step__item .txt02 {
  width: 502px;
  margin: 15px auto 30px;
}

.c-step__item .txt03 {
  width: 554px;
  margin: 0 auto 0;
}

.c-step__item .at {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 20px;
}

.c-loginbefore {
  width: 670px;
  border-radius: 20px;
}

.c-loginbefore__ttl {
  width: 530px;
  margin: 95px auto 0;
}

.c-loginbefore__ttl02 {
  width: 428px;
  margin: 52px auto 0;
}

.c-loginbefore__ttl03 {
  width: 548px;
  margin: 95px auto 0;
}

.c-loginbefore__ttl04 {
  width: 590px;
  margin: 52px auto 0;
}

.c-loginbefore__txt {
  font-size: 2.8rem;
  margin: 66px 30px 33px;
  text-align: center;
}

.c-loginbefore__txt span {
  display: block;
  padding: 10px 25px;
  text-align: left;
  border-bottom: 2px solid rgba(26, 19, 7, .1);
}

.c-loginbefore__txt span:first-child {
  border-top: 2px solid rgba(26, 19, 7, .1);
}

.c-loginbefore__txt02 {
  font-size: 2.8rem;
  margin: 32px 30px 33px;
  text-align: left;
}

.c-loginbefore__txt03 {
  font-size: 2.4rem;
  margin: 40px 0 0;
}

.c-loginbefore__date {
  font-size: 4.4rem;
  font-weight: bold;
  padding: 20px 0;
  text-align: center;
  border-top: 2px solid #d0d0d0;
  border-bottom: 2px solid #d0d0d0;
}

.c-loginbefore__date p {
  font-size: 2.0rem;
  font-weight: normal;
  white-space: nowrap;
}

.c-loginbefore__date + .c-info__txt {
  margin-top: 60px;
}

.c-loginbefore__alert {
  font-size: 2.0rem;
  text-align: center;
}

.c-loginbefore__alert > div {
  line-height: 1.4;
  position: relative;
  display: inline-block;
  padding: 0 0 0 50px;
  text-align: left;
}

.c-loginbefore__alert > div:before {
  position: absolute;
  top: 50%;
  left: -10px;
  width: 50px;
  height: 50px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_loginbefore.svg) no-repeat center top;
  background-size: contain;
}

.c-loginbefore__alert02 {
  font-size: 2.6rem;
  margin-top: 44px;
}

.c-loginbefore__alert02 span {
  cursor: pointer;
  text-decoration: underline;
  color: #5bc2dc;
}

.c-loginbefore__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 84px;
  height: 84px;
}

.c-loginbefore__close:before {
  position: absolute;
  top: 43px;
  left: 0;
  width: 50px;
  height: 6px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #000;
}

.c-loginbefore__close:after {
  position: absolute;
  top: 20px;
  left: 22px;
  width: 6px;
  height: 50px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #000;
}

.c-loginbefore a {
  display: block;
  width: 288px;
  margin: 80px auto 0;
  padding: 5px;
  text-align: center;
  border-radius: 55px;
  background: #fff;
  -webkit-box-shadow: 0 0 8px gray;
  box-shadow: 0 0 8px gray;
}

.c-loginbefore a span {
  font-family: 'Quicksand', sans-serif;
  font-size: 3.2rem;
  font-weight: bold;
  position: relative;
  display: block;
  padding: 20px 0;
  color: #fff;
  border-radius: 50px;
  background: #ff5353;
}

.c-loginbefore a span:before {
  position: absolute;
  top: 37px;
  right: 46px;
  width: 14px;
  height: 14px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  border-radius: 2px;
}

.c-loginbefore a span span {
  font-size: 2.2rem;
  display: inline;
}

.c-loginbefore a.c-loginbefore__more {
  width: 400px;
  margin: 40px auto 0;
}

.c-loginage {
  width: 730px;
  max-width: 730px !important;
  margin: 140px 0;
  padding: 0;
  pointer-events: auto;
  border-radius: 20px;
  background: #5bc2dc;
}

.c-loginage .l-content__block--mainbefore {
  -webkit-transform: scale(.95, .95);
  transform: scale(.95, .95);
}

.c-loginage .c-mainv--before:before {
  width: 820px;
  height: 186px;
}

.c-loginage .c-mainv__logo {
  width: 380px;
}

.c-loginage .c-mainv--before .before {
  padding-top: 30px;
  padding-bottom: 30px;
}

.c-loginage .c-mainv--before .before:after {
  display: none;
  width: 735px;
  height: 159px;
}

.age_confirmation .remodal-wrapper {
  padding: 10px 10px 50px;
}

.c-fukubiki {
  padding-top: 40px;
}

.c-fukubiki .txt01 {
  width: 452px;
  margin: 0 auto;
}

.c-fukubiki .txt02 {
  width: 604px;
  margin: 20px auto;
}

.c-fukubiki .txt03 {
  width: 370px;
  margin: 0 auto 20px;
}

.c-fukubiki .at {
  font-size: 2.4rem;
  text-align: center;
  color: #fff;
}

.c-fukubiki .at span {
  font-family: 'Quicksand', sans-serif;
  font-size: 4.0rem;
  font-weight: bold;
  position: relative;
  top: .1em;
  padding: 0 10px;
}

.c-fukubiki a {
  display: block;
  width: 560px;
  margin: 14px auto 52px;
  padding: 5px;
  text-align: center;
  border-radius: 55px;
  background: #fff;
  -webkit-box-shadow: 0 0 8px gray;
  box-shadow: 0 0 8px gray;
}

.c-fukubiki a span {
  font-size: 3.2rem;
  font-weight: bold;
  position: relative;
  display: block;
  padding: 20px 0;
  color: #fff;
  border-radius: 50px;
  background: #ff5353;
}

.c-fukubiki a span:after {
  position: absolute;
  top: 50%;
  right: 30px;
  width: 12px;
  height: 12px;
  content: '';
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  border-radius: 2px;
}

.c-fukubiki a span span {
  font-family: 'Quicksand', sans-serif;
  font-size: 3.6rem;
  display: inline;
}

.c-fukubiki a span span:after {
  display: none;
}

.c-fukubiki .done {
  padding: 0;
  pointer-events: none;
  color: #fff;
}

.c-fukubiki .done span {
  font-size: 2.8rem;
  background: #d1cfcf;
}

.c-fukubiki .done span:after {
  display: none;
}

.c-fukubiki .disable {
  pointer-events: none;
}

.c-fukubiki .disable span {
  color: #b2b2b2;
  background: #efefef;
}

.c-fukubiki--hazure {
  margin-top: 40px;
  padding: 0;
}

.c-fukubiki--hazure:before {
  display: none;
}

.c-fukubiki--hazure .at {
  color: #000;
}

.c-fukubikimodal {
  font-size: 3.2rem;
  overflow: hidden;
  width: 550px;
  padding: 0;
  border-radius: 20px;
}

.c-fukubikimodal .txt {
  padding: 60px 0;
  background: #f2f2f2;
}

.c-fukubikimodal .col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-fukubikimodal .col2 button,
.c-fukubikimodal .col2 a {
  width: 50%;
}

.c-fukubikimodal a {
  padding: 12px 0;
  color: #42bee7;
}

.c-fukubikimodal button {
  color: #b2b2b2;
  border-right: 2px solid #f2f2f2;
  background: #fff !important;
}

.c-fukubiki #star {
  position: absolute;
  z-index: 0;
  top: -45px;
  right: 0;
  left: 0;
  margin: auto;
}

.c-fukubiki__play {
  position: relative;
  padding-top: 120px;
}

.c-fukubiki__play:before {
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  width: 100%;
  height: 160px;
  margin: auto;
  content: '';
  background: url(/common/images/global/bg_fukubiki02.png) no-repeat left top;
  background-size: contain;
}

.c-fukubiki__play--hazure {
  padding-top: 52px;
}

.c-fukubiki__play--hazure:before {
  display: none;
}

.c-fukubiki__play--atari {
  padding-top: 20px;
}

.c-fukubiki__play--atari:before {
  display: none;
}

.c-fukubiki__play .ttl {
  width: 380px;
  margin: 0 auto;
}

.c-fukubiki__play .txt {
  font-size: 2.2rem;
  margin: 20px auto;
  -webkit-animation: pulse 1s linear infinite;
  animation: pulse 1s linear infinite;
  text-align: center;
}

.c-fukubiki__play .txt01 {
  width: 452px;
  margin: 0 auto;
}

.c-fukubiki__play .txt02 {
  width: 604px;
  margin: 20px auto;
}

.c-fukubiki__play .txt03 {
  width: 344px;
  margin: 20px auto;
}

.c-fukubiki__play .txt04 {
  width: 304px;
  margin: 20px auto;
}

.c-fukubiki__play .txt05 {
  width: 220px;
  margin: 20px auto;
}

.c-fukubiki__play .txt06 {
  width: 286px;
  margin: 40px auto 40px;
}

.c-fukubiki__play .garapon {
  position: relative;
  top: -100px;
  height: 670px;
}

.c-fukubiki__play .garapon .dodai {
  position: absolute;
  bottom: 0;
}

.c-fukubiki__play .garapon .arrow {
  position: absolute;
  top: 319px;
  left: 372px;
  width: 77px;
  height: 180px;
}

.c-fukubiki__play .garapon .bou {
  position: absolute;
  top: 359px;
  left: 232px;
  width: 234px;
  width: 360px;
  text-align: right;
}

.c-fukubiki__play .garapon .bou:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 1px;
  margin: auto;
  content: '';
}

.c-fukubiki__play .garapon .bou img {
  position: relative;
  top: 4px;
  left: 12px;
  width: 233px;
}

.c-fukubiki__play .garapon .hako {
  position: absolute;
  top: 192px;
  left: 177px;
  width: 466px;
}

.c-fukubiki__play .garapon .hako img {
  position: relative;
  top: 9px;
  left: -7px;
}

.c-fukubiki__play .garapon .sla {
  position: absolute;
  top: 420px;
  left: 130px;
  width: 64px;
  margin: auto;
  opacity: 0;
}

.c-fukubiki__play .garapon .ball {
  position: absolute;
  top: 100px;
  right: 0;
  left: 0;
  width: 407px;
  margin: auto;
  opacity: 0;
}

.c-fukubiki__play .garapon .ball span {
  display: block;
}

.c-fukubiki__play .garapon .ball .red {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.c-fukubiki__play .garapon .jump {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  bottom: -290px;
  left: 0;
  width: 84px;
  margin: auto;
}

.c-fukubiki__play .garapon .beal {
  position: absolute;
  z-index: 1;
  bottom: -304px;
  left: 214px;
  width: 218px;
}

.c-fukubiki__play #particle {
  position: relative;
  top: 80px;
  left: -40px;
}

.c-fukubiki__play .txtatari {
  position: absolute;
  top: 370px;
  right: 0;
  left: 0;
  width: 199px;
  margin: auto;
  opacity: 0;
}

.c-fukubiki__play .txthazure {
  position: absolute;
  top: 336px;
  right: 0;
  left: 0;
  width: 256px;
  margin: auto;
  opacity: 0;
}

.c-fukubiki__play .hazusha {
  position: absolute;
  top: 310px;
  right: 0;
  left: 0;
  width: 642px;
  margin: 0 auto;
  opacity: 0;
}

.c-fukubiki__at01 {
  font-size: 2.6rem;
  position: relative;
  margin: 30px auto 10px;
  text-align: center;
}

.c-fukubiki__at02 {
  font-size: 2.0rem;
  position: relative;
  text-align: center;
}

.c-fukubiki__at02 a {
  text-decoration: underline;
  color: #000;
}

.c-fukubiki__retry {
  position: relative;
  width: 536px;
  margin: 80px auto 0;
}

.c-fukubiki__box {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
}

.c-fukubiki__content {
  padding: 0 40px 40px;
}

.c-fukubiki__content__txt {
  font-size: 2.6rem;
  margin: 0 0 60px;
}

.c-fukubiki__content__img {
  margin-top: -30px;
  margin-bottom: 50px;
}

.c-fukubiki__content__box {
  margin-bottom: 40px;
  padding: 40px 0;
  border-top: 1px dotted #707070;
  border-bottom: 1px dotted #707070;
}

.c-fukubiki__content__box > div {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-fukubiki__content__box > div:first-child div:first-child {
  font-size: 3.6rem;
  line-height: 1.3;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-fukubiki__content__box > div:first-child div:last-child {
  font-size: 2.8rem;
  min-width: 200px;
  padding: 0 20px;
  text-align: center;
  color: #f73e61;
  border: 2px solid #f73e61;
  border-radius: 7px;
}

.c-fukubiki__content__box > div:last-child {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-fukubiki__content__box > div .point {
  font-size: 3.6rem;
  position: relative;
  color: #46b7d5;
}

.c-fukubiki__content__box > div .point:after {
  position: absolute;
  top: 50%;
  right: -30px;
  width: 28px;
  height: 28px;
  margin: 3px 0 0;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_po.svg) no-repeat left top;
  background-size: contain;
}

.c-fukubiki__content__box > div .deadline {
  font-size: 2.2rem;
  position: relative;
}

.c-fukubiki__content__box > div .deadline:after {
  position: absolute;
  top: 50%;
  left: -25px;
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_dead.svg) no-repeat left top;
  background-size: contain;
}

.c-fukubiki__content__box > div .deadline span {
  padding: 0 0 0 4px;
  color: #46b7d5;
}

.c-fukubiki__content__tab {
  margin: 0 0 20px;
  padding: 30px 30px 10px;
  background: #efefef;
}

.c-fukubiki__content__tab div {
  font-size: 2.6rem;
  font-weight: bold;
  position: relative;
  margin: 0 0 20px;
}

.c-fukubiki__content__tab div:after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 12px;
  height: 12px;
  margin-top: -12px;
  content: '';
  -webkit-transform: rotate(135deg) translate(-50%, -50%);
  transform: rotate(135deg) translate(-50%, -50%);
  border-top: solid 4px #5bc2dc;
  border-right: solid 4px #5bc2dc;
  border-radius: 2px;
}

.c-fukubiki__content__tab p {
  font-size: 2.4rem;
  display: none;
  padding: 0 0 30px;
}

.c-fukubiki__content__atwrap {
  margin-bottom: 60px;
}

.c-fukubiki__content__at {
  font-size: 2.0rem;
  margin: -40px 0 0;
  text-align: center;
  color: #777;
}

.c-fukubiki__content__at2 {
  font-size: 2.2rem;
}

.c-fukubiki__content__at3 {
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 17px;
}

.c-fukubiki__content a {
  margin-top: 60px;
}

.c-fukubiki__content__link {
  font-size: 2.6rem;
  position: relative;
  display: block grid !important;
  width: inherit !important;
  margin: 0 0 60px !important;
  text-align: left !important;
  color: #5bc2dc !important;
  border: none;
  border-radius: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-fukubiki__content__link:after {
  display: -ms-inline-grid;
  display: inline-grid;
  /* block-size: 1em; */
  width: 1em;
  content: '';
  background: url(/common/images/global/link.svg) no-repeat left center;
  aspect-ratio: 2;
}

.c-fukubiki__point {
  position: relative;
  position: fixed;
  z-index: 2;
  top: 160px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 90px;
  padding: 5px 50px 5px 20px;
  background: #1a1311;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-fukubiki__point + .l-content--fukubiki {
  margin-top: 90px;
}

.c-fukubiki__point:after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 12px;
  height: 12px;
  content: '';
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  border-radius: 2px;
}

.c-fukubiki__point > div:first-child {
  width: 190px;
}

.c-fukubiki__point > div:last-child {
  font-family: 'Quicksand', sans-serif;
  font-size: 4.8rem;
  font-weight: bold;
  position: relative;
  padding-right: 35px;
  color: #ff5353;
}

.c-fukubiki__point > div:last-child:after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 30px;
  margin: 2px 0 0;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_po02.svg) no-repeat left top;
  background-size: contain;
}

.bg_hazure {
  position: absolute;
  left: -40px;
  width: 790px;
  opacity: 0;
}

.bg_hazure--result {
  opacity: 1;
}

.bg_atari {
  position: absolute;
  top: -170px;
  left: -727px;
  width: 2225px;
  height: 1654px;
  -webkit-animation: spin 25s linear infinite;
  animation: spin 25s linear infinite;
  opacity: 0;
}

.bg_atari--result {
  top: -95px;
  opacity: 1;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.c-acceptance {
  height: 720px;
  margin: 0 auto 94px;
  padding: 74px 0 114px;
  text-align: center;
  background: url(/common/images/global/bg_star.png) no-repeat center top;
}

.c-acceptance div {
  width: 240px;
  margin: 40px auto 30px;
}

.c-acceptance div img {
  margin-left: -60px;
}

.c-acceptance p {
  font-size: 2.6rem;
}

.c-card__logo {
  width: 160px;
  margin: 0 auto;
}

.c-card__card {
  width: 400px;
  margin: 60px auto 80px;
}

.c-card__inputttl {
  font-size: 2.8rem;
  font-weight: bold;
  margin: 0 0 0 20px;
}

.c-card__input {
  font-size: 3.2rem;
  width: 550px;
  margin: 0 0 60px 20px;
  padding: 24px 24px;
  border: 1px solid #000;
  border-radius: 10px;
}

.c-card__stxt {
  font-size: 2.0rem;
}

.c-card__txt {
  font-size: 2.4rem;
  padding: 0 18px;
}

.c-card__agreebox {
  font-size: 2.4rem;
  margin: 100px 0 0;
  padding: 30px;
  background: rgba(0, 0, 0, .05);
}

.c-card__label {
  font-size: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 40px;
  cursor: pointer;
  text-align: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-card__label p {
  font-weight: bold;
  position: relative;
  margin: 10px 0 18px 50px;
  color: #000;
}

.c-card__label p:before {
  position: absolute;
  top: 5px;
  left: -50px;
  width: 35px;
  height: 35px;
  content: '';
  border-radius: 50%;
  background: #fff;
}

input[type=checkbox]:checked + .c-card__label {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

input[type=checkbox]:checked + .c-card__label > p:after {
  position: absolute;
  top: 15px;
  left: -39px;
  width: 15px;
  height: 15px;
  content: '';
  pointer-events: none;
  border-radius: 50%;
  background: #5bc2dc;
}

.c-card__comp {
  text-align: center;
}

.c-card__comp p {
  font-size: 3.2rem;
}

.c-card__comp div {
  font-size: 2.8rem;
}

.c-card__comp div span {
  font-family: 'Quicksand', sans-serif;
  font-size: 4.4rem;
  font-weight: bold;
}

.c-targetstore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #b2b2b2;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-targetstore__logo {
  width: 120px;
  margin-right: 24px;
}

.c-targetstore__name {
  font-size: 2.8rem;
  font-weight: bold;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-targetstore__name p {
  font-size: 2.0rem;
  font-weight: normal;
  color: #6a6a6a;
}

.c-targetstore__name .registered {
  font-weight: bold;
  color: #000;
}

.c-targetstore__txt {
  font-size: 2.4rem;
  position: relative;
  width: 120px;
  margin-left: auto;
  margin-left: 24px;
  color: #000;
}

.c-targetstore__txt:after {
  position: absolute;
  top: 13px;
  right: 0;
  width: 14px;
  height: 14px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: solid 4px #000;
  border-right: solid 4px #000;
  border-radius: 2px;
}

.c-targetstore__alert {
  font-size: 2.0rem;
  font-weight: bold;
  width: 100%;
  margin-top: 10px;
  color: #f00;
}

.c-campaign__content {
  font-size: 2.1rem;
}

.c-campaign__content .ttl {
  font-size: 2.4rem;
  font-weight: bold;
}

.c-campaign__content .red {
  color: #f00;
}

.c-campaign__content .blue {
  color: #00b0f0;
}

.c-campaign__content .uline {
  text-decoration: underline;
}

.c-campaign__content .indent-1 {
  padding-left: 1em;
  text-indent: -1em;
}

.c-campaign__content .numlist li {
  padding-left: 25px;
  text-indent: -25px;
}

.c-campaign__content .marulist li {
  padding-left: 30px;
  text-indent: -30px;
}

.c-campaign__content .atlist {
  font-size: 1.8rem;
}

.c-campaign__content .atlist li {
  padding-left: 1em;
  text-indent: -1em;
}

.c-emergency {
  pointer-events: none;
  opacity: .2;
}

.c-aniv__step {
  margin-bottom: 40px;
}

.c-aniv__login {
  padding: 40px;
  text-align: center;
  border: 6px solid #fff;
  border-radius: 20px;
}

.c-aniv__login--before .ttl {
  width: 380px;
  margin: 20px auto 40px;
}

.c-aniv__login--before p {
  width: 512px;
}

.c-aniv__login--before .faq {
  font-size: 2.4rem;
  display: block;
  margin: 20px 0 0;
  text-decoration: underline;
  color: #fff;
}

.c-aniv__login--before .login {
  display: block;
  width: 560px;
  margin: 25px auto 0;
  padding: 5px;
  text-align: center;
  border-radius: 55px;
  background: #fff;
  -webkit-box-shadow: 0 0 8px gray;
  box-shadow: 0 0 8px gray;
}

.c-aniv__login--before .login span {
  font-family: 'Quicksand', sans-serif;
  font-size: 3.2rem;
  font-weight: bold;
  display: block;
  padding: 20px 0;
  color: #fff;
  border-radius: 50px;
  background: #ff5353;
}

.c-aniv__login--before .login span span {
  font-size: 2.2rem;
  display: inline;
}

.c-aniv__login--after {
  border: none;
}

.c-aniv__login--after .ttl {
  width: 397px;
  margin: 0 0 20px 150px;
}

.c-aniv__login--after p {
  width: 230px;
  margin: 0 auto 40px;
}

.c-aniv__login--after2 {
  border: none;
  background: #fff;
}

.c-aniv__login--after2 .ttl {
  width: 397px;
  margin: 0 0 20px 150px;
}

.c-aniv__login--after2 p {
  width: 230px;
  margin: 0 auto 80px;
}

.c-aniv__login--after2 .at {
  font-size: 2.8rem;
  width: auto;
  margin-top: -20px;
  text-align: center;
  color: #666;
}

.c-aniv03 .ttls {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: #f00;
  border-radius: 10px;
  background: #ffde00;
}

.c-aniv03 .imgtxt {
  margin: 30px auto;
}

.c-aniv03 .txts {
  font-size: 2.8rem;
  width: auto;
  text-align: left;
}

.c-aniv03 .subtxt {
  font-size: 3.6rem;
  font-weight: bold;
}

.c-aniv03 .img02 {
  max-width: 50%;
  margin: 0 auto 40px;
}

.c-question__tab {
  font-size: 3.6rem;
  font-weight: bold;
  position: relative;
  width: calc(100% + 80px);
  margin-top: 8px;
  margin-left: -40px;
  padding: 31px 40px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #000;
  background: #fff;
}

.c-question__tab:before {
  position: absolute;
  z-index: 1;
  top: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  content: '';
  border-radius: 50%;
  background: #46b7d5;
}

.c-question__tab:after {
  position: absolute;
  z-index: 2;
  top: 50px;
  right: 49px;
  width: 20px;
  height: 20px;
  content: '';
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  background: url(/common/images/global/icon_plus.svg) no-repeat left top;
  background-size: contain;
}

.c-question .qopen {
  margin-bottom: 0;
}

.c-question .qopen:after {
  top: 58px;
  background: url(/common/images/global/icon_minus.svg) no-repeat left top;
  background-size: contain;
}

.c-question__content {
  display: none;
}

.c-question__block {
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .1);
  box-shadow: 0 0 8px rgba(0, 0, 0, .1);
}

.c-question__block:first-child {
  margin-top: 40px;
}

.c-question__block:last-child {
  margin-bottom: 40px;
}

.c-question__block + .c-question__block {
  margin-top: 20px;
}

.c-question__q {
  font-size: 2.8rem;
  font-weight: bold;
  position: relative;
  padding: 30px 40px 30px 80px;
}

.c-question__q:before {
  position: absolute;
  top: 32px;
  left: 22px;
  width: 40px;
  height: 40px;
  content: '';
  background: url(/common/images/global/icon_q.svg) no-repeat left top;
  background-size: contain;
}

.c-question__q:after {
  position: absolute;
  top: 45px;
  right: 40px;
  width: 12px;
  height: 12px;
  content: '';
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  border-top: solid 4px #5bc2dc;
  border-right: solid 4px #5bc2dc;
  border-radius: 2px;
}

.c-question .qopena:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-question__a {
  font-size: 2.6rem;
  position: relative;
  display: none;
  padding: 0 40px 20px 80px;
}

.c-question__a:before {
  position: absolute;
  top: 2px;
  left: 22px;
  width: 40px;
  height: 40px;
  content: '';
  background: url(/common/images/global/icon_a.svg) no-repeat left top;
  background-size: contain;
}

.c-question__a a {
  text-decoration: underline;
  color: #5bc2dc;
}

.c-notlinelogged {
  font-size: 2.6rem;
  text-align: left;
  pointer-events: auto;
  border-radius: 20px;
}

.c-notlinelogged__alert {
  font-weight: bold;
  line-height: 1.2;
  position: relative;
  margin: 50px 0 0;
  padding: 15px 0 15px 90px;
  color: #f73e61;
  background: #fcf0f3;
}

.c-notlinelogged__alert:before {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 60px;
  height: 60px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_alert.svg) no-repeat left top;
  background-size: contain;
}

.c-notlinelogged__ttl {
  font-size: 4.0rem;
  font-weight: bold;
  margin: 40px 0 0;
  color: #5bc2dc;
}

.c-notlinelogged__list li {
  font-size: 2.4rem;
  position: relative;
  padding: 10px 0 10px 40px;
}

.c-notlinelogged__list li:before {
  position: absolute;
  top: 26px;
  left: 10px;
  width: 12px;
  height: 12px;
  content: '';
  border-radius: 50%;
  background: #5bc2dc;
}

.c-notlinelogged__list li + li {
  border-top: 1px solid rgba(106, 106, 106, .1);
}

.c-notlinelogged__txt {
  font-weight: bold;
  margin: 50px 0 10px;
}

.c-notlinelogged__at {
  font-size: 2.0rem;
  color: #898989;
}

.c-productlist__content {
  position: relative;
  margin: -50px 0 50px;
}

.c-productlist__content + .c-productlist__content {
  margin-top: 80px;
}

.c-productlist__tab00 {
  font-size: 3.6rem;
  font-weight: bold;
  margin: 0 0 40px;
  padding: 8px 0;
  text-align: center;
  color: #fff;
  border-radius: 10px 10px 0 0;
  background: #f73e61;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .1);
  box-shadow: 0 0 8px rgba(0, 0, 0, .1);
}

.c-productlist__tab01 {
  font-size: 3.6rem;
  font-weight: bold;
  padding: 8px 0;
  text-align: center;
  color: #fff;
  border-radius: 10px 10px 0 0;
  background: #5bc2dc;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .1);
  box-shadow: 0 0 8px rgba(0, 0, 0, .1);
}

.c-productlist__tab02 {
  font-size: 3.6rem;
  font-weight: bold;
  margin: 0 0 40px;
  padding: 8px 0;
  text-align: center;
  border-radius: 10px 10px 0 0;
  background: #ffec00;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .1);
  box-shadow: 0 0 8px rgba(0, 0, 0, .1);
}

.c-productlist__tag {
  font-size: 2.0rem;
  font-weight: bold;
  margin: 0 0 10px;
}

.c-productlist__tag span {
  margin-right: 10px;
  padding: 4px 10px;
  border-radius: 5px;
}

.c-productlist__tag .gr {
  color: #5bc2dc;
  border: 2px solid #5bc2dc;
}

.c-productlist__tag .rd {
  color: #f73e61;
  border: 2px solid #f73e61;
}

.c-productlist__card {
  font-size: 2.8rem;
  font-weight: bold;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  color: #000;
  border-radius: 0 0 10px 10px;
  background: #fff;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .1);
  box-shadow: 0 0 8px rgba(0, 0, 0, .1);
}

.c-productlist__card + .c-productlist__card {
  margin-top: 40px;
}

.c-productlist__card > div:first-child {
  width: 160px;
  margin-right: 20px;
}

.c-productlist__card > div:last-child {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-productlist__card .ttl {
  line-height: 1.4;
  padding-right: 15px;
}

.c-productlist__card .deadline {
  font-size: 1.9rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-productlist__card .deadline:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/icon_deadline.svg) no-repeat left top;
  background-size: contain;
}

.c-productlist__card .deadline span {
  font-size: 2.0rem;
  font-weight: bold;
  padding-left: 5px;
  color: #5bc2dc;
}

.c-productlist__card .sunkyupt {
  font-family: 'Quicksand', sans-serif;
  font-size: 3.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  color: #5bc2dc;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-productlist__card .sunkyupt span {
  position: relative;
}

.c-productlist__card .sunkyupt span:before {
  position: absolute;
  top: 50%;
  right: -30px;
  width: 28px;
  height: 28px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/global/icon_po.svg) no-repeat left top;
  background-size: contain;
}

.c-productlist__none {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.4;
  padding: 63px 0;
  text-align: center;
  color: #9a9a9a;
  color: #9a9a9a;
  border: 2px solid #9a9a9a;
}

.c-productlist__news {
  margin-top: 40px;
  padding: 40px;
  border-radius: 10px;
  background: #fff;
}

.c-productlist__news .ttl {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 14px 0 14px;
}

.c-productlist__news .deadline {
  font-size: 2.2rem;
  font-weight: bold;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 14px;
  padding-left: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-productlist__news .deadline:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/icon_deadline.svg) no-repeat left top;
  background-size: contain;
}

.c-productlist__news .deadline span {
  font-size: 2.4rem;
  font-weight: bold;
  padding-left: 5px;
  color: #5bc2dc;
}

.c-productlist__news .at {
  font-size: 2.0rem;
  margin-top: 40px;
}

.c-productlist__news .sunkyupt {
  font-family: 'Quicksand', sans-serif;
  font-size: 6.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  height: 90px;
  margin: 0 0 30px;
  color: #5bc2dc;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-productlist__news .sunkyupt span {
  position: relative;
  padding-right: 260px;
  padding-left: 64px;
  background: #f4f5f7;
}

.c-productlist__news .sunkyupt span:before {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 56px;
  height: 62px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/icon_beal.svg) no-repeat left top;
  background-size: contain;
}

.c-productlist__news .sunkyupt span:after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 252px;
  height: 30px;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/common/images/txt_sunkyupt.svg) no-repeat left top;
  background-size: contain;
}

.c-productlist__news .txt {
  font-size: 2.8rem;
  font-weight: 500;
}

.c-productlist__news .txt span {
  font-weight: bold;
}

.c-productlist__news .caution {
  font-weight: normal;
  padding: 30px;
  border: 2px solid #e4e6ea;
}

.c-productlist__news .caution a {
  text-decoration: underline;
  color: #f73e61;
}

.c-productlist__news--present {
  position: relative;
  margin-top: -40px;
}

@-webkit-keyframes rotates {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotates {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.c-ailoading {
  border-radius: 20px;
}

.c-ailoading .step2 {
  opacity: 0;
}

.c-ailoading .step3 {
  opacity: 0;
}

.c-ailoading .title {
  position: relative;
  height: 72px;
}

.c-ailoading .title--error {
  height: auto;
}

.c-ailoading .ttl {
  font-size: 4.4rem;
  font-weight: bold;
  position: relative;
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.c-ailoading .ttl--red {
  line-height: 1.3;
  color: #eb3955;
}

.c-ailoading .ttl--middle {
  line-height: 1.3;
}

.c-ailoading .ttl--error {
  position: relative;
  margin-bottom: 30px;
  padding-top: 130px;
  color: #eb3955;
}

.c-ailoading .ttl--error:before {
  position: absolute;
  top: -40px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 94px;
  height: 86px;
  margin: auto;
  content: '';
  background: url(/common/images/global/loader05.svg) no-repeat left top;
  background-size: contain;
}

.c-ailoading .indicatorwrap {
  position: relative;
}

.c-ailoading .indicatorwrap .before {
  width: 258px;
  margin: 60px auto 20px;
}

.c-ailoading .indicator {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 128px;
  margin: 10px auto 10px;
}

.c-ailoading .indicator .loading {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 128px;
  height: 128px;
  margin: auto;
}

.c-ailoading .indicator .loading:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 128px;
  height: 128px;
  content: '';
  -webkit-animation: rotates 1s linear infinite;
  animation: rotates 1s linear infinite;
  background: url(/common/images/global/loader01.svg) no-repeat left top;
  background-size: contain;
}

.c-ailoading .indicator .complete {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 128px;
  height: 128px;
  margin: auto;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.c-ailoading .indicator .complete:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 128px;
  height: 128px;
  content: '';
  background: url(/common/images/global/loader02.svg) no-repeat left top;
  background-size: contain;
}

.c-ailoading .indicator .complete--ng:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 128px;
  height: 128px;
  content: '';
  background: url(/common/images/global/loader03.svg) no-repeat left top;
  background-size: contain;
}

.c-ailoading .indicator .complete--middle {
  font-size: 3.0rem;
  font-weight: bold;
  width: 90%;
  margin: 35px auto 0;
  padding-left: 211px;
  -webkit-transform: none;
  transform: none;
  text-align: left;
}

.c-ailoading .indicator .complete--middle:before {
  position: absolute;
  top: -20px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 186px;
  height: 150px;
  content: '';
  background: url(/common/images/global/loader04.svg) no-repeat left top;
  background-size: contain;
}

.c-ailoading .text {
  position: relative;
  height: 140px;
}

.c-ailoading .text--error {
  height: auto;
}

.c-ailoading .text .before {
  font-size: 2.8rem;
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
}

.c-ailoading .text .loading {
  position: absolute;
  top: -130px;
  width: 100%;
}

.c-ailoading .text .loading .pt {
  font-size: 2.8rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 110px 0 80px;
  text-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.c-ailoading .text .loading .pt img {
  width: 230px;
}

.c-ailoading .text .loading .pt p {
  font-family: 'Quicksand', sans-serif;
  font-size: 8.6rem;
  font-weight: bold;
  position: relative;
  color: #f73e61;
}

.c-ailoading .text .loading .pt p:after {
  position: absolute;
  top: 53px;
  right: -60px;
  width: 50px;
  height: 50px;
  content: '';
  background: url(/common/images/global/icon_po.svg) no-repeat left top;
  background-size: auto;
  background-size: contain;
}

.c-ailoading .text .complete {
  font-family: 'Quicksand', sans-serif;
  font-size: 6.4rem;
  font-weight: bold;
  position: absolute;
  top: -100px;
  width: 100%;
  text-align: center;
}

.c-ailoading .text .complete p {
  font-size: 6rem;
  position: relative;
  top: -30px;
  margin-right: 10px;
}

.c-ailoading .text .complete p span {
  font-size: 9rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  color: #f73e61;
}

.c-ailoading .text .complete p span:after {
  position: absolute;
  top: 59px;
  right: -53px;
  width: 50px;
  height: 50px;
  content: '';
  background: url(/common/images/global/icon_po.svg) no-repeat left top;
  background-size: auto;
  background-size: auto;
  background-size: contain;
}

.c-ailoading .text .complete--ng {
  top: -120px;
}

.c-ailoading .text .complete--ng div {
  font-size: 3.4rem;
}

.c-ailoading .text .complete--ng a {
  font-size: 2.8rem;
  position: relative;
  display: block;
  width: 380px;
  margin: 0 auto;
  margin: 30px auto 0;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  border-radius: 40px;
  background: #f73e61;
}

.c-ailoading .text .complete--ng a:after {
  position: absolute;
  top: 50%;
  right: 40px;
  width: 12px;
  height: 12px;
  content: '';
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  border-radius: 2px;
}

.c-ailoading .text .complete--middle {
  top: -30px;
}

.c-ailoading .text .complete--middle div {
  font-size: 3.4rem;
}

.c-ailoading .text .complete--middle a {
  font-size: 2.8rem;
  position: relative;
  display: block;
  width: 380px;
  margin: 0 auto;
  margin: 0 auto 0;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  border-radius: 40px;
  background: #f73e61;
}

.c-ailoading .text .complete--middle a:after {
  position: absolute;
  top: 50%;
  right: 40px;
  width: 12px;
  height: 12px;
  content: '';
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  border-radius: 2px;
}

.c-ailoading .text .complete--error {
  position: relative;
  top: 0;
}

.c-ailoading .text .complete--error p {
  font-size: 3.4rem;
  font-weight: normal;
  top: 0;
  text-align: left;
}

.c-ailoading .text .complete--error a {
  font-size: 2.8rem;
  display: block;
  width: 380px;
  margin: 0 auto;
  margin: 30px auto 0;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  border-radius: 40px;
  background: #5bc2dc;
}

.c-ailoading progress {
  /* -moz- 用 */
  width: 258px;
  margin: 30px 0 60px;
  border: none;
  background-color: #e5f8fd;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.c-ailoading .at {
  font-size: 2.8rem !important;
  font-weight: normal;
  text-align: center;
}

.c-tvcm {
  padding: 30px 40px;
  background: #5bc2dc;
}

.c-tvcm h3 {
  width: 80%;
  margin: 0 auto;
}

.c-tvcm .youtube {
  width: 100%;
  margin: 20px 0;
  aspect-ratio: 16 / 9;
}

.c-tvcm .youtube iframe {
  width: 100%;
  height: 100%;
}

/*-----------*/

/*ページ*/

.btn {
  font-size: 4.4rem;
}

.btn:active {
  background: #f00;
}

.top-info {
  padding: 60px 0 0;
  border-top: 4px solid #fff;
  border-bottom: 4px solid #fff;
  background: #dff4f8;
}

.top-info .swiper-container {
  padding: 50px 0 40px;
}

.top-info .swiper-slide {
  width: 300px;
  height: 300px;
  border-radius: 20px;
  background: #fff;
}

.top-campaign__wrapper {
  height: 580px;
  margin: 0 auto;
  padding: 30px 0;
  border-radius: 20px;
  background: #fff;
}

.top-campaign__block {
  font-size: 2.4rem;
  width: calc(100% - 25px);
  height: 100%;
  padding: 0 30px;
  background: #fff;
}

.top-anivmain {
  position: relative;
  z-index: 1;
  width: calc(100% + 80px);
  margin: -50px 0 20px -40px;
  background: #5bc2dc;
}

.top-anivmain > div {
  position: relative;
  left: -17px;
  left: 40px;
  width: 93%;
  margin: -120px 0 0 0;
}

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}

@media only screen and (max-width: 767px) {
  .desktop {
    display: block;
  }
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}