/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
@keyframes bounce {
    0%, 20%, 53%, 80%, to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translateZ(0)
    }
    40%, 43% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        transform: translate3d(0, -4px, 0)
    }
}

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

@keyframes flash {
    0%, 50%, to {
        opacity: 1
    }
    25%, 75% {
        opacity: 0
    }
}

.flash {
    animation-name: flash
}

@keyframes pulse {
    0% {
        transform: scaleX(1)
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        transform: scaleX(1)
    }
}

.pulse {
    animation-name: pulse
}

@keyframes rubberBand {
    0% {
        transform: scaleX(1)
    }
    30% {
        transform: scale3d(1.25, .75, 1)
    }
    40% {
        transform: scale3d(.75, 1.25, 1)
    }
    50% {
        transform: scale3d(1.15, .85, 1)
    }
    65% {
        transform: scale3d(.95, 1.05, 1)
    }
    75% {
        transform: scale3d(1.05, .95, 1)
    }
    to {
        transform: scaleX(1)
    }
}

.rubberBand {
    animation-name: rubberBand
}

.shake {
    animation-name: shake
}

@keyframes headShake {
    0% {
        transform: translateX(0)
    }
    6.5% {
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        transform: translateX(0)
    }
}

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

@keyframes swing {
    20% {
        transform: rotate(15deg)
    }
    40% {
        transform: rotate(-10deg)
    }
    60% {
        transform: rotate(5deg)
    }
    80% {
        transform: rotate(-5deg)
    }
    to {
        transform: rotate(0deg)
    }
}

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

@keyframes tada {
    0% {
        transform: scaleX(1)
    }
    10%, 20% {
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }
    30%, 50%, 70%, 90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }
    40%, 60%, 80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }
    to {
        transform: scaleX(1)
    }
}

.tada {
    animation-name: tada
}

@keyframes wobble {
    0% {
        transform: translateZ(0)
    }
    15% {
        transform: translate3d(-25%, 0, 0) rotate(-5deg)
    }
    30% {
        transform: translate3d(20%, 0, 0) rotate(3deg)
    }
    45% {
        transform: translate3d(-15%, 0, 0) rotate(-3deg)
    }
    60% {
        transform: translate3d(10%, 0, 0) rotate(2deg)
    }
    75% {
        transform: translate3d(-5%, 0, 0) rotate(-1deg)
    }
    to {
        transform: translateZ(0)
    }
}

.wobble {
    animation-name: wobble
}

@keyframes jello {
    0%, 11.1%, to {
        transform: translateZ(0)
    }
    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }
    77.7% {
        transform: skewX(.390625deg) skewY(.390625deg)
    }
    88.8% {
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

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

@keyframes heartBeat {
    0% {
        transform: scale(1)
    }
    14% {
        transform: scale(1.3)
    }
    28% {
        transform: scale(1)
    }
    42% {
        transform: scale(1.3)
    }
    70% {
        transform: scale(1)
    }
}

.heartBeat {
    animation-name: heartBeat;
    animation-duration: 1.3s;
    animation-timing-function: ease-in-out
}

@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        transform: scale3d(.9, .9, .9)
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        transform: scale3d(.97, .97, .97)
    }
    to {
        opacity: 1;
        transform: scaleX(1)
    }
}

.bounceIn {
    animation-duration: .75s;
    animation-name: bounceIn
}

@keyframes bounceInDown {
    0%, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0)
    }
    75% {
        transform: translate3d(0, -10px, 0)
    }
    90% {
        transform: translate3d(0, 5px, 0)
    }
    to {
        transform: translateZ(0)
    }
}

.bounceInDown {
    animation-name: bounceInDown
}

@keyframes bounceInLeft {
    0%, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0)
    }
    75% {
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        transform: translate3d(5px, 0, 0)
    }
    to {
        transform: translateZ(0)
    }
}

.bounceInLeft {
    animation-name: bounceInLeft
}

