#ripley-mattel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

#ripley-mattel .animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

#ripley-mattel .animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

@-webkit-keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    100% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    40%,
    43% {
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

@keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    100% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    40%,
    43% {
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        -ms-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        -ms-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        -ms-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

#ripley-mattel .bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom
}

@-webkit-keyframes flash {
    0%,
    50%,
    100% {
        opacity: 1
    }
    25%,
    75% {
        opacity: 0
    }
}

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

#ripley-mattel .flash {
    -webkit-animation-name: flash;
    animation-name: flash
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        -ms-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

#ripley-mattel .pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1)
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1)
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1)
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1)
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1)
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        -ms-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1)
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        -ms-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1)
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        -ms-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1)
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        -ms-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1)
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        -ms-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1)
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

#ripley-mattel .rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

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

@keyframes shake {
    0%,
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        -ms-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        -ms-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

#ripley-mattel .shake {
    -webkit-animation-name: shake;
    animation-name: shake
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }
    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        -ms-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        -ms-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        -ms-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        -ms-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }
    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        -ms-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

#ripley-mattel .swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        -ms-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

#ripley-mattel .tada {
    -webkit-animation-name: tada;
    animation-name: tada
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }
    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        -ms-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        -ms-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        -ms-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        -ms-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        -ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }
    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

#ripley-mattel .wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble
}

@-webkit-keyframes bounceIn {
    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes bounceIn {
    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        -ms-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        -ms-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        -ms-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        -ms-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        -ms-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97)
    }
    100% {
        opacity: 1 !important;
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

#ripley-mattel .bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

@-webkit-keyframes bounceInDown {
    0%,
    60%,
    75%,
    90%,
    100% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }
    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInDown {
    0%,
    60%,
    75%,
    90%,
    100% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        -ms-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        -ms-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        -ms-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        -ms-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }
    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

#ripley-mattel .bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {
    0%,
    60%,
    75%,
    90%,
    100% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }
    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInLeft {
    0%,
    60%,
    75%,
    90%,
    100% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        -ms-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        -ms-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        -ms-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        -ms-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }
    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

#ripley-mattel .bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {
    0%,
    60%,
    75%,
    90%,
    100% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }
    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInRight {
    0%,
    60%,
    75%,
    90%,
    100% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        -ms-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        -ms-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        -ms-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        -ms-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }
    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

#ripley-mattel .bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {
    0%,
    60%,
    75%,
    90%,
    100% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInUp {
    0%,
    60%,
    75%,
    90%,
    100% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        -ms-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        -ms-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        -ms-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        -ms-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

#ripley-mattel .bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9)
    }
    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        -ms-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9)
    }
    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        -ms-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        -ms-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
}

#ripley-mattel .bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

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

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

#ripley-mattel .bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

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

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

#ripley-mattel .bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft
}

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

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

#ripley-mattel .bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight
}

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

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

#ripley-mattel .bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

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

#ripley-mattel .fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

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

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

#ripley-mattel .fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        -ms-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

#ripley-mattel .fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

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

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

#ripley-mattel .fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        -ms-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

#ripley-mattel .fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

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

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

#ripley-mattel .fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        -ms-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

#ripley-mattel .fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

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

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

#ripley-mattel .fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        -ms-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

#ripley-mattel .fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

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

#ripley-mattel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

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

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

#ripley-mattel .fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}

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

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        -ms-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

#ripley-mattel .fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig
}

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

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

#ripley-mattel .fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft
}

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

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

#ripley-mattel .fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig
}

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

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

#ripley-mattel .fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight
}

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

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        -ms-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

#ripley-mattel .fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig
}

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

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

#ripley-mattel .fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

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

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

#ripley-mattel .fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -ms-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    100% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

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

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transition-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transition-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transition-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transition-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }
    100% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px)
    }
}

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

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transition-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transition-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transition-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transition-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }
    100% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px)
    }
}

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

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

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }
    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

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

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

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }
    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

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

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

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

#ripley-mattel .lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

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

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

#ripley-mattel .lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        -ms-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1
    }
}

#ripley-mattel .rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        -ms-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1
    }
}

#ripley-mattel .rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        -ms-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1
    }
}

#ripley-mattel .rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        -ms-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1
    }
}

#ripley-mattel .rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        -ms-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1
    }
}

#ripley-mattel .rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }
    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }
    100% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        -ms-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0
    }
}

#ripley-mattel .rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        -ms-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
}

#ripley-mattel .rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        -ms-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

#ripley-mattel .rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        -ms-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

#ripley-mattel .rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        -ms-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0
    }
}

#ripley-mattel .rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight
}

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

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        -ms-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        -ms-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }
    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        -ms-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

#ripley-mattel .hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        -ms-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

#ripley-mattel .rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
    }
}

@keyframes rollOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        -ms-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
    }
}

#ripley-mattel .rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        -ms-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
    50% {
        opacity: 1
    }
}

#ripley-mattel .zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

#ripley-mattel .zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

#ripley-mattel .zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

#ripley-mattel .zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

#ripley-mattel .zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
    100% {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        -ms-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
    100% {
        opacity: 0
    }
}

#ripley-mattel .zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

#ripley-mattel .zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        -ms-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
        transform-origin: left center
    }
}

#ripley-mattel .zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        -ms-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
        transform-origin: right center
    }
}

#ripley-mattel .zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

#ripley-mattel .zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

#ripley-mattel .slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible
    }
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

#ripley-mattel .slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible
    }
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

#ripley-mattel .slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

#ripley-mattel .slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        transform: translateY(100%)
    }
}

#ripley-mattel .slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

#ripley-mattel .slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%)
    }
}

#ripley-mattel .slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

#ripley-mattel .slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp
}

#ripley-mattel * {
    box-sizing: border-box
}

#ripley-mattel article,
#ripley-mattel aside,
#ripley-mattel details,
#ripley-mattel figcaption,
#ripley-mattel figure,
#ripley-mattel footer,
#ripley-mattel header,
#ripley-mattel hgroup,
#ripley-mattel main,
#ripley-mattel nav,
#ripley-mattel section,
#ripley-mattel summary {
    display: block
}

#ripley-mattel audio,
#ripley-mattel canvas,
#ripley-mattel video {
    display: inline-block;
    *display: inline;
    *zoom: 1
}

#ripley-mattel audio:not([controls]) {
    display: none;
    height: 0
}

#ripley-mattel [hidden] {
    display: none
}

#ripley-mattel html {
    font-size: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

#ripley-mattel button,
#ripley-mattel html,
#ripley-mattel input,
#ripley-mattel select,
#ripley-mattel textarea {
    font-family: sans-serif
}

#ripley-mattel body {
    margin: 0
}

#ripley-mattel a:focus {
    outline: thin dotted
}

#ripley-mattel a:active,
#ripley-mattel a:hover {
    outline: 0
}

#ripley-mattel h1 {
    font-size: 2em
}

#ripley-mattel h2 {
    font-size: 1.5em
}

#ripley-mattel h3 {
    font-size: 1.17em
}

#ripley-mattel h4 {
    font-size: 1em
}

#ripley-mattel h5 {
    font-size: .83em
}

#ripley-mattel h6 {
    font-size: .67em
}

#ripley-mattel b,
#ripley-mattel strong {
    font-weight: 700
}

#ripley-mattel dfn {
    font-style: italic
}

#ripley-mattel hr {
    box-sizing: content-box;
    height: 0
}

#ripley-mattel mark {
    background: #ff0;
    color: #000
}

#ripley-mattel p,
#ripley-mattel pre {
    margin: 0 0 1rem
}

#ripley-mattel code,
#ripley-mattel kbd,
#ripley-mattel pre,
#ripley-mattel samp {
    font-family: monospace, serif;
    _font-family: 'courier new', monospace;
    font-size: 1em
}

#ripley-mattel pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word
}

#ripley-mattel q {
    quotes: none
}

#ripley-mattel q:after,
#ripley-mattel q:before {
    content: '';
    content: none
}

#ripley-mattel small {
    font-size: 80%
}

#ripley-mattel sub,
#ripley-mattel sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

#ripley-mattel sup {
    top: -.5em
}

#ripley-mattel sub {
    bottom: -.25em
}

#ripley-mattel dl,
#ripley-mattel menu,
#ripley-mattel ol,
#ripley-mattel ul {
    margin: 0
}

#ripley-mattel dd {
    margin: 0 0 0 40px
}

#ripley-mattel menu,
#ripley-mattel ol,
#ripley-mattel ul {
    padding: 0
}

#ripley-mattel nav ol,
#ripley-mattel nav ul {
    list-style: none;
    list-style-image: none
}

#ripley-mattel img {
    border: 0;
    -ms-interpolation-mode: bicubic
}

#ripley-mattel svg:not(:root) {
    overflow: hidden
}

#ripley-mattel figure,
#ripley-mattel form {
    margin: 0
}

#ripley-mattel button,
#ripley-mattel input,
#ripley-mattel select,
#ripley-mattel textarea {
    font-size: 100%;
    margin: 0;
    vertical-align: baseline;
    *vertical-align: middle
}

#ripley-mattel button,
#ripley-mattel input {
    line-height: normal
}

#ripley-mattel button,
#ripley-mattel select {
    text-transform: none
}

#ripley-mattel button,
#ripley-mattel html input[type="button"],
#ripley-mattel input[type="reset"],
#ripley-mattel input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
    *overflow: visible
}

#ripley-mattel button[disabled],
#ripley-mattel html input[disabled] {
    cursor: not-allowed
}

#ripley-mattel input[type="checkbox"],
#ripley-mattel input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
    *height: 13px;
    *width: 13px
}

#ripley-mattel input[type="search"] {
    -webkit-appearance: textfield
}

#ripley-mattel input[type="search"]::-webkit-search-cancel-button,
#ripley-mattel input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

#ripley-mattel button::-moz-focus-inner,
#ripley-mattel input::-moz-focus-inner {
    border: 0;
    padding: 0
}

#ripley-mattel textarea {
    overflow: auto;
    vertical-align: top
}

#ripley-mattel table {
    border-collapse: collapse;
    border-spacing: 0
}

#ripley-mattel button,
#ripley-mattel html,
#ripley-mattel input,
#ripley-mattel select,
#ripley-mattel textarea {
    color: #222
}

#ripley-mattel body {
    font-size: 1em;
    line-height: 1.5
}

#ripley-mattel::-moz-selection {
    background: #b3d4fc;
    text-shadow: none
}

#ripley-mattel::selection {
    background: #b3d4fc;
    text-shadow: none
}

#ripley-mattel hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0
}

#ripley-mattel img {
    vertical-align: middle
}

#ripley-mattel fieldset {
    border: 0;
    margin: 0;
    padding: 0
}

#ripley-mattel textarea {
    resize: vertical
}

#ripley-mattel .chromeframe {
    margin: .2em 0;
    background: #ccc;
    color: #000;
    padding: .2em 0
}

#ripley-mattel pre {
    overflow: auto
}

#ripley-mattel code,
#ripley-mattel kbd,
#ripley-mattel pre,
#ripley-mattel samp {
    font-family: monospace, monospace;
    font-size: 1em
}

#ripley-mattel code,
#ripley-mattel kbd,
#ripley-mattel pre,
#ripley-mattel samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace
}

#ripley-mattel code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    white-space: nowrap;
    border-radius: 4px
}

#ripley-mattel kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #ffffff;
    background-color: #333333;
    border-radius: 3px;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25)
}

#ripley-mattel pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.428571429;
    word-break: break-all;
    word-wrap: break-word;
    color: #333333;
    background-color: #f5f5f5;
    border: 1px solid #cccccc;
    border-radius: 4px
}

#ripley-mattel pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0
}

@media print {
    #ripley-mattel * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important
    }
    #ripley-mattel a,
    #ripley-mattel a:visited {
        text-decoration: underline
    }
    #ripley-mattel a[href]:after {
        content: " (" attr(href) ")"
    }
    #ripley-mattel abbr[title]:after {
        content: " (" attr(title) ")"
    }
    #ripley-mattel .ir a:after,
    #ripley-mattel a[href^="javascript:"]:after,
    #ripley-mattel a[href^="#"]:after {
        content: ""
    }
    #ripley-mattel blockquote,
    #ripley-mattel pre {
        border: 1px solid #999;
        page-break-inside: avoid
    }
    #ripley-mattel thead {
        display: table-header-group
    }
    #ripley-mattel img,
    #ripley-mattel tr {
        page-break-inside: avoid
    }
    #ripley-mattel img {
        max-width: 100% !important
    }
    @page {
        #ripley-mattel {
            margin: .5cm
        }
    }
    #ripley-mattel h2,
    #ripley-mattel h3,
    #ripley-mattel p {
        orphans: 3;
        widows: 3
    }
    #ripley-mattel h2,
    #ripley-mattel h3 {
        page-break-after: avoid
    }
}

#ripley-mattel .container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 1110px
}

@media (max-width: 1110px) {
    #ripley-mattel .container {
        width: 100%
    }
}

#ripley-mattel .container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px
}

#ripley-mattel .row {
    margin-left: -15px;
    margin-right: -15px
}

