@charset "UTF-8";
/*********************************************************************/
/*** COULEUR *********************************************************/
/*********************************************************************/
/*********************************************************************/
/*** TYPOGRAPHIES ****************************************************/
/*********************************************************************/
/*------------------------------------*\
    MIXINS
\*------------------------------------*/
/*********************************************************************/
/*** MIXIN ***********************************************************/
/*********************************************************************/
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

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

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

.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

@-webkit-keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-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% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-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);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-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;
    }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-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);
        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);
    }
}

.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);
        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);
    }
}

.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);
        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);
    }
}

.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);
        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);
    }
}

.swing {
    -webkit-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);
        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);
    }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-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;
        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;
    }
}

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

@-webkit-keyframes jello {
    11.1% {
        -webkit-transform: none;
        transform: none;
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
        transform: skewX(0.39063deg) skewY(0.39063deg);
    }
    88.8% {
        -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
        transform: skewX(-0.19531deg) skewY(-0.19531deg);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes jello {
    11.1% {
        -webkit-transform: none;
        transform: none;
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
        transform: skewX(0.39063deg) skewY(0.39063deg);
    }
    88.8% {
        -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
        transform: skewX(-0.19531deg) skewY(-0.19531deg);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}

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

@-webkit-keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-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% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-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);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-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% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-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;
    }
}

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

@-webkit-keyframes bounceInLeft {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-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% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-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;
    }
}

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

@-webkit-keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-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% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-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;
    }
}

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

@-webkit-keyframes bounceInUp {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-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% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-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);
    }
}

.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);
        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);
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}

@-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);
        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);
    }
}

.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);
        transform: translate3d(20px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.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);
        transform: translate3d(-20px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.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);
        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);
    }
}

.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;
    }
}

.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);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.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);
        transform: translate3d(0, -2000px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.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);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.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);
        transform: translate3d(-2000px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.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);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.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);
        transform: translate3d(2000px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.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);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.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);
        transform: translate3d(0, 2000px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.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;
    }
}

.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);
        transform: translate3d(0, 100%, 0);
    }
}

.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);
        transform: translate3d(0, 2000px, 0);
    }
}

.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);
        transform: translate3d(-100%, 0, 0);
    }
}

.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);
        transform: translate3d(-2000px, 0, 0);
    }
}

.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);
        transform: translate3d(100%, 0, 0);
    }
}

.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);
        transform: translate3d(2000px, 0, 0);
    }
}

.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);
        transform: translate3d(0, -100%, 0);
    }
}

.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);
        transform: translate3d(0, -2000px, 0);
    }
}

.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);
        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;
    }
}

.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);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

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

.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);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

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

.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);
        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;
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -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);
        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;
    }
}

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

@-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);
        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;
    }
}

.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);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

.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;
        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;
    }
}

.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;
        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;
    }
}

.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;
        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;
    }
}

.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;
        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;
    }
}

.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;
        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;
    }
}

.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;
        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;
    }
}

.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;
        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;
    }
}

.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;
        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;
    }
}

.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;
        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;
    }
}

.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;
        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;
    }
}

.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;
        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;
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-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);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-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);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

.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);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}

.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);
        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);
    }
}

.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);
        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);
    }
}

.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);
        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);
    }
}

.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);
        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);
    }
}

.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);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    100% {
        opacity: 0;
    }
}

.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);
        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);
    }
}

.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);
        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;
    }
}

.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);
        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;
    }
}

.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);
        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);
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
}

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

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

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

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

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

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

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

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

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

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

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

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

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

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

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}

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

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

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

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

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

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

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

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

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

/* overlay at start */
.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

/*

====== Zoom effect ======

*/
.mfp-zoom-in {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-zoom-in .mfp-with-anim {
    opacity: 0;
    transition: all 0.2s ease-in-out;
    transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
    transform: scale(0.8);
    opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}

.Btn {
    display: inline-block;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: none;
    line-height: 120%;
    padding: 18px 35px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-size: 1.4rem;
    box-shadow: none;
    cursor: pointer;
    border-radius: 0;
    -webkit-appearance: none;
    letter-spacing: 2px;
    outline: none;
    transition: 0.2s ease-out;
}

#submitMessage{
    color:#000;
    border:1px solid #000;
}
#submitMessage:hover{
    color:#fff;
    background:#000;
}

.Btn:hover, .Btn:active, .Btn:focus {
    background-color: rgba(255, 255, 255, 0.15);
    text-decoration: none;
    color: #ffffff;
    outline: none;
}

.Btn:active {
    background-color: rgba(255, 255, 255, 0.05);
}

.Btn.big {
    letter-spacing: 6px;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 400;
}

@media screen and (max-width: 639px) {
    .Btn.big {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.Btn.small {
    padding: 5px 8px;
    font-size: 12px;
    font-size: 1.2rem;
    text-transform: none;
}

.Btn.bleu {
    color: #000;
    border-color: #d9d9d9;
}

.Btn.bleu.standard-checkout {
    background: #000;
    color: #ffffff;
    border-color: #000;
}

.Btn.bleu:hover, .Btn.bleu:active, .Btn.bleu:focus {
    background-color: rgba(217, 217, 217, 0.5);
    text-decoration: none;
    color: #000;
}

.Btn.bleu:active {
    background-color: rgba(217, 217, 217, 0.6);
}

.Btn.right {
    float: right;
}

/* -------------------------------------------------------------- */
/* CUSTOM SELECT ------------------------------------------------ */
/* Container used for styling the custom select, the buttom class below adds the bg gradient, corners, etc. */
.CustomSelect {
    position: relative;
    display: inline-block;
    padding: 0;
    border: none;
    background: #ffffff;
    border-radius: 2px;
}

/* This is the native select, we're making everything but the text invisible so we can see the button styles in the wrapper */
.CustomSelect select {
    width: 100%;
    margin: 0;
    background: transparent;
    border: 1px solid transparent;
    outline: none;
    /* Prefixed box-sizing rules necessary for older browsers */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* Remove select styling */
    appearance: none;
    -webkit-appearance: none;
    /* Font size must the 16px or larger to prevent iOS page zoom on focus */
    font-size: 1em;
    /* General select styles: change as needed */
    padding: 5px 10px;
    border: none;
    height: 50px;
    line-height: 40px;
    color: #000;
    font-size: 16px;
    font-size: 1.6rem;
}

/* Custom arrow sits on top of the select - could be an image, SVG, icon font, etc. or the arrow could just baked into the bg image on the select. Note this si a 2x image so it will look bad in browsers that don't support background-size. In production, you'd handle this resolution switch via media query but this is a demo. */
.CustomSelect::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 8px;
    top: 50%;
    right: 1em;
    margin-top: -2px;
    background-image: url(../../img/piolav2/icons/bg-select.png);
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 2;
    /* This hack make the select behind the arrow clickable in some browsers */
    pointer-events: none;
}

/* Focus style */
.CustomSelect select:focus {
    outline: none;
    box-shadow: 0 0 5px 1px rgba(30, 163, 165, 0.5);
    background-color: transparent;
    color: #2c2723;
}

/* Set options to normal weight */
.CustomSelect option {
    font-weight: normal;
}

/* OPERA - Pre-Blink nix the custom arrow, go with a native select button to keep it simple. Targeted via this hack http://browserhacks.com/#hack-a3f166304aafed524566bc6814e1d5c7 */
x:-o-prefocus, .CustomSelect::after {
    display: none;
}

/* IE 10/11+ - This hides native dropdown button arrow so it will have the custom appearance, IE 9 and earlier get a native select - targeting media query hack via http://browserhacks.com/#hack-28f493d247a12ab654f6c3637f6978d5 - looking for better ways to achieve this targeting */
/* The second rule removes the odd blue bg color behind the text in the select button in IE 10/11 and sets the text color to match the focus style's - fix via http://stackoverflow.com/questions/17553300/change-ie-background-color-on-unopened-focused-select-box */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .CustomSelect select::-ms-expand {
        display: none;
    }

    .CustomSelect select:focus::-ms-value {
        background: transparent;
        color: #2c2723;
    }
}

/* FIREFOX won't let us hide the native select arrow, so we have to make it wider than needed and clip it via overflow on the parent container. The percentage width is a fallback since FF 4+ supports calc() so we can just add a fixed amount of extra width to push the native arrow out of view. We're applying this hack across all FF versions because all the previous hacks were too fragile and complex. You might want to consider not using this hack and using the native select arrow in FF. Note this makes the menus wider than the select button because they display at the specified width and aren't clipped. Targeting hack via http://browserhacks.com/#hack-758bff81c5c32351b02e10480b5ed48e */
/* Show only the native arrow */
@-moz-document url-prefix() {
    .CustomSelect {
        overflow: hidden;
    }

    .CustomSelect select {
        width: 120%;
        width: -moz-calc(100% + 3em);
        width: calc(100% + em);
    }
}

/* Firefox focus has odd artifacts around the text, this kills that. See https://developer.mozilla.org/en-US/docs/Web/CSS/:-moz-focusring */
.CustomSelect select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

.InputText {
    display: inline-block;
    padding: 5px 10px;
    background: #ffffff;
    border: none;
    height: 40px;
    line-height: 30px;
    color: #000;
    font-size: 14px;
    font-size: 1.4rem;
    border-radius: 2px;
    -webkit-appearance: none;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
}

.InputText.wpcf7-not-valid {
    border: 1px solid red;
}

input, button, select, textarea {
}

.rte.content_only,
#cms #center_column,
#page .rte,
.BlocCMS-texte {
    width: 800px;
    margin: 20px auto;
}

@media screen and (max-width: 959px) {
    .rte.content_only,
    #cms #center_column,
    #page .rte,
    .BlocCMS-texte {
        width: auto;
    }
}

.rte.content_only hr,
#cms #center_column hr,
#page .rte hr,
.BlocCMS-texte hr {
    width: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 35px auto;
}

.rte.content_only h1, .rte.content_only h2, .rte.content_only h3, .rte.content_only h4, .rte.content_only h5, .rte.content_only h6,
#cms #center_column h1,
#cms #center_column h2,
#cms #center_column h3,
#cms #center_column h4,
#cms #center_column h5,
#cms #center_column h6,
#page .rte h1,
#page .rte h2,
#page .rte h3,
#page .rte h4,
#page .rte h5,
#page .rte h6,
.BlocCMS-texte h1,
.BlocCMS-texte h2,
.BlocCMS-texte h3,
.BlocCMS-texte h4,
.BlocCMS-texte h5,
.BlocCMS-texte h6 {
    font-size: 16px;
    font-size: 1.6rem;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 180%;
}

.rte.content_only h1,
#cms #center_column h1,
#page .rte h1,
.BlocCMS-texte h1 {
    font-size: 24px;
    font-size: 2.4rem;
}

.rte.content_only h2,
#cms #center_column h2,
#page .rte h2,
.BlocCMS-texte h2 {
    font-size: 20px;
    font-size: 2rem;
}

.rte.content_only p,
#cms #center_column p,
#page .rte p,
.BlocCMS-texte p {
    line-height: 200%;
    margin-bottom: 20px;
}

.rte.content_only table,
#cms #center_column table,
#page .rte table,
.BlocCMS-texte table {
    border-top: 2px solid #272746;
    border-bottom: 1px solid #272746;
    margin-top: 20px;
    width: 100%;
}

.rte.content_only table tr,
#cms #center_column table tr,
#page .rte table tr,
.BlocCMS-texte table tr {
    border-bottom: 1px solid #272746;
}

.rte.content_only table tr p,
#cms #center_column table tr p,
#page .rte table tr p,
.BlocCMS-texte table tr p {
    margin: 0;
}

.rte.content_only table th,
#cms #center_column table th,
#page .rte table th,
.BlocCMS-texte table th {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
}

.rte.content_only table td, .rte.content_only table th,
#cms #center_column table td,
#cms #center_column table th,
#page .rte table td,
#page .rte table th,
.BlocCMS-texte table td,
.BlocCMS-texte table th {
    padding: 15px 10px;
}

.rte.content_only ul,
#cms #center_column ul,
#page .rte ul,
.BlocCMS-texte ul {
    padding: 0;
}

.rte.content_only li,
#cms #center_column li,
#page .rte li,
.BlocCMS-texte li {
    background: no-repeat left 8px;
    padding-left: 15px;
    background-image: url("../../img/piolav2/icons/puce.png");
    list-style: none;
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
    .rte.content_only li,
    #cms #center_column li,
    #page .rte li,
    .BlocCMS-texte li {
        background-image: url("../../img/piolav2/icons/puce@2x.png");
        -webkit-background-size: 4px 4px;
        -moz-background-size: 4px 4px;
        background-size: 4px 4px;
    }
}

.rte.content_only {
    width: auto;
    padding: 20px;
    color: #ffffff;
}

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    overflow: auto;
    position: relative;
}

html.lookbook, html.index, body.lookbook, body.index {
    position: static;
}

@media screen and (max-width: 639px) {
    html.lookbook, html.index, body.lookbook, body.index {
        overflow: auto;
    }
}

body {
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

body.bg-bleu {
    background: #000;
}

body.bg-bleu .center_column {
    color: #ffffff;
}

.click {
    cursor: pointer;
}

.mfp-bg {
    z-index: 5010;
}

.mfp-wrap {
    z-index: 5030;
}

#page {
    padding-top: 170px;
}

#page.has-float {
    padding-top: 70px !important;
}

@media screen and (max-width: 639px) {
    #page.has-float {
        padding-top: 65px !important;
    }
}

@media screen and (max-width: 639px) {
    #page {
        padding-top: 240px;
    }
}

#page.headerFull {
    padding-top: 0px;
}

.index .WrapHeader .Header .NavShop a {
    color: #000 !important;
}

.index .WrapHeader .Header .NavShop .languages-block span,
.index .WrapHeader .Header .NavShop .languages-block .current {
    color: #000 !important;
}