@keyframes bounceInRight {
    0%, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        transform: translate3d(10px, 0, 0)
    }
    90% {
        transform: translate3d(-5px, 0, 0)
    }
    to {
        transform: translateZ(0)
    }
}

.bounceInRight {
    animation-name: bounceInRight
}

@keyframes bounceInUp {
    0%, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }
    75% {
        transform: translate3d(0, 10px, 0)
    }
    90% {
        transform: translate3d(0, -5px, 0)
    }
    to {
        transform: translateZ(0)
    }
}

.bounceInUp {
    animation-name: bounceInUp
}

@keyframes bounceOut {
    20% {
        transform: scale3d(.9, .9, .9)
    }
    50%, 55% {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1)
    }
    to {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
}

.bounceOut {
    animation-duration: .75s;
    animation-name: bounceOut
}

@keyframes bounceOutDown {
    20% {
        transform: translate3d(0, 10px, 0)
    }
    40%, 45% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.bounceOutDown {
    animation-name: bounceOutDown
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px, 0, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

.bounceOutLeft {
    animation-name: bounceOutLeft
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px, 0, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

.bounceOutRight {
    animation-name: bounceOutRight
}

@keyframes bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0)
    }
    40%, 45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.bounceOutUp {
    animation-name: bounceOutUp
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInLeft {
    animation-name: fadeInLeft
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInRight {
    animation-name: fadeInRight
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
}

.fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }
}

.fadeOutRight {
    animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
}

.fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig
}

@keyframes flip {
    0% {
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        animation-timing-function: ease-out
    }
    40% {
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        animation-timing-function: ease-out
    }
    50% {
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        animation-timing-function: ease-in
    }
    80% {
        transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
        animation-timing-function: ease-in
    }
    to {
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        animation-timing-function: ease-in
    }
}

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

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in
    }
    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }
    80% {
        transform: perspective(400px) rotateX(-5deg)
    }
    to {
        transform: perspective(400px)
    }
}

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

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        transform: perspective(400px) rotateY(-20deg);
        animation-timing-function: ease-in
    }
    60% {
        transform: perspective(400px) rotateY(10deg);
        opacity: 1
    }
    80% {
        transform: perspective(400px) rotateY(-5deg)
    }
    to {
        transform: perspective(400px)
    }
}

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

@keyframes flipOutX {
    0% {
        transform: perspective(400px)
    }
    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }
    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.flipOutX {
    animation-duration: .75s;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@keyframes flipOutY {
    0% {
        transform: perspective(400px)
    }
    30% {
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }
    to {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

.flipOutY {
    animation-duration: .75s;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipOutY
}

@keyframes lightSpeedIn {
    0% {
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }
    60% {
        transform: skewX(20deg);
        opacity: 1
    }
    80% {
        transform: skewX(-5deg)
    }
    to {
        transform: translateZ(0)
    }
}

.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }
    to {
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in
}

@keyframes rotateIn {
    0% {
        transform-origin: center;
        transform: rotate(-200deg);
        opacity: 0
    }
    to {
        transform-origin: center;
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateIn {
    animation-name: rotateIn
}

@keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
    to {
        transform-origin: left bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft
}

@keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(45deg);
        opacity: 0
    }
    to {
        transform-origin: right bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight
}

@keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }
    to {
        transform-origin: left bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft
}

@keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0
    }
    to {
        transform-origin: right bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight
}

@keyframes rotateOut {
    0% {
        transform-origin: center;
        opacity: 1
    }
    to {
        transform-origin: center;
        transform: rotate(200deg);
        opacity: 0
    }
}

.rotateOut {
    animation-name: rotateOut
}

@keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft
}

@keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        transform-origin: right bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight
}

@keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft
}

@keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight
}