#ripley-mattel .col-xs-1,
#ripley-mattel .col-sm-1,
#ripley-mattel .col-md-1,
#ripley-mattel .col-lg-1,
#ripley-mattel .col-xs-2,
#ripley-mattel .col-sm-2,
#ripley-mattel .col-md-2,
#ripley-mattel .col-lg-2,
#ripley-mattel .col-xs-3,
#ripley-mattel .col-sm-3,
#ripley-mattel .col-md-3,
#ripley-mattel .col-lg-3,
#ripley-mattel .col-xs-4,
#ripley-mattel .col-sm-4,
#ripley-mattel .col-md-4,
#ripley-mattel .col-lg-4,
#ripley-mattel .col-xs-5,
#ripley-mattel .col-sm-5,
#ripley-mattel .col-md-5,
#ripley-mattel .col-lg-5,
#ripley-mattel .col-xs-6,
#ripley-mattel .col-sm-6,
#ripley-mattel .col-md-6,
#ripley-mattel .col-lg-6,
#ripley-mattel .col-xs-7,
#ripley-mattel .col-sm-7,
#ripley-mattel .col-md-7,
#ripley-mattel .col-lg-7,
#ripley-mattel .col-xs-8,
#ripley-mattel .col-sm-8,
#ripley-mattel .col-md-8,
#ripley-mattel .col-lg-8,
#ripley-mattel .col-xs-9,
#ripley-mattel .col-sm-9,
#ripley-mattel .col-md-9,
#ripley-mattel .col-lg-9,
#ripley-mattel .col-xs-10,
#ripley-mattel .col-sm-10,
#ripley-mattel .col-md-10,
#ripley-mattel .col-lg-10,
#ripley-mattel .col-xs-11,
#ripley-mattel .col-sm-11,
#ripley-mattel .col-md-11,
#ripley-mattel .col-lg-11,
#ripley-mattel .col-xs-12,
#ripley-mattel .col-sm-12,
#ripley-mattel .col-md-12,
#ripley-mattel .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px
}

#ripley-mattel .col-xs-1,
#ripley-mattel .col-xs-2,
#ripley-mattel .col-xs-3,
#ripley-mattel .col-xs-4,
#ripley-mattel .col-xs-5,
#ripley-mattel .col-xs-6,
#ripley-mattel .col-xs-7,
#ripley-mattel .col-xs-8,
#ripley-mattel .col-xs-9,
#ripley-mattel .col-xs-10,
#ripley-mattel .col-xs-11,
#ripley-mattel .col-xs-12 {
    float: left
}

#ripley-mattel .col-xs-12 {
    width: 100%
}

#ripley-mattel .col-xs-11 {
    width: 91.66666667%
}

#ripley-mattel .col-xs-10 {
    width: 83.33333333%
}

#ripley-mattel .col-xs-9 {
    width: 75%
}

#ripley-mattel .col-xs-8 {
    width: 66.66666667%
}

#ripley-mattel .col-xs-7 {
    width: 58.33333333%
}

#ripley-mattel .col-xs-6 {
    width: 50%
}

#ripley-mattel .col-xs-5 {
    width: 41.66666667%
}

#ripley-mattel .col-xs-4 {
    width: 33.33333333%
}

#ripley-mattel .col-xs-3 {
    width: 25%
}

#ripley-mattel .col-xs-2 {
    width: 16.66666667%
}

#ripley-mattel .col-xs-1 {
    width: 8.33333333%
}

#ripley-mattel .col-xs-pull-12 {
    right: 100%
}

#ripley-mattel .col-xs-pull-11 {
    right: 91.66666667%
}

#ripley-mattel .col-xs-pull-10 {
    right: 83.33333333%
}

#ripley-mattel .col-xs-pull-9 {
    right: 75%
}

#ripley-mattel .col-xs-pull-8 {
    right: 66.66666667%
}

#ripley-mattel .col-xs-pull-7 {
    right: 58.33333333%
}

#ripley-mattel .col-xs-pull-6 {
    right: 50%
}

#ripley-mattel .col-xs-pull-5 {
    right: 41.66666667%
}

#ripley-mattel .col-xs-pull-4 {
    right: 33.33333333%
}

#ripley-mattel .col-xs-pull-3 {
    right: 25%
}

#ripley-mattel .col-xs-pull-2 {
    right: 16.66666667%
}

#ripley-mattel .col-xs-pull-1 {
    right: 8.33333333%
}

#ripley-mattel .col-xs-pull-0 {
    right: auto
}

#ripley-mattel .col-xs-push-12 {
    left: 100%
}

#ripley-mattel .col-xs-push-11 {
    left: 91.66666667%
}

#ripley-mattel .col-xs-push-10 {
    left: 83.33333333%
}

#ripley-mattel .col-xs-push-9 {
    left: 75%
}

#ripley-mattel .col-xs-push-8 {
    left: 66.66666667%
}

#ripley-mattel .col-xs-push-7 {
    left: 58.33333333%
}

#ripley-mattel .col-xs-push-6 {
    left: 50%
}

#ripley-mattel .col-xs-push-5 {
    left: 41.66666667%
}

#ripley-mattel .col-xs-push-4 {
    left: 33.33333333%
}

#ripley-mattel .col-xs-push-3 {
    left: 25%
}

#ripley-mattel .col-xs-push-2 {
    left: 16.66666667%
}

#ripley-mattel .col-xs-push-1 {
    left: 8.33333333%
}

#ripley-mattel .col-xs-push-0 {
    left: auto
}

#ripley-mattel .col-xs-offset-12 {
    margin-left: 100%
}

#ripley-mattel .col-xs-offset-11 {
    margin-left: 91.66666667%
}

#ripley-mattel .col-xs-offset-10 {
    margin-left: 83.33333333%
}

#ripley-mattel .col-xs-offset-9 {
    margin-left: 75%
}

#ripley-mattel .col-xs-offset-8 {
    margin-left: 66.66666667%
}

#ripley-mattel .col-xs-offset-7 {
    margin-left: 58.33333333%
}

#ripley-mattel .col-xs-offset-6 {
    margin-left: 50%
}

#ripley-mattel .col-xs-offset-5 {
    margin-left: 41.66666667%
}

#ripley-mattel .col-xs-offset-4 {
    margin-left: 33.33333333%
}

#ripley-mattel .col-xs-offset-3 {
    margin-left: 25%
}

#ripley-mattel .col-xs-offset-2 {
    margin-left: 16.66666667%
}

#ripley-mattel .col-xs-offset-1 {
    margin-left: 8.33333333%
}

#ripley-mattel .col-xs-offset-0 {
    margin-left: 0%
}

@media (min-width: 768px) {
    #ripley-mattel .col-sm-1,
    #ripley-mattel .col-sm-2,
    #ripley-mattel .col-sm-3,
    #ripley-mattel .col-sm-4,
    #ripley-mattel .col-sm-5,
    #ripley-mattel .col-sm-6,
    #ripley-mattel .col-sm-7,
    #ripley-mattel .col-sm-8,
    #ripley-mattel .col-sm-9,
    #ripley-mattel .col-sm-10,
    #ripley-mattel .col-sm-11,
    #ripley-mattel .col-sm-12 {
        float: left
    }
    #ripley-mattel .col-sm-12 {
        width: 100%
    }
    #ripley-mattel .col-sm-11 {
        width: 91.66666667%
    }
    #ripley-mattel .col-sm-10 {
        width: 83.33333333%
    }
    #ripley-mattel .col-sm-9 {
        width: 75%
    }
    #ripley-mattel .col-sm-8 {
        width: 66.66666667%
    }
    #ripley-mattel .col-sm-7 {
        width: 58.33333333%
    }
    #ripley-mattel .col-sm-6 {
        width: 50%
    }
    #ripley-mattel .col-sm-5 {
        width: 41.66666667%
    }
    #ripley-mattel .col-sm-4 {
        width: 33.33333333%
    }
    #ripley-mattel .col-sm-3 {
        width: 25%
    }
    #ripley-mattel .col-sm-2 {
        width: 16.66666667%
    }
    #ripley-mattel .col-sm-1 {
        width: 8.33333333%
    }
    #ripley-mattel .col-sm-pull-12 {
        right: 100%
    }
    #ripley-mattel .col-sm-pull-11 {
        right: 91.66666667%
    }
    #ripley-mattel .col-sm-pull-10 {
        right: 83.33333333%
    }
    #ripley-mattel .col-sm-pull-9 {
        right: 75%
    }
    #ripley-mattel .col-sm-pull-8 {
        right: 66.66666667%
    }
    #ripley-mattel .col-sm-pull-7 {
        right: 58.33333333%
    }
    #ripley-mattel .col-sm-pull-6 {
        right: 50%
    }
    #ripley-mattel .col-sm-pull-5 {
        right: 41.66666667%
    }
    #ripley-mattel .col-sm-pull-4 {
        right: 33.33333333%
    }
    #ripley-mattel .col-sm-pull-3 {
        right: 25%
    }
    #ripley-mattel .col-sm-pull-2 {
        right: 16.66666667%
    }
    #ripley-mattel .col-sm-pull-1 {
        right: 8.33333333%
    }
    #ripley-mattel .col-sm-pull-0 {
        right: auto
    }
    #ripley-mattel .col-sm-push-12 {
        left: 100%
    }
    #ripley-mattel .col-sm-push-11 {
        left: 91.66666667%
    }
    #ripley-mattel .col-sm-push-10 {
        left: 83.33333333%
    }
    #ripley-mattel .col-sm-push-9 {
        left: 75%
    }
    #ripley-mattel .col-sm-push-8 {
        left: 66.66666667%
    }
    #ripley-mattel .col-sm-push-7 {
        left: 58.33333333%
    }
    #ripley-mattel .col-sm-push-6 {
        left: 50%
    }
    #ripley-mattel .col-sm-push-5 {
        left: 41.66666667%
    }
    #ripley-mattel .col-sm-push-4 {
        left: 33.33333333%
    }
    #ripley-mattel .col-sm-push-3 {
        left: 25%
    }
    #ripley-mattel .col-sm-push-2 {
        left: 16.66666667%
    }
    #ripley-mattel .col-sm-push-1 {
        left: 8.33333333%
    }
    #ripley-mattel .col-sm-push-0 {
        left: auto
    }
    #ripley-mattel .col-sm-offset-12 {
        margin-left: 100%
    }
    #ripley-mattel .col-sm-offset-11 {
        margin-left: 91.66666667%
    }
    #ripley-mattel .col-sm-offset-10 {
        margin-left: 83.33333333%
    }
    #ripley-mattel .col-sm-offset-9 {
        margin-left: 75%
    }
    #ripley-mattel .col-sm-offset-8 {
        margin-left: 66.66666667%
    }
    #ripley-mattel .col-sm-offset-7 {
        margin-left: 58.33333333%
    }
    #ripley-mattel .col-sm-offset-6 {
        margin-left: 50%
    }
    #ripley-mattel .col-sm-offset-5 {
        margin-left: 41.66666667%
    }
    #ripley-mattel .col-sm-offset-4 {
        margin-left: 33.33333333%
    }
    #ripley-mattel .col-sm-offset-3 {
        margin-left: 25%
    }
    #ripley-mattel .col-sm-offset-2 {
        margin-left: 16.66666667%
    }
    #ripley-mattel .col-sm-offset-1 {
        margin-left: 8.33333333%
    }
    #ripley-mattel .col-sm-offset-0 {
        margin-left: 0%
    }
}

@media (min-width: 992px) {
    #ripley-mattel .col-md-1,
    #ripley-mattel .col-md-2,
    #ripley-mattel .col-md-3,
    #ripley-mattel .col-md-4,
    #ripley-mattel .col-md-5,
    #ripley-mattel .col-md-6,
    #ripley-mattel .col-md-7,
    #ripley-mattel .col-md-8,
    #ripley-mattel .col-md-9,
    #ripley-mattel .col-md-10,
    #ripley-mattel .col-md-11,
    #ripley-mattel .col-md-12 {
        float: left
    }
    #ripley-mattel .col-md-12 {
        width: 100%
    }
    #ripley-mattel .col-md-11 {
        width: 91.66666667%
    }
    #ripley-mattel .col-md-10 {
        width: 83.33333333%
    }
    #ripley-mattel .col-md-9 {
        width: 75%
    }
    #ripley-mattel .col-md-8 {
        width: 66.66666667%
    }
    #ripley-mattel .col-md-7 {
        width: 58.33333333%
    }
    #ripley-mattel .col-md-6 {
        width: 50%
    }
    #ripley-mattel .col-md-5 {
        width: 41.66666667%
    }
    #ripley-mattel .col-md-4 {
        width: 33.33333333%
    }
    #ripley-mattel .col-md-3 {
        width: 25%
    }
    #ripley-mattel .col-md-2 {
        width: 16.66666667%
    }
    #ripley-mattel .col-md-1 {
        width: 8.33333333%
    }
    #ripley-mattel .col-md-pull-12 {
        right: 100%
    }
    #ripley-mattel .col-md-pull-11 {
        right: 91.66666667%
    }
    #ripley-mattel .col-md-pull-10 {
        right: 83.33333333%
    }
    #ripley-mattel .col-md-pull-9 {
        right: 75%
    }
    #ripley-mattel .col-md-pull-8 {
        right: 66.66666667%
    }
    #ripley-mattel .col-md-pull-7 {
        right: 58.33333333%
    }
    #ripley-mattel .col-md-pull-6 {
        right: 50%
    }
    #ripley-mattel .col-md-pull-5 {
        right: 41.66666667%
    }
    #ripley-mattel .col-md-pull-4 {
        right: 33.33333333%
    }
    #ripley-mattel .col-md-pull-3 {
        right: 25%
    }
    #ripley-mattel .col-md-pull-2 {
        right: 16.66666667%
    }
    #ripley-mattel .col-md-pull-1 {
        right: 8.33333333%
    }
    #ripley-mattel .col-md-pull-0 {
        right: auto
    }
    #ripley-mattel .col-md-push-12 {
        left: 100%
    }
    #ripley-mattel .col-md-push-11 {
        left: 91.66666667%
    }
    #ripley-mattel .col-md-push-10 {
        left: 83.33333333%
    }
    #ripley-mattel .col-md-push-9 {
        left: 75%
    }
    #ripley-mattel .col-md-push-8 {
        left: 66.66666667%
    }
    #ripley-mattel .col-md-push-7 {
        left: 58.33333333%
    }
    #ripley-mattel .col-md-push-6 {
        left: 50%
    }
    #ripley-mattel .col-md-push-5 {
        left: 41.66666667%
    }
    #ripley-mattel .col-md-push-4 {
        left: 33.33333333%
    }
    #ripley-mattel .col-md-push-3 {
        left: 25%
    }
    #ripley-mattel .col-md-push-2 {
        left: 16.66666667%
    }
    #ripley-mattel .col-md-push-1 {
        left: 8.33333333%
    }
    #ripley-mattel .col-md-push-0 {
        left: auto
    }
    #ripley-mattel .col-md-offset-12 {
        margin-left: 100%
    }
    #ripley-mattel .col-md-offset-11 {
        margin-left: 91.66666667%
    }
    #ripley-mattel .col-md-offset-10 {
        margin-left: 83.33333333%
    }
    #ripley-mattel .col-md-offset-9 {
        margin-left: 75%
    }
    #ripley-mattel .col-md-offset-8 {
        margin-left: 66.66666667%
    }
    #ripley-mattel .col-md-offset-7 {
        margin-left: 58.33333333%
    }
    #ripley-mattel .col-md-offset-6 {
        margin-left: 50%
    }
    #ripley-mattel .col-md-offset-5 {
        margin-left: 41.66666667%
    }
    #ripley-mattel .col-md-offset-4 {
        margin-left: 33.33333333%
    }
    #ripley-mattel .col-md-offset-3 {
        margin-left: 25%
    }
    #ripley-mattel .col-md-offset-2 {
        margin-left: 16.66666667%
    }
    #ripley-mattel .col-md-offset-1 {
        margin-left: 8.33333333%
    }
    #ripley-mattel .col-md-offset-0 {
        margin-left: 0%
    }
}