@media (max-width: 842px) {
    .index .WrapHeader .Header .NavShop .languages-block span,
    .index .WrapHeader .Header .NavShop .languages-block .current {
        color: #fff !important;
    }
}

.index .WrapHeader .Header .NavShop .languages-block .current span {
    border: 1px solid #000 !important;
}

@media (max-width: 842px) {
    .index .WrapHeader .Header .NavShop .languages-block .current span {
        border: 1px solid #fff !important;
    }
}

.index .WrapHeader .Header .NavShop .languages-block_ul li span {
    border: 1px solid #000 !important;
}


@media (max-width: 842px) {
    .index .WrapHeader .Header .NavShop .languages-block_ul li span {
        border: 1px solid #fff !important;
    }
}


.index .HomeStrates .WrapHeader .Header .NavShop .panier {
    color: #000;
}

@media screen and (max-width: 842px) {
    .index.first-page .WrapHeader {
        background-color: transparent;
        transition: all 1s;
    }

    .index .WrapHeader .Header .NavMob .Logo {
        height: 71px;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .index .WrapHeader .Header .NavMob {
        max-height: 71px;
    }

    .index .WrapHeader .Header .BtnNavShop {
        top: 15px;
    }

    .index .WrapHeader .NavShop-link {
        display: none;
    }

    .WrapHeader .NavLeft .list-navleft .NavLeft-elem .NavLeft-link {
        color: #fff !important;
    }

    .index .NavLeft .list-navleft .NavLeft-elem .NavLeft-link {
        color: #000 !important;
    }

    .WrapHeader .NavLeft .list-navleft .NavLeft-elem .NavLeft-link:hover {
        color: #000 !important;
        background-color: #fff !important;
        opacity: 0.70;
    }
}

.index .WrapHeader {
    background: #fff;
    opacity: 0.8;
}

.WrapHeader {
    background: #071d49;
    z-index: 50;
    padding: 30px 40px 10px;
    max-height: 280px;
    transition: 0.5s ease-out;
    transition-property: top, max-height, padding;
    position: fixed;
    top: 0;
    width: 100%;
}

.WrapHeader:after {
    content: "";
    display: table;
    clear: both;
}

@media screen and (max-width: 959px) {
    .WrapHeader {
        padding: 20px 20px 10px;
    }
}

@media screen and (max-width: 639px) {
    .WrapHeader {
        max-height: inherit;
    }
}

.WrapHeader.full {
    max-height: inherit;
    width: 100%;
    top: 0;
    padding-bottom: 180px;
    background: #000 no-repeat center top;
    background-size: cover;
}

@media screen and (max-width: 959px) {
    .WrapHeader.full {
        padding-bottom: 240px;
    }
}

@media screen and (max-width: 639px) {
    .WrapHeader.full {
        padding-bottom: 40px;
    }
}

.WrapHeader.full.financement {
    background-image: url("../../img/piolav2/bg/h-financement.jpg");
    padding-bottom: 165px;
}

@media screen and (max-width: 639px) {
    .WrapHeader.full.financement {
        padding-bottom: 40px;
    }
}

.WrapHeader.full.financement .Header {
    padding-bottom: 0;
}

.WrapHeader.full.financement .Header-title {
    padding-top: 60px;
    margin-bottom: 0;
    padding-bottom: 20px;
}

.WrapHeader.full.contact {
    background-image: url("../../../../img/images/contact-bg.jpg");
}

.WrapHeader.full.cms {
    background-image: url("../../img/piolav2/bg/h-contact.jpg");
}

.WrapHeader.full.cms-4 {
    background-image: url("../../img/piolav2/bg/h-a-propos.jpg");
}

.WrapHeader.full.cms-6 {
    background-image: url("../../../../img/images/savoir-faire-piola-bg.jpg");
}

.WrapHeader.full.cms-7 {
    background-image: url("../../../../img/images/projet-piola-perou-bg.jpg");
}

.WrapHeader.full.news {
    background-image: url("../../img/piolav2/bg/news-in.jpg");
}

.WrapHeader.full .Header-title {
    padding-top: 180px;
}

@media screen and (max-width: 959px) {
    .WrapHeader.full .Header-title {
        padding-top: 130px;
    }
}

.WrapHeader.float {
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    /*max-height: 56px !important;*/
    padding: 16px 40px;
    z-index: 40;
    background-color: #071d49;
    background-position: center !important;
}

.WrapHeader.float.financement {
    padding: 16px 40px;
}

@media screen and (max-width: 959px) {
    .WrapHeader.float {
        padding: 16px 40px 0;
    }
}

@media screen and (max-width: 639px) {
    .WrapHeader.float {
        padding: 0 8px;
        overflow: inherit;
    }
}

.WrapHeader.float .Header-title,
.WrapHeader.float .Header-breadcrumb {
    opacity: 0;
    display: none;
    transform: translate3d(0, -200px, 0);
}

@media screen and (max-width: 639px) {
    .WrapHeader.float .Header-title,
    .WrapHeader.float .Header-breadcrumb {
        display: none;
    }
}

.WrapHeader.float .Logo {
    background-position: top center;
    height: 30px;
    margin-top: 2px;
}

@media screen and (max-width: 639px) {
    .WrapHeader.float .Logo {
        margin-top: 13px;
        background-position: left center;
        left: 5px;
    }
}

.WrapHeader.float .IntroFinancement {
    display: none;
}

.WrapHeader.float .NavLeft.header {
    opacity: 0;
    transform: translate3d(0, -200px, 0);
}

.WrapHeader.float .BtnNavShop {
    height: 40px;
    width: 40px;
    top: 7px;
}

.Header {
    background: transparent;
}

.Header-cart {
    float: right;
}

.Header-title {
    font-size: 2rem;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 12px;
    padding-top: 30px;
    padding-bottom: 30px;
    line-height: 125%;
    margin-top: 0;
    transition: 0.5s ease-out;
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 639px) {
    .Header-title {
        font-size: 28px;
        font-size: 2.8rem;
        letter-spacing: 5px;
    }

    .Header-title br {
        display: none;
    }
}

.Header-breadcrumb {
    color: #ffffff;
    transition: 0.5s ease-out;
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 639px) {
    .Header-breadcrumb a,
    .Header-breadcrumb .Breadcrumb-sep {
        display: none;
    }

    .Header-breadcrumb .Btn {
        display: inline-block;
    }
}

/*@media screen and (min-width: 842px) {*/
/*  .WrapHeader .Header .NavMob {*/
/*    background: #fff;*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    z-index: 20;*/
/*    overflow: hidden;*/
/*    position: fixed;*/
/*    max-height: 56px;*/
/*    padding: 0 8px;*/
/*  }*/
/*  .index .WrapHeader .Header .NavMob {*/
/*    background: #fff;*/
/*  }*/
/*  .WrapHeader .Header .NavMob .Logo {*/
/*    height: 30px; } }*/
/*@media screen and (min-width: 842px) {*/
/*  .WrapHeader .Header .NavMob {*/
/*    background: #071d49;*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    z-index: 20;*/
/*    overflow: hidden;*/
/*    position: fixed;*/
/*    max-height: 56px;*/
/*    padding: 0 8px; }*/
/*  .WrapHeader .Header .NavMob .Logo {*/
/*    margin-top: 14px;*/
/*    margin-bottom: 15px;*/
/*    background-position: left center;*/
/*    left: 5px;*/
/*  }*/
/*  .index .WrapHeader .Header .NavMob {*/
/*    background: #fff;*/
/*  }*/
/*}*/

.Breadcrumb {
    font-size: 12px;
    font-size: 1.2rem;
}

.Breadcrumb .navigation-pipe, .Breadcrumb-sep {
    display: inline-block;
    background: no-repeat center;
    background-image: url("../../img/piolav2/icons/sep.png");
    width: 4px;
    height: 8px;
    margin: 0 9px;
    text-indent: -9999em;
    vertical-align: middle;
    overflow: hidden;
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
    .Breadcrumb .navigation-pipe, .Breadcrumb-sep {
        background-image: url("../../img/piolav2/icons/sep@2x.png");
        -webkit-background-size: 4px 8px;
        -moz-background-size: 4px 8px;
        background-size: 4px 8px;
    }
}

.Breadcrumb .Btn {
    margin-right: 5px;
}

.Breadcrumb .Btn:hover {
    text-decoration: none;
}

.Breadcrumb a {
    color: #ffffff;
}

.Breadcrumb a:hover {
    text-decoration: underline;
}

.index .Logo {
    display: inline-block;
    background: no-repeat center;
    width: 154px;
    height: 20px;
    background-image: url("../../img/piolav2/logo-noir.svg");
    float: left;
    position: relative;
    z-index: 3;
}


.Logo {
    display: inline-block;
    background: no-repeat center;
    width: 154px;
    height: 20px;
    background-image: url("../../img/piolav2/logo-blanc.svg");
    float: left;
    position: relative;
    z-index: 3;
}

/*@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {*/
/*  .Logo {*/
/*    background-image: url("../../img/piolav2/logo@2x.png");*/
/*    -webkit-background-size: 154px 47px;*/
/*    -moz-background-size: 154px 47px;*/
/*    background-size: 154px 47px; } }*/
@media screen and (max-width: 842px) {
    .Logo {
        background-size: contain;
        height: 50px;
        position: relative;
        left: -10px;
    }
}

.BtnNavShop {
    display: none;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: no-repeat center;
    background-image: url("../../img/piolav2/icons/menu.png");
}

.index .BtnNavShop {
    background-color: #000;
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
    .BtnNavShop {
        background-image: url("../../img/piolav2/icons/menu@2x.png");
        -webkit-background-size: 16px 16px;
        -moz-background-size: 16px 16px;
        background-size: 16px 16px;
    }

}

@media screen and (max-width: 842px) {
    .BtnNavShop {
        display: block;
        position: absolute;
        z-index: 50;
        right: 5px;
        top: 5px;
    }
}

.NavShop {
    display: flex;
    align-items: center;
    float: right;
    text-align: right;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1490px) {
    .NavShop {
        padding-top: 10px;
    }
}

@media screen and (max-width: 842px) {
    .NavShop {
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100%;
        background: #000;
        float: none;
        text-align: center;
        padding-top: 70px;
        transition: 0.4s ease-in-out;
    }

    .NavShop.mobile {
        left: 0;
    }
}

.NavShop .header_user_info,
.NavShop .header_cart,
.NavShop #contact-link {
    border: none;
    float: none;
    display: inline-block;
}

@media screen and (max-width: 842px) {
    .NavShop .header_user_info,
    .NavShop #contact-link {
        display: block;
        width: auto;
        margin-top: 10px;
    }
}

.NavShop .header_user_info a,
.NavShop #contact-link a {
    display: inline-block;
    text-shadow: none;
    line-height: 150%;
    padding: 0;
    margin: 0 10px;
    color: #ffffff;
    font-size: 12px;
    font-size: 1.2rem;
}

@media screen and (max-width: 959px) {
    .NavShop .header_user_info a,
    .NavShop #contact-link a {
        margin: 0 5px;
    }
}

@media screen and (max-width: 842px) {
    .NavShop .header_user_info a,
    .NavShop #contact-link a {
    }
}

.NavShop .header_user_info a:hover,
.NavShop #contact-link a:hover {
    color: #8e8e8e;
    text-decoration: underline;
}

.NavShop a {
    display: inline-block;
    line-height: 150%;
    padding: 0;
    margin: 0 10px;
    color: #ffffff;
    font-size: 12px;
    font-size: 1.2rem;
}

@media screen and (max-width: 842px) {
    .NavShop a {
        margin-top: 10px;
        font-size: 14px;
        font-size: 1.4rem;
    }

    .NavShop a:hover {
        color: #ffffff;
    }
}

.NavShop a:hover {
    text-decoration: underline;
}

.NavShop-link.panier {
    width: 20px;
    height: 20px;
    background: no-repeat center;
    text-indent: 9999em;
    background-image: url("../../img/piolav2/panier-sac-blanc.svg");
    overflow: hidden;
    display: inline-block;
    text-shadow: none;
    line-height: 150%;
    padding: 0;
    margin: 0 10px;
    color: #ffffff;
}

/*.index.first-page .NavShop-link.panier {*/
/*  background-image: url("../../img/piolav2/icons/panier3.png");*/
/*}*/
/*  @media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {*/
/*    .NavShop-link.panier {*/
/*      background-image: url("../../img/piolav2/icons/panier@2x.png");*/
/*      -webkit-background-size: 11px 14px;*/
/*      -moz-background-size: 11px 14px;*/
/*      background-size: 11px 14px; } }*/
@media screen and (max-width: 842px) {
    .NavShop-link.panier {
        margin-top: 10px;
        /*width: auto;*/
        text-indent: inherit;
        background-position: left center;
        padding-left: 20px;
        /*height: auto; */
    }
}

.NavShop-link.panier .number {
    height: 18px;
    width: 18px;
    color: #ffffff;
    background: red;
    line-height: 18px;
    text-align: center;
    vertical-align: middle;
    position: absolute;
    top: -5px;
    text-indent: initial;
    display: block;
    border-radius: 100%;
    font-size: 12px;
    right: -5px;
    font-weight: bold;
    letter-spacing: 1px;
}

@media screen and (max-width: 842px) {
    .NavShop-link.eshop {
        display: block;
    }
}

#header .shopping_cart {
    padding-top: 0;
}

.NextStrate {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    background: no-repeat center;
    background-image: url("../../img/piolav2/icons/arrow-next-noir.png");
    width: 50px;
    height: 30px;
    transition: 0.2s ease-out;
    z-index: 5;
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
    .NextStrate {
        background-image: url("../../img/piolav2/icons/arrow-next@2x.png");
        -webkit-background-size: 24px 10px;
        -moz-background-size: 24px 10px;
        background-size: 24px 10px;
    }
}

@media screen and (max-width: 959px) {
    .NextStrate {
        display: none;
    }
}

.NextStrate:hover {
    background-position: center 70%;
}