@keyframes hinge {
    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%, 80% {
        transform: rotate(60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
        opacity: 1
    }
    to {
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

.hinge {
    animation-duration: 2s;
    animation-name: hinge
}

@keyframes jackInTheBox {
    0% {
        opacity: 0;
        transform: scale(.1) rotate(30deg);
        transform-origin: center bottom
    }
    50% {
        transform: rotate(-10deg)
    }
    70% {
        transform: rotate(3deg)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

.jackInTheBox {
    animation-name: jackInTheBox
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate(-120deg)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.rollIn {
    animation-name: rollIn
}

@keyframes rollOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate(120deg)
    }
}

.rollOut {
    animation-name: rollOut
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    50% {
        opacity: 1
    }
}

.zoomIn {
    animation-name: zoomIn
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInDown {
    animation-name: zoomInDown
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInLeft {
    animation-name: zoomInLeft
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInRight {
    animation-name: zoomInRight
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInUp {
    animation-name: zoomInUp
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 0
    }
}

.zoomOut {
    animation-name: zoomOut
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutDown {
    animation-name: zoomOutDown
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }
    to {
        opacity: 0;
        transform: scale(.1) translate3d(-2000px, 0, 0);
        transform-origin: left center
    }
}

.zoomOutLeft {
    animation-name: zoomOutLeft
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }
    to {
        opacity: 0;
        transform: scale(.1) translate3d(2000px, 0, 0);
        transform-origin: right center
    }
}

.zoomOutRight {
    animation-name: zoomOutRight
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutUp {
    animation-name: zoomOutUp
}

@keyframes slideInDown {
    0% {
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }
    to {
        transform: translateZ(0)
    }
}

.slideInDown {
    animation-name: slideInDown
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }
    to {
        transform: translateZ(0)
    }
}

.slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    0% {
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }
    to {
        transform: translateZ(0)
    }
}

.slideInRight {
    animation-name: slideInRight
}

@keyframes slideInUp {
    0% {
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }
    to {
        transform: translateZ(0)
    }
}

.slideInUp {
    animation-name: slideInUp
}

@keyframes slideOutDown {
    0% {
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0)
    }
}

.slideOutDown {
    animation-name: slideOutDown
}

@keyframes slideOutLeft {
    0% {
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        transform: translate3d(-100%, 0, 0)
    }
}

.slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideOutRight {
    0% {
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        transform: translate3d(100%, 0, 0)
    }
}

.slideOutRight {
    animation-name: slideOutRight
}

@keyframes slideOutUp {
    0% {
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        transform: translate3d(0, -100%, 0)
    }
}

.slideOutUp {
    animation-name: slideOutUp
}

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

.animated.infinite {
    animation-iteration-count: infinite
}

.animated.delay-1s {
    animation-delay: 1s
}

.animated.delay-2s {
    animation-delay: 2s
}

.animated.delay-3s {
    animation-delay: 3s
}

.animated.delay-4s {
    animation-delay: 4s
}

.animated.delay-5s {
    animation-delay: 5s
}

.animated.fast {
    animation-duration: .8s
}

.animated.faster {
    animation-duration: .5s
}

.animated.slow {
    animation-duration: 2s
}

.animated.slower {
    animation-duration: 3s
}

@media (prefers-reduced-motion) {
    .animated {
        animation: unset !important;
        transition: none !important
    }
}

html {
    -webkit-overflow-scrolling: touch
}

@media only screen and (max-width: 319px) {
    html {
        font-size: 16px
    }
}

@media only screen and (min-width: 320px) and (max-width: 337px) {
    html {
        font-size: 18px
    }
}

@media only screen and (min-width: 338px) and (max-width: 355px) {
    html {
        font-size: 19px
    }
}

@media only screen and (min-width: 356px) and (max-width: 373px) {
    html {
        font-size: 20px
    }
}

@media only screen and (min-width: 374px) and (max-width: 390px) {
    html {
        font-size: 21px
    }
}

@media only screen and (min-width: 391px) and (max-width: 408px) {
    html {
        font-size: 22px
    }
}

@media only screen and (min-width: 409px) and (max-width: 426px) {
    html {
        font-size: 23px
    }
}

@media only screen and (min-width: 427px) and (max-width: 444px) {
    html {
        font-size: 24px
    }
}

@media only screen and (min-width: 445px) and (max-width: 461px) {
    html {
        font-size: 25px
    }
}

@media only screen and (min-width: 462px) and (max-width: 479px) {
    html {
        font-size: 26px
    }
}

@media only screen and (min-width: 480px) and (max-width: 497px) {
    html {
        font-size: 27px
    }
}

@media only screen and (min-width: 498px) and (max-width: 515px) {
    html {
        font-size: 28px
    }
}

@media only screen and (min-width: 516px) and (max-width: 533px) {
    html {
        font-size: 29px
    }
}

@media only screen and (min-width: 534px) and (max-width: 551px) {
    html {
        font-size: 30px
    }
}

@media only screen and (min-width: 552px) and (max-width: 568px) {
    html {
        font-size: 31px
    }
}

@media only screen and (min-width: 569px) {
    html {
        font-size: 32px
    }
}

body {
    font-family: SF Pro Display, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
    line-height: 1.38105;
    font-weight: 400;
    letter-spacing: .011em;
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch
}

* {
    margin: 0;
    padding: 0
}

ul {
    list-style: none
}

button:focus {
    outline: 0
}

::-webkit-scrollbar {
    display: none
}

.flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: stretch;
    align-items: stretch
}

.left {
    float: left
}

.right {
    float: right
}

.align-center {
    text-align: center
}

.clear-both {
    clear: both
}

.display-none {
    display: none
}

.padding-1rem {
    padding: 1rem
}

.shadow {
    box-shadow: 0 .25rem rgba(0, 0, 0, .2)
}

.vertical-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%)
}

.btn {
    padding: 0 .5rem;
    height: 2.5rem;
    line-height: 3rem;
    border: none;
    border-radius: .25rem;
    background-color: #fff;
    text-align: center;
    cursor: pointer
}

.btn.small {
    line-height: 1.8rem;
    height: 2rem
}

.btn.fb {
    background-color: #3b5998;
    border: 1px solid #3a4280;
    color: #fff
}

.btn.blue {
    background-color: #3b5999;
    border: 1px solid #3b5999;
    color: #fff
}

.btn.grey {
    background-color: #f7f7f7;
    border: 1px solid #b6b6b6;
    color: #898989
}

.btn:disabled {
    opacity: .8;
    -webkit-filter: grayscale(1);
    filter: grayscale(1)
}

.btn i {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background-size: contain;
    margin-right: .25rem;
    vertical-align: middle;
    margin-top: -.25rem
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.img-fix-ratio {
    position: relative;
    overflow: hidden
}

.img-fix-ratio > img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0
}

.ratio-16-9 {
    padding-bottom: 56.25%
}

.overlay {
    position: fixed;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .4);
    overflow-y: scroll;
    z-index: 2;
    -webkit-overflow-scrolling: touch
}

