@charset "UTF-8";
body {
  -webkit-backface-visibility: hidden;
}

.animated {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  -o-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@-moz-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@-o-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  -moz-animation-name: flash;
  -o-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
  }
}
@-moz-keyframes shake {
  0%, 100% {
    -moz-transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -moz-transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -moz-transform: translateX(10px);
  }
}
@-o-keyframes shake {
  0%, 100% {
    -o-transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -o-transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -o-transform: translateX(10px);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}
.shake {
  -webkit-animation-name: shake;
  -moz-animation-name: shake;
  -o-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
  }
}
@-o-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -o-transform: translateY(0);
  }
  40% {
    -o-transform: translateY(-30px);
  }
  60% {
    -o-transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  -o-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
  }
}
@-moz-keyframes tada {
  0% {
    -moz-transform: scale(1);
  }
  10%, 20% {
    -moz-transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -moz-transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -moz-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -moz-transform: scale(1) rotate(0);
  }
}
@-o-keyframes tada {
  0% {
    -o-transform: scale(1);
  }
  10%, 20% {
    -o-transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -o-transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -o-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -o-transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.tada {
  -webkit-animation-name: tada;
  -moz-animation-name: tada;
  -o-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes swing {
  20%, 40%, 60%, 80%, 100% {
    -webkit-transform-origin: top center;
  }
  20% {
    -webkit-transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-moz-keyframes swing {
  20% {
    -moz-transform: rotate(15deg);
  }
  40% {
    -moz-transform: rotate(-10deg);
  }
  60% {
    -moz-transform: rotate(5deg);
  }
  80% {
    -moz-transform: rotate(-5deg);
  }
  100% {
    -moz-transform: rotate(0deg);
  }
}
@-o-keyframes swing {
  20% {
    -o-transform: rotate(15deg);
  }
  40% {
    -o-transform: rotate(-10deg);
  }
  60% {
    -o-transform: rotate(5deg);
  }
  80% {
    -o-transform: rotate(-5deg);
  }
  100% {
    -o-transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -o-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  -moz-animation-name: swing;
  -o-animation-name: swing;
  animation-name: swing;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
@-moz-keyframes wobble {
  0% {
    -moz-transform: translateX(0%);
  }
  15% {
    -moz-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -moz-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -moz-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -moz-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -moz-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -moz-transform: translateX(0%);
  }
}
@-o-keyframes wobble {
  0% {
    -o-transform: translateX(0%);
  }
  15% {
    -o-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -o-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -o-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -o-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -o-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -o-transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  -moz-animation-name: wobble;
  -o-animation-name: wobble;
  animation-name: wobble;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
  }
  50% {
    -moz-transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@-o-keyframes pulse {
  0% {
    -o-transform: scale(1);
  }
  50% {
    -o-transform: scale(1.1);
  }
  100% {
    -o-transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  -o-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
}
@-moz-keyframes flip {
  0% {
    -moz-transform: perspective(400px) rotateY(0);
    -moz-animation-timing-function: ease-out;
  }
  40% {
    -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -moz-animation-timing-function: ease-out;
  }
  50% {
    -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -moz-animation-timing-function: ease-in;
  }
  80% {
    -moz-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -moz-animation-timing-function: ease-in;
  }
  100% {
    -moz-transform: perspective(400px) scale(1);
    -moz-animation-timing-function: ease-in;
  }
}
@-o-keyframes flip {
  0% {
    -o-transform: perspective(400px) rotateY(0);
    -o-animation-timing-function: ease-out;
  }
  40% {
    -o-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -o-animation-timing-function: ease-out;
  }
  50% {
    -o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -o-animation-timing-function: ease-in;
  }
  80% {
    -o-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -o-animation-timing-function: ease-in;
  }
  100% {
    -o-transform: perspective(400px) scale(1);
    -o-animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    transform: perspective(400px) rotateY(0);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) scale(1);
    animation-timing-function: ease-in;
  }
}
.flip {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flip;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flip;
  -o-backface-visibility: visible !important;
  -o-animation-name: flip;
  backface-visibility: visible !important;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@-moz-keyframes flipInX {
  0% {
    -moz-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -moz-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -moz-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@-o-keyframes flipInX {
  0% {
    -o-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -o-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -o-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -o-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInX;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInX;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@-moz-keyframes flipOutX {
  0% {
    -moz-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -moz-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@-o-keyframes flipOutX {
  0% {
    -o-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -o-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -moz-animation-name: flipOutX;
  -moz-backface-visibility: visible !important;
  -o-animation-name: flipOutX;
  -o-backface-visibility: visible !important;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@-moz-keyframes flipInY {
  0% {
    -moz-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -moz-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -moz-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@-o-keyframes flipInY {
  0% {
    -o-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -o-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -o-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -o-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInY;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@-moz-keyframes flipOutY {
  0% {
    -moz-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -moz-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@-o-keyframes flipOutY {
  0% {
    -o-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -o-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipOutY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipOutY;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  -moz-animation-name: fadeInUpBig;
  -o-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  -moz-animation-name: fadeInDownBig;
  -o-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  -moz-animation-name: fadeInLeftBig;
  -o-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  -moz-animation-name: fadeInRightBig;
  -o-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  -moz-animation-name: fadeOut;
  -o-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
}
@-moz-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
}
@-o-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  -moz-animation-name: fadeOutUp;
  -o-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}
@-moz-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
}
@-o-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  -moz-animation-name: fadeOutDown;
  -o-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
}
@-moz-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }
}
@-o-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  -moz-animation-name: fadeOutLeft;
  -o-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
}
@-moz-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }
}
@-o-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  -moz-animation-name: fadeOutRight;
  -o-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@-moz-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
}
@-o-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  -moz-animation-name: fadeOutUpBig;
  -o-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@-moz-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
}
@-o-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  -moz-animation-name: fadeOutDownBig;
  -o-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@-moz-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
}
@-o-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  -moz-animation-name: fadeOutLeftBig;
  -o-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@-moz-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
}
@-o-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  -moz-animation-name: fadeOutRightBig;
  -o-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes bounceIn {
  0% {
    opacity: 0;
    -moz-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -moz-transform: scale(1.05);
  }
  70% {
    -moz-transform: scale(0.9);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@-o-keyframes bounceIn {
  0% {
    opacity: 0;
    -o-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -o-transform: scale(1.05);
  }
  70% {
    -o-transform: scale(0.9);
  }
  100% {
    -o-transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  -moz-animation-name: bounceIn;
  -o-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes bounceInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateY(-30px);
  }
  80% {
    -moz-transform: translateY(10px);
  }
  100% {
    -moz-transform: translateY(0);
  }
}
@-o-keyframes bounceInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateY(-30px);
  }
  80% {
    -o-transform: translateY(10px);
  }
  100% {
    -o-transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  -moz-animation-name: bounceInUp;
  -o-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes bounceInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateY(30px);
  }
  80% {
    -moz-transform: translateY(-10px);
  }
  100% {
    -moz-transform: translateY(0);
  }
}
@-o-keyframes bounceInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateY(30px);
  }
  80% {
    -o-transform: translateY(-10px);
  }
  100% {
    -o-transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  -moz-animation-name: bounceInDown;
  -o-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(30px);
  }
  80% {
    -moz-transform: translateX(-10px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@-o-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateX(30px);
  }
  80% {
    -o-transform: translateX(-10px);
  }
  100% {
    -o-transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  -moz-animation-name: bounceInLeft;
  -o-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes bounceInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(-30px);
  }
  80% {
    -moz-transform: translateX(10px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@-o-keyframes bounceInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateX(-30px);
  }
  80% {
    -o-transform: translateX(10px);
  }
  100% {
    -o-transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  -moz-animation-name: bounceInRight;
  -o-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
}
@-moz-keyframes bounceOut {
  0% {
    -moz-transform: scale(1);
  }
  25% {
    -moz-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -moz-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -moz-transform: scale(0.3);
  }
}
@-o-keyframes bounceOut {
  0% {
    -o-transform: scale(1);
  }
  25% {
    -o-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -o-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -o-transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  -moz-animation-name: bounceOut;
  -o-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@-moz-keyframes bounceOutUp {
  0% {
    -moz-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
}
@-o-keyframes bounceOutUp {
  0% {
    -o-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  -moz-animation-name: bounceOutUp;
  -o-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@-moz-keyframes bounceOutDown {
  0% {
    -moz-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
}
@-o-keyframes bounceOutDown {
  0% {
    -o-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  -moz-animation-name: bounceOutDown;
  -o-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@-moz-keyframes bounceOutLeft {
  0% {
    -moz-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
}
@-o-keyframes bounceOutLeft {
  0% {
    -o-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  -moz-animation-name: bounceOutLeft;
  -o-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@-moz-keyframes bounceOutRight {
  0% {
    -moz-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
}
@-o-keyframes bounceOutRight {
  0% {
    -o-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  -moz-animation-name: bounceOutRight;
  -o-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateIn {
  0% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateIn {
  0% {
    -o-transform-origin: center center;
    -o-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: center center;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  -moz-animation-name: rotateIn;
  -o-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInUpLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateInUpLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  -moz-animation-name: rotateInUpLeft;
  -o-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInDownLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateInDownLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  -moz-animation-name: rotateInDownLeft;
  -o-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInUpRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateInUpRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  -moz-animation-name: rotateInUpRight;
  -o-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInDownRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateInDownRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  -moz-animation-name: rotateInDownRight;
  -o-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(200deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOut {
  0% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(200deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOut {
  0% {
    -o-transform-origin: center center;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: center center;
    -o-transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  -moz-animation-name: rotateOut;
  -o-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutUpLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutUpLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  -moz-animation-name: rotateOutUpLeft;
  -o-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutDownLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutDownLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  -moz-animation-name: rotateOutDownLeft;
  -o-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutUpRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutUpRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  -moz-animation-name: rotateOutUpRight;
  -o-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutDownRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutDownRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  -moz-animation-name: rotateOutDownRight;
  -o-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    opacity: 0;
  }
}
@-moz-keyframes hinge {
  0% {
    -moz-transform: rotate(0);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -moz-transform: rotate(80deg);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  40% {
    -moz-transform: rotate(60deg);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  80% {
    -moz-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  100% {
    -moz-transform: translateY(700px);
    opacity: 0;
  }
}
@-o-keyframes hinge {
  0% {
    -o-transform: rotate(0);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -o-transform: rotate(80deg);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  40% {
    -o-transform: rotate(60deg);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  80% {
    -o-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  100% {
    -o-transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  -moz-animation-name: hinge;
  -o-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
}
@-moz-keyframes rollIn {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0px) rotate(0deg);
  }
}
@-o-keyframes rollIn {
  0% {
    opacity: 0;
    -o-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  -moz-animation-name: rollIn;
  -o-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
  }
}
@-moz-keyframes rollOut {
  0% {
    opacity: 1;
    -moz-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(100%) rotate(120deg);
  }
}
@-o-keyframes rollOut {
  0% {
    opacity: 1;
    -o-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  -moz-animation-name: rollOut;
  -o-animation-name: rollOut;
  animation-name: rollOut;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@-moz-keyframes lightSpeedIn {
  0% {
    -moz-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -moz-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -moz-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@-o-keyframes lightSpeedIn {
  0% {
    -o-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -o-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -o-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -o-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  -moz-animation-name: lightSpeedIn;
  -o-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
  -o-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.animated.lightSpeedIn {
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@-moz-keyframes lightSpeedOut {
  0% {
    -moz-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@-o-keyframes lightSpeedOut {
  0% {
    -o-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -o-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  -moz-animation-name: lightSpeedOut;
  -o-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.animated.lightSpeedOut {
  -webkit-animation-duration: 0.25s;
  -moz-animation-duration: 0.25s;
  -o-animation-duration: 0.25s;
  animation-duration: 0.25s;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
  }
  10% {
    -webkit-transform: skewX(-8deg);
  }
  20% {
    -webkit-transform: skewX(7deg);
  }
  30% {
    -webkit-transform: skewX(-6deg);
  }
  40% {
    -webkit-transform: skewX(5deg);
  }
  50% {
    -webkit-transform: skewX(-4deg);
  }
  60% {
    -webkit-transform: skewX(3deg);
  }
  70% {
    -webkit-transform: skewX(-2deg);
  }
  80% {
    -webkit-transform: skewX(1deg);
  }
  90% {
    -webkit-transform: skewX(0deg);
  }
  100% {
    -webkit-transform: skewX(0deg);
  }
}
@-moz-keyframes wiggle {
  0% {
    -moz-transform: skewX(9deg);
  }
  10% {
    -moz-transform: skewX(-8deg);
  }
  20% {
    -moz-transform: skewX(7deg);
  }
  30% {
    -moz-transform: skewX(-6deg);
  }
  40% {
    -moz-transform: skewX(5deg);
  }
  50% {
    -moz-transform: skewX(-4deg);
  }
  60% {
    -moz-transform: skewX(3deg);
  }
  70% {
    -moz-transform: skewX(-2deg);
  }
  80% {
    -moz-transform: skewX(1deg);
  }
  90% {
    -moz-transform: skewX(0deg);
  }
  100% {
    -moz-transform: skewX(0deg);
  }
}
@-o-keyframes wiggle {
  0% {
    -o-transform: skewX(9deg);
  }
  10% {
    -o-transform: skewX(-8deg);
  }
  20% {
    -o-transform: skewX(7deg);
  }
  30% {
    -o-transform: skewX(-6deg);
  }
  40% {
    -o-transform: skewX(5deg);
  }
  50% {
    -o-transform: skewX(-4deg);
  }
  60% {
    -o-transform: skewX(3deg);
  }
  70% {
    -o-transform: skewX(-2deg);
  }
  80% {
    -o-transform: skewX(1deg);
  }
  90% {
    -o-transform: skewX(0deg);
  }
  100% {
    -o-transform: skewX(0deg);
  }
}
@keyframes wiggle {
  0% {
    transform: skewX(9deg);
  }
  10% {
    transform: skewX(-8deg);
  }
  20% {
    transform: skewX(7deg);
  }
  30% {
    transform: skewX(-6deg);
  }
  40% {
    transform: skewX(5deg);
  }
  50% {
    transform: skewX(-4deg);
  }
  60% {
    transform: skewX(3deg);
  }
  70% {
    transform: skewX(-2deg);
  }
  80% {
    transform: skewX(1deg);
  }
  90% {
    transform: skewX(0deg);
  }
  100% {
    transform: skewX(0deg);
  }
}
.wiggle {
  -webkit-animation-name: wiggle;
  -moz-animation-name: wiggle;
  -o-animation-name: wiggle;
  animation-name: wiggle;
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.animated.wiggle {
  -webkit-animation-duration: 0.75s;
  -moz-animation-duration: 0.75s;
  -o-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

/* Media queries */
/*----------------------------------------
fontello
----------------------------------------*/
@font-face {
  font-family: 'fontello';
  src: url("../font/fontello.eot?60362527");
  src: url("../font/fontello.eot?60362527#iefix") format("embedded-opentype"), url("../font/fontello.woff2?60362527") format("woff2"), url("../font/fontello.woff?60362527") format("woff"), url("../font/fontello.ttf?60362527") format("truetype"), url("../font/fontello.svg?60362527#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
	@font-face {
		font-family: 'fontello';
		src: url('../font/fontello.svg?60362527#fontello') format('svg');
	}
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-attention:before {
  content: '\e800';
}

/* '' */
.icon-mail:before {
  content: '\e801';
}

/* '' */
.icon-phone-1:before {
  content: '\e802';
}

/* '' */
.icon-angle-double-left:before {
  content: '\f100';
}

/* '' */
.icon-angle-double-right:before {
  content: '\f101';
}

/* '' */
.icon-angle-double-up:before {
  content: '\f102';
}

/* '' */
.icon-angle-double-down:before {
  content: '\f103';
}

/* '' */
.icon-angle-left:before {
  content: '\f104';
}

/* '' */
.icon-angle-right:before {
  content: '\f105';
}

/* '' */
.icon-angle-up:before {
  content: '\f106';
}

/* '' */
.icon-angle-down:before {
  content: '\f107';
}

/* '' */
.icon-youtube:before {
  content: '\f167';
}

/* '' */
.icon-youtube-play:before {
  content: '\f16a';
}

/* '' */
.icon-instagram:before {
  content: '\f16d';
}

/* '' */
.icon-twitter-squared:before {
  content: '\f304';
}

/* '' */
.icon-facebook-squared:before {
  content: '\f308';
}

/* '' */
/*----------------------------------------
Fade Effect
----------------------------------------*/
.fadein {
  opacity: 0;
  transform: translate(0px, 0px);
  transition: all 2s;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein_top {
  opacity: 0;
  transform: translate(0px, 30px);
  transition: all 1s;
}

.fadein_top.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein_right {
  opacity: 0;
  transform: translate(30px, 0px);
  transition: all 1s;
}

.fadein_right.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein_bottom {
  opacity: 0;
  transform: translate(0px, -30px);
  transition: all 1s;
}

.fadein_bottom.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein_left {
  opacity: 0;
  transform: translate(-30px, 0px);
  transition: all 1s;
}

.fadein_left.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/*--------------------------
common
---------------------------*/
/*---------------------------------------------
	Browser Default Initialization
---------------------------------------------*/
html {
  overflow-y: scroll;
}

body, div, dl, dt, dd {
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

ul {
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

ul li {
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, section, nav, article, aside, hgroup, header, address, figure, figcaption {
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

q:before, q:after {
  content: '';
}

object, embed {
  vertical-align: top;
}

hr, legend {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

img, abbr, acronym, fieldset {
  border: 0;
}

img {
  vertical-align: top;
  -ms-interpolation-mode: bicubic;
}

ul li {
  list-style-type: none;
}

a, button, input, textarea {
  outline: none;
}

img {
  box-shadow: #000 0 0 0;
}

x:-moz-any-link, x:default {
  box-shadow: #000 0 0 0;
}

embed, iframe, object {
  max-width: 100%;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/*---------------------------------------------
	FontSize Initialization
---------------------------------------------*/
html {
  background: #ffffff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-feature-settings: "palt";
  font-size: 10px;
  font-weight: 400;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
}

body {
  font-size: 1.6em;
  line-height: 1.75;
  letter-spacing: -0.001em;
  -webkit-text-size-adjust: 100%;
}

select, input, button, textarea, table {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

pre, code, kbd, samp, tt {
  line-height: 1;
}

* {
  box-sizing: border-box;
}

body {
  position: relative;
  min-width: 1030px;
  letter-spacing: -0.001em;
  -webkit-text-size-adjust: 100%;
}
@media only screen and (max-width: 768px) {
  body {
    min-width: 100%;
  }
}
body a {
  color: #0183C9;
}
/*
body a:link {
  color: #0183C9;
}
body a:visited {
  color: #0183C9;
}
body a:hover {
  text-decoration: none;
  color: #0183C9;
}
body a:focus {
  text-decoration: none;
  color: #0183C9;
}
body a:active {
  color: #0183C9;
}
*/

.container {
  width: 1000px;
  margin: 0 auto;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .container {
    width: 100%;
  }
}

div, p {
  box-sizing: border-box;
}

.marker.active {
  background-position: -100% .5em;
}

.marker {
  background-image: -webkit-linear-gradient(left, transparent 50%, #a8ffd3 50%);
  background-image: -moz-linear-gradient(left, transparent 50%, #a8ffd3 50%);
  background-image: -ms-linear-gradient(left, transparent 50%, #a8ffd3 50%);
  background-image: -o-linear-gradient(left, transparent 50%, #a8ffd3 50%);
  background-image: linear-gradient(left, transparent 50%, #a8ffd3 50%);
  background-repeat: repeat-x;
  background-size: 200% .8em;
  background-position: 0 .5em;
  transition: all 2s ease;
  font-weight: bold;
}

sup {
  font-size: 0.5em;
  font-weight: normal;
}

/*--------------------------
main
---------------------------*/
#wrap {
  color: #333;
  width: 100%;
  min-width: 1000px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #wrap {
    width: 100%;
    min-width: 100%;
  }
}

/*
header {
  background: #FFF;
  height: 100px;
  border-bottom: solid 1px #DDD;
}
@media only screen and (max-width: 768px) {
  header {
    width: 100%;
    height: 50px;
    padding: 0 10px;
  }
}
header > .container {
  width: 1000px;
  margin: 0 auto;
  position: relative;
  min-height: 60px;
}
@media only screen and (max-width: 768px) {
  header > .container {
    width: 100%;
    padding: 0;
    min-height: 50px;
  }
}
header > .container > .header-box:after {
  content: "";
  display: block;
  clear: both;
}
header > .container > .header-box > .header-box-left {
  float: left;
  width: 50%;
}
header > .container > .header-box > .header-box-left > .b-logo {
  display: block;
  line-height: 0;
}
header > .container > .header-box > .header-box-left > .b-logo > a {
  display: block;
  padding-top: 20px;
  transition: all .7s ease-out;
}
@media only screen and (max-width: 768px) {
  header > .container > .header-box > .header-box-left > .b-logo > a {
    padding-top: 10px;
  }
}
header > .container > .header-box > .header-box-left > .b-logo > a:hover {
  opacity: .7;
}
header > .container > .header-box > .header-box-left > .b-logo > a > img {
  width: auto;
  height: 60px;
}
@media only screen and (max-width: 768px) {
  header > .container > .header-box > .header-box-left > .b-logo > a > img {
    height: 30px;
  }
}
header > .container > .header-box > .header-box-right {
  float: left;
  width: 50%;
}
header > .container > .header-box > .header-box-right > .header-logo {
  text-align: right;
  display: block;
  width: 100%;
  line-height: 0;
}
header > .container > .header-box > .header-box-right > .header-logo > a {
  display: block;
  padding-top: 40px;
  transition: all .7s ease-out;
}
@media only screen and (max-width: 768px) {
  header > .container > .header-box > .header-box-right > .header-logo > a {
    padding-top: 20px;
  }
}
header > .container > .header-box > .header-box-right > .header-logo > a:hover {
  opacity: .7;
}
header > .container > .header-box > .header-box-right > .header-logo > a > img {
  width: auto;
  height: 20px;
}
@media only screen and (max-width: 768px) {
  header > .container > .header-box > .header-box-right > .header-logo > a > img {
    height: 14px;
  }
}

footer {
  margin-top: 0;
}
footer > .footer-top {
  padding-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  footer > .footer-top > .container {
    width: 100%;
    padding: 0 10px;
  }
}
footer > .footer-top > .container > p {
  font-size: 1.2em;
  text-align: center;
}
footer > .footer-top > .container > p > a:hover {
  text-decoration: underline;
}
footer > .footer-bottom {
  border-top: solid 2px #005bac;
  background: #F7F7F7;
}
@media only screen and (max-width: 768px) {
  footer > .footer-bottom > .container {
    width: 100%;
    padding: 0 10px;
  }
}
footer a {
  color: #000;
  text-decoration: none;
  transition: all .7s ease-out;
}
footer a:link {
  color: #000;
}
footer a:visited {
  color: #000;
}
footer a:hover {
  text-decoration: none;
  color: #000;
}
footer a:focus {
  text-decoration: none;
  color: #000;
}
footer a:active {
  color: #000;
}
footer a:hover {
  opacity: 0.7;
}
footer .footer-bottom-inner {
  width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 10px 0;
}
@media only screen and (max-width: 768px) {
  footer .footer-bottom-inner {
    width: 100%;
  }
}
footer .footer-bottom-nav {
  font-size: 1.3rem;
  margin: 0 0 5px;
}
@media only screen and (max-width: 768px) {
  footer .footer-bottom-nav {
    display: block;
    width: 100%;
    padding: 10px;
  }
}
footer .footer-bottom-nav li {
  display: inline-block;
  vertical-align: top;
  margin: 0 15px 0 0;
  padding: 0 15px 0 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  footer .footer-bottom-nav li {
    display: block;
    text-align: center;
    margin: 0;
    padding: 0;
  }
}
footer .footer-bottom-nav li:after {
  content: '';
  display: block;
  width: 1px;
  height: 14px;
  background: #999;
  position: absolute;
  top: 4px;
  right: 0;
}
@media only screen and (max-width: 768px) {
  footer .footer-bottom-nav li:after {
    content: none;
  }
}
footer .footer-bottom-nav li:last-child:after {
  display: none;
}
footer .footer-copy {
  font-size: 1.2rem;
  font-weight: 100;
  letter-spacing: .02em;
}
@media only screen and (max-width: 768px) {
  footer .footer-copy {
    display: block;
    width: 100%;
    font-size: 0.8rem;
    text-align: center;
  }
}
footer .footer-logo {
  font-size: 1.7rem;
  font-weight: 500;
  position: absolute;
  top: calc(50% - 15px);
  right: 0;
}
@media only screen and (max-width: 768px) {
  footer .footer-logo {
    position: initial;
    display: block;
    width: 100%;
    text-align: center;
    top: 0;
    padding: 10px;
  }
}
footer .footer-logo img {
  height: 14px;
}
*/

footer.footer_bgw {
    background-color: #F9F9F9;
}
@media only screen and (max-width: 768px) {
  footer.footer_bgw {
    background-color: #3a434a;
  }
}


section {
  padding: 50px 0;
}
section.sec_p1 {
  padding: 0 0 50px 0;
}
section.bg1 {
  background: #EEE;
}
section.bg2 {
  background: #E9F0F5;
}

.text_c {
  text-align: center;
}
.text_r {
  text-align: right;
}
.text_b {
  font-weight: bold;
}
.boxline {
  border: 1px solid #CCC;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .boxline {
    width: 96%;
    margin: 0 auto;
    padding: 10px 0;
  }
}

p > span {
  font-weight: bold;
}

.p_listimg:after {
  content: "";
  display: block;
  clear: both;
}
.p_listimg.p_listimg_w150 > ul > li {
  width: 150px;
}
.p_listimg > ul > li {
  float: left;
  margin: 0 10px 10px 0;
}
.p_listimg > ul > li figure {
  margin-bottom: 10px;
  width: 100%;
}
.p_listimg > ul > li figure > img {
  width: 100%;
  height: auto;
}
.p_listimg > ul > li figure > figcaption {
  text-align: center;
  margin: 10px 0;
}

h2 {
  font-size: 2em;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  h2 {
    font-size: calc(100vw * 0.06);
  }
}

h3 {
  font-size: 1.4em;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  h3 {
    font-size: calc(100vw * 0.06);
  }
}
/*
h3:before {
  content: "-";
  font-weight: bold;
  color: #4A7BC8;
  padding-right: 5px;
}
*/

h4 {
  font-size: 1.2em;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  h4 {
    font-size: calc(100vw * 0.05);
  }
}

h5 {
  font-size: 1em;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  h5 {
    font-size: calc(100vw * 0.045);
  }
}

.videobox {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.videobox iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.p1 {
  margin-bottom: 40px;
  padding: 100px 0 50px 0;
}
@media only screen and (max-width: 768px) {
  .p1 {
    position: relative;
    padding: calc(100vw * 0.5) 0 calc(100vw * 0.02) 0;
    margin-bottom: calc(100vw * 0.4);
  }
}
.p1 > h1 {
  display: inline-block;
  padding: 20px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 50px;
  line-height: 1.2em;
}
@media only screen and (max-width: 768px) {
  .p1 > h1 {
    text-align: center;
    font-size: calc(100vw * 0.07);
    padding: calc(100vw * 0.03) 0;
    position: absolute;
    bottom: calc(-100vw * 0.15);
    width: 100%;
    margin-bottom: 0;
  }
}
.p1 > h1 > span {
  font-size: 0.7em;
}
.p1 > .kvbtn {
  padding-left: 20px;
}
@media only screen and (max-width: 768px) {
  .p1 > .kvbtn {
    position: absolute;
    bottom: calc(-100vw * 0.3);
    width: 100%;
    padding-left: 0;
    display: block;
    text-align: center;
  }
}
.p1 > .kvbtn > a {
  display: inline-block;
  color: #FFF;
  background-color: #cb3f3f;
  border-bottom: 5px solid #9d4040;
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
  padding: 1rem 4rem 1rem 2rem;
  border-radius: 100vh;
  margin-right: 1rem;
  transition: all .2s ease-out;
}
@media only screen and (max-width: 768px) {
  .p1 > .kvbtn > a {
    margin-right: 0;
  }
}
.p1 > .kvbtn > a:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  font-size: 2rem;
  line-height: 1;
  position: absolute;
  top: calc(50% - 1rem);
  right: 1.4rem;
  margin: 0;
  padding: 0;
  content: '\f101';
}
.p1 > .kvbtn > a:hover {
  color: #FFF;
  margin-top: 3px;
  background: #992b2b;
  border-bottom: 2px solid #612727;
}

.p2 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .p2 {
    padding: 0 10px;
  }
}
.p2.p2_w40 {
  width: 40%;
  margin: 0 auto 40px auto;
}
@media only screen and (max-width: 768px) {
  .p2.p2_w40 {
    width: 100%;
  }
}
.p2.p2_w60 {
  width: 60%;
  margin: 0 auto 40px auto;
}
@media only screen and (max-width: 768px) {
  .p2.p2_w60 {
    width: 100%;
  }
}
.p2.p2_w80 {
  width: 80%;
  margin: 0 auto 40px auto;
}
@media only screen and (max-width: 768px) {
  .p2.p2_w80 {
    width: 100%;
  }
}
.p2 > h1 {
  display: inline-block;
  font-size: 2.6em;
  font-weight: 200;
  line-height: 1.2em;
}
@media only screen and (max-width: 768px) {
  .p2 > h1 {
    text-align: center;
    font-size: calc(100vw * 0.07);
  }
}
.p2 > h1 > span {
  font-size: 0.7em;
}

.p3 {
  margin-bottom: 40px;
}
.p3.p3_w40 {
  width: 40%;
  margin: 0 auto 40px auto;
}
@media only screen and (max-width: 768px) {
  .p3.p3_w40 {
    width: 100%;
  }
}
.p3.p3_w60 {
  width: 60%;
  margin: 0 auto 40px auto;
}
@media only screen and (max-width: 768px) {
  .p3.p3_w60 {
    width: 100%;
  }
}
.p3.p3_w80 {
  width: 80%;
  margin: 0 auto 40px auto;
}
@media only screen and (max-width: 768px) {
  .p3.p3_w80 {
    width: 100%;
  }
}
.p3:after {
  content: "";
  display: block;
  clear: both;
}
.p3 > .center {
  width: 48%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .p3 > .center {
    width: 100%;
    padding: 0 10px;
  }
}
.p3 > .left {
  float: left;
  width: 48%;
  margin-right: 4%;
}
@media only screen and (max-width: 768px) {
  .p3 > .left {
    float: none;
    width: 100%;
    padding: 0 10px;
    margin: 0 0 40px 0;
  }
}
.p3 > .right {
  float: left;
  width: 48%;
}
@media only screen and (max-width: 768px) {
  .p3 > .right {
    float: none;
    width: 100%;
    padding: 0 10px;
  }
}
.p3 figure {
  margin-bottom: 10px;
  width: 100%;
}
.p3 figure > img {
  width: 100%;
  height: auto;
}
.p3 figure > figcaption {
  margin: 10px 0;
}

.p4{
    margin: 0 auto 40px auto;
}
@media only screen and (max-width: 768px) {
  .p4 {
    padding: 0 10px;
  }
}
.p4 ul:after {
  content: "";
  display: block;
  clear: both;
}

.p4.p4_list3.p4_w40 {
  width: 40%;
}
@media only screen and (max-width: 768px) {
  .p4.p4_list3.p4_w40 {
    width: 100%;
  }
}
.p4.p4_list3.p4_w60 {
  width: 60%;
}
@media only screen and (max-width: 768px) {
  .p4.p4_list3.p4_w60 {
    width: 100%;
  }
}
.p4.p4_list3.p4_w80 {
  width: 80%;
}
@media only screen and (max-width: 768px) {
  .p4.p4_list3.p4_w80 {
    width: 100%;
  }
}
.p4.p4_list3 > ul:after {
  content: "";
  display: block;
  clear: both;
}
.p4.p4_list3 > ul > li {
  float: left;
  width: 32%;
  margin: 0 2% 20px 0;
}
@media only screen and (max-width: 768px) {
  .p4.p4_list3 > ul > li {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
.p4.p4_list3 > ul > li:nth-child(3n) {
  margin: 0 0 20px 0;
}
.p4.p4_list3 > ul > li figure {
  margin-bottom: 10px;
  width: 100%;
}
.p4.p4_list3 > ul > li figure > img {
  width: 100%;
  height: auto;
}
.p4.p4_list3 > ul > li figure > figcaption {
  margin: 10px 0;
}
.p4.p4_list3 > p {
  text-align: left;
}

.p4.p4_list4.p4_w40 {
  width: 40%;
}
@media only screen and (max-width: 768px) {
  .p4.p4_list4.p4_w40 {
    width: 100%;
  }
}
.p4.p4_list4.p4_w60 {
  width: 60%;
}
@media only screen and (max-width: 768px) {
  .p4.p4_list4.p4_w60 {
    width: 100%;
  }
}
.p4.p4_list4.p4_w80 {
  width: 80%;
}
@media only screen and (max-width: 768px) {
  .p4.p4_list4.p4_w80 {
    width: 100%;
  }
}
.p4.p4_list4 > ul > li {
  float: left;
  width: 24%;
  margin: 0 1.33% 20px 0;
}
@media only screen and (max-width: 768px) {
  .p4.p4_list4 > ul > li {
    width: 48%;
    margin: 0 4% 20px 0;
  }
}
.p4.p4_list4 > ul > li:nth-child(4n) {
  margin: 0 0 20px 0;
}
@media only screen and (max-width: 768px) {
  .p4.p4_list4 > ul > li:nth-child(2n) {
    margin: 0 0 20px 0;
  }
  .p4.p4_list4 > ul > li:nth-child(4n) {
    margin: 0 0 20px 0;
  }
}
.p4.p4_list4 > ul > li figure {
  margin-bottom: 10px;
  width: 100%;
}
.p4.p4_list4 > ul > li figure > img {
  width: 100%;
  height: auto;
}
.p4.p4_list4 > ul > li figure > figcaption {
  margin: 10px 0;
}

.p4.p4_list6.p4_w40 {
  width: 40%;
}
@media only screen and (max-width: 768px) {
  .p4.p4_list6.p4_w40 {
    width: 100%;
  }
}
.p4.p4_list6.p4_w60 {
  width: 60%;
}
@media only screen and (max-width: 768px) {
  .p4.p4_list6.p4_w60 {
    width: 100%;
  }
}
.p4.p4_list6.p4_w80 {
  width: 80%;
}
@media only screen and (max-width: 768px) {
  .p4.p4_list6.p4_w80 {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .p4.p4_list6.p4_s100 > ul > li {
    float: none;
    width: 100%;
    margin: 0;
  }
}
@media only screen and (max-width: 768px) {
  .p4.p4_list6.p4_s100 > ul > li:nth-child(4n) {
    margin: 0;
  }
}
.p4.p4_list6 > ul > li {
  float: left;
  width: 16%;
  margin: 0 0.8% 20px 0;
}
@media only screen and (max-width: 768px) {
  .p4.p4_list6 > ul > li {
    width: 32%;
    margin: 0 2% 20px 0;
  }
}
.p4.p4_list6 > ul > li:nth-child(6n) {
  margin: 0 0 20px 0;
}
@media only screen and (max-width: 768px) {
  .p4.p4_list6 > ul > li:nth-child(3n) {
    margin: 0 0 20px 0;
  }
  .p4.p4_list6 > ul > li:nth-child(6n) {
    margin: 0 0 20px 0;
  }
}
.p4.p4_list6 > ul > li figure {
  margin-bottom: 10px;
  width: 100%;
}
.p4.p4_list6 > ul > li figure > img {
  width: 100%;
  height: auto;
}
.p4.p4_list6 > ul > li figure > figcaption {
  margin: 10px 0;
}
.p4.p4_list6 > p {
  text-align: left;
}

.p5 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .p5 {
    padding: 0 10px;
  }
}
.p5.p5_w5050 > .box > .left {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .p5.p5_w5050 > .box > .left {
    width: 100%;
  }
}
.p5.p5_w5050 > .box > .right {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .p5.p5_w5050 > .box > .right {
    width: 100%;
  }
}
.p5.p5_w6040 > .box > .left {
  width: 60%;
}
@media only screen and (max-width: 768px) {
  .p5.p5_w6040 > .box > .left {
    width: 100%;
  }
}
.p5.p5_w6040 > .box > .right {
  width: 40%;
}
@media only screen and (max-width: 768px) {
  .p5.p5_w6040 > .box > .right {
    width: 100%;
  }
}
.p5.p5_w4060 > .box > .left {
  width: 40%;
}
@media only screen and (max-width: 768px) {
  .p5.p5_w4060 > .box > .left {
    width: 100%;
  }
}
.p5.p5_w4060 > .box > .right {
  width: 60%;
}
@media only screen and (max-width: 768px) {
  .p5.p5_w4060 > .box > .right {
    width: 100%;
  }
}
.p5 > .box {
  margin-bottom: 20px;
}
.p5 > .box:last-child {
  margin-bottom: 0;
}
.p5 > .box:after {
  content: "";
  display: block;
  clear: both;
}
.p5 > .box > .left {
  float: left;
  width: 70%;
}
@media only screen and (max-width: 768px) {
  .p5 > .box > .left {
    float: none;
    width: 100%;
    margin-bottom: 20px;
  }
}
.p5 > .box > .right {
  box-sizing: border-box;
  float: left;
  width: 30%;
  padding-left: 20px;
}
@media only screen and (max-width: 768px) {
  .p5 > .box > .right {
    float: none;
    width: 100%;
    padding-left: 0;
  }
}
.p5 > .box > .right figure {
  margin-bottom: 10px;
  width: 100%;
}
.p5 > .box > .right figure > img {
  width: 100%;
  height: auto;
}
.p5 > .box > .right figure > figcaption {
  text-align: center;
  margin: 10px 0;
}
.p5 > .box > .right .btn {
  margin-top: 20px;
}

.p6 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .p6 {
    padding: 0 10px;
  }
}
.p6 > .box:after {
  content: "";
  display: block;
  clear: both;
}
.p6 > .box > .left {
  float: left;
  width: 48%;
  margin-right: 4%;
}
@media only screen and (max-width: 768px) {
  .p6 > .box > .left {
    float: none;
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }
}
.p6 > .box > .left > ul:after {
  content: "";
  display: block;
  clear: both;
}
.p6 > .box > .left > ul > li {
  float: left;
  width: 46%;
}
.p6 > .box > .left > ul > li figure {
  margin-bottom: 10px;
  width: 100%;
}
.p6 > .box > .left > ul > li figure > img {
  width: 100%;
  height: auto;
}
.p6 > .box > .left > ul > li figure > figcaption {
  text-align: center;
  margin: 10px 0;
}
.p6 > .box > .left > ul > li:first-child {
  position: relative;
  margin-right: 8%;
}
.p6 > .box > .left > ul > li:first-child:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #0385dc;
  display: block;
  right: -28px;
  top: calc(50% - 20px);
  position: absolute;
}
.p6 > .box > .right {
  box-sizing: border-box;
  float: left;
  width: 48%;
  padding-left: 20px;
}
@media only screen and (max-width: 768px) {
  .p6 > .box > .right {
    float: none;
    width: 100%;
    padding-left: 0;
  }
}
.p6 > .box > .right > ul:after {
  content: "";
  display: block;
  clear: both;
}
.p6 > .box > .right > ul > li {
  float: left;
  width: 46%;
}
.p6 > .box > .right > ul > li figure {
  margin-bottom: 10px;
  width: 100%;
}
.p6 > .box > .right > ul > li figure > img {
  width: 100%;
  height: auto;
}
.p6 > .box > .right > ul > li figure > figcaption {
  text-align: center;
  margin: 10px 0;
}
.p6 > .box > .right > ul > li:first-child {
  position: relative;
  margin-right: 8%;
}
.p6 > .box > .right > ul > li:first-child:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #0385dc;
  display: block;
  right: -28px;
  top: calc(50% - 20px);
  position: absolute;
}

.p7 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .p7 {
    padding: 0 10px;
  }
}
.p7:after {
  content: "";
  display: block;
  clear: both;
}
.p7 > ul:after {
  content: "";
  display: block;
  clear: both;
}
.p7 > ul > li {
  float: left;
  width: 15%;
  margin: 0 2% 20px 0;
}
@media only screen and (max-width: 768px) {
  .p7 > ul > li {
    width: 48%;
    margin: 0 4% 20px 0;
  }
}
@media only screen and (max-width: 768px) {
  .p7 > ul > li:nth-child(2n) {
    margin: 0 0 20px 0;
  }
}
.p7 > ul > li:nth-child(6n) {
  margin: 0 0 20px 0;
}
.p7 > ul > li figure {
  margin-bottom: 10px;
  width: 100%;
}
.p7 > ul > li figure > img {
  width: 100%;
  height: auto;
}
.p7 > ul > li figure > figcaption {
  text-align: center;
  margin: 10px 0;
}
.p7 > p {
  text-align: left;
}

.p8 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .p8 {
    padding: 0 10px;
  }
}
.p8.p8_w5050 > .box > .left {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .p8.p8_w5050 > .box > .left {
    width: 100%;
  }
}
.p8.p8_w5050 > .box > .right {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .p8.p8_w5050 > .box > .right {
    width: 100%;
  }
}
.p8.p8_w6040 > .box > .left {
  width: 60%;
}
@media only screen and (max-width: 768px) {
  .p8.p8_w6040 > .box > .left {
    width: 100%;
  }
}
.p8.p8_w6040 > .box > .right {
  width: 40%;
}
@media only screen and (max-width: 768px) {
  .p8.p8_w6040 > .box > .right {
    width: 100%;
  }
}
.p8.p8_w4060 > .box > .left {
  width: 40%;
}
@media only screen and (max-width: 768px) {
  .p8.p8_w4060 > .box > .left {
    width: 100%;
  }
}
.p8.p8_w4060 > .box > .right {
  width: 60%;
}
@media only screen and (max-width: 768px) {
  .p8.p8_w4060 > .box > .right {
    width: 100%;
  }
}
.p8 > .box {
  margin-bottom: 20px;
}
.p8 > .box:last-child {
  margin-bottom: 0;
}
.p8 > .box:after {
  content: "";
  display: block;
  clear: both;
}
.p8 > .box > .left {
  box-sizing: border-box;
  float: left;
  width: 30%;
  padding-right: 20px;
}
@media only screen and (max-width: 768px) {
  .p8 > .box > .left {
    float: none;
    width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
  }
}
.p8 > .box > .left figure {
  margin-bottom: 10px;
  width: 100%;
}
.p8 > .box > .left figure > img {
  width: 100%;
  height: auto;
}
.p8 > .box > .left figure > figcaption {
  text-align: center;
  margin: 10px 0;
}
.p8 > .box > .right {
  float: left;
  width: 70%;
}
@media only screen and (max-width: 768px) {
  .p8 > .box > .right {
    float: none;
    width: 100%;
  }
}
.p8 > .box > .right .btn {
  margin-top: 20px;
  text-align: left;
}
.p8 > .box > .right .btn > p > a {
  font-size: 1.4rem;
  padding: 1rem 4rem 1rem 2rem;
  border-radius: 100vh;
  margin-right: 1rem;
}
@media only screen and (max-width: 768px) {
  .p8 > .box > .right .btn > p > a {
    margin-right: 0;
  }
}
.p8 > .box > .right .btn > p > a:before {
  font-size: 2rem;
  line-height: 1;
  top: calc(50% - 1rem);
  right: 1.4rem;
}

.p9 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .p9 {
    padding: 0 10px;
  }
}
.p9.p9_w40 figure {
  width: 40%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .p9.p9_w40 figure {
    width: 100%;
  }
}
.p9.p9_w60 figure {
  width: 60%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .p9.p9_w60 figure {
    width: 100%;
  }
}
.p9.p9_w80 figure {
  width: 80%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .p9.p9_w80 figure {
    width: 100%;
  }
}
.p9 figure {
  margin-bottom: 10px;
  width: 100%;
}
.p9 figure > img {
  width: 100%;
  height: auto;
}
.p9 figure > figcaption {
  text-align: center;
  margin: 10px 0;
}

.p10 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .p10 {
    padding: 0 10px;
  }
}
.p10 table{
border: 1px solid #000;
width: 100%;
}
.p10 table td,
.p10 table th{
border: 1px solid #000;
padding: 15px;
}
.p10 table th{
font-weight: bold;
background: #DDD;
}

.btn {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .btn {
    padding: 0 15px;
  }
}
.btn > p > a {
  display: inline-block;
  color: #FFF;
  background-color: #2C2A57;
  border-bottom: 5px solid #7572a8;
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
  padding: 2rem 6rem 2rem 3rem;
  border-radius: 20px;
  margin-right: 1rem;
  transition: all .2s ease-out;
}
@media only screen and (max-width: 768px) {
  .btn > p > a {
    padding: 1.4rem 6rem 1.4rem 3rem;
    font-size: calc(100vw * 0.05);
    margin-bottom: 10px;
  }
}
.btn > p > a:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  font-size: 3rem;
  line-height: 1;
  position: absolute;
  top: calc(50% - 1.5rem);
  right: 2rem;
  margin: 0;
  padding: 0;
  content: '\f101';
}
.btn.btn_small > p > a {
  font-size: 1.8rem;
  padding: 1rem 4rem 1rem 1.5rem;
  border-radius: 10px;
}
@media only screen and (max-width: 768px) {
  .btn.btn_small > p > a {
    font-size: calc(100vw * 0.03);
  }
}
.btn.btn_small > p > a:before {
  font-size: 2rem;
  top: calc(50% - 1rem);
}
.btn > p > a:hover {
  color: #FFF;
  margin-bottom: 3px;
  background: #7572a8;
  border-bottom: 2px solid #2C2A57;
}
@media only screen and (max-width: 768px) {
  .btn > p > a:hover {
    margin-bottom: 13px;
  }
}
.btn > p > a.pdflink {
  padding: 2rem 3rem 2rem 3rem;
}
.btn > p > a.pdflink:before {
  content: none;
}
.btn > p > a.pdflink:after {
  content: "";
  background-image: url(../img/ic_pdf.svg);
  background-repeat: no-repeat;
  display: inline-block;
  background-size: 21px;
  width: 21px;
  height: 26px;
  opacity: 1;
  vertical-align: bottom;
  margin-left: 10px;
}

#formembed {
  padding-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  #formembed {
    padding-bottom: 60px;
  }
}

.formembed {
  box-sizing: border-box;
  padding: 0;
  width: 760px !important;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .formembed {
    width: 100% !important;
  }
}
.formembed > h3 {
  margin-bottom: 20px;
  color: #000;
  text-align: center;
}
.formembed > h3:before {
  content: none;
}
.formembed > p {
  margin-bottom: 20px;
  padding: 10px;
}
.formembed > .formembed_attention {
  margin-bottom: 40px;
  border: 1px solid #555;
  border-radius: 5px;
  padding: 10px;
}
.formembed form {
  font-size: 1.6rem !important;
  width: 760px !important;
  margin: 0 auto;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .formembed form {
    width: 100% !important;
    padding: 10px;
  }
}
.formembed form .mktoHtmlText.mktoHasWidth {
  width: 100% !important;
}
.formembed form h2 {
  font-size: 1.4em !important;
}
.formembed form .mktoButtonRow {
  padding-top: 40px;
  width: 100% !important;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .formembed form .mktoButtonRow {
    padding-top: 20px;
  }
}
.formembed form .mktoButtonRow .mktoButtonWrap.mktoSkip {
  margin: 0 auto !important;
}

.social {
    margin-bottom: 40px;
}
.social a {
    font-size: 40px;
    color: #000;
    display: inline-block;
    margin: 0 30px;
}
.social a:hover {
    color: #7672A7;
}
.svg-inline--fa {
    display: var(--fa-display, inline-block);
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
}
.social_link p > a {
    color: #000;
    text-decoration: underline;
}
.social_link p > a:hover {
    text-decoration: none;
}
ul.eec_ul{
    margin-bottom: 40px;
}
ul.eec_ul li{
    list-style-type: disc;
    margin-left: 1.5em;
    margin-bottom: 1em;
}
ul.eec_ul.eec_ul_decimal li{
    list-style-type: decimal;
}
ul.eec_ul.eec_ul_link li{
    list-style-type: none;
    position: relative;
}
ul.eec_ul.eec_ul_link li:before {
    border-right: solid 2px #333;
    border-top: solid 2px #333;
    content: "";
    display: block;
    height: 8px;
    left: -1.2em;
    margin-top: -5px;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 8px;
    will-change: transform;
}
ul.eec_ul li span{
    font-weight: bold;
}
ul.eec_ul li a:hover{
    text-decoration: underline;
}
a.eec_link_i1 {
    position: relative;
    padding-left: 1em;
}
a.eec_link_i1:before {
    border-right: solid 2px #333;
    border-top: solid 2px #333;
    content: "";
    display: block;
    height: 8px;
    left: 0;
    margin-top: -5px;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 8px;
    will-change: transform;
}