@keyframes slideInUpBG {
    0% {
        transform: translate3d(0, 40%, 0);
        visibility: visible;
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDownBG {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(0, 20%, 0);
    }
}

.slideInUpBG {
    animation-name: slideInUpBG;
}

.slideInDownBG {
    animation-name: slideInDownBG;
}

.HomeStrates {
    overflow: hidden;
}

.HomeStrates-strate {
    background: #000;
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 639px) {
    .HomeStrates-strate {
        z-index: 1;
        position: relative;
    }
}

.HomeStrates-strate.active {
    animation-name: example;
    animation-duration: 1s;
}

.HomeStrates-strate.btnHovered .HomeStrates-videoBG video,
.HomeStrates-strate.btnHovered .HomeStrates-visuelBG {
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);
    opacity: 1;
}

.HomeStrates-visuelBG {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    transition: 0.2s ease-out;
    background: no-repeat center;
    background-size: cover;
}

.HomeStrates-videoBG {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: 2;
    transition: 0.2s ease-out;
}

.HomeStrates-videoBG video {
    transition: 0.2s ease-out;
    /*opacity: 0.5;*/
    /*filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");*/
    /*!* Firefox 10+, Firefox on Android *!*/
    /*filter: gray;*/
    /*!* IE6-9 *!*/
    /*-webkit-filter: grayscale(100%);*/
    /* Chrome 19+, Safari 6+, Safari 6+ iOS */
}

.HomeStrates-content {
    position: relative;
    z-index: 1;
}

.HomeStrates-title {
    font-size: 60px;
    font-size: 6rem;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    letter-spacing: 25px;
}

.HomeStrates-title a {
    color: #ffffff;
    text-decoration: none !important;
}

@media screen and (max-width: 639px) {
    .HomeStrates-title {
        padding-top: 40px;
        font-size: 35px;
        font-size: 3.5rem;
        letter-spacing: 5px;
    }
}

.HomeStrates-subtitle {
    font-size: 14px;
    font-size: 1.4rem;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 8px;
    margin-bottom: 100px;
    line-height: 140%;
}

@media screen and (max-width: 639px) {
    .HomeStrates-subtitle {
        margin-bottom: 60px;
    }
}

.touch .HomeStrates-videoBG video,
.touch .HomeStrates-visuelBG {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 0.6 !important;
}

.StrateCollection {
    color: #ffffff;
    text-align: center;
}

@media screen and (max-width: 959px) {
    .StrateCollection {
        padding: 160px 20px 300px;
    }
}

@media screen and (max-width: 639px) {
    .StrateCollection {
        padding: 120px 20px 440px;
    }
}

.StrateCollection-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.StrateCollection-title {
    display: inline-block;
    padding-left: 21px;
}

.StrateProjet {
    color: #000;
    background: #FFF;
    clip: rect(0, auto, auto, 0);
}

.StrateProjet-visuelBG {
    background-image: url("../../img/piolav2/bg/project.jpg");
}

@media screen and (max-width: 959px) {
    .StrateProjet > .pp-tableCell {
        display: block;
    }
}

.StrateProjet-left {
    position: absolute;
    left: 0;
    width: 50%;
    bottom: 0;
    top: 0;
    text-align: center;
    padding-top: 480px;
}

@media screen and (max-width: 959px) {
    .StrateProjet-left {
        width: auto;
        position: relative;
        padding: 100px 0;
    }
}

@media screen and (max-width: 639px) {
    .StrateProjet-left {
        padding: 130px 0;
    }
}

.StrateProjet-btnLeft.Btn {
    font-size: 20px;
    font-size: 2rem;
    max-width: 340px;
    line-height: 160%;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 639px) {
    .StrateProjet-btnLeft.Btn {
        font-size: 14px;
        font-size: 1.4rem;
        max-width: 270px;
    }
}

.StrateProjet-right {
    margin-left: 50%;
    padding: 100px;
    text-align: center;

}

.StrateProjet-right .Btn {
    color: #000;
    border: 1px solid #000;
}

.StrateProjet-right .Btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid #000;
    color: #000;
}

@media screen and (max-width: 1300px) {
    .StrateProjet-right {
        padding: 40px;
    }
}

@media screen and (max-width: 959px) {
    .StrateProjet-right {
        margin-left: 0;
    }
}

@media screen and (max-width: 639px) {
    .StrateProjet-right {
        padding: 20px;
    }
}

.StrateProjet-title {
    font-size: 30px;
    font-size: 3rem;
    letter-spacing: 20px;
    margin-bottom: 50px;
}

@media screen and (max-width: 959px) {
    .StrateProjet-title {
        margin-bottom: 30px;
        margin-top: 0;
    }
}

@media screen and (max-width: 639px) {
    .StrateProjet-title {
        font-size: 24px;
        font-size: 2.4rem;
        letter-spacing: 10px;
        margin-bottom: 30px;
    }
}

.StrateProjet-content {
    margin-bottom: 50px;
    letter-spacing: 3px;
    line-height: 190%;
}

@media screen and (max-width: 959px) {
    .StrateProjet-content {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 639px) {
    .StrateProjet-content {
        margin-bottom: 20px;
    }
}

.StrateProjet-wrapBtn {
    text-align: center;
}

@media screen and (max-width: 639px) {
    .StrateProjet-wrapBtn br {
        display: none;
    }
}

.StrateProjet-wrapBtn .Btn {
    width: 300px;
    margin-bottom: 15px;
}

@media screen and (max-width: 959px) {
    .StrateProjet-wrapBtn .Btn {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 639px) {
    .StrateProjet-wrapBtn .Btn {
        display: block;
        width: auto;
        margin-bottom: 10px;
    }
}

.StrateLookbook {
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

@media screen and (max-width: 959px) {
    .StrateLookbook {
        padding: 220px 20px;
    }
}

@media screen and (max-width: 639px) {
    .StrateLookbook {
        padding: 90px 20px;
    }
}

.StrateLookbook-visuelBG {
    background-image: url("../../../../img/images/lookbook-bg.jpg");
    background-position: center bottom;
}

.StrateLookbook-content {
    position: relative;
    z-index: 2;
}

.StrateLookbook-title {
    margin-bottom: 60px;
}

.StrateRevendeurs {
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

@media screen and (max-width: 959px) {
    .StrateRevendeurs {
        padding: 220px 20px;
    }
}

@media screen and (max-width: 639px) {
    .StrateRevendeurs {
        padding: 60px 20px;
    }
}

.StrateRevendeurs-visuelBG {
    background-image: url("../../../../img/images/revendeurs-bg.jpg");
}

.StrateRevendeurs-marker {
    background: no-repeat center;
    background-image: url("../../img/piolav2/markers/white.png");
    display: inline-block;
    width: 20px;
    height: 31px;
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
    .StrateRevendeurs-marker {
        background-image: url("../../img/piolav2/markers/white@2x.png");
        -webkit-background-size: 20px 31px;
        -moz-background-size: 20px 31px;
        background-size: 20px 31px;
    }
}

.StrateRevendeurs-title {
    font-size: 40px;
    font-size: 4rem;
    margin-bottom: 60px;
}

@media screen and (max-width: 639px) {
    .StrateRevendeurs-title {
        font-size: 35px;
        font-size: 3.5rem;
    }
}

.StrateNewsNL {
    position: relative;
    height: 70%;
    background: #fff;
}

.StrateNewsNL-news {
    float: left;
    width: 67%;
}

@media screen and (max-width: 1300px) {
    .StrateNewsNL-news {
        width: 50%;
    }
}

@media screen and (max-width: 959px) {
    .StrateNewsNL-news {
        float: none;
        width: auto;
    }
}

.StrateNewsNL-nl {
    float: left;
    width: 33%;
}

@media screen and (max-width: 1300px) {
    .StrateNewsNL-nl {
        width: 50%;
    }
}

@media screen and (max-width: 959px) {
    .StrateNewsNL-nl {
        float: none;
        width: auto;
    }
}

.LastNews {
    position: relative;
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
    display: table;
    height: 100%;
    background: #000;
    overflow: hidden;
}

@media screen and (max-width: 959px) {
    .LastNews {
        padding: 130px 20px 80px;
        width: 100%;
    }
}

@media screen and (max-width: 639px) {
    .LastNews {
        padding: 40px 20px;
    }
}

.LastNews-visuelBG {
    background-image: url("../../../../img/images/news-bg.jpg");
    z-index: 1;
}

.LastNews-title {
    font-size: 30px;
    font-size: 3rem;
    letter-spacing: 16px;
    line-height: 130%;
    max-width: 670px;
    margin: 0 auto 60px;
}

@media screen and (max-width: 1300px) {
    .LastNews-title {
        font-size: 25px;
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 639px) {
    .LastNews-title {
        letter-spacing: 5px;
        font-size: 20px;
        font-size: 2rem;
    }
}

.LastNews-title a {
    color: #ffffff;
}

.LastNews-content {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    z-index: 2;
}

.Newsletter {
    text-align: center;
    color: #222222;
    display: table;
    height: 100%;
    padding: 45px;
}

@media screen and (max-width: 959px) {
    .Newsletter {
        width: 100%;
    }
}

@media screen and (max-width: 639px) {
    .Newsletter {
        padding: 20px;
    }
}

.Newsletter #newsletter_block_left {
    border: none;
    background: none;
}

.Newsletter-content {
    display: table-cell;
    vertical-align: middle;
}

.Newsletter-content .Btn {
    line-height: 150%;
}

.Newsletter-content .Btn:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
    line-height: 150%;
}

@media screen and (max-width: 639px) {
    .Newsletter-content .Btn {
        font-size: 12px;
        font-size: 1.2rem;
    }

    .Newsletter-content .Btn br {
        display: none;
    }
}

.FooterNewsletter #newsletter_block_left .Newsletter-input,
.Newsletter #newsletter_block_left .Newsletter-input {
    font-size: 16px;
    font-size: 1.6rem;
    border: none;
    border-bottom: 2px solid #666666;
    padding: 12px 0;
    background: none;
    display: block;
    width: 100%;
    border-radius: 0;
    margin-bottom: 55px;
    height: auto;
    letter-spacing: 3px;
    outline: none;
}

@media screen and (max-width: 639px) {
    .FooterNewsletter #newsletter_block_left .Newsletter-input,
    .Newsletter #newsletter_block_left .Newsletter-input {
        margin-bottom: 20px;
    }
}

.FooterNewsletter #newsletter_block_left .Newsletter-input:focus,
.Newsletter #newsletter_block_left .Newsletter-input:focus {
    outline: none;
    box-shadow: none;
}

.Footer {
    background: #ffffff;
    text-align: center;
    display: table;
    width: 100%;
    color: #000;
}

.Footer.home {
    position: relative;
    height: 30%;
}

.Footer-content {
    display: table-cell;
    vertical-align: middle;
}

.Footer-modules {
    padding: 10px 0;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 35px;
}

.Footer-social {
    margin-bottom: 40px;
}

.Footer-title {
    font-size: 18px;
    font-size: 1.8rem;
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
    text-align: center;
    color: #000;
    font-weight: 600;
    letter-spacing: 5px;
    margin-bottom: 20px;
    line-height: 130%;
}

.Footer-socialIcon {
    display: inline-block;
    background: no-repeat center;
    width: 35px;
    height: 30px;
    margin: 0 10px;
    text-indent: -9999em;
    overflow: hidden;
}

.Footer-socialIcon.facebook {
    background-image: url("../../img/piolav2/icons/social/facebook.png");
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
    .Footer-socialIcon.facebook {
        background-image: url("../../img/piolav2/icons/social/facebook@2x.png");
        -webkit-background-size: 9px 19px;
        -moz-background-size: 9px 19px;
        background-size: 9px 19px;
    }
}

.Footer-socialIcon.twitter {
    background-image: url("../../img/piolav2/icons/social/twitter.png");
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
    .Footer-socialIcon.twitter {
        background-image: url("../../img/piolav2/icons/social/twitter@2x.png");
        -webkit-background-size: 21px 17px;
        -moz-background-size: 21px 17px;
        background-size: 21px 17px;
    }
}

.Footer-socialIcon.pinterest {
    background-image: url("../../img/piolav2/icons/social/pinterest.png");
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
    .Footer-socialIcon.pinterest {
        background-image: url("../../img/piolav2/icons/social/pinterest@2x.png");
        -webkit-background-size: 16px 21px;
        -moz-background-size: 16px 21px;
        background-size: 16px 21px;
    }
}

.Footer-socialIcon.instagram {
    background-image: url("../../img/piolav2/icons/social/instagram.png");
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
    .Footer-socialIcon.instagram {
        background-image: url("../../img/piolav2/icons/social/instagram@2x.png");
        -webkit-background-size: 20px 20px;
        -moz-background-size: 20px 20px;
        background-size: 20px 20px;
    }
}

.Footer-copyright {
    color: #000;
    line-height: 240%;
    position: relative;
}

@media screen and (max-width: 639px) {
    .Footer-copyright {
        font-size: 10px;
        font-size: 1rem;
        line-height: 140%;
        padding-bottom: 10px;
    }
}

.Footer-copyright a {
    color: #000;
    text-decoration: underline;
    font-size: 12px;
    font-size: 1.2rem;
}

@media screen and (max-width: 639px) {
    .Footer-copyright a {
        display: inline-block;
        margin-bottom: 5px;
    }
}

.FooterNewsletter {
    float: left;
    width: 50%;
}

@media screen and (max-width: 639px) {
    .FooterNewsletter {
        float: none;
        width: auto;
    }
}

.FooterNewsletter #newsletter_block_left {
    border: none;
    padding: 13px;
    margin-bottom: 0;
}

.FooterNewsletter #newsletter_block_left .form-group {
    margin-bottom: 0;
}

.FooterNewsletter .Btn {
    border-width: 2px;
    font-weight: bold;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 13px 10px;
    line-height: 160%;
}

.FooterNewsletter #newsletter_block_left .Newsletter-input,
.FooterNewsletter .Btn {
    width: 48%;
    float: left;
    margin-bottom: 0;
}