.popup {
    background-color: #fff;
    border-radius: .5rem;
    margin: .5rem
}

.vue-typer .custom.caret {
    display: none;
    width: 0 !important
}

.vue-typer {
    font-family: Arial
}

.app-wrapper {
    position: relative
}

body {
    -o-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow-x: hidden
}

body, html {
    background: #000
}

.data-privacy-disclaimer {
    position: relative;
    background: #1ab7ea;
    color: #fff;
    font-size: .68rem;
    line-height: .85rem;
    text-align: left;
    padding: 5px 20px 5px 10px
}

.data-privacy-disclaimer .close-window {
    position: absolute;
    right: .3rem;
    top: .4rem;
    width: .5rem;
    height: auto
}

.data-privacy-disclaimer .link {
    text-decoration: underline
}

#app {
    min-height: 100vh
}

#app.black {
    background: #000
}

#app.white {
    background: #fff
}

.btn-home {
    padding: 0 .3rem
}

#loader {
    position: fixed;
    background: #000;
    z-index: 200;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    text-align: center
}

#loader .loading-gif {
    position: relative;
    width: 10%;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%)
}

.wrap-home {
    background: #000;
    text-align: center;
    padding: 1rem 0;
    background-size: cover;
    position: relative;
    display: inline-block
}