@media (min-width: 1200px) {
    #ripley-mattel .col-lg-1,
    #ripley-mattel .col-lg-2,
    #ripley-mattel .col-lg-3,
    #ripley-mattel .col-lg-4,
    #ripley-mattel .col-lg-5,
    #ripley-mattel .col-lg-6,
    #ripley-mattel .col-lg-7,
    #ripley-mattel .col-lg-8,
    #ripley-mattel .col-lg-9,
    #ripley-mattel .col-lg-10,
    #ripley-mattel .col-lg-11,
    #ripley-mattel .col-lg-12 {
        float: left
    }
    #ripley-mattel .col-lg-12 {
        width: 100%
    }
    #ripley-mattel .col-lg-11 {
        width: 91.66666667%
    }
    #ripley-mattel .col-lg-10 {
        width: 83.33333333%
    }
    #ripley-mattel .col-lg-9 {
        width: 75%
    }
    #ripley-mattel .col-lg-8 {
        width: 66.66666667%
    }
    #ripley-mattel .col-lg-7 {
        width: 58.33333333%
    }
    #ripley-mattel .col-lg-6 {
        width: 50%
    }
    #ripley-mattel .col-lg-5 {
        width: 41.66666667%
    }
    #ripley-mattel .col-lg-4 {
        width: 33.33333333%
    }
    #ripley-mattel .col-lg-3 {
        width: 25%
    }
    #ripley-mattel .col-lg-2 {
        width: 16.66666667%
    }
    #ripley-mattel .col-lg-1 {
        width: 8.33333333%
    }
    #ripley-mattel .col-lg-pull-12 {
        right: 100%
    }
    #ripley-mattel .col-lg-pull-11 {
        right: 91.66666667%
    }
    #ripley-mattel .col-lg-pull-10 {
        right: 83.33333333%
    }
    #ripley-mattel .col-lg-pull-9 {
        right: 75%
    }
    #ripley-mattel .col-lg-pull-8 {
        right: 66.66666667%
    }
    #ripley-mattel .col-lg-pull-7 {
        right: 58.33333333%
    }
    #ripley-mattel .col-lg-pull-6 {
        right: 50%
    }
    #ripley-mattel .col-lg-pull-5 {
        right: 41.66666667%
    }
    #ripley-mattel .col-lg-pull-4 {
        right: 33.33333333%
    }
    #ripley-mattel .col-lg-pull-3 {
        right: 25%
    }
    #ripley-mattel .col-lg-pull-2 {
        right: 16.66666667%
    }
    #ripley-mattel .col-lg-pull-1 {
        right: 8.33333333%
    }
    #ripley-mattel .col-lg-pull-0 {
        right: auto
    }
    #ripley-mattel .col-lg-push-12 {
        left: 100%
    }
    #ripley-mattel .col-lg-push-11 {
        left: 91.66666667%
    }
    #ripley-mattel .col-lg-push-10 {
        left: 83.33333333%
    }
    #ripley-mattel .col-lg-push-9 {
        left: 75%
    }
    #ripley-mattel .col-lg-push-8 {
        left: 66.66666667%
    }
    #ripley-mattel .col-lg-push-7 {
        left: 58.33333333%
    }
    #ripley-mattel .col-lg-push-6 {
        left: 50%
    }
    #ripley-mattel .col-lg-push-5 {
        left: 41.66666667%
    }
    #ripley-mattel .col-lg-push-4 {
        left: 33.33333333%
    }
    #ripley-mattel .col-lg-push-3 {
        left: 25%
    }
    #ripley-mattel .col-lg-push-2 {
        left: 16.66666667%
    }
    #ripley-mattel .col-lg-push-1 {
        left: 8.33333333%
    }
    #ripley-mattel .col-lg-push-0 {
        left: auto
    }
    #ripley-mattel .col-lg-offset-12 {
        margin-left: 100%
    }
    #ripley-mattel .col-lg-offset-11 {
        margin-left: 91.66666667%
    }
    #ripley-mattel .col-lg-offset-10 {
        margin-left: 83.33333333%
    }
    #ripley-mattel .col-lg-offset-9 {
        margin-left: 75%
    }
    #ripley-mattel .col-lg-offset-8 {
        margin-left: 66.66666667%
    }
    #ripley-mattel .col-lg-offset-7 {
        margin-left: 58.33333333%
    }
    #ripley-mattel .col-lg-offset-6 {
        margin-left: 50%
    }
    #ripley-mattel .col-lg-offset-5 {
        margin-left: 41.66666667%
    }
    #ripley-mattel .col-lg-offset-4 {
        margin-left: 33.33333333%
    }
    #ripley-mattel .col-lg-offset-3 {
        margin-left: 25%
    }
    #ripley-mattel .col-lg-offset-2 {
        margin-left: 16.66666667%
    }
    #ripley-mattel .col-lg-offset-1 {
        margin-left: 8.33333333%
    }
    #ripley-mattel .col-lg-offset-0 {
        margin-left: 0%
    }
}

#ripley-mattel .clearfix:before,
#ripley-mattel .clearfix:after,
#ripley-mattel .container:before,
#ripley-mattel .container:after,
#ripley-mattel .container-fluid:before,
#ripley-mattel .container-fluid:after,
#ripley-mattel .row:before,
#ripley-mattel .row:after {
    content: " ";
    display: table
}

#ripley-mattel .clearfix:after,
#ripley-mattel .container:after,
#ripley-mattel .container-fluid:after,
#ripley-mattel .row:after {
    clear: both
}

#ripley-mattel .center-block {
    display: block;
    margin-left: auto;
    margin-right: auto
}

#ripley-mattel .pull-right {
    float: right !important
}

#ripley-mattel .pull-left {
    float: left !important
}

#ripley-mattel .hide {
    display: none !important
}

#ripley-mattel .show {
    display: block !important
}

#ripley-mattel .invisible {
    visibility: hidden
}

#ripley-mattel .text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

#ripley-mattel .hidden {
    display: none !important
}

#ripley-mattel .affix {
    position: fixed
}

body {
    margin: 0
}

#ripley-mattel *:focus {
    outline: none
}

#ripley-mattel button {
    font-family: "Montserrat", Helvetica, Arial, sans-serif
}

#ripley-mattel ul {
    margin-left: 0
}

#ripley-mattel .only-on-mobile {
    display: none !important
}

#ripley-mattel .to-the-left {
    float: left
}

#ripley-mattel .to-the-right {
    float: right
}

#ripley-mattel .align-left {
    text-align: left
}

#ripley-mattel .align-center {
    text-align: center
}

#ripley-mattel .align-right {
    text-align: right
}

#ripley-mattel .relative-position {
    position: relative
}

#ripley-mattel .ohidden {
    overflow: hidden
}

#ripley-mattel .inline-list {
    display: table;
    width: 100%
}

#ripley-mattel .inline-list li {
    display: table-cell;
    vertical-align: middle
}

#ripley-mattel .inline-list.floated {
    display: block;
    overflow: hidden
}

#ripley-mattel .inline-list.floated li {
    display: block;
    float: left;
    margin-right: 10px
}

#ripley-mattel .block-element {
    display: block
}

#ripley-mattel .inline-element {
    display: inline-block;
    vertical-align: middle
}

#ripley-mattel .table-element {
    display: table;
    width: 100%
}

#ripley-mattel .table-element .csm-table-cell {
    display: table-cell
}

#ripley-mattel pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc
}

#ripley-mattel .button-reset,
#ripley-mattel .btn,
#ripley-mattel .close-lightbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border-radius: 0;
    border: 0;
    outline: 0;
    padding: 0
}

#ripley-mattel .border {
    border: 1px solid
}

#ripley-mattel .elastic-img {
    width: 100%;
    height: auto
}

#ripley-mattel .elastic-img-limit {
    max-width: 100%;
    height: auto
}

#ripley-mattel .bordered-img {
    background-color: #FFF;
    padding: 5px
}

#ripley-mattel .fly-img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0
}

#ripley-mattel .centered-img {
    display: block;
    margin: 0 auto
}

#ripley-mattel .centered-element {
    display: block !important;
    margin: 0 auto
}

#ripley-mattel .clearfix {
    *zoom: 1
}

#ripley-mattel .clearfix:before,
#ripley-mattel .clearfix:after {
    content: " ";
    display: table
}

#ripley-mattel .clearfix:after {
    clear: both
}

#ripley-mattel .clear {
    clear: both
}

#ripley-mattel .line-botom {
    border-bottom: 1px solid;
    padding-bottom: 20px;
    margin-bottom: 20px
}

#ripley-mattel .small-text {
    font-size: 12px
}

#ripley-mattel .full-container {
    clear: both;
    display: block;
    margin-bottom: 20px;
    width: 100%
}

@media (max-width: 991px) {
    #ripley-mattel .hide-if-mobile {
        display: none !important
    }
}

@media only screen and (max-width: 767px) {
    #ripley-mattel .only-on-mobile {
        display: block !important
    }
    #ripley-mattel .full-if-mobile {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important
    }
}

#ripley-mattel .btn {
    background-color: transparent;
    border: 2px solid #ffffff;
    border-radius: 10px;
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.42857143;
    padding: 10px 40px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 300ms;
    vertical-align: middle
}

@media (max-width: 767px) {
    #ripley-mattel .btn {
        font-size: 12px
    }
}

#ripley-mattel span.btn:hover {
    background-color: transparent;
    color: #ffffff
}
#ripley-mattel .btn:hover {
    background-color: #ffffff;
    color: #000000
}

#ripley-mattel .btn.btn-blue {
    color: #328ACA;
    border-color: #328ACA
}

#ripley-mattel .btn.btn-blue:hover {
    background-color: #328ACA;
    color: #ffffff
}

#ripley-mattel .btn.btn-pink {
    color: #E9519D;
    border-color: #E9519D
}

#ripley-mattel .btn.btn-pink:hover {
    background-color: #E9519D;
    color: #ffffff
}

#ripley-mattel .btn.btn-red {
    color: #D02627;
    border-color: #D02627
}

#ripley-mattel .btn.btn-red:hover {
    background-color: #D02627;
    color: #ffffff
}

#ripley-mattel .btn.btn-black {
    color: #000000;
    border-color: #000000
}

#ripley-mattel .btn.btn-black:hover {
    background-color: #000000;
    color: #ffffff
}

#ripley-mattel .content-btn {
    clear: both;
    padding: 20px 0;
    margin-bottom: 40px;
    text-align: center
}

#ripley-mattel {
    font-family: "Open Sans", "Montserrat", Helvetica, Arial, sans-serif;
    font-size: 14px
}

#ripley-mattel h1,
#ripley-mattel h2,
#ripley-mattel h3,
#ripley-mattel h4,
#ripley-mattel h5,
#ripley-mattel h6 {
    margin-top: 0;
    line-height: 120%
}

#ripley-mattel h1 {
    font-size: 36px
}

#ripley-mattel h2 {
    font-size: 34px;
    font-weight: 300
}

#ripley-mattel h3 {
    font-size: 18px
}

#ripley-mattel h4 {
    font-size: 16px
}

#ripley-mattel h5 {
    font-size: 14px
}

#ripley-mattel h6 {
    font-size: 14px
}

#ripley-mattel .title-bold {
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    margin-right: 15px
}

#ripley-mattel .title-upper {
    text-transform: uppercase;
    font-size: 16px;
    color: #777777;
    margin-bottom: 20px;
    display: block
}

#ripley-mattel p {
	font-family: "Open Sans";
    font-size: 14px;
    line-height: 140%;
    margin: 0 0 10px
}

#ripley-mattel a {
    text-decoration: underline;
    font-weight: 400
}

#ripley-mattel a:focus {
    outline: 0 none
}

#ripley-mattel .bold {
    font-weight: 700
}

#ripley-mattel .slider-container {
    padding: 30px 48px
}

@media (max-width: 640px) {
    #ripley-mattel .slider-container {
        padding: 15px 0
    }
}

#ripley-mattel .slick-list {
    padding: 0 !important
}

#ripley-mattel .slick-track {
    margin: 0 auto
}

#ripley-mattel .slick-prev,
#ripley-mattel .slick-next {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    z-index: 99;
    width: 40px;
    height: 40px;
    background: url("../images/iconos/arrows-slider.svg") no-repeat left top;
    text-indent: -9999px;
    border-radius: 0;
    border: none
}

#ripley-mattel .slick-prev:hover,
#ripley-mattel .slick-next:hover {
    opacity: 0.8
}

#ripley-mattel .slick-prev {
    left: -49px;
    background-position: -100px 0
}

#ripley-mattel .slick-next {
    right: -48px;
    background-position: -150px 0
}