@media screen and (max-width: 959px) {
    .FooterNewsletter #newsletter_block_left .Newsletter-input,
    .FooterNewsletter .Btn {
        width: auto;
        float: none;
    }
}

.FooterNewsletter #newsletter_block_left .Newsletter-input {
    margin-right: 4%;
    margin-top: 10px;
}

@media screen and (max-width: 959px) {
    .FooterNewsletter #newsletter_block_left .Newsletter-input {
        width: 92%;
        margin: 10px 4% 20px;
    }
}

.LogosPaiement {
    padding: 40px 0;
    float: left;
    width: 50%;
    text-align: left;
}

@media screen and (max-width: 639px) {
    .LogosPaiement {
        float: none;
        width: auto;
    }
}

.LogosPaiement-title {
    display: inline-block;
    padding-right: 20px;
    background: no-repeat right 1px;
    background-image: url("../../img/piolav2/icons/cadenas.png");
    color: #000;
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0 16px 0 0;
    font-weight: 600;
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
    .LogosPaiement-title {
        background-image: url("../../img/piolav2/icons/cadenas@2x.png");
        -webkit-background-size: 10px 12px;
        -moz-background-size: 10px 12px;
        background-size: 10px 12px;
    }
}

@media screen and (max-width: 959px) {
    .LogosPaiement-title {
        margin-bottom: 30px;
        display: block;
        text-align: center;
        background-image: none;
    }

    .LogosPaiement-title:after {
        content: '';
        display: inline-block;
        background-image: url("../../img/piolav2/icons/cadenas.png");
        width: 10px;
        height: 12px;
        margin-left: 10px;
    }
}

@media screen and (max-width: 959px) and (-webkit-min-device-pixel-ratio: 1.5), screen and (max-width: 959px) and (min--moz-device-pixel-ratio: 1.5), screen and (max-width: 959px) and (-o-min-device-pixel-ratio: 3 / 2), screen and (max-width: 959px) and (min-device-pixel-ratio: 1.5), screen and (max-width: 959px) and (min-resolution: 1.5dppx) {
    .LogosPaiement-title:after {
        background-image: url("../../img/piolav2/icons/cadenas@2x.png");
        -webkit-background-size: 10px 12px;
        -moz-background-size: 10px 12px;
        background-size: 10px 12px;
    }
}

.LogosPaiement-wrapLogos {
    display: inline-block;
}

@media screen and (max-width: 959px) {
    .LogosPaiement-wrapLogos {
        display: block;
        text-align: center;
    }
}

.LogosPaiement-logo {
    display: inline-block;
    margin-right: 6px;
}

.Main {
    padding-top: 20px;
    background-color: transparent;
}

.Main .page-heading {
    margin-top: 0;
    color: #000;
}

/* ////// PRESTA LEFT ////// */
.block .block_content {
    /*display: block !important;*/
}

@media screen and (max-width: 639px) {
    #categories_block_left {
        text-align: center;
        margin-top: -20px;
    }
}

#categories_block_left li.has-child > a {
    background: none;
    font-weight: 600;
    font-size: 16px;
    font-size: 1.6rem;
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
    border: none;
    padding: 0;
    margin: 30px 0 5px;
    color: #000;
}

#categories_block_left li.has-child > a:hover {
    padding: 0 0 0 8px;
    box-shadow: none;
}

#categories_block_left li.has-child > a.selected:hover {
    padding: 5px 8px;
}

#categories_block_left .block_content > ul {
    border: none;
    margin-bottom: 0;
}

#categories_block_left li li a,
#categories_block_left li a {
    display: inline-block;
    text-transform: uppercase;
    color: #000;
    padding: 5px 0;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 150%;
    border: none;
    text-decoration: none !important;
    transition: 0.2s ease-out;
}

#categories_block_left li li a:hover, #categories_block_left li li a.active,
#categories_block_left li a:hover,
#categories_block_left li a.active {
    box-shadow: 0 0 0 1px #d9d9d9;
    padding: 5px 8px;
    color: #000;
}

#categories_block_left li li a:before,
#categories_block_left li a:before {
    display: none;
}

#categories_block_left li li a:hover,
#categories_block_left li a:hover {
    background: none;
}

#categories_block_left li li a.selected,
#categories_block_left li a.selected {
    background: none;
    border: 1px solid #d9d9d9;
    padding: 5px 8px;
}

/* ////// FIN PRESTA LEFT ////// */
.NavLeft {
    position: relative;
}

@media screen and (max-width: 639px) {
    .NavLeft {
        display: none;
    }
}

.NavLeft.mobile {
    display: none;
}

@media screen and (max-width: 639px) {
    .NavLeft.actif {
        display: block;
    }

}

.NavLeft:before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: #d9d9d9;
    margin-bottom: 20px;
}

@media screen and (max-width: 639px) {
    .NavLeft:before {
        margin: 20px auto;
    }
}

.NavLeft-elem {
    list-style: none;
    padding: 0;
    margin: 0;
}

.NavLeft-link {
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    padding: 5px 0;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 150%;
    transition: 0.2s ease-out;
}

@media screen and (max-width: 639px) {
    .NavLeft-link {
        margin-top: 10px;
        font-size: 14px;
        font-size: 1.4rem;

    }
}

.NavLeft-link:hover, .NavLeft-link.active {
    box-shadow: 0 0 0 1px #d9d9d9;
    padding: 5px 8px;
    color: #000;
}

.NavLeft.header {
    text-align: center;
    background-color: #fff;
    color: #000;
    position: fixed;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: 40;
    width: 235px;
    margin-bottom: 0px;
    opacity: 0.70;
}

.NavLeft.header .list-navleft {
    position: absolute;
    bottom: 40px;
    text-align: center;
    width: 100%;
    color: #000;
}

.index .NavLeft.header .NavLeft-link {
    color: #000;
}

.NavLeft.header .NavLeft-link {
    color: #fff;
}

.index .NavLeft.header .NavLeft-link {
    color: #000;
}

.cms .NavLeft.header .NavLeft-link:hover {
    color: #000;
    background-color: #fff;
}

.NavLeft.header:before {
    display: none;
}

@media screen and (max-width: 639px) {
    .NavLeft.header:before {
        display: block;
    }
}

@media screen and (max-width: 639px) {
    .NavLeft.header {
        position: static;
        margin-left: inherit;
        text-align: center;
    }
}

.NavLeft.header .NavLeft-link {
    color: #000;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 5px 0;
    text-decoration: none !important;
}

.NavLeft.header .NavLeft-link:hover, .NavLeft.header .NavLeft-link.active {
    color: #fff;
    background-color: #000;
    box-shadow: 0 0 0 1px rgba(217, 217, 217, 0.5);
}

.Popup.NavProjetPiola {
    background: rgba(0, 0, 0, 0.9);
    padding: 50px;
    text-align: center;
    background: #000;
    border: 10px solid #ffffff;
    color: #ffffff;
}

@media screen and (max-width: 639px) {
    .Popup.NavProjetPiola {
        padding: 50px 20px;
    }
}

.Popup.NavProjetPiola button.mfp-close {
    background-image: url("../../img/piolav2/icons/close-pop-white.png");
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
    .Popup.NavProjetPiola button.mfp-close {
        background-image: url("../../img/piolav2/icons/close-pop-white@2x.png");
        -webkit-background-size: 14px 14px;
        -moz-background-size: 14px 14px;
        background-size: 14px 14px;
    }
}

.Popup.NavProjetPiola .NavProjetPiola-btn {
    display: block;
    width: 40%;
    margin: 0 auto 10px;
    text-align: center;
}

@media screen and (max-width: 639px) {
    .Popup.NavProjetPiola .NavProjetPiola-btn {
        width: auto;
    }
}

.Popup.NavProjetPiola .NavProjetPiola-title {
    text-transform: uppercase;
    font-size: 30px;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 40px;
    margin-top: 0;
}

@media screen and (max-width: 639px) {
    .Popup.NavProjetPiola .NavProjetPiola-title {
        font-size: 20px;
        font-size: 2rem;
    }
}

.FilProjetPiola {
    margin: 10px auto;
    text-align: center;
}

.FilProjetPiola-btn {
    margin: 0 2px 6px;
    font-size: 12px;
    font-size: 1.2rem;
    background-color: transparent;
}

@media screen and (max-width: 639px) {
    .FilProjetPiola-btn {
        display: block;
        margin: 0 20px 6px;
    }
}

.FilProjetPiola-btn.active {
    background-color: rgba(255, 255, 255, 0.15);
}

/* ////// PRESTA Liste cat├®gorie ////// */
ul.product_list.grid > li .product-container .product-image-container {
    border: none;
    margin: 0 auto;
}

ul.product_list.grid > li .product-container h5 {
    height: 62px;
}

.price.product-price {
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
    font-size: 18px;
    font-size: 1.8rem;
    color: #000;
}

.price-percent-reduction,
ul.product_list.grid > li .product-container .price-percent-reduction {
    display: none;
}

.old-price.product-price {
    font-size: 14px;
    letter-spacing: 0;
}

.box-info-product #old_price {
    margin-top: 16px;
    letter-spacing: 3px;
}

.bottom-pagination-content {
    display: block;
}

#infscr-loading {
    text-align: center;
    width: auto !important;
    display: block;
}

/* ////// FIN PRESTA Liste cat├®gorie ////// */
.ProductList .left-block {
    padding: 9px;
}

.ProductList-wrapVisuel {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.ProductList-visuel {
    display: block;
    opacity: 1;
    width: 100%;
    transform: translateY(0);
    transition: 0.3s ease-out;
}

.ProductList-visuelHover {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    transform: translateY(-20%);
    width: 100%;
    transition: 0.3s ease-out;
}

.ProductList-pointures {
    opacity: 0;
    position: absolute;
    z-index: 3;
    top: -100%;
    left: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.6);
    color: #000;
    font-size: 12px;
    font-size: 1.2rem;
    padding: 5px;
    text-align: center;
    transition: 0.3s ease-out;
}

.ProductList-pointures a {
    color: #000;
}

.ProductList-pointures a:hover {
    text-decoration: underline;
}

.ProductList:hover .ProductList-visuel {
    opacity: 0;
    transform: translateY(-20%);
}

.ProductList:hover .ProductList-visuelHover {
    opacity: 1;
    transform: translateY(0);
}

.ProductList:hover .ProductList-pointures {
    opacity: 1;
    top: 10px;
}

.ProductList-cat {
    display: block;
    text-transform: uppercase;
    color: #000;
    padding: 5px 0;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 150%;
    margin: 0;
    padding: 0;
}

.ProductList-cat a {
    color: inherit;
}

.ProductList-title {
    margin: 0;
}

.ProductList-title .product-name {
    display: block;
    color: #666666;
    padding: 5px 0;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 150%;
}

/* ////// PRESTA Fiche produit ////// */
.new-box, .sale-box {
    display: none;
}

.pb-center-column p.online_only {
    text-transform: uppercase;
    font-size: 14px;
    font-size: 1.4rem;
    color: #f45945;
}

.pb-left-column #image-block {
    border: none;
}

.pb-left-column #image-block #view_full_size .span_link {
    box-shadow: none;
    width: 40px;
    margin-left: 0;
    left: inherit;
    right: 0;
    background: none;
}

#thumbs_list li,
#thumbs_list li a {
    border: none !important;
}

#thumbs_list li {
    margin-right: 16px;
}

.box-info-product {
    background: none;
    border: none;
}

.product_attributes, .box-cart-bottom {
    box-shadow: none;
    padding: 0;
}

.content_prices {
    padding: 0;
}

.buttons_bottom_block {
    padding: 0;
}

.pb-center-column #buy_block label {
    display: inline-block;
    width: auto;
}

.product_attributes {
}

#quantity_wanted_p, #attributes, .attribute_fieldset, .attribute_list, .selector {
    display: inline-block;
}

@media screen and (max-width: 1300px) {
    #quantity_wanted_p {
        display: block;
        margin-bottom: 15px;
    }
}

#attributes .attribute_list {
    width: auto;
}

.box-cart-bottom .buttons_bottom_block {
    margin-bottom: 35px;
}

#quantity_wanted_p input,
#quantity_wanted_p .btn {
    float: none;
    display: inline-block;
    margin: 0;
}

.touch .btn.button-plus, .touch .btn.button-minus {
    width: 30px;
    height: 30px;
}

#pQuantityAvailable {
    font-size: 14px;
    font-size: 1.4rem;
    text-transform: uppercase;
    padding: 7px 8px;
}

.box-info-product p {
    margin-bottom: 0;
}

.table tbody > tr > td.cart_quantity .cart_quantity_button {
    text-align: center;
}

.table tbody > tr > td.cart_quantity .cart_quantity_button a {
    float: none;
    display: inline-block;
    margin: 0;
}

.table .cart_quantity .cart_quantity_input {
    display: inline-block;
}

.btn.button-plus, .btn.button-minus {
    text-shadow: none;
    border: none;
    background: #000 no-repeat center;
    color: #ffffff;
    width: 25px;
    height: 25px;
}

.btn.button-minus {
    background-image: url("../../img/piolav2/icons/moins.png");
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
    .btn.button-minus {
        background-image: url("../../img/piolav2/icons/moins@2x.png");
        -webkit-background-size: 9px 1px;
        -moz-background-size: 9px 1px;
        background-size: 9px 1px;
    }
}

.btn.button-plus {
    background-image: url("../../img/piolav2/icons/plus.png");
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
    .btn.button-plus {
        background-image: url("../../img/piolav2/icons/plus@2x.png");
        -webkit-background-size: 11px 11px;
        -moz-background-size: 11px 11px;
        background-size: 11px 11px;
    }
}

#quantity_wanted_p input {
    width: 32px;
    border: none;
    text-align: center;
}

.attribute_list .selector {
    height: 39px;
    background: #f2f2f2;
    transition: 0.2s ease-out;
}