.wrap-home:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .85);
    pointer-events: none;
    z-index: 0
}

.wrap-home .btn-home {
    color: #e0fe00;
    font-size: .6em;
    font-weight: 700;
    text-decoration: none
}

.wrap-home a, .wrap-home p {
    position: relative;
    z-index: 1
}

.wrap-home p {
    color: #fff;
    font-size: .7em;
    padding: 1rem
}

.bounce-enter-active, .bounce-leave-active, .drop-enter-active, .drop-leave-active, .fade-enter-active, .fade-leave-active {
    transition: all .3s
}

.bounce-leave-to, .fade-enter, .fade-leave-to {
    opacity: 0
}

.bounce-enter {
    transform: translateY(100%)
}

.drop-enter, .drop-leave-to {
    transform: translateY(-100%)
}

.sticky {
    position: fixed !important
}

.sticky + .privacy-policy {
    top: 0 !important
}

.header {
    background: #000;
    position: relative;
    width: 100%;
    top: 0;
    z-index: 10
}

.header .inner {
    position: relative;
    height: 3rem;
    text-align: center
}

.header .inner, .header .logo {
    line-height: 3rem;
    vertical-align: middle
}

.header .logo {
    display: inline-block
}

.header .wand-icon {
    margin-right: 4px
}

.header .back-icon {
    position: absolute;
    height: 45%;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%)
}

.header .back-icon-r {
    position: absolute;
    height: 45%;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%)
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 999;
    display: none;
}

.banner-content {
    padding-bottom: 0;
    position: relative;
	padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 6px;
    padding-top: 6px
}

.banner-content .banner-item {
    position: relative;
    border-radius: .3rem;
    overflow: hidden;
    padding-bottom: 51.5%
}

.banner-content .title {
    background: transparent;
    position: absolute;
    bottom: 0;
    padding: .4rem;
    font-size: 1.1rem;
    line-height: 1.25rem;
    text-align: left;
    color: #fff;
    font-weight: 700;
    z-index: 2;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, .9)
}

.banner-content .new-label {
    position: absolute;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .1);
    opacity: 1;
    z-index: 5;
    font-size: .7rem;
    padding: .1rem .2rem;
    background-color: #fff;
    display: inline-block;
    border-radius: .1rem;
    color: #000;
    top: .5rem;
    left: .5rem
}

.page-home {
    background: #000;
    min-height: 100vh
}

.page-home h1 {
    font-family: Dancing Script, cursive;
    font-size: 2em;
    margin-bottom: 1rem;
    color: #bc1625
}

.page-home .text-description {
    color: #898989;
    padding: 0 1rem;
    font-size: .7em;
    font-weight: 300
}

.page-home .select-language {
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #898989;
    background-color: #e1dedb;
    outline: none;
    vertical-align: top;
    font-size: .6em;
    text-align-last: center;
    background-color: #f7f7f7;
    border: 1px solid #e1dedb;
    padding: .2rem .4rem;
    margin-top: 1rem
}

.new-mark {
    position: absolute;
    border-radius: 50%;
    top: .2rem;
    right: .2rem;
    z-index: 5
}

.new-mark img {
    width: 2rem;
    height: 2rem
}

.img-overlay {
    position: absolute;
    width: 102%;
    height: 102%;
    background: linear-gradient(135deg, transparent 20%, rgba(0, 0, 0, .7));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#a6000000", GradientType=0);
    z-index: 1;
    top: 0;
    left: 0
}

.loadMoreContainer {
    text-align: center;
    margin-bottom: 25px;
    margin-top: 5px;
    width: 100%;
}