#ripley-mattel .slick-dots {
    margin-top: 10px;
    width: 100%;
    text-align: center
}

#ripley-mattel .slick-dots li {
    display: inline-block
}

#ripley-mattel .slick-dots li button {
    background-color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-size: 0;
    line-height: 0;
    border-radius: 100%;
    margin: 0 4px;
    height: 10px;
    width: 10px;
    padding: 0;
    border: none
}

#ripley-mattel .slick-dots li.slick-active button {
    background-color: #cccccc
}

#ripley-mattel .slider-blue .slick-prev {
    background-position: 0 0
}

#ripley-mattel .slider-blue .slick-next {
    background-position: -50px 0
}

#ripley-mattel .slider-pink .slick-prev {
    background-position: -200px 0
}

#ripley-mattel .slider-pink .slick-next {
    background-position: -250px 0
}

#ripley-mattel .slider-red .slick-prev {
    background-position: -300px 0
}

#ripley-mattel .slider-red .slick-next {
    background-position: -350px 0
}

#ripley-mattel .slider-black .slick-prev {
    background-position: -400px 0
}

#ripley-mattel .slider-black .slick-next {
    background-position: -450px 0
}

#ripley-mattel .item {
    margin: 10px
}

#ripley-mattel .item a {
    text-decoration: none
}

#ripley-mattel.index {
    overflow: hidden
}

#ripley-mattel .intro-marca {
    padding: 20px 0
}

@media (max-width: 991px) {
    #ripley-mattel .intro-marca {
        margin-bottom: 30px;
        overflow: hidden
    }
}

#ripley-mattel .intro-marca.interior {
    padding: 30px 0 0
}

#ripley-mattel .intro-marca.interior .float-center {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left
}

@media (max-width: 767px) {
    #ripley-mattel .intro-marca.interior .float-center {
        display: block;
        text-align: center
    }
}

#ripley-mattel .intro-marca.first {
    padding: 50px 0 30px
}

#ripley-mattel .intro-marca.first h2 {
    text-indent: -9999px;
    margin: 0 auto 40px
}

#ripley-mattel .intro-marca.first.fp {
    padding: 100px 0 30px
}

#ripley-mattel .intro-marca.fisher-price {
    background: linear-gradient(to bottom, #d8f5ff 0%, #f0fbff 50%, #baebfc 51%, #f0fbff 100%);
    position: relative
}

#ripley-mattel .intro-marca.fisher-price .bg-fp-colgante-home {
    width: 401px;
    height: 212px;
    position: absolute;
    top: 0;
    left: 2%
}

@media (max-width: 568px) {
    #ripley-mattel .intro-marca.fisher-price .bg-fp-colgante-home {
        display: none
    }
}

#ripley-mattel .intro-marca.fisher-price .bg-fp-juguete-home {
    width: 225px;
    height: 321px;
    position: absolute;
    top: 50%;
    margin-top: -150px;
    right: -67px
}

#ripley-mattel .intro-marca h2 {
    margin: 0 auto;
    text-indent: -9999px
}

@media (max-width: 992px) {
    #ripley-mattel .intro-marca h2 {
        margin-bottom: 30px
    }
}

#ripley-mattel .intro-marca h2.logo-fisher {
    background: url("../images/logos/logo-fisher-price.png") no-repeat left top;
    width: 231px;
    height: 73px
}

#ripley-mattel .intro-marca h2.logo-barbie {
    background: url("../images/logos/logo-barbie.png") no-repeat left top;
    width: 194px;
    height: 101px
}

#ripley-mattel .intro-marca h2.logo-eah {
    background: url("../images/logos/logo-eah.png") no-repeat left top;
    width: 325px;
    height: 132px
}

@media (max-width: 425px) {
    #ripley-mattel .intro-marca h2.logo-eah {
        width: 90%;
        background-size: contain
    }
}

#ripley-mattel .intro-marca h2.logo-polly {
    background: url("../images/logos/logo-polly.png") no-repeat left top;
    width: 200px;
    height: 150px;
    background-size: contain
}

@media (max-width: 425px) {
    #ripley-mattel .intro-marca h2.logo-polly {
        width: 60%;
        height: 150px;
        background-size: contain
    }
}

#ripley-mattel .intro-marca h2.logo-little {
    background: url("../images/logos/logo-little.png") no-repeat left top;
    width: 295px;
    height: 195px;
    margin-top: 40px
}

@media (max-width: 425px) {
    #ripley-mattel .intro-marca h2.logo-little {
        margin-top: 65px;
        width: 70%;
        height: 150px;
        background-size: contain
    }
}

#ripley-mattel .intro-marca h2.logo-hw {
    background: url("../images/logos/logo-hw.png") no-repeat left top;
    width: 259px;
    height: 75px
}

#ripley-mattel .intro-marca h2.logo-cars {
    background: url("../images/logos/logo-cars.png") no-repeat left top;
    width: 244px;
    height: 157px
}

#ripley-mattel .intro-marca h2.logo-max {
    background: url("../images/logos/logo-max.png") no-repeat left top;
    width: 354px;
    height: 167px
}

@media (max-width: 425px) {
    #ripley-mattel .intro-marca h2.logo-max {
        margin-top: 65px;
        width: 80%;
        height: 100px;
        background-size: contain
    }
}

#ripley-mattel .intro-marca h2.logo-juegos {
    background: url("../images/logos/logo-juegos.png") no-repeat left top;
    width: 372px;
    height: 145px
}

@media (max-width: 425px) {
    #ripley-mattel .intro-marca h2.logo-juegos {
        margin-top: 65px;
        width: 80%;
        height: 100px;
        background-size: contain
    }
}

#ripley-mattel .intro-marca h2.logo-boomco {
    background: url("../images/logos/logo-boomco.png") no-repeat left top;
    width: 297px;
    height: 140px;
    margin-top: 80px
}

#ripley-mattel .intro-marca h2.logo-imaginext {
    background: url("../images/logos/logo-imaginext.png") no-repeat left top;
    width: 169px;
    height: 181px
}

#ripley-mattel .intro-marca h2.logo-mickey {
    background: url("../images/logos/logo-mickey.png") no-repeat left top;
    width: 376px;
    height: 170px
}

@media (max-width: 360px) {
    #ripley-mattel .intro-marca h2.logo-mickey {
        width: 85%;
        height: 100px;
        background-size: contain
    }
}

#ripley-mattel .intro-marca h2.logo-minnie {
    background: url("../images/logos/logo-minnie.png") no-repeat left top;
    width: 328px;
    height: 107px
}

@media (max-width: 360px) {
    #ripley-mattel .intro-marca h2.logo-minnie {
        width: 85%;
        height: 100px;
        background-size: contain
    }
}

#ripley-mattel .intro-marca h2.logo-jake {
    background: url("../images/logos/logo-jake.png") no-repeat left top;
    width: 301px;
    height: 179px
}

#ripley-mattel .intro-marca h2.logo-mega-bloks {
    background: url("../images/logos/logo-mega-bloks.png") no-repeat left top;
    width: 186px;
    height: 170px
}

#ripley-mattel .intro-marca .hw-rampa {
    position: relative
}

#ripley-mattel .intro-marca .hw-rampa:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -479px;
    background: url("../images/examples/hw-rampa.png") no-repeat left top;
    width: 479px;
    height: 186px;
    display: block
}

#ripley-mattel .intro-marca .intro-img {
    position: relative;
    text-align: center
}

#ripley-mattel .intro-marca .intro-img img {
    position: relative;
    z-index: 1;
    width: 100%
}

@media (max-width: 767px) {
    #ripley-mattel .intro-marca .intro-img img {
        width: initial
    }
}

@media (max-width: 540px) {
    #ripley-mattel .intro-marca .intro-img img {
        width: 100%
    }
}

#ripley-mattel .intro-marca .intro-video h3 {
    text-transform: uppercase;
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #ffffff
}

@media (max-width: 640px) {
    #ripley-mattel .intro-marca .intro-video h3 {
        font-size: 22px
    }
}

@media (max-width: 640px) {
    #ripley-mattel .intro-marca .intro-video .container-video {
        display: none
    }
}

#ripley-mattel .intro-marca .intro-video .text-video {
    background-color: #ED2323;
    color: #ffffff;
    padding: 20px;
    margin: -4px 0 0
}

#ripley-mattel .intro-marca .intro-video .text-video p {
    line-height: 30px
}

#ripley-mattel .intro-marca .intro-video .text-video.green {
    background-color: #27C9D3
}

#ripley-mattel .intro-marca .intro {
    color: #ffffff
}

#ripley-mattel .intro-marca .intro h3 {
    font-size: 28px;
    font-weight: 400
}

@media (max-width: 767px) {
    #ripley-mattel .intro-marca .intro h3 {
        font-size: 22px
    }
}

#ripley-mattel .intro-marca .intro p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400
}

@media (max-width: 767px) {
    #ripley-mattel .intro-marca .intro p {
        font-size: 14px
    }
}

#ripley-mattel .intro-marca .intro.little h3 {
    color: #E9519D
}

#ripley-mattel .intro-marca .intro.little p {
    color: #666666
}

#ripley-mattel .intro-marca .intro.cars h3 {
    color: #D02627
}

#ripley-mattel .intro-marca .intro.cars p {
    color: #666666
}

#ripley-mattel .intro-marca .intro.boomco h3 {
    color: #000000
}

#ripley-mattel .intro-marca .intro.boomco p {
    color: #000000
}

#ripley-mattel .intro-marca .intro.imaginext h3 {
    color: #018FD5
}

#ripley-mattel .intro-marca .intro.imaginext p {
    color: #666666
}

#ripley-mattel .intro-marca .intro.mickey h3 {
    color: #018FD5
}

#ripley-mattel .intro-marca .intro.mickey p {
    color: #666666
}

#ripley-mattel .intro-marca .intro.minnie h3 {
    color: #EE4399
}

#ripley-mattel .intro-marca .intro.minnie p {
    color: #ffffff
}

#ripley-mattel .intro-marca .intro.jake h3 {
    color: #D02627
}

#ripley-mattel .intro-marca .intro.jake p {
    color: #3FAE9E
}

#ripley-mattel .otras-marcas {
    margin: 40px 0;
    padding-bottom: 40px;
    border-bottom: 1px solid #ececee;
}

#ripley-mattel .otras-marcas a figure {
    position: relative
}

#ripley-mattel .otras-marcas a figure img {
    width: 100%
}

#ripley-mattel .otras-marcas a figure figcaption {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 100%;
    padding: 15px;
    visibility: hidden;
    opacity: 0;
    transition: all ease 300ms;
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

#ripley-mattel .otras-marcas a:hover figcaption {
    visibility: visible;
    opacity: 1
}

#ripley-mattel .productos-destacados-home {
    background: url("../images/bg/bg-destacados-home.jpg") no-repeat center top
}

#ripley-mattel .title-destacados {
    text-align: center;
    padding: 30px 0
}

#ripley-mattel .title-destacados h2 {
	font-family: "Open Sans";
    font-size: 30px;
    color: #FFFFFF;
    display: inline-block;
    position: relative;
    margin: 0;
    text-transform: uppercase
}

#ripley-mattel .title-destacados h2.destacado-home {
    color: #666666
}

#ripley-mattel .title-destacados h2.destacado-home:before,
#ripley-mattel .title-destacados h2.destacado-home:after {
    background: #d02627
}

#ripley-mattel .title-destacados h2:before {
    content: '';
    background: #ffffff;
    border-radius: 100%;
    display: block;
    height: 12px;
    width: 12px;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    left: -30px
}

#ripley-mattel .title-destacados h2:after {
    content: '';
    background: #ffffff;
    border-radius: 100%;
    display: block;
    height: 12px;
    width: 12px;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: -30px
}

#ripley-mattel .categorias .imagen-categoria {
    position: relative;
    z-index: 0;
    text-align: center;
    overflow: hidden
}

@media (max-width: 1240px) {
    #ripley-mattel .categorias .imagen-categoria img {
        width: 100%
    }
}

@media (max-width: 991px) {
    #ripley-mattel .categorias .imagen-categoria {
        display: none
    }
}

#ripley-mattel .categorias .container {
    position: relative;
    z-index: 1;
    margin-top: -200px
}

@media (max-width: 991px) {
    #ripley-mattel .categorias .container {
        margin-top: 0
    }
}

#ripley-mattel .categorias .container.sin-tab {
    margin-top: -70px
}

@media (max-width: 992px) {
    #ripley-mattel .categorias .container.sin-tab {
        margin-top: 0
    }
}

#ripley-mattel .bg-barbie {
    background: url("../images/bg/bg-barbie.jpg") repeat left top
}

#ripley-mattel .bg-ever-after-high {
    background: url("../images/bg/bg-eah.png") repeat-y center top, linear-gradient(to right, #392c88 0%, #392c88 50%, #c81f79 50%, #c81f79 100%)
}

#ripley-mattel .bg-polly {
    background: url("../images/bg/bg-polly.png") repeat-x left top #78469B
}

#ripley-mattel .bg-little {
    background: url("../images/bg/bg-little.jpg") repeat-x left top #F4F1F1
}

#ripley-mattel .bg-hw {
    background: url("../images/bg/bg-hw.jpg") repeat-x left top, linear-gradient(0deg, #3FA2D6 30%, #0076BC 100%)
}

#ripley-mattel .bg-cars {
    background: url("../images/bg/bg-cars.png") repeat-x left top, linear-gradient(-180deg, #fff 0%, #DFDFDF 48%)
}

#ripley-mattel .bg-max {
    background: url("../images/bg/bg-maxsteel.png") no-repeat center top #015B75
}

#ripley-mattel .bg-juegos {
    background: url("../images/bg/bg-juegos.png") repeat left top #D02627
}

#ripley-mattel .bg-boomco {
    background: url("../images/bg/bg-boomco.jpg") repeat-x left top #F1F1F1
}

#ripley-mattel .bg-fisher {
    background: url("../images/bg/bg-fisher-price.png") no-repeat center top #90DBE7
}