.attribute_list .selector span {
    background: transparent no-repeat center right 10px;
    line-height: 39px;
    height: 39px;
    background-image: url("../../img/piolav2/icons/bg-select.png");
    padding-right: 0;
    width: 100% !important;
    box-sizing: content-box;
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
    .attribute_list .selector span {
        background-image: url("../../img/piolav2/icons/bg-select@2x.png");
        -webkit-background-size: 7px 4px;
        -moz-background-size: 7px 4px;
        background-size: 7px 4px;
    }
}

.attribute_list .selector select {
    height: 39px;
}

.attribute_list .selector.hover span, .attribute_list .selector.focus span {
    background-position: center right 10px;
}

.attribute_list .selector.hover {
    background-color: #d8d8d8;
}

#attributes .attribute_list .form-control option,
.attribute_list .selector select {
    font-size: 14px;
    font-size: 1.4rem;
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
    color: #000;
}

#attributes fieldset label {
    vertical-align: baseline;
    font-size: 14px;
    font-size: 1.4rem;
    color: #000;
}

#attributes fieldset {
    margin-left: 40px;
}

@media screen and (max-width: 1300px) {
    #attributes fieldset {
        margin-left: 0;
    }
}

.pb-center-column #quantity_wanted_p label {
    margin-right: 7px;
}

#availability_value, #last_quantities {
    padding: 10px;
    margin: 30px 0 0;
    color: #000;
}

h3.page-product-heading {
    color: #000;
    border: none;
    background: none;
    padding: 0;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
}

#crossselling {
    margin-top: 50px;
}

#crossselling .ProductList {
    text-align: center;
}

#crossselling li a img {
    border: none;
}

@media screen and (max-width: 639px) {
    .pb-center-column #buy_block label,
    .pb-center-column #quantity_wanted_p label {
        display: block;
    }
}

/* ////// FIN PRESTA Fiche produit ////// */
.pb-center-column .Product-left,
.pb-center-column .Product-title,
.Product-title {
    font-size: 2rem;
    color: #666666;
    margin: 0 0 10px;
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
}

.pb-center-column .Product-cat,
.Product-cat {
    font-size: 2.2rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #000;
    padding: 0;
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
}

.pb-center-column .Product-desc,
.Product-desc {
    color: #000;
    line-height: 200%;
    padding: 0 !important;
    margin-bottom: 30px;
}

.pb-center-column .Product-price,
.Product-price {
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
    color: #000;
    float: left;
    margin-right: 5px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.pb-center-column .Product-price .price,
.Product-price .price {
    color: #000;
}

#page .rte.Product-desc {
    width: auto;
}

.BtnPanier {
    -webkit-appearance: none;
    border: none;
    display: inline-block;
    color: #ffffff;
    background: #000 no-repeat 17px center;
    background-image: url("../../img/piolav2/icons/panier-blanc.svg");
    padding: 10px 10px 10px 45px;
    font-size: 14px;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
    letter-spacing: 3px;
    transition: 0.2s ease-out;
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
    .BtnPanier {
        background-image: url("../../img/piolav2/icons/panier@2x.png");
        -webkit-background-size: 11px 14px;
        -moz-background-size: 11px 14px;
        background-size: 11px 14px;
    }
}

.BtnPanier:hover {
    background-color: black;
}

/* ////// PRESTA TUNNEL COMMANDE ////// */
#cart_summary tbody td.cart_product img {
    border: none;
}

ul.step li a, ul.step li span, ul.step li.step_current span, ul.step li.step_current_end span {
    font-size: 15px;
    font-size: 1.5rem;
}

ul.step li {
    border: 1px solid #000;
}

ul.step li.step_done, ul.step li.step_current {
    background: #000;
    border: 1px solid #000;
}

ul.step li.step_todo {
    background: #f2f2f2;
    border: 1px solid #d9d9d9;
}

ul.step li span, ul.step li a {
    border: none !important;
    text-shadow: none !important;
}

ul.step li span:after, ul.step li a:after {
    display: none !important;
}

.address.box .page-subheading {
    margin-top: 0;
}

.label {
    display: inline-block;
    color: #000;
    border: 1px solid #d9d9d9;
    background: none;
}

.cart_navigation .standard-checkout {
    float: right;
}

.cart_navigation .button-exclusive {
    border: 1px solid #d9d9d9;
    padding: 18px 35px;
    font-size: 14px;
    margin: 0;
}

@media screen and (max-width: 639px) {
    .cart_navigation .Btn {
        display: block;
        clear: both;
        float: none;
        margin-bottom: 7px;
        text-align: center;
    }
}

.form-control {
    font-size: 14px;
    font-size: 1.4rem;
    color: #000;
}

#address p.inline-infos, #identity p.inline-infos, #account-creation_form p.inline-infos, #new_account_form p.inline-infos, #opc_account_form p.inline-infos, #authentication p.inline-infos,
#address p.required, #identity p.required, #account-creation_form p.required, #new_account_form p.required, #opc_account_form p.required, #authentication p.required {
    color: #f45945;
}

#address .form-group, #identity .form-group, #account-creation_form .form-group, #new_account_form .form-group, #opc_account_form .form-group, #authentication .form-group {
    margin-bottom: 15px;
}

#HOOK_SHOPPING_CART #crossselling {
    margin-top: 20px;
    margin-bottom: 20px;
}

#add_address:after {
    content: "";
    display: table;
    clear: both;
}

#add_address .form-group {
    width: 50%;
    float: left;
}

#add_address .form-group .selector {
    display: block;
}

#add_address .submit2 {
    text-align: center;
}

.clear {
    clear: both;
}

/* ////// FIN PRESTA TUNNEL COMMANDE ////// */
.MapRevendeurs {
    position: relative;
    overflow: hidden;
    top: -22px;
    margin-bottom: -22px;
}

.MapRevendeurs-map {
    margin: 0;
    transition: 0.3s ease-out;
    height: 600px;
    letter-spacing: 0;
}

@media screen and (max-width: 639px) {
    .MapRevendeurs-map {
        display: none;
    }
}

.MapRevendeurs-map img {
    max-width: inherit;
}

.MapRevendeurs-scroll {
    height: 100%;
}

.MapRevendeurs-content {
    background: #000;
    padding: 0 20px 20px;
    position: relative;
    text-align: center;
    transition: 0.3s ease-out;
}

.MapRevendeurs-select {
    display: block;
    margin: 20px auto 20px;
    background: transparent;
    color: #ffffff;
    display: inline-block;
    border: 1px solid #ffffff;
}

.MapRevendeurs-select:after {
    background: no-repeat center url("../../img/piolav2/icons/bg-select-blanc@2x.png");
    width: 14px;
    height: 8px;
    background-size: 100%;
}

.MapRevendeurs-select select:focus {
    outline: none;
    box-shadow: none;
    background-color: transparent;
    color: #ffffff;
}

.MapRevendeurs-select select {
    height: 50px;
    line-height: 50px;
    color: #ffffff;
    padding: 0;
    font-weight: 800;
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
    font-size: 1.8rem;
    padding-right: 30px;
    padding-left: 10px;
}

.MapRevendeurs-select select option {
    color: #000;
}

.MapRevendeurs-revendeurs {
    width: 1080px;
    margin: 0 auto;
}

@media screen and (max-width: 1300px) {
    .MapRevendeurs-revendeurs {
        width: auto;
    }
}

@media screen and (max-width: 959px) {
    .MapRevendeurs-revendeurs {
        width: auto;
    }
}

@media screen and (max-width: 639px) {
    .MapRevendeurs-revendeurs {
        width: auto;
        margin-top: 10px;
        height: auto;
        margin-left: 0;
    }
}

.Revendeur {
    float: left;
    width: 31.333%;
    margin: 0 1% 2%;
    background: #ffffff;
    cursor: pointer;
    transition: 0.2s ease-out;
}

@media screen and (max-width: 959px) {
    .Revendeur {
        width: 46%;
        margin: 0 2% 4%;
    }
}

@media screen and (max-width: 639px) {
    .Revendeur {
        float: none;
        width: auto;
        margin: 0 0 10px;
    }
}

.Revendeur.hidden {
    display: none;
}

.Revendeur-wrapVisuel {
    position: relative;
    background: #000;
    height: 170px;
}

.Revendeur.active .Revendeur-visuel, .Revendeur:hover .Revendeur-visuel {
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);
    opacity: 1;
}

.Revendeur-visuel {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.5;
    z-index: 1;
    transition: 0.2s ease-out;
    background: no-repeat center;
    background-size: cover;
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
    /* Firefox 10+, Firefox on Android */
    filter: gray;
    /* IE6-9 */
    -webkit-filter: grayscale(100%);
    /* Chrome 19+, Safari 6+, Safari 6+ iOS */
}

.Revendeur-title {
    font-size: 16px;
    font-size: 1.6rem;
    text-transform: uppercase;
    color: #000;
    font-weight: 600;
    margin: 0 0 10px;
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
    transition: 0.2s ease-out;
}

.Revendeur-content {
    padding: 20px;
    height: 170px;
    transition: 0.2s ease-out;
}

.Revendeur.active {
    transform: scale(1.2);
    z-index: 2;
    position: relative;
    box-shadow: 0 0 0 5px #ffffff, 0 0 35px rgba(0, 0, 0, 0.5);
}

.Revendeur.active .Revendeur-content {
    background-color: #000;
    color: #FFF;
}

.Revendeur.active .Revendeur-title {
    color: #FFF;
}

.touch .Revendeur .Revendeur-visuel,
.touch .Revendeur .Revendeur.active .Revendeur-visuel,
.touch .Revendeur .Revendeur:hover .Revendeur-visuel {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
}

/* ////// PRESTA SMARTBLOG ////// */
.sdstitle_block {
    background: none;
    border: none;
    color: #000;
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
    padding: 0;
}

.sdstitle_block a {
    color: #000;
}

.sdsarticleCat {
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.sdsarticleCat .articleImage {
    float: left;
    width: 40%;
}

@media screen and (max-width: 639px) {
    .sdsarticleCat .articleImage {
        float: none;
        width: 100%;
    }
}

.sdsarticleCat .articleImage img {
    max-width: 100%;
}

#sdsblogArticle {
    width: 800px;
    margin: 0 auto;
}

@media screen and (max-width: 959px) {
    #sdsblogArticle {
        width: auto;
    }
}

#sdsblogArticle .articleContent {
    text-align: center;
}

.page-item-title {
    font-size: 20px;
    font-size: 2rem;
    text-transform: uppercase;
    color: #000;
    font-weight: 600;
    margin: 0 0 10px;
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
}

.sdsreadMore .more a {
    padding: 5px 8px;
}

.sdsarticle-des {
    font-size: 14px;
    font-size: 1.4rem;
    color: #000;
}

.sdsarticle-des p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 180%;
}

#sdsblogCategory p, #sdsblogArticle p {
    line-height: 180%;
}

/* ////// FIN PRESTA SMARTBLOG ////// */
.IntroFinancement {
    max-width: 780px;
    margin: 0 auto;
    color: #ffffff;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
    line-height: 200%;
}

@media screen and (max-width: 959px) {
    .IntroFinancement {
        max-width: 400px;
    }
}

.IntroFinancement strong {
    font-weight: normal;
    font-size: 20px;
    font-size: 2rem;
}

.Financement {
    background: #000;
    position: relative;
    padding-top: 260px;
    padding-bottom: 55px;
    text-align: center;
    color: #ffffff;
    margin-top: -20px;
}

@media screen and (max-width: 639px) {
    .Financement {
        padding-top: 25px;
    }
}

.Financement.hide-projets:before {
    height: 500px;
}

.Financement:before {
    content: '';
    position: absolute;
    width: 2px;
    top: 0;
    left: 50%;
    margin-left: -1px;
    height: 1430px;
    background: #333451;
}

@media screen and (max-width: 639px) {
    .Financement:before {
        display: none;
    }
}

.Financement > .container {
    position: relative;
}

.Financement-compteur.BlocReversez {
    position: absolute;
    top: -135px;
    left: 50%;
    margin: 0 0 0 -227px;
}

@media screen and (max-width: 639px) {
    .Financement-compteur.BlocReversez {
        position: static;
        top: 0;
        left: 0;
        margin: 20px;
    }
}

.Financement-subtitle {
    font-size: 20px;
    font-size: 2rem;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
    letter-spacing: 10px;
    line-height: 150%;
}

@media screen and (max-width: 639px) {
    .Financement-subtitle {
        letter-spacing: 5px;
    }
}

.Financement-map {
    margin-top: 90px;
    border: 10px solid #ffffff;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
    position: relative;
}

@media screen and (max-width: 639px) {
    .Financement-map {
        margin-top: 35px;
        width: auto;
        border-left: none;
        border-right: none;
    }
}

.Financement-map #Map {
    height: 625px;
}

@media screen and (max-width: 959px) {
    .Financement-map #Map {
        height: 540px;
    }
}

@media screen and (max-width: 639px) {
    .Financement-map #Map {
        height: 330px;
    }
}

.Financement-wrapBtn {
    padding: 20px 0;
}

.Financement-btn {
    margin: 20px auto 0;
    display: inline-block;
    width: auto;
}

@media screen and (max-width: 639px) {
    .Financement-btn {
        display: block;
        width: auto;
        margin: 10px 20px 0;
    }
}

.Reversez {
    padding: 55px 0 0;
    position: relative;
}

.Reversez:after {
    content: "";
    display: table;
    clear: both;
}

@media screen and (max-width: 639px) {
    .Reversez {
        padding-top: 35px;
    }
}

.Reversez:before {
    content: '';
    position: absolute;
    height: 2px;
    background: #333451;
    left: 25%;
    right: 25%;
    top: 165px;
    margin-left: -1px;
    margin-right: -1px;
}

@media screen and (max-width: 639px) {
    .Reversez:before {
        display: none;
    }
}

.Reversez-title {
    margin-top: 5px;
    margin-bottom: 45px;
}

@media screen and (max-width: 639px) {
    .Reversez-title {
        margin-bottom: 15px;
    }
}