.button {
    background-color: #ff168f;
    padding: 10px 15px;
    border: 0;
    border-radius: 3px;
    color: #fff;
    font-weight: bold;
}

.wrap-list-content {
    position: relative;
    padding: 10px;
    padding-right: 20px;
    padding-top: 0;
    background: #000
}

.wrap-list-content #content-list {
    width: 100% !important
}

.view-more-wrap {
    text-align: center
}

.view-more {
    display: inline-block;
    font-weight: 700;
    color: #e0fe00;
    background: #222;
    border-radius: .3rem;
    font-size: .9rem;
    padding: .5rem;
    margin-top: 2rem
}

.item-content {
    width: 49%;
    box-sizing: border-box;
    border-radius: .3rem;
    position: relative;
	margin:0.5%
}

.item-content .label{
	position: absolute;
    top: .5rem;
    left: .5rem;
    padding: 0 .25rem;
    font-size: .7rem;
    line-height: 1.25rem;
    display: inline-block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
	color:#fff;
}

.banner-item .label{
	position: absolute;
    top: .5rem;
    left: .5rem;
    padding: 0 .25rem;
    font-size: .7rem;
    line-height: 1.25rem;
    display: inline-block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
	color:#fff;
}

.item-content .img-fix-ratio {
    overflow: hidden
}

.item-content .img-fix-ratio, .item-content .img-fix-ratio img {
    border-radius: .3rem;
    -webkit-clip-path: inset(0 0 0 0 round .3rem);
    clip-path: inset(0 0 0 0 round .3rem)
}

.item-content .img-fix-ratio img {
    position: absolute;
    height: auto;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transition: all 0s linear, opacity .3 linear;
    z-index: 0;
    transition: opacity .5s;
    opacity: 0
}

.item-content .img-fix-ratio img[lazy=loaded] {
    opacity: 1
}

.item-content .img-fix-ratio img[lazy=loaded] {
    border-radius: .3rem;
    -webkit-clip-path: inset(0 0 0 0 round .3rem);
    clip-path: inset(0 0 0 0 round .3rem)
}

.item-content .text-title {
    position: absolute;
    bottom: 0;
    padding: 0.2rem 0.2rem 0.2rem 1rem;
    font-size: .9em;
    line-height: 1rem;
    color: #fff;
    text-align: left;
    font-weight: 700;
    z-index: 2;
    text-shadow: 1px 1px 12px rgba(0, 0, 0, .5)
}

.item-content .img-slide {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    height: 3rem;
}

.item-content .new-label {
    position: absolute;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .1);
    opacity: 1;
    z-index: 1;
    font-size: .7rem;
    line-height: .7rem;
    padding: .2rem;
    background-color: #fff;
    display: inline-block;
    border-radius: .1rem;
    color: #000;
    top: 1rem;
    left: 1rem
}

.page-detail {
    position: relative;
    display: block;
    margin-top: 3rem
}

.page-detail .poem-line b {
    color: #3b5999 !important
}

.page-detail h3 {
    margin: 0 .5rem;
    padding: 1rem 0;
    color: #e0fe00;
    font-size: 1.2rem;
    line-height: 1.2
}

.page-detail .wrap-center, .page-detail h3 {
    text-align: center
}

.page-detail .btn-try-again,.btn-start {
    background: #f54f0d;
    font-size: 1em;
	font-weight:700;
    color: rgb(247, 247, 247);
    text-align: center;
    display: inline-block;
    padding: .3rem 2rem;
    border-radius: .2rem;
    vertical-align: middle;
    margin-top: 6px;
    margin-bottom: 8px;
}

.page-detail .btn-try-again.disabled {
    -webkit-filter: brightness(50%) grayscale(1);
    filter: brightness(50%) grayscale(1)
}

.page-detail .btn-try-again img {
    height: .7em;
    padding-right: .2em
}

.page-detail .content-list-footer {
    background: #000;
    float: left;
    width: 100%;
    margin-top: 1rem
}