#ripley-mattel .bg-imaginext {
    background: url("../images/bg/bg-imaginext.png") no-repeat center top #FCD107
}

#ripley-mattel .bg-mickey {
    background: url("../images/bg/bg-mickey.png") repeat-x left top #B4DDE9
}

#ripley-mattel .bg-minnie {
    background: url("../images/bg/bg-minnie.png") repeat-x left top #E9ABCB
}

#ripley-mattel .bg-jake {
    background: url("../images/bg/bg-jake.png") repeat-x left top, linear-gradient(-180deg, #2CA695 0%, #B0DDD1 98%)
}

#ripley-mattel .bg-mega-bloks {
    background: url("../images/bg/bg-mega-bloks.png") repeat left top, linear-gradient(-180deg, #61D0FC 0%, #94DEFB 50%)
}

#ripley-mattel .navegacion-pagina {
    position: fixed;
    top: 180px;
    right: 0;
    width: 50px;
    padding: 0;
    z-index: 2
}

@media (max-width: 1024px) {
    #ripley-mattel .navegacion-pagina {
        width: 30px
    }
    #ripley-mattel .navegacion-pagina .row {
        padding: 0
    }
}

#ripley-mattel .navegacion-pagina ul {
    list-style: none
}

#ripley-mattel .navegacion-pagina ul li {
    text-align: center
}

#ripley-mattel .navegacion-pagina ul li a {
    background-color: #999999;
    position: relative;
    display: block;
    width: 41px;
    height: 41px;
    font-size: 12px;
    text-decoration: none;
    font-weight: 300;
    transition: all 300ms;
    border-radius: 100%;
    text-indent: -9999px;
    margin-bottom: 10px;
    border: 2px solid #999999
}

@media (max-width: 1024px) {
    #ripley-mattel .navegacion-pagina ul li a {
        width: 30px;
        height: 30px
    }
}

#ripley-mattel .navegacion-pagina ul li a.active {
    background-color: #405DA8;
    border: 2px solid #27C9D3
}

#ripley-mattel .navegacion-pagina ul li a:hover {
    color: #000
}

#ripley-mattel .navegacion-pagina ul li a.menu-ninas {
    background: url("../images/iconos/menu-ninas.png") no-repeat left top #999
}

#ripley-mattel .navegacion-pagina ul li a.menu-ninas.barbie {
    background-position: -53px 0
}

#ripley-mattel .navegacion-pagina ul li a.menu-ninas.barbie:hover,
#ripley-mattel .navegacion-pagina ul li a.menu-ninas.barbie.active {
    background-position: -2px 0
}

@media (max-width: 1024px) {
    #ripley-mattel .navegacion-pagina ul li a.menu-ninas.barbie {
        background-size: 250%;
        background-position: -38px 0
    }
    #ripley-mattel .navegacion-pagina ul li a.menu-ninas.barbie:hover,
    #ripley-mattel .navegacion-pagina ul li a.menu-ninas.barbie.active {
        background-position: -2px 0
    }
}

#ripley-mattel .navegacion-pagina ul li a.menu-ninas.eah {
    background-position: -53px -61px
}

#ripley-mattel .navegacion-pagina ul li a.menu-ninas.eah:hover,
#ripley-mattel .navegacion-pagina ul li a.menu-ninas.eah.active {
    background-position: -2px -61px
}

@media (max-width: 1024px) {
    #ripley-mattel .navegacion-pagina ul li a.menu-ninas.eah {
        background-size: 250%;
        background-position: -38px -44px
    }
    #ripley-mattel .navegacion-pagina ul li a.menu-ninas.eah:hover,
    #ripley-mattel .navegacion-pagina ul li a.menu-ninas.eah.active {
        background-position: -2px -44px
    }
}

#ripley-mattel .navegacion-pagina ul li a.menu-ninas.polly {
    background-position: -53px -122px
}

#ripley-mattel .navegacion-pagina ul li a.menu-ninas.polly:hover,
#ripley-mattel .navegacion-pagina ul li a.menu-ninas.polly.active {
    background-position: -2px -122px
}

@media (max-width: 1024px) {
    #ripley-mattel .navegacion-pagina ul li a.menu-ninas.polly {
        background-size: 250%;
        background-position: -38px -85px
    }
    #ripley-mattel .navegacion-pagina ul li a.menu-ninas.polly:hover,
    #ripley-mattel .navegacion-pagina ul li a.menu-ninas.polly.active {
        background-position: -2px -85px
    }
}

#ripley-mattel .navegacion-pagina ul li a.menu-ninas.little {
    background-position: -53px -183px
}

#ripley-mattel .navegacion-pagina ul li a.menu-ninas.little:hover,
#ripley-mattel .navegacion-pagina ul li a.menu-ninas.little.active {
    background-position: -2px -183px
}

@media (max-width: 1024px) {
    #ripley-mattel .navegacion-pagina ul li a.menu-ninas.little {
        background-size: 250%;
        background-position: -38px -130px
    }
    #ripley-mattel .navegacion-pagina ul li a.menu-ninas.little:hover,
    #ripley-mattel .navegacion-pagina ul li a.menu-ninas.little.active {
        background-position: -2px -130px
    }
}

#ripley-mattel .navegacion-pagina ul li a.menu-ninos {
    background: url("../images/iconos/menu-ninos.png") no-repeat left top #999;
    position: relative
}

#ripley-mattel .navegacion-pagina ul li a.menu-ninos.hw {
    background-position: -53px 0
}

#ripley-mattel .navegacion-pagina ul li a.menu-ninos.hw:hover,
#ripley-mattel .navegacion-pagina ul li a.menu-ninos.hw.active {
    background-position: -2px 0
}

@media (max-width: 1024px) {
    #ripley-mattel .navegacion-pagina ul li a.menu-ninos.hw {
        background-size: 250%;
        background-position: -38px 0
    }
    #ripley-mattel .navegacion-pagina ul li a.menu-ninos.hw:hover,
    #ripley-mattel .navegacion-pagina ul li a.menu-ninos.hw.active {
        background-position: -2px 0
    }
}

#ripley-mattel .navegacion-pagina ul li a.menu-ninos.cars {
    background-position: -53px -61px
}

#ripley-mattel .navegacion-pagina ul li a.menu-ninos.cars:hover,
#ripley-mattel .navegacion-pagina ul li a.menu-ninos.cars.active {
    background-position: -2px -61px
}

@media (max-width: 1024px) {
    #ripley-mattel .navegacion-pagina ul li a.menu-ninos.cars {
        background-size: 250%;
        background-position: -38px -44px
    }
    #ripley-mattel .navegacion-pagina ul li a.menu-ninos.cars:hover,
    #ripley-mattel .navegacion-pagina ul li a.menu-ninos.cars.active {
        background-position: -2px -44px
    }
}

#ripley-mattel .navegacion-pagina ul li a.menu-ninos.max {
    background-position: -53px -122px
}

#ripley-mattel .navegacion-pagina ul li a.menu-ninos.max:hover,
#ripley-mattel .navegacion-pagina ul li a.menu-ninos.max.active {
    background-position: -2px -122px
}

@media (max-width: 1024px) {
    #ripley-mattel .navegacion-pagina ul li a.menu-ninos.max {
        background-size: 250%;
        background-position: -38px -85px
    }
    #ripley-mattel .navegacion-pagina ul li a.menu-ninos.max:hover,
    #ripley-mattel .navegacion-pagina ul li a.menu-ninos.max.active {
        background-position: -2px -85px
    }
}

#ripley-mattel .navegacion-pagina ul li a.menu-ninos.juegos {
    background-position: -53px -183px
}

#ripley-mattel .navegacion-pagina ul li a.menu-ninos.juegos:hover,
#ripley-mattel .navegacion-pagina ul li a.menu-ninos.juegos.active {
    background-position: -2px -183px
}

@media (max-width: 1024px) {
    #ripley-mattel .navegacion-pagina ul li a.menu-ninos.juegos {
        background-size: 250%;
        background-position: -38px -130px
    }
    #ripley-mattel .navegacion-pagina ul li a.menu-ninos.juegos:hover,
    #ripley-mattel .navegacion-pagina ul li a.menu-ninos.juegos.active {
        background-position: -2px -130px
    }
}

#ripley-mattel .navegacion-pagina ul li a.menu-ninos.boomco {
    background-position: -53px -244px
}

#ripley-mattel .navegacion-pagina ul li a.menu-ninos.boomco:hover,
#ripley-mattel .navegacion-pagina ul li a.menu-ninos.boomco.active {
    background-position: -2px -244px
}

@media (max-width: 1024px) {
    #ripley-mattel .navegacion-pagina ul li a.menu-ninos.boomco {
        background-size: 250%;
        background-position: -38px -174px
    }
    #ripley-mattel .navegacion-pagina ul li a.menu-ninos.boomco:hover,
    #ripley-mattel .navegacion-pagina ul li a.menu-ninos.boomco.active {
        background-position: -2px -174px
    }
}

#ripley-mattel .navegacion-pagina ul li a.menu-infantil {
    background: url("../images/iconos/menu-fisher.png") no-repeat left top #999
}

#ripley-mattel .navegacion-pagina ul li a.menu-infantil.fisher {
    background-position: -53px 0
}

#ripley-mattel .navegacion-pagina ul li a.menu-infantil.fisher:hover,
#ripley-mattel .navegacion-pagina ul li a.menu-infantil.fisher.active {
    background-position: -2px 0
}

@media (max-width: 1024px) {
    #ripley-mattel .navegacion-pagina ul li a.menu-infantil.fisher {
        background-size: 250%;
        background-position: -38px 0
    }
    #ripley-mattel .navegacion-pagina ul li a.menu-infantil.fisher:hover,
    #ripley-mattel .navegacion-pagina ul li a.menu-infantil.fisher.active {
        background-position: -2px 0
    }
}

#ripley-mattel .navegacion-pagina ul li a.menu-infantil.imaginext {
    background-position: -53px -61px
}

#ripley-mattel .navegacion-pagina ul li a.menu-infantil.imaginext:hover,
#ripley-mattel .navegacion-pagina ul li a.menu-infantil.imaginext.active {
    background-position: -2px -61px
}

@media (max-width: 1024px) {
    #ripley-mattel .navegacion-pagina ul li a.menu-infantil.imaginext {
        background-size: 250%;
        background-position: -38px -44px
    }
    #ripley-mattel .navegacion-pagina ul li a.menu-infantil.imaginext:hover,
    #ripley-mattel .navegacion-pagina ul li a.menu-infantil.imaginext.active {
        background-position: -2px -44px
    }
}

#ripley-mattel .navegacion-pagina ul li a.menu-infantil.mickey {
    background-position: -53px -122px
}

#ripley-mattel .navegacion-pagina ul li a.menu-infantil.mickey:hover,
#ripley-mattel .navegacion-pagina ul li a.menu-infantil.mickey.active {
    background-position: -2px -122px
}

@media (max-width: 1024px) {
    #ripley-mattel .navegacion-pagina ul li a.menu-infantil.mickey {
        background-size: 250%;
        background-position: -38px -85px
    }
    #ripley-mattel .navegacion-pagina ul li a.menu-infantil.mickey:hover,
    #ripley-mattel .navegacion-pagina ul li a.menu-infantil.mickey.active {
        background-position: -2px -85px
    }
}

#ripley-mattel .navegacion-pagina ul li a.menu-infantil.minnie {
    background-position: -53px -183px
}

#ripley-mattel .navegacion-pagina ul li a.menu-infantil.minnie:hover,
#ripley-mattel .navegacion-pagina ul li a.menu-infantil.minnie.active {
    background-position: -2px -183px
}

@media (max-width: 1024px) {
    #ripley-mattel .navegacion-pagina ul li a.menu-infantil.minnie {
        background-size: 250%;
        background-position: -38px -130px
    }
    #ripley-mattel .navegacion-pagina ul li a.menu-infantil.minnie:hover,
    #ripley-mattel .navegacion-pagina ul li a.menu-infantil.minnie.active {
        background-position: -2px -130px
    }
}

#ripley-mattel .navegacion-pagina ul li a.menu-infantil.jake {
    background-position: -53px -244px
}

#ripley-mattel .navegacion-pagina ul li a.menu-infantil.jake:hover,
#ripley-mattel .navegacion-pagina ul li a.menu-infantil.jake.active {
    background-position: -2px -244px
}

@media (max-width: 1024px) {
    #ripley-mattel .navegacion-pagina ul li a.menu-infantil.jake {
        background-size: 250%;
        background-position: -38px -174px
    }
    #ripley-mattel .navegacion-pagina ul li a.menu-infantil.jake:hover,
    #ripley-mattel .navegacion-pagina ul li a.menu-infantil.jake.active {
        background-position: -2px -174px
    }
}

#ripley-mattel .fp-como-crecemos {
    background: linear-gradient(to bottom, #00cceb 0%, #00cceb 73%, #90dbe7 100%);
    padding: 30px 0 0;
    color: #ffffff
}

#ripley-mattel .fp-como-crecemos .como-crecemos-intro {
    margin-bottom: 60px
}

#ripley-mattel .fp-como-crecemos .info-como-crecemos {
    background-color: #ffffff;
    color: #666666
}

#ripley-mattel .fp-como-crecemos .info-como-crecemos h4 {
    text-align: center;
    padding: 30px 0
}

#ripley-mattel .fp-como-crecemos .info-como-crecemos p {
    font-size: 18px
}

#ripley-mattel .fp-como-crecemos .info-como-crecemos table tr {
    border-bottom: 2px solid #00CAEB
}

#ripley-mattel .fp-como-crecemos .info-como-crecemos table tr:last-child {
    border-bottom: none
}

#ripley-mattel .fp-como-crecemos .info-como-crecemos table tr td {
    padding: 30px 10px
}

#ripley-mattel .fp-como-crecemos .info-como-crecemos table tr td.clacificacion {
    text-align: center;
    color: #00CAEB;
    font-weight: 700
}