.Reversez-catProjet {
    width: 50%;
    float: left;
    padding: 0 20px;
    position: relative;
}

@media screen and (max-width: 639px) {
    .Reversez-catProjet {
        width: auto;
        float: none;
    }
}

.Reversez-catProjet:before {
    content: '';
    position: absolute;
    width: 2px;
    background: #333451;
    left: 50%;
    margin-left: -1px;
    top: 0;
    left: 50%;
    height: 75px;
}

@media screen and (max-width: 639px) {
    .Reversez-catProjet:before {
        display: none;
    }
}

.Reversez-subtitle {
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding-top: 80px;
}

@media screen and (max-width: 639px) {
    .Reversez-subtitle {
        padding-top: 20px;
    }
}

.BlocReversez {
    z-index: 40;
    border: 10px solid #ffffff;
    width: 455px;
    padding: 40px;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 250%;
    background: #000;
    margin-bottom: 90px;
    margin: 80px auto 20px;
}

@media screen and (max-width: 639px) {
    .BlocReversez {
        width: auto;
        margin: 20px;
        padding: 15px;
        border: 5px solid #FFF;
    }
}

.BlocReversez-montant {
    font-size: 40px;
    font-size: 4rem;
    letter-spacing: 10px;
    margin: 10px 0;
    font-weight: 700;
    padding-left: 10px;
}

.BlocReversez-btn {
    margin-top: 25px;
}

.BlocReversez .error {
    color: red;
}

.ProjetFinancement {
    display: table;
    width: 100%;
    height: 260px;
    background: #000;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.ProjetFinancement.active .ProjetFinancement-visuel, .ProjetFinancement:hover .ProjetFinancement-visuel {
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);
    opacity: 1;
}

.ProjetFinancement.disabled {
    opacity: 0.3;
}

.ProjetFinancement-visuel {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.5;
    transition: 0.2s ease-out;
    background: no-repeat center;
    background-size: cover;
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
    /* Firefox 10+, Firefox on Android */
    filter: gray;
    /* IE6-9 */
    -webkit-filter: grayscale(100%);
    /* Chrome 19+, Safari 6+, Safari 6+ iOS */
}

.ProjetFinancement-content {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    width: 100%;
}

.ProjetFinancement-title {
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
    color: #ffffff !important;
    text-transform: uppercase;
    line-height: 140%;
    width: 240px;
    margin: 0 auto 25px;
}

.touch .ProjetFinancement .ProjetFinancement-visuel,
.touch .ProjetFinancement .ProjetFinancement.active .ProjetFinancement-visuel,
.touch .ProjetFinancement .ProjetFinancement:hover .ProjetFinancement-visuel {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
}

.WrapProjetFinancement-producteurs {
    height: 0;
    overflow: hidden;
    margin-left: -2%;
}

.WrapProjetFinancement-producteurs:after {
    content: "";
    display: table;
    clear: both;
}

.WrapProjetFinancement-producteurs .Producteur {
    opacity: 0;
    transform: translateY(-10%);
}

.WrapProjetFinancement-producteurs.active {
    height: inherit;
}

.WrapProjetFinancement-producteurs.active .Producteur {
    opacity: 1;
    transform: translateY(0);
}

.Progress {
    text-align: left;
    margin-bottom: 30px;
}

.Progress-progress {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    position: relative;
    height: 7px;
    margin-bottom: 8px;
}

.Progress-progress > span {
    position: absolute;
    left: 0;
    width: 0;
    top: 0;
    bottom: 0;
    background: #ffffff;
    border-radius: 8px;
}

.Progress-pourcent {
    float: right;
}

.Producteur:nth-child(0) {
    transition-delay: 0s;
}

.Producteur:nth-child(1) {
    transition-delay: 0.15s;
}

.Producteur:nth-child(2) {
    transition-delay: 0.3s;
}

.Producteur:nth-child(3) {
    transition-delay: 0.45s;
}

.Producteur:nth-child(4) {
    transition-delay: 0.6s;
}

.Producteur:nth-child(5) {
    transition-delay: 0.75s;
}

.Producteur:nth-child(6) {
    transition-delay: 0.9s;
}

.Producteur:nth-child(7) {
    transition-delay: 1.05s;
}

.Producteur:nth-child(8) {
    transition-delay: 1.2s;
}

.Producteur:nth-child(9) {
    transition-delay: 1.35s;
}

.Producteur:nth-child(10) {
    transition-delay: 1.5s;
}

.Producteur {
    margin-left: 2%;
    margin-bottom: 20px;
    width: 48%;
    float: left;
    transition: 0.4s ease-out;
}

@media screen and (max-width: 959px) {
    .Producteur {
        width: auto;
        float: none;
        margin-left: 0;
    }
}

.Producteur-visuel {
    height: 250px;
    opacity: 0.5;
    transition: 0.2s ease-out;
    background: no-repeat center;
    background-size: cover;
}

@media screen and (max-width: 639px) {
    .Producteur-visuel {
        height: 190px;
    }
}

.Producteur-content {
    position: relative;
    margin-top: 10px;
    padding: 20px;
    padding-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: 210px;
}

@media screen and (max-width: 639px) {
    .Producteur-content {
        height: auto;
    }
}

.Producteur-title {
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 140%;
    margin: 0 0 4px;
}

.Producteur-title a {
    color: #ffffff;
    text-decoration: none !important;
}

.Producteur-progress {
    margin-top: 25px;
}

@media screen and (max-width: 639px) {
    .Producteur-progress {
        margin-bottom: 10px;
    }
}

.Producteur-wrapBtn {
    position: absolute;
    bottom: 20px;
    text-align: center;
    left: 0;
    right: 0;
}

.Producteur-btn.Btn {
    font-size: 10px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    padding: 5px 3px 5px 8px;
}

.Producteur.btnHovered .Producteur-visuel {
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);
    opacity: 1;
}

.touch .Producteur-visuel {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
}

.Infobox {
    padding: 10px;
    overflow: visible;
    background: #000;
}

.Infobox:after {
    content: '';
    position: absolute;
    display: block;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top: 10px solid #000;
    border-bottom: 0;
    height: 0;
    width: 0;
}

.Infobox > img {
    z-index: 1;
    padding: 10px;
    position: absolute !important;
    right: 10px;
}

.Infobox-content {
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    color: #ffffff;
    font-size: 12px;
    font-size: 1.2rem;
    width: 400px;
    overflow: visible;
    box-shadow: 0 0 10px rgba(0, 1, 0, 0.5);
}

.Infobox-content:after {
    content: "";
    display: table;
    clear: both;
}

@media screen and (max-width: 639px) {
    .Infobox-content {
        width: 280px;
    }
}

.Infobox-wrapImage {
    width: 35%;
    float: left;
    display: block;
}

.Infobox-right {
    width: 65%;
    float: left;
    padding: 20px;
}

@media screen and (max-width: 639px) {
    .Infobox-right {
        padding: 10px 20px 10px 10px;
    }
}

.Infobox-title {
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 5px;
    line-height: 150%;
    letter-spacing: 1px;
}

@media screen and (max-width: 639px) {
    .Infobox-title {
        font-size: 12px;
        font-size: 1.2rem;
    }
}

.Infobox-lieu {
    color: rgba(255, 255, 255, 0.3);
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 15px;
    background: no-repeat left center;
    background-image: url("../../img/piolav2/icons/lieu-producteur.png");
    width: 100%;
    margin-top: 5px;
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
    .Infobox-lieu {
        background-image: url("../../img/piolav2/icons/lieu-producteur@2x.png");
        -webkit-background-size: 6px 10px;
        -moz-background-size: 6px 10px;
        background-size: 6px 10px;
    }
}

.Infobox-link {
    margin-top: 10px;
}

.Popup {
    position: relative;
    background: #FFF;
    padding: 10px;
    width: auto;
    max-width: 960px;
    margin: 20px auto;
}

.Popup button.mfp-close {
    background: no-repeat center;
    text-indent: -999em;
    overflow: hidden;
    background-image: url("../../img/piolav2/icons/close-pop.png");
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
    .Popup button.mfp-close {
        background-image: url("../../img/piolav2/icons/close-pop@2x.png");
        -webkit-background-size: 14px 14px;
        -moz-background-size: 14px 14px;
        background-size: 14px 14px;
    }
}

.BlocConfirmNewsletter,
.BlocConfirmVersement,
.BlocSaisieCode {
    text-align: center;
    background: #000;
    border: 10px solid #ffffff;
    color: #ffffff;
    padding: 40px;
}

.BlocConfirmNewsletter button.mfp-close,
.BlocConfirmVersement button.mfp-close,
.BlocSaisieCode button.mfp-close {
    background-image: url("../../img/piolav2/icons/close-pop-white.png");
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
    .BlocConfirmNewsletter button.mfp-close,
    .BlocConfirmVersement button.mfp-close,
    .BlocSaisieCode button.mfp-close {
        background-image: url("../../img/piolav2/icons/close-pop-white@2x.png");
        -webkit-background-size: 14px 14px;
        -moz-background-size: 14px 14px;
        background-size: 14px 14px;
    }
}

.BlocConfirmNewsletter-title,
.BlocConfirmVersement-title,
.BlocSaisieCode-title {
    text-transform: uppercase;
    font-size: 30px;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 40px;
    margin-top: 0;
}

.BlocConfirmNewsletter-desc,
.BlocConfirmVersement-desc,
.BlocSaisieCode-desc {
    margin-bottom: 40px;
}

.BlocConfirmNewsletter-input,
.BlocConfirmVersement-input,
.BlocSaisieCode-input {
    display: block;
    margin: 0 auto;
    border: none;
    outline: none;
    height: 50px;
    padding: 10px;
    margin-bottom: 10px;
    width: 160px;
    text-align: center;
    font-size: 25px;
    font-size: 2.5rem;
    font-weight: 700;
}

.BlocConfirmNewsletter-btn,
.BlocConfirmVersement-btn,
.BlocSaisieCode-btn {
    width: 160px;
}

#BlocStoreNotOpen a {
    color: #FFF;
    font-weight: bold;
    text-decoration: underline;
}

.BlocProducteur {
    color: #000;
}

.BlocProducteur button.mfp-close {
    background-color: #ffffff;
    opacity: 1;
}

.BlocProducteur-video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    background: #222222;
    cursor: pointer;
}

@media screen and (max-width: 639px) {
    .BlocProducteur-video {
        position: static;
        width: auto;
        height: 200px;
        margin-bottom: 15px;
    }
}

.BlocProducteur-video:hover:after {
    background-color: rgba(255, 255, 255, 0.3);
}

.BlocProducteur-prenom {
    padding-left: 105px;
    padding-top: 15px;
    margin: 0;
    font-size: 30px;
    font-size: 3rem;
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
    text-transform: uppercase;
}

.BlocProducteur-role {
    padding-left: 105px;
    margin: 0;
    font-size: 14px;
    font-size: 1.4rem;
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 5px;
}

.BlocProducteur-wrapVisuel {
    overflow: hidden;
    border-radius: 100%;
    width: 90px;
    height: 90px;
    float: left;
}

.BlocProducteur-visuel {
    width: 100%;
}

.BlocProducteur-wrapInfos {
    padding-left: 50%;
    position: relative;
}

@media screen and (max-width: 639px) {
    .BlocProducteur-wrapInfos {
        padding-left: 0;
    }
}

.BlocProducteur-infos {
    padding: 10px 20px 20px;
    line-height: 160%;
}

.BlocProducteur-label {
    color: #666666;
}

.BlocProducteur-content {
    background: #000;
    color: #ffffff;
    padding: 40px 30px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

@media screen and (max-width: 639px) {
    .BlocProducteur-content {
        min-height: 840px;
    }
}

.BlocProducteur-desc {
    width: 50%;
    padding-right: 60px;
    line-height: 180%;
    display: table-cell;
    vertical-align: middle;
}

@media screen and (max-width: 639px) {
    .BlocProducteur-desc {
        display: block;
        width: auto;
        padding-right: 0;
    }
}

.BlocProducteur-projet {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    padding: 0 30px 0 60px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 639px) {
    .BlocProducteur-projet {
        display: block;
        width: auto;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        padding: 30px 20px 0;
        margin-top: 20px;
    }
}

.BlocProducteur-formReversez {
    position: absolute;
    left: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    background: #000;
}

.FormReversez {
    padding: 30px 20px;
    transition: 0.5s ease-out;
}

.FormReversez label {
    color: #ffffff;
}

.FormReversez.active {
    left: 0;
}

.FormReversez-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 14px;
    height: 14px;
    background-image: url("../../img/piolav2/icons/close-pop-white.png");
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
    .FormReversez-close {
        background-image: url("../../img/piolav2/icons/close-pop-white@2x.png");
        -webkit-background-size: 14px 14px;
        -moz-background-size: 14px 14px;
        background-size: 14px 14px;
    }
}

.FormReversez-col {
    float: left;
    width: 50%;
    padding: 0 10px;
    margin-bottom: 10px;
}

@media screen and (max-width: 639px) {
    .FormReversez-col {
        float: none;
        width: auto;
    }
}

.FormReversez .InputText {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 0;
}

@media screen and (max-width: 639px) {
    .FormReversez .InputText {
        width: 100%;
    }
}

.FormReversez .CustomSelect {
    display: block;
    border-radius: 0;
    margin-bottom: 10px;
}

.FormReversez .CustomSelect select {
    height: 40px;
    line-height: 30px;
    border-radius: 0;
    font-size: 14px;
    font-size: 1.4rem;
}

.FormReversez-wrapPastille {
    position: relative;
    margin-top: 7px;
    cursor: pointer;
}

.FormReversez-wrapPastille .radio, .FormReversez-wrapPastille input[type="radio"] {
    display: none;
}

.FormReversez-pastille {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    border: 1px solid #ffffff;
    vertical-align: bottom;
    position: relative;
    white-space: nowrap;
    transition: 0.2s ease-out;
}

.FormReversez-pastille.blanc {
    background-color: white;
    border-color: #969696;
}