.page-detail #result {
    margin-top: 0px;
}

.page-detail .result-text {
    padding: 10px;
    padding-bottom: 5px;
    padding-top: 5px
}

.page-detail .result-text .result-title {
    font-size: .8em;
    color: #000
}

.page-detail .result-text .content-title {
    font-weight: 700;
    font-size: 1.2em;
    line-height: 1.4em;
	text-align:center
}

.page-detail .result-text .content-description {
    color: #555;
    font-size: .9em;
    padding: 5px 0
}

.page-detail .hashtags {
    display: block;
    float: left;
    width: 100%;
    margin: 10px 0 5px
}

.page-detail .hashtag {
    display: inline-block;
    float: left;
    margin-right: 6px;
    color: #0084ff;
    font-size: .8em;
    font-weight: 700
}

@keyframes movingGradient {
    0% {
        background-position: 0 50%
    }
    50% {
        background-position: 100% 50%
    }
    to {
        background-position: 0 50%
    }
}

.page-detail .question {
    margin-top: 1.5rem
}

.page-detail .question .question-text {
    margin: 10px;
    padding: .8rem .3rem;
    text-align: center;
    background: #000;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.8rem;
    font-weight: 700
}

.page-detail .question .question-image {
    padding: 2.5px 10px
}

.page-detail .question:first-of-type {
    margin-top: 0;
    padding-top: 0
}

.page-detail .question:first-of-type .question-image {
    padding-top: 0
}

.page-detail .choices {
    display: -ms-flexbox;
    display: flex;
    padding: 2.5px 7.5px
}

.page-detail .choices.nowrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 0;
    padding-bottom: 0
}

.page-detail .choices.nowrap .choice {
    width: 100%;
    margin-top: 0;
    margin-bottom: .5rem
}

.page-detail .choices.nowrap .choice .choice-text {
    margin-bottom: 10px;
    margin-left: 5px;
    font-size: .85rem
}

.page-detail .choice {
    position: relative;
    display: inline-block;
    width: calc(50% - 7px);
    padding: 0;
    margin: .5px 2.5px;
    border: 1px solid #eee
}

.page-detail .choice .inner {
    border-radius: .1rem;
    padding: 5px
}

.page-detail .choice .inner.picked {
    background-color: #046bfc;
    border-color: #046bfc;
    color: #fff;
    transition: all .3s
}

.page-detail .choice .inner.deactivated {
    opacity: .6
}

.page-detail .choice.choice-no-image {
    width: 100%
}

.page-detail .choice.choice-no-image .choice-text {
    font-size: .85em;
    line-height: 2em;
    margin-top: 0
}

.page-detail .choice .img-wrapper {
    position: relative;
    display: block;
    padding-top: 100%;
    overflow: hidden
}

.page-detail .choice .img-wrapper img {
    position: absolute;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%)
}

.page-detail .choice .choice-text {
    margin-top: 10px;
    padding: 0;
    font-size: .8em;
    font-weight: 700;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto
}

.spinner {
    width: 4rem;
    height: 4rem;
    background-color: #e0fe00;
    border-radius: 100%;
    animation: sk-scaleout 1s infinite ease-in-out;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -2rem 0 0 -2rem
}

@keyframes sk-scaleout {
    0% {
        transform: scale(0)
    }
    to {
        transform: scale(1);
        opacity: 0
    }
}

.share-result {
    padding-left: 0px;
    padding-right: 0px;
	margin-top:5px
}

.wrap-share-canvas {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #fff
}

.wrap-share-canvas .loading .error-icon {
    width: 100%
}