#ripley-mattel .fp-como-crecemos .icon-fp {
    display: block;
    width: 59px;
    height: 61px;
    margin: 0 auto 10px;
    background: url("../images/iconos/incons-fp-crecer.svg") no-repeat left top
}

#ripley-mattel .fp-como-crecemos .icon-fp.icon-fisico {
    background-position: 0 0
}

#ripley-mattel .fp-como-crecemos .icon-fp.icon-cognitivo {
    background-position: -59px 0
}

#ripley-mattel .fp-como-crecemos .icon-fp.icon-social {
    background-position: -118px 0
}

#ripley-mattel .fp-como-crecemos .icon-fp-meses {
    display: block;
    width: 70px;
    height: 70px;
    margin: 0 auto 10px;
    background: url("../images/iconos/icons-filtros-meses.svg") no-repeat left top
}

#ripley-mattel .fp-como-crecemos .icon-fp-meses.meses-1 {
    background-position: 0 0
}

#ripley-mattel .fp-como-crecemos .icon-fp-meses.meses-2 {
    background-position: -70px 0
}

#ripley-mattel .fp-como-crecemos .icon-fp-meses.meses-3 {
    background-position: -140px 0
}

#ripley-mattel .fp-como-crecemos .icon-fp-meses.meses-4 {
    background-position: -210px 0
}

#ripley-mattel .fp-como-crecemos .icon-fp-meses.meses-5 {
    background-position: -280px 0
}

#ripley-mattel .fp-como-crecemos .content-tabs .tabs-infantil .active .icon-fp-meses.meses-1 {
    background-position: 0 -70px
}

#ripley-mattel .fp-como-crecemos .content-tabs .tabs-infantil .active .icon-fp-meses.meses-2 {
    background-position: -70px -70px
}

#ripley-mattel .fp-como-crecemos .content-tabs .tabs-infantil .active .icon-fp-meses.meses-3 {
    background-position: -140px -70px
}

#ripley-mattel .fp-como-crecemos .content-tabs .tabs-infantil .active .icon-fp-meses.meses-4 {
    background-position: -210px -70px
}

#ripley-mattel .fp-como-crecemos .content-tabs .tabs-infantil .active .icon-fp-meses.meses-5 {
    background-position: -280px -70px
}

#ripley-mattel .fp-como-crecemos .title-fp-meses {
    color: #EB848A;
    font-size: 30px;
    margin-bottom: 0
}

#ripley-mattel .fp-como-crecemos .title-fp-meses .title-icon {
    background: url("../images/iconos/icons-title-meses.svg") no-repeat left top;
    display: inline-block;
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
    vertical-align: middle
}

#ripley-mattel .fp-como-crecemos .title-fp-meses .title-icon.meses-1 {
    background-position: 0 0
}

#ripley-mattel .fp-como-crecemos .title-fp-meses .title-icon.meses-2 {
    background-position: -100px 0
}

#ripley-mattel .fp-como-crecemos .title-fp-meses .title-icon.meses-3 {
    background-position: -200px 0
}

#ripley-mattel .fp-como-crecemos .title-fp-meses .title-icon.meses-4 {
    background-position: -300px 0
}

#ripley-mattel .fp-como-crecemos .title-fp-meses .title-icon.meses-5 {
    background-position: -400px 0
}

#ripley-mattel .marcas {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 0
}

#ripley-mattel .marcas .logo {
    margin: 0 10px;
    padding: 10px
}

#ripley-mattel .bg-fp-colgante {
    position: absolute;
    top: -30px;
    left: -50px;
    width: 216px;
    height: 253px
}

@media (max-width: 640px) {
    #ripley-mattel .bg-fp-colgante {
        display: none
    }
}

#ripley-mattel .bg-fp-colgante-2 {
    position: absolute;
    top: -30px;
    right: -100px;
    width: 192px;
    height: 99px
}

@media (max-width: 640px) {
    #ripley-mattel .bg-fp-colgante-2 {
        display: none
    }
}

#ripley-mattel .bg-fp-colgante-3 {
    position: absolute;
    top: -213px;
    left: -100px;
    width: 262px;
    height: 329px
}

@media (max-width: 640px) {
    #ripley-mattel .bg-fp-colgante-3 {
        display: none
    }
}

#ripley-mattel .bg-fp-colgante-4 {
    position: absolute;
    top: -212px;
    right: -150px;
    width: 154px;
    height: 350px
}

@media (max-width: 640px) {
    #ripley-mattel .bg-fp-colgante-4 {
        display: none
    }
}

#ripley-mattel .bg-fp-leon {
    position: absolute;
    top: 200px;
    right: -150px;
    width: 333px;
    height: 334px;
    z-index: 0
}

@media (max-width: 768px) {
    #ripley-mattel .bg-fp-leon {
        display: none
    }
}

#ripley-mattel .more-tool {
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    bottom: 0;
    opacity: 1;
    z-index: 1;
    border-radius: 100%;
    cursor: pointer;
    transition: all 300ms ease;
    border: 3px solid #ED2323;
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.5);
    z-index: 100
}

#ripley-mattel .more-tool:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

#ripley-mattel .more-tool:after {
    content: "+";
    color: #ED2323;
    font-size: 30px;
    line-height: 27px;
    position: absolute;
    left: 0;
    right: 0;
    top: -3px;
    width: 100%;
    height: 100%
}

#ripley-mattel {
    position: relative
}

#ripley-mattel h1 {
    background: url("../images/logos/logo-mattel.svg") no-repeat left top;
    width: 116px;
    height: 118px;
    display: block;
    text-indent: -9999px;
    margin: 0
}

#ripley-mattel h1.home {
    position: absolute;
    top: 10px;
    left: 50%;
    margin-left: -58px;
    z-index: 100
}

#ripley-mattel h1.interior {
    background: url("../images/logos/logo-mattel-interior.svg") no-repeat left top;
    width: 93px;
    height: 70px
}

@media (max-width: 767px) {
    #ripley-mattel h1.interior {
        background: url("../images/logos/logo-mattel.svg") no-repeat left top;
        width: 116px;
        height: 118px;
        position: absolute;
        top: 0;
        left: 50%;
        margin-left: -58px
    }
}

#ripley-mattel .header-home {
    position: relative
}

#ripley-mattel .header-home nav ul {
    list-style: none;
    background-color: red;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

@media (max-width: 960px) {
    #ripley-mattel .header-home nav ul {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

#ripley-mattel .header-home nav ul li {
    width: 25%;
    transition: width ease 300ms;
    overflow: hidden
}

@media (max-width: 960px) {
    #ripley-mattel .header-home nav ul li {
        width: 100%
    }
}

#ripley-mattel .header-home nav ul li figure {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding: 0 20px
}

#ripley-mattel .header-home nav ul li figure img {
    transition: all ease 300ms;
    position: relative;
    z-index: 2;
    min-width: 370px
}

#ripley-mattel .header-home nav ul li figure figcaption {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 50%;
    width: 260px;
    visibility: hidden;
    transition: all ease 300ms
}

@media (max-width: 1024px) {
    #ripley-mattel .header-home nav ul li figure figcaption {
        width: 200px
    }
}

@media (max-width: 960px) {
    #ripley-mattel .header-home nav ul li figure figcaption {
        left: 55%;
        visibility: visible;
        width: 300px
    }
}

@media (max-width: 666px) {
    #ripley-mattel .header-home nav ul li figure figcaption {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 99;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 20px 20%
    }
    #ripley-mattel .header-home nav ul li figure figcaption .btn-red {
        color: #ffffff;
        border-color: #ffffff
    }
    #ripley-mattel .header-home nav ul li figure figcaption .btn-red:hover {
        background-color: #ffffff;
        color: #000000
    }
}

#ripley-mattel .header-home nav ul li figure figcaption .text {
    opacity: 0;
    transition: all ease 150ms;
    color: #ffffff
}

#ripley-mattel .header-home nav ul li figure figcaption .text.black {
    color: #000000
}

@media (max-width: 666px) {
    #ripley-mattel .header-home nav ul li figure figcaption .text.black {
        color: #ffffff
    }
}

#ripley-mattel .header-home nav ul li figure figcaption .text h2 {
    font-size: 30px;
    margin: 0 0 20px;
    text-transform: uppercase
}

#ripley-mattel .header-home nav ul li figure figcaption .text p {
    margin-bottom: 20px;
    font-weight: 300
}

@media (max-width: 960px) {
    #ripley-mattel .header-home nav ul li figure figcaption .text {
        opacity: 1
    }
}

#ripley-mattel .header-home nav ul li:hover {
    width: 60%
}

@media (max-width: 1700px) {
    #ripley-mattel .header-home nav ul li:hover {
        width: 80%
    }
}

@media (max-width: 1440px) {
    #ripley-mattel .header-home nav ul li:hover {
        width: 100%
    }
}

@media (max-width: 1280px) {
    #ripley-mattel .header-home nav ul li:hover {
        width: 120%
    }
}

@media (max-width: 1024px) {
    #ripley-mattel .header-home nav ul li:hover {
        width: 140%
    }
}

@media (max-width: 960px) {
    #ripley-mattel .header-home nav ul li:hover {
        width: 100%
    }
}

#ripley-mattel .header-home nav ul li:hover figure img {
    display: inline-block;
    float: left
}

#ripley-mattel .header-home nav ul li:hover figure figcaption {
    visibility: visible;
    left: 50%
}

@media (max-width: 1024px) {
    #ripley-mattel .header-home nav ul li:hover figure figcaption {
        left: 60%
    }
}

@media (max-width: 960px) {
    #ripley-mattel .header-home nav ul li:hover figure figcaption {
        left: 50%
    }
}

@media (max-width: 666px) {
    #ripley-mattel .header-home nav ul li:hover figure figcaption {
        left: 0
    }
}

#ripley-mattel .header-home nav ul li:hover figure figcaption .text {
    opacity: 1
}

#ripley-mattel .header-home nav ul li.ninas {
    background: url("../images/bg/bg-ninas-home.jpg") repeat left top
}

#ripley-mattel .header-home nav ul li.ninos {
    background: url("../images/bg/bg-ninos-home.jpg") repeat left top
}

#ripley-mattel .header-home nav ul li.preescolares {
    background-color: #fff5e6
}

#ripley-mattel .header-home nav ul li.megablocks {
    background: url("../images/bg/bg-megabloks-home.jpg") no-repeat center
}

@media (max-width: 767px) {
    #ripley-mattel .header-interior {
        height: 59px
    }
}

#ripley-mattel .header-interior .logo-interior {
    float: left
}

#ripley-mattel .header-interior .main-menu {
    float: left
}

@media (max-width: 767px) {
    #ripley-mattel .header-interior .main-menu {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 99;
        max-height: 0;
        transition: max-height ease 300ms
    }
    #ripley-mattel .header-interior .main-menu:after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 15px solid #fff;
        position: absolute;
        left: 37px;
        bottom: 65px;
        margin: 0 0 0 -10px;
        opacity: 0;
        transition: opacity ease 300ms
    }
    #ripley-mattel .header-interior .main-menu.active {
        visibility: visible;
        max-height: 1000px
    }
    #ripley-mattel .header-interior .main-menu.active:after {
        opacity: 1
    }
}

#ripley-mattel .header-interior .main-menu ul {
    list-style: none;
    margin: 0 0 0 50px;
    display: table
}

@media (max-width: 767px) {
    #ripley-mattel .header-interior .main-menu ul {
        display: block;
        margin: 0 10px 80px;
        background: #ffffff;
        width: 300px;
        border-radius: 10px;
        box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2)
    }
}

#ripley-mattel .header-interior .main-menu ul li {
    display: table-cell;
    border-left: 1px solid #CECECE
}

@media (max-width: 767px) {
    #ripley-mattel .header-interior .main-menu ul li {
        border-left: none;
        border-top: 1px solid #cccccc;
        display: block
    }
    #ripley-mattel .header-interior .main-menu ul li:first-child {
        border-top: none
    }
}

#ripley-mattel .header-interior .main-menu ul li a {
    color: #000000;
    text-decoration: none;
    line-height: 30px;
    display: block;
    min-height: 40px;
    position: relative;
    min-width: 200px;
    text-align: center;
    padding: 20px 0;
    text-transform: uppercase;
    transition: color ease 300ms;
    position: relative
}

@media (max-width: 1200px) {
    #ripley-mattel .header-interior .main-menu ul li a {
        min-width: 150px
    }
}

@media (max-width: 992px) {
    #ripley-mattel .header-interior .main-menu ul li a {
        min-width: 120px
    }
}

@media (max-width: 767px) {
    #ripley-mattel .header-interior .main-menu ul li a {
        width: 100%;
        min-width: inherit;
        padding: 10px 0
    }
}

#ripley-mattel .header-interior .main-menu ul li a:after {
    content: '';
    transition: width ease 300ms;
    width: 0;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #D02627;
    width: 0
}

@media (max-width: 767px) {
    #ripley-mattel .header-interior .main-menu ul li a:after {
        display: none
    }
}

#ripley-mattel .header-interior .main-menu ul li a:hover,
#ripley-mattel .header-interior .main-menu ul li a.current {
    color: #D02627;
    font-weight: 700
}

#ripley-mattel .header-interior .main-menu ul li a:hover:after,
#ripley-mattel .header-interior .main-menu ul li a.current:after {
    width: 100%
}

#ripley-mattel .show-menu {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 99;
    background: url("../images/iconos/show-menu.svg") no-repeat left top;
    width: 52px;
    height: 52px;
    display: block;
    text-indent: -9999px;
    transition: all ease 300ms
}

#ripley-mattel .show-menu.active {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

#ripley-mattel .icon-element {
    display: block;
    margin: 0 auto
}

#ripley-mattel .icon-element.icon-barbie {
    background: url("../images/iconos/icons-barbie.svg") no-repeat left top;
    width: 55px;
    height: 55px
}

#ripley-mattel .icon-element.icon-barbie.ico-entretenimiento {
    background-position: 0 0
}

#ripley-mattel .icon-element.icon-barbie.ico-fantasia {
    background-position: -55px 0
}