.FormReversez-pastille.noir {
    background-color: black;
}

.FormReversez-pastille.bleu-marine {
    background-color: darkblue;
}

.FormReversez-pastille.bordeaux {
    background-color: #800000;
}

.FormReversez-pastille.vert {
    background-color: darkgreen;
}

.FormReversez-pastille.gris {
    background-color: gray;
}

.FormReversez-pastille.beige {
    background-color: beige;
    border-color: #969696;
}

.FormReversez-pastille.marron {
    background-color: #582900;
}

.FormReversez-pastille.tabac {
    background-color: #9F551E;
}

.FormReversez-pastille.bleu-pastel {
    background-color: #56739A;
}

.FormReversez-pastille:hover, .FormReversez-pastille.active {
    border-width: 3px;
    z-index: 2;
}

.FormReversez-pastille:hover > span, .FormReversez-pastille.active > span {
    display: block;
}

.FormReversez-pastille.active {
    border-width: 5px;
}

.FormReversez-pastille > span {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #000;
    text-transform: uppercase;
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
    padding: 2px 3px 1px 4px;
    font-size: 10px;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-top: 13px;
}

.FormReversez-pastille > span:before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    margin-left: -6px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 6px 6px;
    border-color: transparent transparent #ffffff transparent;
}

.FormReversez-wrapRadio {
    margin: 13px 0 5px;
}

.FormReversez-wrapBtn {
    clear: both;
    text-align: center;
}

.ProducteurProjet {
    text-align: center;
}

.ProducteurProjet-title {
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 700;
}

.ProducteurProjet-btn {
    font-size: 16px;
    font-size: 1.6rem;
}

.Lookbook-plus {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 15%;
    bottom: 15%;
    border: 2px solid #ffffff;
    background: rgba(34, 34, 34, 0.7) no-repeat center url("../../img/piolav2/icons/plus-big.png");
    line-height: 50px;
    text-align: center;
    border-radius: 100%;
    transition: 0.2s ease-out;
}

.Lookbook-plus:hover {
    background-color: #000;
}

.Lookbook-visuel {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: no-repeat center;
    background-size: cover;
}

.Lookbook-visuel.portrait {
    right: 50%;
    background-position: center;
}

@media screen and (max-width: 639px) {
    .Lookbook-visuel.portrait {
        right: 0;
        bottom: 50%;
    }
}

.Lookbook-visuel.portrait.second {
    left: 50%;
    right: 0;
}

@media screen and (max-width: 639px) {
    .Lookbook-visuel.portrait.second {
        left: 0;
        right: 0;
        bottom: 0;
        top: 50%;
    }
}

.BlocCMS {
    margin: 0 0 70px;
    position: relative;
}

.BlocCMS:after {
    content: "";
    display: table;
    clear: both;
}

@media screen and (max-width: 959px) {
    .BlocCMS {
        margin-bottom: 30px;
    }
}

.BlocCMS-wrapVisuel {
    width: 50%;
    float: left;
}

@media screen and (max-width: 639px) {
    .BlocCMS-wrapVisuel {
        position: static;
        float: none;
        width: auto;
    }
}

.BlocCMS-visuel {
    width: 100%;
}

@media screen and (max-width: 639px) {
    .BlocCMS-visuel {
        position: static;
        transform: none;
    }
}

.BlocCMS-texte {
    line-height: 210%;
    text-align: left;
    font-size: 14px;
    font-size: 1.4rem;
    color: #fff;
    padding: 40px;
    margin: 0;
    width: 50%;
    float: left;
}

@media screen and (max-width: 639px) {
    .BlocCMS-texte {
        float: none;
        width: auto;
    }
}

@media screen and (max-width: 959px) {
    .BlocCMS-texte {
        padding: 0 40px;
        padding-left: 53%;
    }
}

@media screen and (max-width: 639px) {
    .BlocCMS-texte {
        padding: 10px 20px;
    }
}

.BlocCMS-texte h1, .BlocCMS-texte h2, .BlocCMS-texte h3, .BlocCMS-texte h4, .BlocCMS-texte h5, .BlocCMS-texte h6 {
    text-align: left;
}

.BlocCMS.right .BlocCMS-wrapVisuel {
    float: right;
}

@media screen and (max-width: 639px) {
    .BlocCMS.right .BlocCMS-wrapVisuel {
        float: none;
    }
}

@media screen and (max-width: 959px) {
    .BlocCMS.right .BlocCMS-texte {
        padding: 0 40px;
    }
}

@media screen and (max-width: 639px) {
    .BlocCMS.right .BlocCMS-texte {
        padding: 10px 20px;
    }
}

.BlocCMS.content-only .BlocCMS-texte {
    width: 800px;
    margin: 0 auto;
    float: none;
    padding: 40px;
}

@media screen and (max-width: 959px) {
    .BlocCMS.content-only .BlocCMS-texte {
        width: auto;
    }
}

@media screen and (max-width: 639px) {
    .BlocCMS.content-only .BlocCMS-texte {
        padding: 10px 20px;
    }
}

/* PRESTA NAV TOP */
/*@media screen and (max-width: 639px) {*/
    /*#languages-block-top {*/
    /*  margin-bottom: 20px; } }*/
    #languages-block-top, #currencies-block-top {
        border: none;
        float: none;
        display: inline-block;
        margin: 0 6px 0 2px;
        position: relative;
    }

    #languages-block-top div.current, #currencies-block-top div.current {
        padding: 4px 10px 10px 10px;
    }

    #languages-block-top div.current span, #currencies-block-top div.current span {
        font-size: 14px;
        font-size: 1.4rem;
    }

    #languages-block-top div.current:after, #currencies-block-top div.current:after {
        display: none;
    }

    #languages-block-top span, #currencies-block-top span {
        border: 1px solid #FFF;
        padding: 2px 6px;
        text-transform: uppercase;
        letter-spacing: 0;
        font-weight: normal;
        text-shadow: none;
    }

    #languages-block-top ul, #currencies-block-top ul {
        text-align: right;
        background: none;
        text-align: right;
        right: 100%;
        top: 0;
        left: inherit;
    }

    #languages-block-top ul li, #currencies-block-top ul li {
        display: inline-block;
    }

    #languages-block-top ul li.selected, #currencies-block-top ul li.selected {
        display: none;
    }

    #languages-block-top ul li a, #currencies-block-top ul li a {
        font-size: 14px;
        font-size: 1.4rem;
    }

    @media screen and (max-width: 842px) {
        #languages-block-top {
            width: 40%;
            margin: 0;
            padding-bottom: 20px;
        }

        #search_block_top a.search {
            display: none !important;
        }

        #search_block_top form#searchbox {
            display: block !important;
            position: relative !important;
            bottom:0 !important;
            right:0 !important;
        }

    }
/*}*/

#languages-block-top ul {
    margin-top: 3px;
}

@media screen and (max-width: 842px) {
    #languages-block-top ul {
        position: static;
        width: auto;
        text-align: center;
    }

    #languages-block-top ul li {
        padding: 5px 0;
    }
}

#languages-block-top ul li {
    line-height: 150%;
    font-size: 14px;
    font-size: 1.4rem;
}

#languages-block-top ul li a,
#languages-block-top ul li > span,
#currencies-block-top ul li a,
#currencies-block-top ul li > span {
    padding: 0;
    margin: 0;
}

#languages-block-top ul li.selected,
#languages-block-top ul li:hover a,
#currencies-block-top ul li.selected,
#currencies-block-top ul li:hover a,
#currencies-block-top div.current:hover,
#currencies-block-top div.current.active {
    background: none;
}

#currencies-block-top .cur-label {
    display: none;
}

#currencies-block-top div.current strong {
    color: #fff;
}

/* FIN PRESTA NAV TOP */
.AccountListBtn li {
    float: left;
    width: 370px;
    margin: 0 15px 20px;
}

.AccountListBtn li .Btn {
    height: 70px;
    text-align: center;
    display: block;
}

#page .contact-form-box {
    padding: 0;
    margin: 30px 0;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 6px solid #ffffff;
    color: #ffffff;
}

#page .contact-form-box label {
    display: block;
    color: #ffffff;
    text-transform: uppercase;
}

@media screen and (max-width: 959px) {
    #page .contact-form-box label {
        display: block;
    }
}

#page .contact-form-box select.form-control,
#page .contact-form-box input.form-control {
    max-width: inherit;
}

#page .contact-form-box .selector {
    height: 39px;
    background: #f2f2f2;
    width: 100% !important;
    transition: 0.2s ease-out;
}

#page .contact-form-box .selector span {
    background: transparent no-repeat center right 10px;
    line-height: 39px;
    height: 39px;
    background-image: url("../../img/piolav2/icons/bg-select.png");
    padding-right: 0;
    width: 100% !important;
    box-sizing: content-box;
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
    #page .contact-form-box .selector span {
        background-image: url("../../img/piolav2/icons/bg-select@2x.png");
        -webkit-background-size: 7px 4px;
        -moz-background-size: 7px 4px;
        background-size: 7px 4px;
    }
}

#page .contact-form-box .selector select {
    height: 39px;
}

#page .contact-form-box .selector.hover span, #page .contact-form-box .selector.focus span {
    background-position: center right 10px;
}

#page .contact-form-box .selector.hover {
    background-color: #d8d8d8;
}

#page .contact-form-box .selector option,
#page .contact-form-box .selector select {
    font-size: 14px;
    font-size: 1.4rem;
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
    color: #000;
}

#page .contact-form-box div.uploader span.filename,
#page .contact-form-box .form-control {
    background: #ffffff;
    border: none;
    height: 39px;
}

#page .contact-form-box div.uploader span.filename:focus,
#page .contact-form-box .form-control:focus {
    background-color: #d8d8d8;
}

#page .contact-form-box textarea.form-control {
    height: 323px;
}

@media screen and (max-width: 959px) {
    #page .contact-form-box textarea.form-control {
        height: 230px;
    }
}

#page .contact-form-box div.uploader span.filename {
    line-height: 39px;
}

#page .contact-form-box div.uploader {
    height: 39px;
}

#page .contact-form-box fieldset {
    padding: 30px;
}

@media screen and (max-width: 639px) {
    #page .contact-form-box fieldset {
        padding: 20px;
    }
}

#page .contact-form-box .form-group {
    margin-bottom: 25px;
}

@media screen and (max-width: 959px) {
    #page .contact-form-box .wrapMessage {
        padding-left: 0;
    }
}

#page .contact-form-box .submit {
    text-align: center;
}

#page .contact-form-box div.uploader span.filename {
    width: 100%;
}

#page .contact-form-box p.desc_contact {
    margin: 0;
}

.StrateCollab {
    background: #000;
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.StrateCollab-title {
    font-size: 20px;
    font-size: 2rem;
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 8px;
    margin-bottom: 100px;
    margin-top: 10px;
    line-height: 140%;
    margin-bottom: 40px;
    color: #ffffff;
}

.StrateCollab-content {
    color: #ffffff;
    line-height: 200%;
    max-width: 800px;
    margin: 0 auto 10px;
    padding: 0 20px;
}

.StrateCollab-visuelBG {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.5;
    z-index: -1;
    transition: 0.2s ease-out;
    background: no-repeat center;
    background-size: cover;
    background-image: url("../../img/piolav2/bg/collaboratif.jpg");
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
    /* Firefox 10+, Firefox on Android */
    filter: gray;
    /* IE6-9 */
    -webkit-filter: grayscale(100%);
    /* Chrome 19+, Safari 6+, Safari 6+ iOS */
}

.StrateCollab-wrapBtn {
    margin-top: 60px;
    text-align: center;
}

@media screen and (max-width: 639px) {
    .StrateCollab-wrapBtn {
        margin-top: 40px;
    }
}

.StrateCollab-wrapBtn .Btn {
    margin: 0 5px;
}

@media screen and (max-width: 639px) {
    .StrateCollab-wrapBtn .Btn {
        display: block;
        margin: 0 20px 10px;
    }
}

.touch .StrateCollab-visuelBG {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
}

.BackTop {
    display: none;
    position: fixed;
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 20px;
    z-index: 19;
    background: no-repeat center rgba(255, 255, 255, 0.6);
    background-image: url("../../img/piolav2/icons/back-top.png");
    z-index: 4;
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
    .BackTop {
        background-image: url("../../img/piolav2/icons/back-top@2x.png");
        -webkit-background-size: 12px 15px;
        -moz-background-size: 12px 15px;
        background-size: 12px 15px;
    }
}

.MailAlerts {
    margin-top: 10px;
}

.MailAlerts-input {
    height: 40px;
}

.MailAlerts-btn {
    margin-top: 10px;
}

.Cookies {
    display: none;
    background: #111;
    color: #ffffff;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    text-align: center;
    padding: 3px 10px;
    line-height: 28px;
    font-size: 10px;
}

.Cookies-btn {
    margin-left: 10px;
    line-height: 8px;
    padding: 7px;
    position: relative;
    top: 2px;
}

.ToggleTree {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.TaillesSpecifiques {
    text-decoration: none !important;
}

/* Payment module
/* ============================================= */
/* Page 404
/* ============================================= */
html.pagenotfound,
body.pagenotfound {
    height: 100%;
}

.PageNotFound {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.PageNotFound.btnHovered .PageNotFound-visuelBG {
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);
    opacity: 1;
}

.PageNotFound-visuelBG {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.5;
    z-index: 1;
    transition: 0.2s ease-out;
    background: no-repeat center;
    background-size: cover;
    background-image: url("../../img/piolav2/bg/bg-404.jpg");
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
    /* Firefox 10+, Firefox on Android */
    filter: grey;
    /* IE6-9 */
    -webkit-filter: grayscale(100%);
    /* Chrome 19+, Safari 6+, Safari 6+ iOS */
}

.PageNotFound-content {
    max-width: 520px;
    margin: 220px auto;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 639px) {
    .PageNotFound-content {
        padding: 20px;
        margin: 40px 0;
    }
}

.PageNotFound-title {
    font-size: 60px;
    font-size: 6rem;
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
    text-align: center;
    color: #ffffff;
    letter-spacing: 30px;
    padding-left: 30px;
    font-weight: 700;
}

.PageNotFound-subTitle {
    font-size: 14px;
    font-size: 1.4rem;
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 6px;
    padding-left: 6px;
    margin-bottom: 30px;
}

.PageNotFound-text {
    font-size: 14px;
    font-size: 1.4rem;
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
    text-align: center;
    color: #ffffff;
    line-height: 150%;
    margin-bottom: 20px;
}

.PageNotFound-input {
    height: 47px;
    line-height: 47px;
    display: inline-block;
    width: 85%;
    margin-right: 1%;
}

.PageNotFound-submit {
    display: inline-block;
    width: 13%;
    margin-left: -4px;
    text-align: center;
    padding: 15px 0 14px;
    vertical-align: middle;
}

.PageNotFound-wrapBtn {
    text-align: center;
    margin-top: 70px;
}

.touch .PageNotFound-visuelBG {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
}

/* Popup module
/* ============================================= */
#sb-wrapper-inner {
    border: 10px solid #ffffff;
}

#sb-info {
    position: static;
}