.loading-text {
    font-size: 1rem;
    line-height: 1rem;
    width: 100%;
    height: 300px;
    text-align: center;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.wrap-share-canvas .loading .vue-typer .custom.caret {
    width: 0
}

.wrap-share-canvas .loading .vue-typer .custom.char {
    color: #000
}

.wrap-share-canvas .loading .ad-notice {
    font-size: 1rem
}

.result-text {
    padding: 1rem;
    background-color: #fff
}

.canvas-share {
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent
}

.btn-share {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    vertical-align: middle;
    margin: .3rem 1.5rem;
	font-weight:700;
	box-shadow:0 5px 5px rgba(0,0,0,.19), 0 3px 3px rgba(0,0,0,.23);
	transition: box-shadow .2s linear,-webkit-box-shadow .2s linear,-moz-box-shadow .2s linear
}

.btn-share.disabled {
    -webkit-filter: brightness(50%) grayscale(.5);
    filter: brightness(50%) grayscale(.5)
}

.btn-share img {
    height: 1em;
    margin-right: .4em
}

#photo {
    width: 100%;
    height: 100%;
    display: block
}

#photo .box {
    opacity: .75;
    transition: opacity .75s ease-out
}

.box {
    border-radius: 2px;
    border: 3px solid #00c300 !important;
    cursor: pointer;
    left: -1000px;
    opacity: 0;
    position: absolute;
    top: -1000px;
    animation: grow .5s linear;
    transform-origin: 0 0
}

.img-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    animation-duration: .3s
}

.img-container.not-square {
    width: 50vw;
    height: 50vw
}

#loader-img, .img-container .demo-container, .img-container .demo-frame {
    width: 100%;
    height: 100%
}

@keyframes grow {
    0% {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

.animated-number {
    color: #000;
    font-weight: 700;
    font-size: .9rem;
    padding: .05rem 0;
    display: inline-block
}

.question {
    margin-top: 1.5rem
}

.question .question-text {
    margin: 10px;
    padding: 2rem .3rem;
    text-align: center;
    background: #000;
    color: #fff;
    font-size: 2rem;
    font-weight: 700
}

.question .question-image {
    padding: 2.5px 10px
}

.question:first-of-type {
    margin-top: 0;
    padding-top: 0
}

.question:first-of-type .question-image {
    padding-top: 0
}

.choices {
    display: -ms-flexbox;
    display: flex;
    padding: 2.5px 5px
}

.choice {
    position: relative;
    width: 50%;
    display: inline-block
}

.choice.correct {
    background-color: #046bfc;
    border-color: #046bfc;
    color: #fff;
    transition: all .3s
}

.choice.wrong {
    background-color: red;
    border-color: red;
    color: #fff;
    transition: all .3s;
    animation-duration: 1s;
    animation-name: shake
}

.choice .img-wrapper {
    position: relative;
    display: block;
    padding-top: 100%;
    overflow: hidden
}

.choice .img-wrapper img {
    position: absolute;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%)
}

.choice .choice-text {
    margin-top: 10px;
    padding: 5px;
    font-size: .8em;
    font-weight: 700
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0)
    }
    20%, 80% {
        transform: translate3d(2px, 0, 0)
    }
    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0)
    }
    40%, 60% {
        transform: translate3d(4px, 0, 0)
    }
}

#result_mod_photo {
    margin: 1rem auto;
    display: block
}

#result {
    overflow: hidden
}

#photo .rect {
    opacity: .75;
    transition: opacity .75s ease-out
}

.rect {
    border-radius: 2px;
    border: 3px solid #fff;
    box-shadow: 0 16px 28px 0 rgba(0, 0, 0, .3);
    cursor: pointer;
    left: -1000px;
    opacity: 0;
    position: absolute;
    top: -1000px
}

.arrow {
    border-bottom: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    height: 0;
    width: 0;
    margin-left: -5px;
    bottom: -12px
}

.arrow, input {
    position: absolute;
    left: 50%;
    opacity: 0
}

input {
    border: 0;
    bottom: -42px;
    color: #a64ceb;
    font-size: 15px;
    height: 30px;
    margin-left: -90px;
    outline: none;
    text-align: center;
    width: 180px;
    transition: opacity .35s ease-out
}

#img {
    position: relative;
    margin-left: 2rem;
    margin-top: 1rem
}