#ripley-mattel .icon-element.icon-barbie.ico-peinados {
    background-position: -110px 0
}

#ripley-mattel .icon-element.icon-barbie.ico-profeciones {
    background-position: -165px 0
}

#ripley-mattel .icon-element.icon-barbie.ico-accesorios {
    background-position: -220px 0
}

#ripley-mattel .icon-element.icon-barbie.ico-fashion {
    background-position: -275px 0
}

#ripley-mattel .icon-element.icon-barbie.ico-familia {
    background-position: -330px 0
}

#ripley-mattel .icon-element.icon-hw {
    background: url("../images/iconos/icons-hw.svg") no-repeat left top;
    width: 55px;
    height: 55px
}

#ripley-mattel .icon-element.icon-hw.ico-playsets {
    background-position: 0 0
}

#ripley-mattel .icon-element.icon-hw.ico-tracks {
    background-position: -55px 0
}

#ripley-mattel .icon-element.icon-hw.ico-builders {
    background-position: -110px 0
}

#ripley-mattel .icon-element.icon-hw.ico-shifters {
    background-position: -165px 0
}

#ripley-mattel .icon-element.icon-hw.ico-dc-comics {
    background-position: -220px 0
}

#ripley-mattel .icon-element.icon-hw.ico-innovation {
    background-position: -275px 0
}

#ripley-mattel .icon-element.icon-infantil {
    background: url("../images/iconos/icons-infantil.svg") no-repeat left top;
    width: 55px;
    height: 55px
}

#ripley-mattel .icon-element.icon-infantil.ico-basicos {
    background-position: 0 0
}

#ripley-mattel .icon-element.icon-infantil.ico-aprende {
    background-position: -55px 0
}

#ripley-mattel .icon-element.icon-infantil.ico-new-born {
    background-position: -110px 0
}

#ripley-mattel .icon-element.icon-infantil.ico-moviles {
    background-position: -165px 0
}

#ripley-mattel .icon-element.icon-infantil.ico-mecedoras {
    background-position: -220px 0
}

#ripley-mattel .icon-element.icon-infantil.ico-movilidad {
    background-position: -275px 0
}

#ripley-mattel .icon-element.icon-mega-bloks {
    background: url("../images/iconos/icons-mega-bloks.svg") no-repeat left top;
    width: 55px;
    height: 55px
}

#ripley-mattel .icon-element.icon-mega-bloks.ico-construcciones {
    background-position: 0 0
}

#ripley-mattel .icon-element.icon-mega-bloks.ico-tortugas {
    background-position: -55px 0
}

#ripley-mattel .productos-destacados {
    margin-top: 40px
}

#ripley-mattel .producto {
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.5);
    padding: 30px 20px;
    position: relative
}

#ripley-mattel .producto a {
    text-decoration: none
}

#ripley-mattel .producto figcaption a {
	display: block;
}

#ripley-mattel .producto a .hover-producto {
    background: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
    transition: all ease 300ms;
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

#ripley-mattel .producto a:hover .hover-producto {
    visibility: visible;
    opacity: 1;
    text-align: center
}

#ripley-mattel .producto .hover-producto .nombre-producto {
	color: white;
	display: block;
	text-align: center;
	width: 90%;
	position: absolute;
	top: 30%;
	line-height: 1.2;
}
#ripley-mattel .producto .nombre-producto {
    font-size: 16px;
    color: #333333;
    line-height: 25px;
    min-height: 55px;
    font-weight: 600;
    text-align: center;
}

#ripley-mattel .producto .btn-comprar {
    width: 100px;
    padding: 4px 10px;
    color: white;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 5px;
    margin: 0 auto;
    text-align: center;
}

#ripley-mattel .producto img {
    width: 100%
}

#ripley-mattel .producto ul {
    list-style: none;
    padding: 0;
    margin-bottom:16px;
}

#ripley-mattel .producto ul li {
    margin-bottom: 0px
}

#ripley-mattel .producto .precio-normal {
    color: #666666;
    font-size: 16px
}

#ripley-mattel .producto .precio-oferta {
    color: #D02627;
    font-size: 16px
}

#ripley-mattel .producto .precio-oferta span {
    font-weight: 600
}

#ripley-mattel .producto .opex {
    color: #D02627;
    font-size: 16px
}

#ripley-mattel .producto .opex span {
    font-weight: 600;
    color: #D02627
}

#ripley-mattel .producto.producto-hover {
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

#ripley-mattel .producto.producto-hover figcaption {
    background: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
    transition: all ease 300ms;
    position: absolute;
    top: 0;
    left: 0
}

#ripley-mattel .producto.producto-hover figcaption .nombre-producto,
#ripley-mattel .producto.producto-hover figcaption .precio-normal,
#ripley-mattel .producto.producto-hover figcaption .precio-oferta,
#ripley-mattel .producto.producto-hover figcaption .opex {
    color: #ffffff
}

#ripley-mattel .producto.producto-hover figcaption .nombre-producto span,
#ripley-mattel .producto.producto-hover figcaption .precio-normal span,
#ripley-mattel .producto.producto-hover figcaption .precio-oferta span,
#ripley-mattel .producto.producto-hover figcaption .opex span {
    color: #ffffff
}

#ripley-mattel .producto.producto-hover:hover figcaption {
    visibility: visible;
    opacity: 1;
    padding-top: 25%;
}

#ripley-mattel .producto.producto-hover.big-barbie {
    padding: 131px 20px
}

@media (max-width: 1024px) {
    #ripley-mattel .producto.producto-hover.big-barbie {
        padding: 115px 20px
    }
}

#ripley-mattel .producto.producto-hover.big-barbie figcaption {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

#ripley-mattel .producto.producto-hover.big-hw {
    padding: 77px 82px 78px 82px
}

#ripley-mattel .producto.producto-hover.big-hw figcaption {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

#ripley-mattel .producto.producto-hover.medium-hw {
    padding: 62px 0
}

#ripley-mattel .producto.producto-hover.big-fisher {
    padding: 132px 20px
}

@media (max-width: 1024px) {
    #ripley-mattel .producto.producto-hover.big-fisher {
        padding: 115px 20px
    }
}

#ripley-mattel .producto.producto-hover.big-fisher figcaption {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

#ripley-mattel .content-tabs {
    margin-bottom: 20px
}

#ripley-mattel .content-tabs ul.menu-tabs,
#ripley-mattel .content-tabs ul.menu-filtros-fp {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    z-index: 100;
    position: relative
}

@media (max-width: 992px) {
    #ripley-mattel .content-tabs ul.menu-tabs,
    #ripley-mattel .content-tabs ul.menu-filtros-fp {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

#ripley-mattel .content-tabs ul.menu-tabs li,
#ripley-mattel .content-tabs ul.menu-filtros-fp li {
    float: left;
    margin: 0;
    width: 14%;
    margin: 0 0.5%;
    background: #E8E8E8;
    border-radius: 10px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2)
}

@media (max-width: 992px) {
    #ripley-mattel .content-tabs ul.menu-tabs li,
    #ripley-mattel .content-tabs ul.menu-filtros-fp li {
        width: 65px;
        height: 65px
    }
}

@media (max-width: 650px) {
    #ripley-mattel .content-tabs ul.menu-tabs li,
    #ripley-mattel .content-tabs ul.menu-filtros-fp li {
        margin-bottom: 10px
    }
}

#ripley-mattel .content-tabs ul.menu-tabs li:first-child,
#ripley-mattel .content-tabs ul.menu-filtros-fp li:first-child {
    margin-left: 0
}

#ripley-mattel .content-tabs ul.menu-tabs li:last-child,
#ripley-mattel .content-tabs ul.menu-filtros-fp li:last-child {
    margin-right: 0
}

#ripley-mattel .content-tabs ul.menu-tabs li a,
#ripley-mattel .content-tabs ul.menu-filtros-fp li a {
    line-height: 120%;
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    color: #28CAD6;
    font-size: 12px
}

@media (max-width: 992px) {
    #ripley-mattel .content-tabs ul.menu-tabs li a,
    #ripley-mattel .content-tabs ul.menu-filtros-fp li a {
        font-size: 0;
        padding: 5px
    }
}

#ripley-mattel .content-tabs ul.menu-tabs li.active,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active {
    background: #ffffff
}

#ripley-mattel .content-tabs ul.menu-tabs li.active a,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active a {
    color: #EE4399
}

#ripley-mattel .content-tabs ul.menu-tabs li.active a:after,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active a:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #fff;
    position: absolute;
    left: 50%;
    bottom: -15px;
    margin: 0 0 0 -10px
}

@media (max-width: 991px) {
    #ripley-mattel .content-tabs ul.menu-tabs li.active a:after,
    #ripley-mattel .content-tabs ul.menu-filtros-fp li.active a:after {
        display: none
    }
}

#ripley-mattel .content-tabs ul.menu-tabs li.active a .icon-barbie.ico-entretenimiento,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active a .icon-barbie.ico-entretenimiento {
    background-position: 0 -55px
}

#ripley-mattel .content-tabs ul.menu-tabs li.active a .icon-barbie.ico-fantasia,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active a .icon-barbie.ico-fantasia {
    background-position: -55px -55px
}

#ripley-mattel .content-tabs ul.menu-tabs li.active a .icon-barbie.ico-peinados,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active a .icon-barbie.ico-peinados {
    background-position: -110px -55px
}

#ripley-mattel .content-tabs ul.menu-tabs li.active a .icon-barbie.ico-profeciones,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active a .icon-barbie.ico-profeciones {
    background-position: -165px -55px
}

#ripley-mattel .content-tabs ul.menu-tabs li.active a .icon-barbie.ico-accesorios,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active a .icon-barbie.ico-accesorios {
    background-position: -220px -55px
}

#ripley-mattel .content-tabs ul.menu-tabs li.active a .icon-barbie.ico-fashion,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active a .icon-barbie.ico-fashion {
    background-position: -275px -55px
}

#ripley-mattel .content-tabs ul.menu-tabs li.active a .icon-barbie.ico-familia,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active a .icon-barbie.ico-familia {
    background-position: -330px -55px
}

#ripley-mattel .content-tabs ul.menu-tabs li.active a .icon-hw.ico-playsets,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active a .icon-hw.ico-playsets {
    background-position: 0 -55px
}

#ripley-mattel .content-tabs ul.menu-tabs li.active a .icon-hw.ico-tracks,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active a .icon-hw.ico-tracks {
    background-position: -55px -55px
}

#ripley-mattel .content-tabs ul.menu-tabs li.active a .icon-hw.ico-builders,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active a .icon-hw.ico-builders {
    background-position: -110px -55px
}

#ripley-mattel .content-tabs ul.menu-tabs li.active a .icon-hw.ico-shifters,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active a .icon-hw.ico-shifters {
    background-position: -165px -55px
}

#ripley-mattel .content-tabs ul.menu-tabs li.active a .icon-hw.ico-dc-comics,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active a .icon-hw.ico-dc-comics {
    background-position: -220px -55px
}

#ripley-mattel .content-tabs ul.menu-tabs li.active a .icon-hw.ico-innovation,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active a .icon-hw.ico-innovation {
    background-position: -275px -55px
}

#ripley-mattel .content-tabs ul.menu-tabs li.active a .icon-infantil.ico-basicos,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active a .icon-infantil.ico-basicos {
    background-position: 0 -55px
}

#ripley-mattel .content-tabs ul.menu-tabs li.active a .icon-infantil.ico-aprende,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active a .icon-infantil.ico-aprende {
    background-position: -55px -55px
}

#ripley-mattel .content-tabs ul.menu-tabs li.active a .icon-infantil.ico-new-born,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active a .icon-infantil.ico-new-born {
    background-position: -110px -55px
}

#ripley-mattel .content-tabs ul.menu-tabs li.active a .icon-infantil.ico-moviles,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active a .icon-infantil.ico-moviles {
    background-position: -165px -55px
}

#ripley-mattel .content-tabs ul.menu-tabs li.active a .icon-infantil.ico-mecedoras,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active a .icon-infantil.ico-mecedoras {
    background-position: -220px -55px
}

#ripley-mattel .content-tabs ul.menu-tabs li.active a .icon-infantil.ico-movilidad,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active a .icon-infantil.ico-movilidad {
    background-position: -275px -55px
}

#ripley-mattel .content-tabs ul.menu-tabs li.active a .icon-mega-bloks.ico-construcciones,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active a .icon-mega-bloks.ico-construcciones {
    background-position: 0 -55px
}

#ripley-mattel .content-tabs ul.menu-tabs li.active a .icon-mega-bloks.ico-tortugas,
#ripley-mattel .content-tabs ul.menu-filtros-fp li.active a .icon-mega-bloks.ico-tortugas {
    background-position: -55px -55px
}

#ripley-mattel .content-tabs ul.menu-tabs.tabs-hw li a,
#ripley-mattel .content-tabs ul.menu-filtros-fp.tabs-hw li a {
    color: #3FA2D6
}

#ripley-mattel .content-tabs ul.menu-tabs.tabs-hw li.active a,
#ripley-mattel .content-tabs ul.menu-filtros-fp.tabs-hw li.active a {
    color: #ED1C24
}

#ripley-mattel .content-tabs ul.menu-tabs.tabs-infantil li a,
#ripley-mattel .content-tabs ul.menu-filtros-fp.tabs-infantil li a {
    color: #3FA2D6
}

#ripley-mattel .content-tabs ul.menu-tabs.tabs-infantil li.active a,
#ripley-mattel .content-tabs ul.menu-filtros-fp.tabs-infantil li.active a {
    color: #ED1C24
}

#ripley-mattel .content-tabs ul.menu-filtros-fp {
    margin: 30px 0 60px
}

@media (max-width: 992px) {
    #ripley-mattel .content-tabs ul.menu-filtros-fp {
        margin: 20px 0 30px
    }
}

@media (max-width: 992px) {
    #ripley-mattel .content-tabs ul.menu-filtros-fp li {
        width: 80px;
        height: 80px
    }
}