#sb-nav-close {
    position: absolute;
    top: 40px;
    right: 15px;
}

#sb-loading-inner {
    font-size: 0;
}

#sb-loading-inner span {
    padding-left: 0;
    height: 11px;
    width: 16px;
}

.popupOutlet .popupOutletContent {
    width: 100% !important;
}

.outletMask {
    transition: all 0.3s ease-out;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0;
    display: none;
}

/* Block retour produit : Mon Compte
/* ============================================= */
#block-return-order {
    margin-bottom: 25px;
}

#block-return-order h2.text-center {
    font-size: 14px;
}

#block-return-order .button {
    display: inline-block;
    color: #000;
    border: 1px solid #d9d9d9;
    background: none;
    line-height: 120%;
    padding: 5px 8px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    box-shadow: none;
    font-family: "Neue Haas Grotesk Text Pro Roman", Helvetica, sans-serif;
    cursor: pointer;
    border-radius: 0;
    -webkit-appearance: none;
    letter-spacing: 2px;
    outline: none;
    transition: 0.2s ease-out;
}

#block-return-order .button:hover {
    background-color: rgba(217, 217, 217, 0.5);
    text-decoration: none;
    color: #000;
}

/*# sourceMappingURL=globalPiola.css.map */

#cms, #contact {
    background-color: #fff;
}

#cms #center_column,
#contact #center_column {
    color: #000;
}

#contact .contact-form-box {
    color: #000;
    border: 6px solid #000;
}

#contact .contact-form-box label {
    color: #000;
}

#contact .contact-form-box .form-control {
    background-color: #f2f2f2;
}

#cms .FilProjetPiola .Btn {
    color: #000;
    border: 1px solid #000;
}

#cms .BlocCMS.content-only .BlocCMS-texte {
    color: #000;
}

#pointures ul.pointures li.item-pointure {
    display: inline-block;
    border: 1px solid #000;
    margin-right: 15px;
    margin-bottom: 5px;
    margin-top: 5px;
    padding: 5px 30px;
    cursor: pointer;
    color: #000;
}

#pointures ul.pointures li.item-pointure.disabled {
    color: #ccc;
    cursor: not-allowed;
    border: 1px solid #ccc;
}

#pointures ul.pointures li.item-pointure:hover,
#pointures ul.pointures li.item-pointure.selected {
    background-color: #000;
    color: #fff;
}

#pointures ul.pointures li.item-pointure.disabled:hover {
    background-color: #fff;
    color: #ccc;
}

#pointures a.TaillesSpecifiques.Btn {
    padding: 10px 13px;
    font-size: 13px;
    text-transform: none;
}

#pointures .title-pointure {
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px;
    font-size: 17px
}

#add_to_cart {
    display: inline-block;
    margin-bottom: 0px;
}

#quantity_wanted_p label {
    font-weight: 200;
}

#pointures ul.pointures {
    margin-bottom: 15px
}

#add_to_cart .BtnPanier {
    width: 320px;
    background-position: 50px;
    background-size: 20px;
    border: 1px solid #000;
    margin-left: 15px
}

#add_to_cart .BtnPanier:hover {
    color: #000;
    background-color: #fff;
    background-image: url("../../img/piolav2/icons/panier-noir.svg");
}

.index .NavShop-link.panier {
    background-image: url(../../img/piolav2/icons/panier-noir.svg);
}

#buy_block {
    width: 500px;
}

@media screen and (max-width: 639px) {
    #thumbs_list ul#thumbs_list_frame {
        height: 130px;
    }

    #buy_block {
        width: auto;
    }
}

.HomeStrates-title.black a,
.HomeStrates-title.black a.Btn {
    color: #000;
}

.StrateRevendeurs-content.HomeStrates-content a.Btn {
    color: #000;
    border-color: #000;
}

.StrateRevendeurs-content.HomeStrates-content a.Btn:hover {
    color: #000;
    border-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
}

.MapRevendeurs,
.MapRevendeurs .MapRevendeurs-content {
    background-color: #fff;
}

.MapRevendeurs-select {
    color: #000;
    border-color: #000;
}

.MapRevendeurs-select #select-country {
    color: #000;
}

.MapRevendeurs-select:after {
    background-image: url(../../img/piolav2/icons/bg-select.png);
}

.Revendeur {
    background-color: #071d49;
    color: #fff;
}

.Revendeur-title {
    color: #fff;
}

.Revendeur-visuel {
    opacity: 1;
}

.NavShop #search_block_top {
    border: none;
    float: none;
    display: inline-block;
    /*margin: 0px 6px 0 2px;*/
    position: relative;
    /*width: 200px;*/
}

#search_block_top {
    padding-top: 0;
}

#search_block_top #search_query_top {
    padding: 13px 60px 13px 3px;
}

#search_block_top #searchbox {
    /*float: none;*/
    width: 150px;
    /*top: -4px;*/
}

.NavShop #search_block_top #searchbox #search_query_top {
    background: none;
    border: none;
    color: #fff;
    height: 20px;
    border-bottom: 1px solid #fff;
}

.NavShop #search_block_top #searchbox #search_query_top::placeholder {
    color: #fff;
}

.NavShop #search_block_top #searchbox #search_query_top:focus {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #fff;
}

.NavShop #search_block_top #searchbox .button-search {
    background: none;
    top: -10px;
    right: -15px;

}

.index .NavShop #search_block_top #searchbox #search_query_top {
    color: #000;
    border-bottom: 1px solid #000;
}

@media (max-width: 842px) {
    .index .NavShop #search_block_top #searchbox #search_query_top {
        color: #fff;
        border-bottom: 1px solid #fff;
    }
}

.index .NavShop #search_block_top #searchbox #search_query_top::placeholder {
    color: #000;
}

@media (max-width: 842px) {
    .index .NavShop #search_block_top #searchbox #search_query_top::placeholder {
        color: #fff;
    }
}

.index .NavShop #search_block_top #searchbox .button-search {
    color: #000;
}

@media (max-width: 842px) {
    .index .NavShop #search_block_top #searchbox .button-search {
        color: #fff;
    }
}


/** REFONTE HOMEPAGE **/


/*.index .HomeStrates {*/
/*  margin-top: 87px;*/
/*}*/
#index #lookbook {
    margin-top: -18px;
}

.index .HomeStrates #lookbook .StrateLookbook-visuelBG,
.index .HomeStrates #stocklist .StrateLookbook-visuelBG {
    height: 100%;
}

.index .StrateLookbook-content,
.index .StrateRevendeurs-content {
    top: 35%;
    text-align: center;
    position: relative;
}

.index #lookbook .HomeStrates-visuelBG,
.index #stocklist .HomeStrates-visuelBG {
    position: relative;
    height: 100%;
}

.index #project .StrateProjet-left,
.index #project .StrateProjet-left {
    position: relative;
    height: 100%;
}

.index #project .StrateProjet-left .HomeStrates-videoBG {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: 2;
    transition: 0.2s ease-out;
    /*background: url(../../img/piolav2/bg/project.jpg) no-repeat;*/
    /* background: url(bgimage.jpg) no-repeat; */
    background-size: cover;
}

.index #project .StrateProjet-left {
    padding-top: 0;
    display: inline-block;
}

.index #project .StrateProjet-right {
    padding: 100px;
    text-align: center;
    display: inline-block;
    width: 50%;
    top: 0px;
    color: #000;
    float: right;
    margin-left: 0;
    padding-top: 180px;
}

.index .section {
    margin-left: 0px;
}

.index #newsletter {
    height: 700px !important;
}

.index #newsletter .StrateNewsNL {
    height: 90%;
}

.index #newsletter .LastNews {
    height: 100%;
    width: 60%;
}

.index #newsletter .Newsletter input.inputNew {
    font-size: 1.6rem;
    border: none;
    border-bottom: 2px solid #666666;
    padding: 12px 0;
    background: none;
    display: block;
    width: 100%;
    border-radius: 0;
    margin-bottom: 55px;
    height: auto;
    letter-spacing: 3px;
    outline: none;
}

.shop-links {
    margin-left: 5%;
    display: inline-block;
}

.NavShop {
    margin-top: -6px;
}

.shop-links a.NavShop-link,
.NavShop a {
    margin-left: 10px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px;
    white-space: nowrap;
    font-size: 13px;
    margin-top: -4px;
}

.shop-links a.NavShop-link:hover {
    color: #8e8e8e;
}

.index .shop-links a.NavShop-link {
    color: #000;
}

.index .shop-links a.NavShop-link:hover {
    color: #8e8e8e;
}

@media screen and (max-width: 639px) {
    .index #project {
        margin-left: 0px;
    }

    .index .section {
        margin-left: 0px;
    }
}


.NavShop .header_user_info a.login {
    width: 20px;
    height: 20px;
    background: url(../../img/menu/mon-compte-blanc.svg) no-repeat center;
    text-indent: 9999em;
    overflow: hidden;
}

.NavShop #search_block_top a.search {
    width: 20px;
    height: 20px;
    background: url(../../img/menu/recherche-blanc.svg) no-repeat center;
    text-indent: 9999em;
    overflow: hidden;
    line-height: 150%;
    padding: 0;
    margin: 0 10px;
    display: inline-block;
}

.NavShop .header_user_info a.logout {
    width: 20px;
    height: 20px;
    background: url(../../img/menu/deconnexion-blanc.svg) no-repeat center;
    text-indent: 9999em;
    overflow: hidden;
}

.index .NavShop .header_user_info a.login {
    background-image: url(../../img/menu/mon-compte-noir.svg)
}

.index .NavShop #search_block_top a.search {
    background-image: url(../../img/menu/recherche-noir.svg)
}

.index .NavShop .header_user_info a.logout {
    background-image: url(../../img/menu/deconnexion-noir.svg)
}

.NavShop #contact-link a {
    width: 20px;
    height: 20px;
    background: url(../../img/piolav2/contact-telephone-blanc.svg) no-repeat center;
    text-indent: 9999em;
    overflow: hidden;
}

.index .NavShop #contact-link a {
    background-image: url(../../img/piolav2/contact-telephone-noir.svg)
}

.Btn.newsletter {
    border: 1px solid #000;
    color: #000;
}

.Btn.newsletter:hover {
    background: rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 842px) {

    .NavShop {
        flex-direction: column;
    }


    .NavShop .header_user_info,
    .NavShop #contact-link,
    .NavShop #languages-block-top {
        color: #fff;
        margin-top: 14px;
    }

    .index .WrapHeader .Header .NavShop a {
        color: #fff !important;
    }

    .index .NavShop #contact-link a {
        background-image: url('../../img/piolav2/contact-telephone-blanc.svg');
    }

    .index .NavShop .header_user_info a.login {
        background-image: url(../../img/menu/mon-compte-blanc.svg);
    }

    .index .NavShop .header_user_info a.logout {
        background-image: url(../../img/menu/deconnexion-blanc.svg);
    }

    .index .NavShop #search_block_top a.search {
        background-image: url(../../img/menu/recherche-blanc.svg);
    }

    .index .NavShop-link.panier {
        display: block;
    }

    .index .shop-links.mobile .NavShop-link.eshop {
        color: #fff;
        display: block;
    }

    .NavShop.mobile a {
        font-size: 1.3rem;
        line-height: 4px;
    }

    .NavShop-link.panier {
        font-size: 1.3rem;
        line-height: 2px;
        /*background-image: none;*/
        /*display: block;*/
    }

    .shop-links.mobile a {
        font-size: 1.3rem;
    }

    .shop-links {
        display: none;
    }

    .NavShop.mobile {
        position: fixed;
        top: 9px;
        width: 100%;
        height: 50%;
        background: #000;
        float: none;
        text-align: center;
        padding-top: 70px;
        transition: 0.4s ease-in-out;
    }

    .shop-links.mobile {
        display: block;
        color: #fff;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 50%;
        background: #000;
        float: none;
        text-align: center;
        z-index: 69;
        transition: 0.4s ease-in-out;
        margin-left: 0;
        border-top: 1px solid #fff;
    }
}

@media screen and (max-width: 842px) {
    .index .WrapHeader {
        opacity: 1;
    }
}

@media screen and (max-width: 720px) {
    .index #project {
        margin-left: 0px;
    }

    .index .section {
        margin-left: 0px;
    }

    .index #project .StrateProjet-right {
        float: none;
        padding: 10px;
        width: 100%;
    }

    .index #newsletter .LastNews {
        width: 100%;
    }

    .index .NavShop.mobile .NavLeft {
        display: block;
        background: #000;
    }

    .index .WrapHeader .Header .NavShop a {
        color: #fff !important;
    }

    .index .WrapHeader .Header .NavShop .list-navleft {
        bottom: auto;
    }

    .index .WrapHeader .Header .NavShop .NavLeft-link {
        color: #ffffff !important;
    }


}