#ripley-mattel .content-tabs .info-tabs .tab,
#ripley-mattel .content-tabs .info-filtros-fp .tab {
    display: none
}

#ripley-mattel .content-tabs .info-tabs .tab.active,
#ripley-mattel .content-tabs .info-filtros-fp .tab.active {
    display: block
}

#ripley-mattel .content-tabs .info-filtros-fp:before {
    content: '';
    background: url("../images/bg/bg-fp-up.svg") repeat-x left bottom #00CAEB;
    display: block;
    width: 100%;
    height: 28px
}

#ripley-mattel .content-tabs .info-filtros-fp:after {
    content: '';
    background: url("../images/bg/bg-fp-down.svg") repeat-x left top #90DBE7;
    display: block;
    width: 100%;
    height: 28px
}

#ripley-mattel .screen {
    width: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    z-index: 9999;
    opacity: 0;
    transition: opacity 300ms ease
}

#ripley-mattel .screen.on-screen {
    opacity: 1
}

#ripley-mattel .screen * {
    box-sizing: border-box
}

#ripley-mattel .lightbox {
    padding: 20px;
    position: relative;
    width: 90%;
    max-width: 750px;
    margin: 0 auto;
    overflow: hidden
}

#ripley-mattel .lightbox h2 {
    color: #000;
    font-size: 20px
}

#ripley-mattel .lightbox p {
    text-transform: uppercase
}

#ripley-mattel .lightbox .sku-title {
    color: #666666;
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 10px
}

#ripley-mattel .lightbox .small-text {
    font-size: 14px;
    margin-bottom: 0
}

#ripley-mattel .lightbox .botones {
    margin-top: 10px
}

#ripley-mattel .lightbox .product-box {
    margin-bottom: 0
}

#ripley-mattel .lightbox .product-box h3,
#ripley-mattel .lightbox .product-box .oferta-price {
    font-size: 14px
}

#ripley-mattel .lightbox .galeria {
    overflow: hidden;
    margin-top: 12px
}

#ripley-mattel .lightbox .galeria ul {
    list-style: none;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

#ripley-mattel .lightbox .galeria ul li {
    width: 30%;
    padding: 5px 2px;
    border: 4px solid #E5E5E5;
    margin: 4px 1.6%
}

#ripley-mattel .lightbox .galeria ul li a img {
    width: 100%
}

#ripley-mattel .lightbox .content-galeria {
    margin-bottom: 10px
}

#ripley-mattel .lightbox .galeria-vertical {
    margin: 0
}

#ripley-mattel .lightbox .galeria-vertical .items-galeria {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

#ripley-mattel .lightbox .galeria-vertical .items-galeria li {
    width: 100%;
    border: 1px solid #E5E5E5;
    padding: 0;
    margin: 0 0 10px
}

@media (max-width: 767px) {
    #ripley-mattel .lightbox .galeria-vertical .items-galeria {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
    #ripley-mattel .lightbox .galeria-vertical .items-galeria li {
        width: 30%;
        margin-top: 10px;
        margin-right: 10px
    }

    #ripley-mattel .producto.producto-hover figure {
        padding-bottom:10px;
    }
    #ripley-mattel .producto.producto-hover figure figcaption {
        position: relative;
        clear: both;
        margin: 0 auto;
        visibility: visible;
        opacity: 1;
        background: transparent;
        padding: 10px 0;
    }
    #ripley-mattel .producto.producto-hover:hover figcaption {
        padding-top:10px;
    }
    #ripley-mattel .producto .nombre-producto {
        color: black;
        line-height: 1;
    }
    #ripley-mattel .producto .btn-comprar {
        color: black;
        border-color: black;
    }
    #ripley-mattel .producto.producto-hover figcaption .nombre-producto, #ripley-mattel .producto.producto-hover figcaption .precio-normal, #ripley-mattel .producto.producto-hover figcaption .precio-oferta, #ripley-mattel .producto.producto-hover figcaption .opex {
        color: black;
    }
}

#ripley-mattel .lightbox .product-points {
    margin-top: 0
}

#ripley-mattel .lightbox.proximamente {
    max-width: 560px !important
}

#ripley-mattel .lightbox.proximamente ul li {
    display: inline-block;
    margin: 10px
}

#ripley-mattel .lightbox.proximamente ul li.sale_price {
    color: red
}

#ripley-mattel .lightbox.proximamente ul li.opex_price {
    color: red;
    font-weight: 700
}

#ripley-mattel .lightbox .informacion h4 {
    text-align: left !important
}

#ripley-mattel .lightbox .informacion {
    visibility: hidden
}

#ripley-mattel .lightbox .informacion.proximamente h2 {
    text-align: center;
    font-size: 24px
}

@media (max-width: 640px) {
    #ripley-mattel .lightbox .informacion.proximamente h2 {
        font-size: 18px
    }
}

#ripley-mattel .lightbox .mensaje-no-encuentra {
    display: none;
    text-align: center;
    font-weight: 700;
    font-size: 24px
}

#ripley-mattel .lightbox .mensaje-no-encuentra h2 {
    text-align: center;
    font-weight: 700;
    font-size: 24px
}

#ripley-mattel .lightbox .modal-wrapp {
    padding: 40px 20px 10px;
    border: 1px solid #000;
    background-color: #fff
}

#ripley-mattel .lightbox .col-text {
    padding: 0 3%
}

#ripley-mattel .lightbox .col-text h3 {
    text-decoration: none
}

#ripley-mattel .lightbox .col-text p {
    text-align: center
}

#ripley-mattel .lightbox .btn:hover {
    background-color: #404040;
    color: #FFF
}

#ripley-mattel .lightbox button:active,
#ripley-mattel .lightbox button:hover,
#ripley-mattel .lightbox button:focus {
    outline: 0 none;
    border-radius: 0
}

#ripley-mattel .lightbox .modal-footer {
    background-color: #eee;
    padding: 10px;
    text-align: right
}

#ripley-mattel .lightbox .modal-footer p,
#ripley-mattel .lightbox .modal-footer a {
    font-weight: 700;
    font-size: 12px
}

#ripley-mattel .lightbox .modal-footer p {
    display: inline-block;
    color: #333;
    margin-bottom: 0
}

#ripley-mattel .lightbox .bordered-bottom-box {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc
}

#ripley-mattel .lightbox .normal-price {
    display: block;
    font-size: 16px;
    color: #777777;
    margin-bottom: 5px
}

#ripley-mattel .lightbox .oferta-price-2 {
    font-size: 16px;
    font-weight: 700;
    display: block;
    color: #E9524F;
    margin-bottom: 5px
}

#ripley-mattel .lightbox .oferta-price {
    color: #E9524F;
    font-size: 18px;
    font-weight: 700;
    min-height: 25px;
    display: block;
    margin-bottom: 5px
}

#ripley-mattel .lightbox .oferta-price svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    vertical-align: bottom
}

#ripley-mattel .lightbox .small-text {
    font-size: 12px;
    margin-bottom: 0;
    margin-top: 0
}

#ripley-mattel .lightbox .product-name {
    margin-bottom: 0
}

#ripley-mattel .lightbox .stronger-text {
    margin-bottom: 15px
}

#ripley-mattel .lightbox .add-bag {
    background-color: #eee;
    visibility: hidden;
    min-height: 0;
    opacity: 0;
    transition: all 300ms ease;
    width: 100%
}

#ripley-mattel .lightbox .add-bag.active {
    visibility: visible;
    display: block;
    min-height: 35px;
    opacity: 1;
    padding: 10px;
    margin: 0 0 10px
}

#ripley-mattel .lightbox .add-bag p {
    margin: 0;
    font-size: 12px;
    line-height: 0
}

#ripley-mattel .lightbox #producto h4 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 22px
}

#ripley-mattel .lightbox .error-variantes {
    clear: both;
    overflow: hidden;
    color: #d7292a;
    display: none;
    margin-bottom: 0
}

#ripley-mattel .lightbox .card-img,
#ripley-mattel .lightbox .oferta-price {
    display: inline-block;
    vertical-align: middle
}

#ripley-mattel .lightbox .talla {
    display: block;
    overflow: hidden;
    margin-bottom: 10px;
    text-align: left;
    font-size: .875em;
    line-height: 150%;
    font-weight: 600;
    color: #404040
}

#ripley-mattel .lightbox .talla ul li {
    cursor: pointer;
    font-size: .875em;
    float: left;
    list-style: none;
    border: 3px solid #E5E5E5;
    background-color: #FFF;
    padding: 0 3px;
    margin-right: 5px
}

#ripley-mattel .lightbox .talla ul li a {
    color: #000;
    text-decoration: none
}

#ripley-mattel .lightbox .color {
    display: block;
    overflow: hidden;
    margin-bottom: 20px;
    text-align: left;
    font-size: .875em;
    line-height: 150%;
    font-weight: 600
}

#ripley-mattel .lightbox .color ul li {
    cursor: pointer;
    font-size: .875em;
    float: left;
    list-style: none;
    border: 3px solid #E5E5E5;
    background-color: #FFF;
    padding: 1px 3px;
    margin-right: 5px
}

#ripley-mattel .lightbox .color ul li a {
    color: #404040;
    text-decoration: none
}

#ripley-mattel .lightbox .color ul li a img {
    display: block
}

#ripley-mattel .lightbox .talla ul li:hover,
#ripley-mattel .lightbox .talla ul li.active,
#ripley-mattel .lightbox .color ul li:hover,
#ripley-mattel .lightbox .color ul li.active {
    border: 3px solid #FAC549
}

#ripley-mattel .lightbox .vtalla,
#ripley-mattel .lightbox .vcolor,
#ripley-mattel .lightbox .variantes {
    display: none
}

#ripley-mattel .lightbox .btn-accion {
    display: inline-block;
    margin: 0 auto 10px;
    font-size: 14px;
    clear: both;
    text-align: center;
    font-weight: normal !important;
    font-family: Arial, Helvetica, sans-serif !important
}

#ripley-mattel .lightbox .btn-comprar {
    clear: both;
    width: 100%;
    height: 39px;
    padding: 0;
    background-color: #E9524D;
    border: none;
    border-radius: 5px;
    color: #fff;
    line-height: 40px;
    letter-spacing: 1px;
    text-decoration: none
}

#ripley-mattel .lightbox .btn-agregar {
    height: 20px;
    color: #999;
    display: block;
    line-height: 17px
}

#ripley-mattel .lightbox .close-btn {
    background: url("../images/iconos/icon-cerrar.svg") no-repeat center #000;
    position: absolute;
    right: 7px;
    top: 22px;
    width: 35px;
    height: 35px;
    text-indent: -9999px;
    cursor: pointer;
    display: block;
    visibility: visible;
    transition: all 300ms ease;
    z-index: 2
}

#ripley-mattel .lightbox .close-btn:hover {
    background-color: #333333
}

#ripley-mattel .lightbox .disponible-tienda {
    text-align: center
}

#ripley-mattel .lightbox .disponible-tienda h2 {
    font-size: 32px;
    text-decoration: underline
}

#ripley-mattel .lightbox .disponible-tienda h3 {
    font-size: 25px;
    text-decoration: none;
    margin: 0
}

#ripley-mattel .lightbox .disponible-tienda .sku {
    border-bottom: 1px solid #ccc;
    width: auto;
    display: inline-block;
    padding: 0 16px 6px;
    margin-bottom: 8px;
    font-size: 14px
}

#ripley-mattel .lightbox .disponible-tienda .price {
    font-size: 14px;
    margin-bottom: 40px
}

#ripley-mattel .lightbox .disponible-tienda div p {
    font-size: 11px;
    text-transform: none
}

#ripley-mattel .lightbox .disponible-tienda div p strong {
    text-transform: uppercase
}

#ripley-mattel .lightbox .despacho ul {
    list-style: none;
    padding: 0
}

#ripley-mattel .lightbox .despacho ul li {
    float: left;
    width: 33%;
    font-size: 11px;
    text-align: left;
    border-left: 1px solid #dddddd;
    padding: 0 5px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 450px) {
    #ripley-mattel .lightbox .despacho ul li {
        width: 100%;
        border-left: none
    }
}

#ripley-mattel .lightbox .despacho ul li:first-child {
    border-left: none
}

#ripley-mattel .lightbox .despacho ul li .icon-despacho {
    background: url("../images/iconos/icons-despacho.svg") no-repeat left top;
    width: 30px;
    height: 30px;
    display: table-cell
}

#ripley-mattel .lightbox .despacho ul li .icon-despacho.icon-domicilio {
    background-position: 0 0
}

#ripley-mattel .lightbox .despacho ul li .icon-despacho.icon-remoto {
    background-position: 0 -30px
}

#ripley-mattel .lightbox .despacho ul li .icon-despacho.icon-tienda {
    background-position: 0 -60px
}

#ripley-mattel .lightbox .despacho ul li.active {
    color: #54B268
}

#ripley-mattel .lightbox .despacho ul li.active .icon-despacho.icon-domicilio {
    background-position: -30px 0
}

#ripley-mattel .lightbox .despacho ul li.active .icon-despacho.icon-remoto {
    background-position: -30px -30px
}

#ripley-mattel .lightbox .despacho ul li.active .icon-despacho.icon-tienda {
    background-position: -30px -60px
}

#ripley-mattel .lightbox .despacho ul li span {
    padding-left: 5px;
    width: 70%
}

#ripley-mattel .close-lightbox {
    position: absolute;
    right: 0;
    top: 0;
    width: 34px;
    height: 34px;
    color: #FFF;
    font-weight: 600;
    background-color: #FFCF00;
    padding: 9px
}

#ripley-mattel .close-lightbox i {
    background-position: -146px -90px;
    cursor: pointer;
    display: inline-block;
    height: 16px;
    transition: -webkit-transform ease 300ms;
    transition: transform ease 300ms;
    transition: transform ease 300ms, -webkit-transform ease 300ms;
    width: 16px
}

#ripley-mattel .close-lightbox i:hover {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}


/*# sourceMappingURL=main.css.map */