/*------------------------------
VARIABLES CHEMIN
--------------------------------*/
/*------------------------------
VARIABLES SIZE
--------------------------------*/
/*------------------------------
VARIABLES IMAGES
--------------------------------*/
/*------------------------------
IMPORT BASE
--------------------------------*/
/*------------------------------
TRANSITIONS
--------------------------------*/
/*------------------------------
TRANSFORM
--------------------------------*/
/*------------------------------
KEYFRAME ANIMATIONS
--------------------------------*/
@-webkit-keyframes scale-up-hor-left {
  0% {
    -webkit-transform: scaleX(0.4);
    transform: scaleX(0.4);
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
  }
}
@keyframes scale-up-hor-left {
  0% {
    -webkit-transform: scaleX(0.4);
    transform: scaleX(0.4);
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
  }
}
@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
  }
}
@keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
  }
}
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -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 {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    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 {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  from {
    -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);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 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);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(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);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(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);
  }
  to {
    -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 {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -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);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -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);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -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);
  }
  from {
    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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -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);
  }
  from {
    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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    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);
  }
  to {
    -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);
  }
  to {
    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);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -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 {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -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;
  }
  to {
    -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;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    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 {
  from {
    opacity: 1;
  }
  to {
    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 {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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 {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
.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.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
.animated.delay-6s {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}
.animated.delay-7s {
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}
.animated.delay-8s {
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
}
.animated.delay-9s {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
.animated.delay-10s {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}
.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}
.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}
.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}
@media (print), (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -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 {
  from,
  20%,
  53%,
  80%,
  to {
    -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 {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    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 {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  from {
    -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);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 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);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(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);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(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);
  }
  to {
    -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 {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -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);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -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);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -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);
  }
  from {
    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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -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);
  }
  from {
    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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    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);
  }
  to {
    -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);
  }
  to {
    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);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -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 {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -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 {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -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 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -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;
  }
  to {
    -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;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    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 {
  from {
    opacity: 1;
  }
  to {
    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 {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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);
  }
  to {
    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 {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
.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.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
.animated.delay-6s {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}
.animated.delay-7s {
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}
.animated.delay-8s {
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
}
.animated.delay-9s {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
.animated.delay-10s {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}
.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}
.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}
.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}
@media (print), (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
.alert {
  padding: 8px 35px 8px 14px;
  margin-bottom: 4rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #fcf8e3;
  border: 1px solid #fbeed5;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  color: #c09853;
}
.alert-heading {
  color: inherit;
}
.alert .close {
  position: relative;
  top: -2px;
  right: -21px;
  line-height: 18px;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #468847;
}
.alert-danger,
.alert-error {
  background-color: #f2dede;
  border-color: #eed3d7;
  color: #b94a48;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #3a87ad;
}
.alert-block {
  padding-top: 14px;
  padding-bottom: 14px;
}
.alert-block > p,
.alert-block > ul {
  margin-bottom: 0;
}
.alert-block p + p {
  margin-top: 5px;
}
/*!
 * Bootstrap Grid v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
@-ms-viewport {
  width: device-width;
}
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}
*,
::after,
::before {
  box-sizing: inherit;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}
.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}
.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.order-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
.order-last {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13;
}
.order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}
.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}
.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}
.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}
.order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}
.order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
}
.order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
}
.order-9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9;
}
.order-10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
}
.order-11 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11;
}
.order-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12;
}
.offset-1 {
  margin-left: 8.333333%;
}
.offset-2 {
  margin-left: 16.666667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.333333%;
}
.offset-5 {
  margin-left: 41.666667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.333333%;
}
.offset-8 {
  margin-left: 66.666667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.333333%;
}
.offset-11 {
  margin-left: 91.666667%;
}
@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.flex-row {
  -webkit-box-orient: horizontal!important;
  -webkit-box-direction: normal!important;
  -ms-flex-direction: row!important;
  flex-direction: row !important;
}
.flex-column {
  -webkit-box-orient: vertical!important;
  -webkit-box-direction: normal!important;
  -ms-flex-direction: column!important;
  flex-direction: column !important;
}
.flex-row-reverse {
  -webkit-box-orient: horizontal!important;
  -webkit-box-direction: reverse!important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  -webkit-box-orient: vertical!important;
  -webkit-box-direction: reverse!important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}
.flex-wrap {
  -ms-flex-wrap: wrap!important;
  flex-wrap: wrap !important;
}
.flex-nowrap {
  -ms-flex-wrap: nowrap!important;
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  -webkit-box-pack: start!important;
  -ms-flex-pack: start!important;
  justify-content: flex-start !important;
}
.justify-content-end {
  -webkit-box-pack: end!important;
  -ms-flex-pack: end!important;
  justify-content: flex-end !important;
}
.justify-content-center {
  -webkit-box-pack: center!important;
  -ms-flex-pack: center!important;
  justify-content: center !important;
}
.justify-content-between {
  -webkit-box-pack: justify!important;
  -ms-flex-pack: justify!important;
  justify-content: space-between !important;
}
.justify-content-around {
  -ms-flex-pack: distribute!important;
  justify-content: space-around !important;
}
.align-items-start {
  -webkit-box-align: start!important;
  -ms-flex-align: start!important;
  align-items: flex-start !important;
}
.align-items-end {
  -webkit-box-align: end!important;
  -ms-flex-align: end!important;
  align-items: flex-end !important;
}
.align-items-center {
  -webkit-box-align: center!important;
  -ms-flex-align: center!important;
  align-items: center !important;
}
.align-items-baseline {
  -webkit-box-align: baseline!important;
  -ms-flex-align: baseline!important;
  align-items: baseline !important;
}
.align-items-stretch {
  -webkit-box-align: stretch!important;
  -ms-flex-align: stretch!important;
  align-items: stretch !important;
}
.align-content-start {
  -ms-flex-line-pack: start!important;
  align-content: flex-start !important;
}
.align-content-end {
  -ms-flex-line-pack: end!important;
  align-content: flex-end !important;
}
.align-content-center {
  -ms-flex-line-pack: center!important;
  align-content: center !important;
}
.align-content-between {
  -ms-flex-line-pack: justify!important;
  align-content: space-between !important;
}
.align-content-around {
  -ms-flex-line-pack: distribute!important;
  align-content: space-around !important;
}
.align-content-stretch {
  -ms-flex-line-pack: stretch!important;
  align-content: stretch !important;
}
.align-self-auto {
  -ms-flex-item-align: auto!important;
  align-self: auto !important;
}
.align-self-start {
  -ms-flex-item-align: start!important;
  align-self: flex-start !important;
}
.align-self-end {
  -ms-flex-item-align: end!important;
  align-self: flex-end !important;
}
.align-self-center {
  -ms-flex-item-align: center!important;
  align-self: center !important;
}
.align-self-baseline {
  -ms-flex-item-align: baseline!important;
  align-self: baseline !important;
}
.align-self-stretch {
  -ms-flex-item-align: stretch!important;
  align-self: stretch !important;
}
@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal!important;
    -webkit-box-direction: normal!important;
    -ms-flex-direction: row!important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical!important;
    -webkit-box-direction: normal!important;
    -ms-flex-direction: column!important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal!important;
    -webkit-box-direction: reverse!important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical!important;
    -webkit-box-direction: reverse!important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap!important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start!important;
    -ms-flex-pack: start!important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end!important;
    -ms-flex-pack: end!important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center!important;
    -ms-flex-pack: center!important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify!important;
    -ms-flex-pack: justify!important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute!important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start!important;
    -ms-flex-align: start!important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end!important;
    -ms-flex-align: end!important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center!important;
    -ms-flex-align: center!important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline!important;
    -ms-flex-align: baseline!important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch!important;
    -ms-flex-align: stretch!important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start!important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end!important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center!important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify!important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute!important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch!important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto!important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start!important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end!important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center!important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline!important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch!important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal!important;
    -webkit-box-direction: normal!important;
    -ms-flex-direction: row!important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical!important;
    -webkit-box-direction: normal!important;
    -ms-flex-direction: column!important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal!important;
    -webkit-box-direction: reverse!important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical!important;
    -webkit-box-direction: reverse!important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap!important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start!important;
    -ms-flex-pack: start!important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end!important;
    -ms-flex-pack: end!important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center!important;
    -ms-flex-pack: center!important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify!important;
    -ms-flex-pack: justify!important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute!important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -webkit-box-align: start!important;
    -ms-flex-align: start!important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end!important;
    -ms-flex-align: end!important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center!important;
    -ms-flex-align: center!important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline!important;
    -ms-flex-align: baseline!important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch!important;
    -ms-flex-align: stretch!important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start!important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end!important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center!important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify!important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute!important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch!important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto!important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start!important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end!important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center!important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline!important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch!important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal!important;
    -webkit-box-direction: normal!important;
    -ms-flex-direction: row!important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical!important;
    -webkit-box-direction: normal!important;
    -ms-flex-direction: column!important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal!important;
    -webkit-box-direction: reverse!important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical!important;
    -webkit-box-direction: reverse!important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap!important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start!important;
    -ms-flex-pack: start!important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end!important;
    -ms-flex-pack: end!important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center!important;
    -ms-flex-pack: center!important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify!important;
    -ms-flex-pack: justify!important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute!important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start!important;
    -ms-flex-align: start!important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end!important;
    -ms-flex-align: end!important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center!important;
    -ms-flex-align: center!important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline!important;
    -ms-flex-align: baseline!important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch!important;
    -ms-flex-align: stretch!important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start!important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end!important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center!important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify!important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute!important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch!important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto!important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start!important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end!important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center!important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline!important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch!important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal!important;
    -webkit-box-direction: normal!important;
    -ms-flex-direction: row!important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical!important;
    -webkit-box-direction: normal!important;
    -ms-flex-direction: column!important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal!important;
    -webkit-box-direction: reverse!important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical!important;
    -webkit-box-direction: reverse!important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap!important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start!important;
    -ms-flex-pack: start!important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end!important;
    -ms-flex-pack: end!important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center!important;
    -ms-flex-pack: center!important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify!important;
    -ms-flex-pack: justify!important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute!important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start!important;
    -ms-flex-align: start!important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end!important;
    -ms-flex-align: end!important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center!important;
    -ms-flex-align: center!important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline!important;
    -ms-flex-align: baseline!important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch!important;
    -ms-flex-align: stretch!important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start!important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end!important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center!important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify!important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute!important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch!important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto!important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start!important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end!important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center!important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline!important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch!important;
    align-self: stretch !important;
  }
}
/*# sourceMappingURL=bootstrap-grid.min.css.map */
.m-0 {
  margin: 0 !important;
}
.mt-0,
.my-0 {
  margin-top: 0 !important;
}
.mr-0,
.mx-0 {
  margin-right: 0 !important;
}
.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}
.ml-0,
.mx-0 {
  margin-left: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}
.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}
.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}
.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}
.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}
.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}
.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.mt-3,
.my-3 {
  margin-top: 1rem !important;
}
.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}
.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}
.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}
.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}
.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}
.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.mt-5,
.my-5 {
  margin-top: 3rem !important;
}
.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}
.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}
.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}
.p-0 {
  padding: 0 !important;
}
.pt-0,
.py-0 {
  padding-top: 0 !important;
}
.pr-0,
.px-0 {
  padding-right: 0 !important;
}
.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}
.pl-0,
.px-0 {
  padding-left: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}
.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}
.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}
.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}
.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}
.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}
.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.pt-3,
.py-3 {
  padding-top: 1rem !important;
}
.pr-3,
.px-3 {
  padding-right: 1rem !important;
}
.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}
.pl-3,
.px-3 {
  padding-left: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}
.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}
.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}
.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}
.pt-5,
.py-5 {
  padding-top: 3rem !important;
}
.pr-5,
.px-5 {
  padding-right: 3rem !important;
}
.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}
.pl-5,
.px-5 {
  padding-left: 3rem !important;
}
.m-n1 {
  margin: -0.25rem !important;
}
.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}
.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}
.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}
.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}
.m-n2 {
  margin: -0.5rem !important;
}
.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}
.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}
.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}
.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}
.m-n3 {
  margin: -1rem !important;
}
.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}
.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}
.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}
.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}
.m-n4 {
  margin: -1.5rem !important;
}
.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}
.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}
.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}
.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}
.m-n5 {
  margin: -3rem !important;
}
.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}
.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}
.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}
.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}
.m-auto {
  margin: auto !important;
}
.mt-auto,
.my-auto {
  margin-top: auto !important;
}
.mr-auto,
.mx-auto {
  margin-right: auto !important;
}
.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}
.ml-auto,
.mx-auto {
  margin-left: auto !important;
}
@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.m-0 {
  margin: 0 !important;
}
.mt-0,
.my-0 {
  margin-top: 0 !important;
}
.mr-0,
.mx-0 {
  margin-right: 0 !important;
}
.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}
.ml-0,
.mx-0 {
  margin-left: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}
.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}
.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}
.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}
.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}
.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}
.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.mt-3,
.my-3 {
  margin-top: 1rem !important;
}
.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}
.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}
.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}
.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}
.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}
.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.mt-5,
.my-5 {
  margin-top: 3rem !important;
}
.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}
.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}
.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}
.p-0 {
  padding: 0 !important;
}
.pt-0,
.py-0 {
  padding-top: 0 !important;
}
.pr-0,
.px-0 {
  padding-right: 0 !important;
}
.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}
.pl-0,
.px-0 {
  padding-left: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}
.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}
.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}
.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}
.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}
.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}
.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.pt-3,
.py-3 {
  padding-top: 1rem !important;
}
.pr-3,
.px-3 {
  padding-right: 1rem !important;
}
.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}
.pl-3,
.px-3 {
  padding-left: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}
.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}
.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}
.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}
.pt-5,
.py-5 {
  padding-top: 3rem !important;
}
.pr-5,
.px-5 {
  padding-right: 3rem !important;
}
.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}
.pl-5,
.px-5 {
  padding-left: 3rem !important;
}
.m-n1 {
  margin: -0.25rem !important;
}
.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}
.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}
.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}
.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}
.m-n2 {
  margin: -0.5rem !important;
}
.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}
.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}
.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}
.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}
.m-n3 {
  margin: -1rem !important;
}
.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}
.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}
.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}
.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}
.m-n4 {
  margin: -1.5rem !important;
}
.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}
.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}
.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}
.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}
.m-n5 {
  margin: -3rem !important;
}
.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}
.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}
.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}
.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}
.m-auto {
  margin: auto !important;
}
.mt-auto,
.my-auto {
  margin-top: auto !important;
}
.mr-auto,
.mx-auto {
  margin-right: auto !important;
}
.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}
.ml-auto,
.mx-auto {
  margin-left: auto !important;
}
@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
/*------------------------------
VARIABLES COULEURS GÉNÉRIQUES
--------------------------------*/
/*------------------------------
VARIABLES COULEURS PROJETS
-------------------------------*/
:root {
  --accent: #172640 !important;
}
@font-face {
  font-family: 'elios';
  src: url('../fonts/elios.eot?3u1y3z');
  src: url('../fonts/elios.eot?3u1y3z#iefix') format('embedded-opentype'), url('../fonts/elios.ttf?hh3ehb') format('truetype'), url('../fonts/elios.woff?hh3ehb') format('woff'), url('../fonts/elios.svg?hh3ehb#@elios') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="icon-"],
[class*="icon-"],
.icon- {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'elios' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-angle-down:before {
  content: "\e925";
}
.icon-anti-brouillard:before {
  content: "\e900";
}
.icon-iso-fix:before {
  content: "\e901";
}
.icon-isolation:before {
  content: "\e902";
}
.icon-jante:before {
  content: "\e903";
}
.icon-parechoc-peint:before {
  content: "\e904";
}
.icon-rechaud-3f:before {
  content: "\e905";
}
.icon-reservoir:before {
  content: "\e906";
}
.icon-vidange-elec:before {
  content: "\e907";
}
.icon-actualites:before {
  content: "\e908";
}
.icon-ad-blue:before {
  content: "\e909";
}
.icon-airbags:before {
  content: "\e90a";
}
.icon-arrow-right:before {
  content: "\e90b";
}
.icon-arrow:before {
  content: "\e90c";
}
.icon-calendar:before {
  content: "\e90d";
}
.icon-carrosserie:before {
  content: "\e90e";
}
.icon-charge:before {
  content: "\e90f";
}
.icon-chauffage:before {
  content: "\e910";
}
.icon-citroen:before {
  content: "\e911";
}
.icon-climatisation-cabine:before {
  content: "\e912";
}
.icon-contact:before {
  content: "\e913";
}
.icon-download:before {
  content: "\e914";
}
.icon-eau-propre:before {
  content: "\e915";
}
.icon-eau-usee:before {
  content: "\e916";
}
.icon-esp:before {
  content: "\e917";
}
.icon-facebook:before {
  content: "\e918";
}
.icon-fiat:before {
  content: "\e919";
}
.icon-gaz:before {
  content: "\e91a";
}
.icon-implantation:before {
  content: "\e91b";
}
.icon-instagram:before {
  content: "\e91c";
}
.icon-local-store:before {
  content: "\e91d";
}
.icon-moustiquaire:before {
  content: "\e91e";
}
.icon-radar-recul:before {
  content: "\e91f";
}
.icon-rechaud:before {
  content: "\e920";
}
.icon-refrigerateur:before {
  content: "\e921";
}
.icon-regulateur-vitesse:before {
  content: "\e922";
}
.icon-store:before {
  content: "\e923";
}
.icon-youtube:before {
  content: "\e924";
}
@font-face {
  font-family: "akrobatlight";
  src: url("../fonts/akrobat-light-webfont.woff2") format("woff2"), url("../fonts/akrobat-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "akrobatregular";
  src: url("../fonts/akrobat-regular-webfont.woff2") format("woff2"), url("../fonts/akrobat-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "akrobatbold";
  src: url("../fonts/akrobat-bold-webfont.woff2") format("woff2"), url("../fonts/akrobat-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "akrobatblack";
  src: url("../fonts/akrobat-black-webfont.woff2") format("woff2"), url("../fonts/akrobat-black-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
.fa-solid.fa-angle-down:before {
  font-family: "Font Awesome 6 Pro";
  content: "\f107" !important;
  color: #d1001f;
}
html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*:focus {
  outline: none;
}
*::-moz-focus-inner {
  border: none;
}
html {
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
  color: var(--accent);
}
body {
  background-color: #ffffff;
  font-family: "akrobatlight", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 26px;
  line-height: 2.6rem;
  color: #172640;
  position: relative;
  overflow-x: hidden;
}
body:before,
body:after {
  display: none;
}
body:not(.custom-background-image):before,
body:not(.custom-background-image):after {
  display: none;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
button {
  border: none;
  border-radius: 0px;
}
img {
  display: block;
  height: auto;
  max-width: 100%;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*------------------------------
CLEARFIX
--------------------------------*/
.site-main {
  margin: 0;
}
.site-inner {
  margin: 0 auto;
}
h1,
h2,
h3,
h4 {
  line-height: 1;
}
h2,
h3 {
  margin-bottom: 30px;
  margin-bottom: 3rem;
}
h1 {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  color: #172640;
  margin-bottom: 30px;
  margin-bottom: 3rem;
  padding-top: 30px;
  padding-top: 3rem;
  text-align: center;
}
h1 span {
  display: block;
  font-size: 55px;
  font-size: 5.5rem;
  color: #d1001f;
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: italic;
}
h2 {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: italic;
}
h2 strong {
  font-size: inherit;
}
h3 {
  font-size: 24px;
  font-size: 2.4000000000000004rem;
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
}
h3 strong {
  font-size: 24px;
  font-size: 2.4000000000000004rem;
}
h4 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 24px;
  line-height: 2.4000000000000004rem;
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  margin-bottom: 10px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
p {
  line-height: 22px;
  line-height: 2.2rem;
  margin-bottom: 16px;
  margin-bottom: 1.6rem;
}
p a {
  text-decoration: underline !important;
}
p ul li {
  list-style: circle;
}
.carreful {
  color: #d1001f;
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  width: 100%;
}
a {
  color: #172640;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
}
a:hover,
a:focus,
a:active {
  color: #172640;
  text-decoration: none;
}
a.direct-link-box {
  text-decoration: none;
  color: #ffffff;
}
a.direct-link-box:hover,
a.direct-link-box:focus,
a.direct-link-box:active {
  color: #ffffff !important;
  text-decoration: none;
}
.direct-link-box:not(.direct-link-box-two) a:hover,
.direct-link-box:not(.direct-link-box-two) .direct-link:hover,
.direct-link-box:not(.direct-link-box-two) a:focus,
.direct-link-box:not(.direct-link-box-two) .direct-link:focus,
.direct-link-box:not(.direct-link-box-two) a:active,
.direct-link-box:not(.direct-link-box-two) .direct-link:active {
  color: #ffffff !important;
  text-decoration: none;
}
.direct-link-box:not(.direct-link-box-two) a:hover *,
.direct-link-box:not(.direct-link-box-two) .direct-link:hover *,
.direct-link-box:not(.direct-link-box-two) a:focus *,
.direct-link-box:not(.direct-link-box-two) .direct-link:focus *,
.direct-link-box:not(.direct-link-box-two) a:active *,
.direct-link-box:not(.direct-link-box-two) .direct-link:active * {
  color: inherit;
}
ol,
ul {
  list-style: none;
  margin: 0;
}
ol li,
ul li {
  list-style: none;
}
strong {
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
}
blockquote,
.wp-block-quote {
  border: none;
  color: #d1001f;
  margin: 25px 0px;
  margin: 2.5rem 0rem;
  position: relative;
  width: 75%;
}
blockquote:before,
.wp-block-quote:before {
  content: "";
  display: block;
  height: 100%;
  left: 5px;
  left: 0.5rem;
  background-color: #d1001f;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  -webkit-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  position: absolute;
  top: 0;
  width: 5px;
  width: 0.5rem;
}
blockquote p,
.wp-block-quote p {
  color: inherit;
  margin: 0px;
  margin: 0rem;
}
blockquote strong,
.wp-block-quote strong,
blockquote b,
.wp-block-quote b {
  color: inherit;
}
.cookieControl__BarButtons button:after,
.cookieControl button:after,
.cookieControl__BarButtons button:before,
.cookieControl button:before {
  display: none;
}
.alert {
  position: relative;
}
.alert p {
  margin: 0;
  padding-left: 25px;
  padding-left: 2.5rem;
}
.alert button.btn-close {
  background: none;
  border: 1px solid;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  height: 25px;
  height: 2.5rem;
  left: 5px;
  left: 0.5rem;
  padding: 0;
  position: absolute;
  top: 8px;
  top: 0.8rem;
  width: 25px;
  width: 2.5rem;
}
.alert button.btn-close:after,
.alert button.btn-close:before {
  display: none;
}
.alert-danger button.btn-close,
.alert-error button.btn-close {
  border-color: #b94a48;
}
.alert-danger i,
.alert-error i {
  line-height: 23px;
  line-height: 2.3000000000000003rem;
}
.alert-danger i,
.alert-error i,
.alert-danger:before,
.alert-error:before {
  text-shadow: none;
  background-color: transparent;
  color: #b94a48;
}
.error-msg {
  margin-top: 5px;
  margin-top: 0.5rem;
}
.error-msg span {
  background-color: #d1001f;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  font-size: 1.4000000000000001rem;
  padding: 5px;
  padding: 0.5rem;
  position: relative;
}
.error-msg span:before {
  border-right: 6px solid transparent;
  border-bottom: 10px solid #d1001f;
  border-left: 6px solid transparent;
  content: "";
  display: inline-block;
  height: 0;
  left: 0;
  position: absolute;
  top: -6px;
  top: -0.6000000000000001rem;
  width: 0;
}
.overlay {
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 9;
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.overlay.on {
  right: 0;
  opacity: 1;
  height: 100%;
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.grecaptcha-badge {
  bottom: 0 !important;
}
@media screen and (min-width: 768px) {
  h1,
  h2,
  h3,
  h4 {
    line-height: 1;
  }
  h2,
  h3 {
    margin-bottom: 30px;
    margin-bottom: 3rem;
  }
  h1 {
    font-size: 50px;
    font-size: 5rem;
    margin-bottom: 10px;
    margin-bottom: 1rem;
    padding-top: 0px;
    padding-top: 0rem;
    padding-bottom: 15px;
    padding-bottom: 1.5rem;
    text-align: left;
  }
  h2 {
    font-size: 30px;
    font-size: 3rem;
  }
  h3 {
    font-size: 24px;
    font-size: 2.4000000000000004rem;
    margin-bottom: 15px;
    margin-bottom: 1.5rem;
  }
  h3 strong {
    font-size: 24px;
    font-size: 2.4000000000000004rem;
  }
  h4 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 24px;
    line-height: 2.4000000000000004rem;
    margin-bottom: 10px;
    margin-bottom: 1rem;
  }
  p {
    line-height: 22px;
    line-height: 2.2rem;
    margin-bottom: 16px;
    margin-bottom: 1.6rem;
  }
  .carreful {
    color: #d1001f;
  }
  blockquote {
    margin: 0px;
    margin: 0rem;
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 27px;
    line-height: 2.7rem;
  }
  blockquote b {
    font-size: 28px;
    font-size: 2.8000000000000003rem;
  }
}
@media screen and (min-width: 992px) {
  h1 {
    font-size: 60px;
    font-size: 6rem;
    margin-bottom: 50px;
    margin-bottom: 5rem;
    padding-bottom: 0px;
    padding-bottom: 0rem;
  }
}
@media screen and (min-width: 1200px) {
  a:hover,
  a:focus,
  a:active {
    color: inherit;
    cursor: pointer;
    outline: none;
  }
}
.main-header {
  background-color: #ffffff;
  position: relative;
  z-index: 10;
  width: 100%;
}
.main-header-container {
  position: static;
  color: #172640;
  z-index: 2;
}
.main-header-container li a {
  color: #172640;
  font-size: 14px;
  font-size: 1.4000000000000001rem;
}
.main-header-container li a.btn-widget i:before {
  font-size: 18px;
  font-size: 1.8rem;
}
.main-header-container div {
  font-size: 14px;
  font-size: 1.4000000000000001rem;
}
.brand-logo {
  height: 100%;
  position: relative;
  width: 60%;
  z-index: 10;
}
.brand-logo span {
  display: block;
  height: 0;
  text-indent: -999em;
  direction: ltr;
}
.brand-logo a {
  background: url('../images/svg/elios-france-logo.svg') no-repeat center center;
  height: 100%;
  width: 100%;
}
.logo-mobile {
  height: 80px;
  height: 8rem;
  position: fixed;
  background-color: #ffffff;
  width: 100vw;
  padding: 10px 0px;
  padding: 1rem 0rem;
  z-index: 999;
}
@media screen and (min-width: 1200px) {
  .main-header {
    position: fixed;
  }
  .brand-logo a {
    height: 120%;
    width: 120%;
  }
}
.remonter-fb-container {
  z-index: 0;
}
.page-template-page-contact .widget-rendez-vous {
  display: none;
}
.nav-footer-van .menu-item-4181,
.nav-footer-carvan .menu-item-4181,
.nav-footer-van .menu-item-4203,
.nav-footer-carvan .menu-item-4203 {
  width: 100%;
}
.nav-footer-van .menu-item-4181 a,
.nav-footer-carvan .menu-item-4181 a,
.nav-footer-van .menu-item-4203 a,
.nav-footer-carvan .menu-item-4203 a {
  width: 100%;
  display: block;
  border-bottom: solid 1px #172640;
  margin-bottom: 20px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.nav-footer-van .sub-menu,
.nav-footer-carvan .sub-menu {
  display: flex;
  justify-content: space-around;
}
.nav-footer-van .sub-menu a,
.nav-footer-carvan .sub-menu a {
  display: unset;
  width: unset;
  border-bottom: unset;
  margin-bottom: unset;
  text-transform: unset;
}
.nav-footer-van .sub-menu .sub-menu,
.nav-footer-carvan .sub-menu .sub-menu {
  display: unset;
  justify-content: unset;
}
.nav-footer-van .sub-menu .sub-menu span,
.nav-footer-carvan .sub-menu .sub-menu span {
  font-size: 16px;
  font-size: 1.6rem;
}
.container-nav-footer {
  padding-top: 15px;
  padding-top: 1.5rem;
  padding-bottom: 15px;
  padding-bottom: 1.5rem;
}
.container-nav-footer .items-copyright .menu-item {
  width: 100%;
  font-size: 14px;
  font-size: 1.4000000000000001rem;
}
.container-nav-footer .items-copyright .menu-item span {
  font-size: 14px;
  font-size: 1.4000000000000001rem;
  text-align: center;
}
.footer-copyright {
  background-color: #242f42;
  color: #ffffff;
  padding: 10px 15px;
}
.footer-copyright .container-fluid {
  text-align: right;
  font-size: 12px;
  font-size: 1.2000000000000002rem;
  margin: 0;
}
.nav-copyright .items-copyright {
  flex-direction: column;
  align-items: start !important;
  margin: 0;
  margin-top: 15px;
}
.nav-copyright .items-copyright span {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.textwidget p {
  font-size: 14px;
  font-size: 1.4000000000000001rem;
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  margin: 0;
}
.textwidget p img {
  width: 200px;
  margin-bottom: 10px;
  margin-bottom: 1rem;
}
.btn-widget i:before {
  font-size: 32px;
  font-size: 3.2rem;
}
.footer-site .btn-widget i:before {
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 576px) {
  .footer-site {
    padding-bottom: 72px;
    padding-bottom: 7.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .container-nav-footer {
    padding-top: 60px;
    padding-top: 6rem;
  }
  .container-nav-footer .items-copyright .menu-item {
    width: unset;
  }
  .container-nav-footer .items-copyright .menu-item span {
    text-align: left;
  }
}
.breadcrumb {
  display: none;
  font-size: 12px;
  font-size: 1.2000000000000002rem;
  line-height: 38px;
  line-height: 3.8000000000000003rem;
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-bottom: 3rem;
  padding-left: 30px;
  padding-left: 3rem;
  position: relative;
  background-color: #ffffff;
  width: 100%;
}
.breadcrumb:after {
  content: "";
  background-color: #ffffff;
  -webkit-border-bottom-right-radius: 2px;
  -moz-border-bottom-right-radius: 2px;
  border-bottom-right-radius: 2px;
  -webkit-border-top-right-radius: 2px;
  -moz-border-top-right-radius: 2px;
  border-top-right-radius: 2px;
  display: block;
  height: 100%;
  position: absolute;
  right: -20px;
  right: -2rem;
  top: 0;
  width: 30px;
  width: 3rem;
  z-index: 0;
  -moz-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  -webkit-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  transform-origin: 50% 50%;
}
.breadcrumb * {
  color: #707070;
}
.breadcrumb .home-page {
  direction: ltr;
  display: inline-block;
  text-indent: -999em;
}
.breadcrumb a {
  text-decoration: none;
}
.breadcrumb i {
  display: inline-block;
  padding: 0px 5px;
  padding: 0rem 0.5rem;
}
.breadcrumb i:before {
  vertical-align: middle;
}
.breadcrumb i:first-child {
  padding-left: 10px;
  padding-left: 1rem;
}
.breadcrumb span {
  padding: 0px 5px;
  padding: 0rem 0.5rem;
}
.breadcrumb [class^="ti-"],
.breadcrumb [class*="ti-"] {
  font-size: 12px;
  font-size: 1.2000000000000002rem;
  padding: 15px 10px;
  padding: 1.5rem 1rem;
  line-height: 1;
}
.breadcrumb .current-page {
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
}
@media screen and (min-width: 1200px) {
  .breadcrumb {
    display: block;
  }
}
body {
  margin-bottom: 10vh;
}
video {
  width: 100%;
}
.page-template-page-implantations .container-post-hero .page-intro-grey,
.page-template-page-contact .container-post-hero .page-intro-grey,
.page-template-page-reseau .container-post-hero .page-intro-grey {
  min-height: 16vh;
}
.page-template-page-implantations .container-post-hero .page-intro-grey h1,
.page-template-page-contact .container-post-hero .page-intro-grey h1,
.page-template-page-reseau .container-post-hero .page-intro-grey h1,
.page-template-page-implantations .container-post-hero .page-intro-grey h1.title-page-common,
.page-template-page-contact .container-post-hero .page-intro-grey h1.title-page-common,
.page-template-page-reseau .container-post-hero .page-intro-grey h1.title-page-common {
  text-align: center;
  width: 100%;
}
.bg-skew {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  width: fit-content;
}
.bg-skew:before {
  position: absolute;
  content: "";
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  z-index: -1;
  border-radius: 5px;
  transform: skew(-15deg, 0);
}
.tax-gamme .bg-skew:before {
  width: 118%;
  height: 72%;
  top: 13%;
  left: -7%;
}
.bg-skew.bg-skew-red:before {
  background: #d1001f;
}
.bg-skew.bg-skew-grey:before {
  background-color: #242f42;
}
.page-template-page-gamme .container-post-hero h1:after {
  display: none;
}
.container-post-hero h1 {
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  background-color: #242f42;
  color: #ffffff;
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 0px;
  margin-bottom: 0rem;
  padding: 20px;
  padding: 2rem;
  overflow: hidden;
  position: relative;
  text-transform: uppercase;
}
.container-post-hero h1:after {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  bottom: -25px;
  right: -25px;
  transform: rotate(45deg);
  background-color: #ffffff;
}
.container-post-hero h1 span {
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #ffffff;
  font-size: 27px;
  font-size: 2.7rem;
}
.container-post-hero h1.title-page-common {
  font-size: 35px;
  font-size: 3.5rem;
  margin: 0;
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
  padding: 0px 15px;
  padding: 0rem 1.5rem;
}
.container-post-hero h1.title-page-common:after {
  display: none;
}
.page-content,
.page-introduction {
  background-color: #242f42;
  padding-top: 15px;
  padding-top: 1.5rem;
}
.page-content .title-page-gamme,
.page-introduction .title-page-gamme {
  margin-bottom: 10px;
  margin-bottom: 1rem;
}
.page-content .title-page-gamme .title-gamme,
.page-introduction .title-page-gamme .title-gamme {
  text-transform: uppercase;
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 70px;
  font-size: 7rem;
  line-height: 1;
  position: relative;
  left: -15px;
}
.page-content .title-page-gamme .title-gamme .gamme-box-title,
.page-introduction .title-page-gamme .title-gamme .gamme-box-title {
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 25px;
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
  left: 35px;
  width: fit-content;
}
.page-content .title-page-gamme .title-gamme .gamme-box-title:after,
.page-introduction .title-page-gamme .title-gamme .gamme-box-title:after {
  position: absolute;
  content: "";
  z-index: -1;
  background: #d1001f;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  border-radius: 5px;
  transform: skew(-15deg, 0);
}
.page-content .title-page-gamme strong,
.page-introduction .title-page-gamme strong {
  text-transform: uppercase;
  font-size: 25px;
  font-size: 2.5rem;
}
.page-content .title-page-gamme strong span,
.page-introduction .title-page-gamme strong span {
  display: inline-block;
  font-size: 25px;
  font-size: 2.5rem;
  margin-left: 6px;
  margin-left: 0.6000000000000001rem;
}
.page-content p,
.page-introduction p {
  color: #ffffff;
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
.page-content h1,
.page-introduction h1,
.page-content p,
.page-introduction p {
  padding-left: 15px;
  padding-left: 1.5rem;
  padding-right: 15px;
  padding-right: 1.5rem;
}
.page-content .text-page-gamme,
.page-introduction .text-page-gamme {
  padding: 25px 15px;
  padding: 2.5rem 1.5rem;
}
.page-content .text-page-gamme p,
.page-introduction .text-page-gamme p {
  padding-left: 0;
}
.page-content .text-page-gamme ul,
.page-introduction .text-page-gamme ul {
  padding-left: 15px;
  padding-left: 1.5rem;
}
.page-content .text-page-gamme ul li,
.page-introduction .text-page-gamme ul li {
  color: #ffffff;
  list-style: initial;
}
.page-content .links-cto,
.page-introduction .links-cto {
  padding: 0px;
  padding: 0rem;
}
.page-content .links-cto .link-module-two,
.page-introduction .links-cto .link-module-two {
  color: #ffffff;
  background: #454e5e;
  padding: 20px;
  padding: 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  font-size: 2.2rem;
  margin: 0;
  height: 100%;
  cursor: pointer;
}
.page-content .links-cto .link-module-two span,
.page-introduction .links-cto .link-module-two span {
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.page-content .links-cto .link-module-two .link-open-module,
.page-introduction .links-cto .link-module-two .link-open-module {
  display: none;
}
.page-content .links-cto .link-module-one,
.page-introduction .links-cto .link-module-one {
  color: #242f42;
  background: #c9cfd8;
  padding: 20px;
  padding: 2rem;
  text-align: center;
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  font-size: 2.2rem;
  margin: 0;
  height: 100%;
  cursor: pointer;
}
.page-content .links-cto .link-module-one span,
.page-introduction .links-cto .link-module-one span {
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
  display: none;
}
.page-content .links-cto .link-module-one .link-open-module,
.page-introduction .links-cto .link-module-one .link-open-module {
  display: none;
}
.page-intro-grey {
  min-height: 28vh;
  background-color: #242f42;
  padding: 0;
  padding-top: 15px;
  padding-top: 1.5rem;
  position: relative;
}
.page-intro-grey h1 {
  margin: 0;
  margin-bottom: 45px;
  margin-bottom: 4.5rem;
}
.page-intro-grey .container-thumb-archive {
  top: 40px;
  top: 4rem;
  z-index: 2;
}
.page-content {
  background: unset;
  margin-top: 0;
}
.page-content .container-cto {
  width: 100%;
}
.page-content .module-rdv {
  min-height: 40%;
}
.page-content p {
  color: #242f42;
  width: 100%;
}
.page-content:not(:first-child) {
  margin-top: 0;
}
.container-module-one,
.container-module-two {
  width: 100%;
  height: 82vh;
  position: fixed;
  top: 8vh;
  left: 0;
  background-color: #ffffff;
  z-index: 15;
  transform: translate(100%, 0);
  transition: all 0.5s ease-in-out;
}
.container-module-one .grid-full-galerie,
.container-module-two .grid-full-galerie,
.container-module-one .container-layout,
.container-module-two .container-layout,
.container-module-one .wpcf7-form,
.container-module-two .wpcf7-form {
  height: 72vh;
  overflow: scroll;
  padding: 15px;
  padding: 1.5rem;
  margin-top: 15px;
  margin-top: 1.5rem;
}
.container-module-one.on,
.container-module-two.on {
  transform: translate(0, 0);
}
.module-cancel {
  margin-top: 30px;
  margin-top: 3rem;
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  font-size: 3rem;
}
.module-cancel p {
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  text-transform: uppercase;
}
.module-cancel .icon-cancel {
  margin-top: 20px;
  margin-top: 2rem;
}
.module-cancel #icon-cancel {
  cursor: pointer;
}
.container-gammes .item-gamme {
  padding: 20px 0px;
  padding: 2rem 0rem;
}
.container-gammes .item-gamme:nth-child(2n) {
  background: #eaecf0;
}
.container-gammes .item-gamme:nth-child(2n) .item-gamme-box {
  flex-direction: row-reverse;
}
.container-gammes .item-gamme .title-gamme {
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 25px;
  font-size: 2.5rem;
  text-transform: uppercase;
}
.container-gammes .item-gamme .title-gamme span {
  font-size: 60px;
  font-size: 6rem;
  color: #ffffff;
  margin-top: 15px;
  margin-top: 1.5rem;
  padding-left: 15px;
  padding-left: 1.5rem;
  position: relative;
  width: fit-content;
  z-index: 1;
}
.container-gammes .item-gamme .title-gamme span:before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 105%;
  height: 207%;
  top: -50%;
  left: 3%;
  background-color: #242f42;
  border-radius: 5px;
  transform: skew(-15deg, 0);
}
.container-gammes .item-gamme .gamme-informations-container {
  padding: 20px 15px;
  padding: 2rem 1.5rem;
}
.direct-link-box {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 0px 80px 0px 20px;
  padding: 0rem 8rem 0rem 2rem;
}
.direct-link-box:hover {
  cursor: pointer;
}
.direct-link-box:after {
  position: absolute;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  top: -3%;
  left: -10%;
  transform: skew(30deg, 0);
}
.direct-link-box a {
  color: #ffffff;
}
.direct-link-box a .svg-inline--fa,
.direct-link-box a i {
  margin-left: 10px;
}
.direct-link-box p {
  margin: 0;
}
.direct-link-box-one {
  padding: 0px 20px 0px 80px;
  padding: 0rem 2rem 0rem 8rem;
  height: 65px;
  height: 6.5rem;
}
.direct-link-box-one:after {
  top: 0;
  left: unset;
  right: -10%;
}
.direct-link-box.direct-link-grey:after {
  background-color: #242f42;
}
.direct-link-box.direct-link-grey .direct-link {
  color: #ffffff;
}
.direct-link-box.direct-link-grey .direct-link .svg-inline--fa,
.direct-link-box.direct-link-grey .direct-link i {
  padding: 0;
  margin-top: 0;
  margin-left: 10px;
  margin-left: 1rem;
}
.direct-link-box.direct-link-red:after {
  background: #d1001f;
}
.intro-gamme-title {
  text-transform: uppercase;
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: italic;
  color: unset;
  font-size: 70px;
  font-size: 7rem;
  margin-bottom: 20px;
  margin-bottom: 2rem;
}
.intro-gamme-title span {
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 10px;
  margin-bottom: 1rem;
}
.intro-gamme-title-box h1 {
  font-size: 40px;
  font-size: 4rem;
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.intro-gamme-descript-box {
  position: relative;
}
.intro-gamme-descript-box .container-thumb-archive {
  position: relative;
  top: -30vh;
}
.intro-gamme-descript-box .video-hero {
  max-width: unset !important;
  cursor: pointer;
}
.container-more-gamme .title-more-gamme,
.container-more-brand .title-more-gamme,
.container-more .title-more-gamme,
.container-more-gamme .title-more-brand,
.container-more-brand .title-more-brand,
.container-more .title-more-brand {
  font-size: 26px;
  font-size: 2.6rem;
  text-transform: uppercase;
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #242f42;
}
.container-more-gamme .title-more-gamme span,
.container-more-brand .title-more-gamme span,
.container-more .title-more-gamme span,
.container-more-gamme .title-more-brand span,
.container-more-brand .title-more-brand span,
.container-more .title-more-brand span {
  margin-top: -30px;
  margin-top: -3rem;
}
.container-more-gamme .title-more-gamme b,
.container-more-brand .title-more-gamme b,
.container-more .title-more-gamme b,
.container-more-gamme .title-more-brand b,
.container-more-brand .title-more-brand b,
.container-more .title-more-brand b {
  font-size: 24px;
  font-size: 2.4000000000000004rem;
}
.container-more-gamme .container,
.container-more-brand .container,
.container-more .container {
  padding-bottom: 20px;
  padding-bottom: 2rem;
}
.container-options {
  color: #ffffff;
  background-color: #242f42;
  padding: 45px 0px;
  padding: 4.5rem 0rem;
}
.container-options .infos-options .header-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.container-options .infos-options .header-option h2 {
  color: #caa22e;
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
  text-transform: uppercase;
}
.container-options .infos-options .header-option h2 strong {
  color: #ffffff;
  display: block;
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 60px;
  font-size: 6rem;
}
.container-options .infos-options h3 {
  font-family: "akrobatlight", sans-serif;
  font-style: normal;
  font-weight: normal;
  text-transform: uppercase;
}
.container-options .infos-options h3 strong {
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.container-options .infos-options .text-option {
  background-color: #2b3e5f;
  padding: 20px 30px;
  padding: 2rem 3rem;
}
.container-options .infos-options .cols-text-option {
  display: flex;
  gap: 2rem;
}
.container-options .infos-options .cols-text-option p {
  min-width: 40%;
}
.container-options .infos-options .cols-text-option ul {
  border: 0.3rem solid #667a9f;
  padding: 20px;
  padding: 2rem;
  min-width: 45%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.container-options .infos-options .cols-text-option ul:before {
  content: "";
  display: flex;
  position: absolute;
  left: -3.25px;
  left: -0.325rem;
  top: -3.25px;
  top: -0.325rem;
  --b: 0.6rem;
  /* border thickness */
  --c: #0000 25%, #caa22e 0;
  /* define the color here */
  background: conic-gradient(from 90deg at top var(--b) left var(--b), var(--c)) 0 0, conic-gradient(from 180deg at top var(--b) right var(--b), var(--c)) 100% 0, conic-gradient(from 0deg at bottom var(--b) left var(--b), var(--c)) 0 100%, conic-gradient(from -90deg at bottom var(--b) right var(--b), var(--c)) 100% 100%;
  background-repeat: no-repeat;
  background-size: 25px 25px;
  /* adjust border length here */
  width: calc(100% - -0.7rem);
  height: calc(100% - -0.8rem);
}
.container-options .infos-options .cols-text-option ul li {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 22px;
  font-size: 2.2rem;
  justify-content: center;
  padding: 8px 0px;
  padding: 0.8rem 0rem;
  text-align: center;
}
.container-options .infos-options .cols-text-option ul li:after {
  background-color: #667a9f;
  content: "";
  display: block;
  height: 1px;
  height: 0.1rem;
  position: relative;
  top: 8px;
  top: 0.8rem;
  width: 60px;
  width: 6rem;
}
.container-options .infos-options .cols-text-option ul li:last-of-type:after {
  display: none;
}
.container-options .images-option {
  padding: 0px;
  padding: 0rem;
  margin-bottom: 0px;
  margin-bottom: 0rem;
}
.container-options .images-option figure {
  width: 100%;
}
.container-options .images-option figure img {
  position: relative;
  top: -5%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container-options .title-more-gamme {
  text-transform: uppercase;
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.container-options .title-more-gamme span {
  color: #bbbbba;
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  text-align: center;
}
.container-options .title-more-gamme b {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #bbbbba;
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #242f42;
  font-size: 24px;
  font-size: 2.4000000000000004rem;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  text-transform: uppercase;
  border: 10px solid #ffffff;
  text-align: center;
  height: 100px;
  height: 10rem;
  width: 100px;
  width: 10rem;
}
p.option-card {
  padding: 5px;
  padding: 0.5rem;
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
  border: 1px solid #caa22e;
  text-align: center;
}
p.option-card b,
p.option-card strong {
  text-transform: uppercase;
}
p.option-card b {
  color: #caa22e;
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}
p.option-card strong {
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.list-items-more-gamme .item-more-gamme:before {
  content: "\2022";
  display: inline-block;
  color: #d1001f;
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  margin-right: 15px;
  margin-right: 1.5rem;
  width: 1px;
  width: 0.1rem;
}
.list-items-more-gamme .item-more-gamme.item-more-mentions {
  font-size: 16px;
  font-size: 1.6rem;
  text-indent: 15px;
}
.list-items-more-gamme .item-more-gamme.item-more-mentions:before {
  display: none;
}
.container-list-more-brand {
  padding-top: 25px;
  padding-top: 2.5rem;
}
.container-list-more-brand .container-list-more li:last-of-type {
  font-size: 14px;
  font-size: 1.4000000000000001rem;
  font-style: italic;
}
.container-list-more-brand .container-list-more li:last-of-type:before {
  display: none;
}
.container-module-one-gamme {
  row-gap: 15px;
  padding: 15px;
  padding: 1.5rem;
}
.container-module-one-gamme figure {
  height: 100%;
}
.container-module-one-gamme figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.container-all-layouts h2 {
  width: fit-content;
  margin: auto;
  margin: 35px 10px 20px 10px;
  margin: 3.5rem 1rem 2rem 1rem;
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 26px;
  font-size: 2.6rem;
  text-align: center;
}
.container-all-layouts h2:first-child {
  width: 100%;
}
.video-popup-container {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  width: 100vw;
  z-index: -9999;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.video-popup-container .container {
  height: 100%;
}
.video-popup-container .close-video-popup {
  margin-bottom: 20px;
  margin-bottom: 2rem;
  color: #ffffff;
  cursor: pointer;
}
.video-popup-container.on {
  z-index: 9999;
  opacity: 1;
}
.page-template-page-contact .form-container-contact,
.page-template-page-marque .form-container-contact,
.page-template-page-contact .page-marque-text-container,
.page-template-page-marque .page-marque-text-container {
  padding: 0px 15px;
  padding: 0rem 1.5rem;
}
.page-content .bloc-spe {
  padding: 0px 15px;
  padding: 0rem 1.5rem;
}
.page-content .bloc-spe h2 {
  font-family: "akrobatlight", sans-serif;
  font-style: normal;
  font-weight: normal;
  text-transform: uppercase;
}
.page-content .bloc-spe h2 strong {
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  text-transform: inherit;
}
.page-content .bloc-spe p {
  padding: 0;
}
.page-content .bloc-spe.bloc-spe-2 {
  padding: 15px;
  padding: 1.5rem;
  background-color: #dfe2e7;
}
.page-content .bloc-spe.bloc-spe-2 h2 {
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  font-size: 3rem;
  margin: 0;
}
.page-content .bloc-spe.bloc-spe-2 figure {
  margin-top: -209px;
  margin-top: -20.900000000000002rem;
}
.page-template-page-gamme a.direct-link-box {
  color: #ffffff !important;
}
.page-template-page-gamme a.direct-link-box:hover,
.page-template-page-gamme a.direct-link-box:focus,
.page-template-page-gamme a.direct-link-box:active {
  color: #ffffff !important;
}
@media screen and (max-width: 576px) {
  .page-content .bloc-spe.bloc-spe-1 {
    padding: 0;
  }
  .page-content .bloc-spe.bloc-spe-1 h2 {
    font-size: 40px;
    font-size: 4rem;
  }
  .page-content .bloc-spe.bloc-spe-1 p:last-of-type {
    margin: 0;
  }
  .page-content .bloc-spe.bloc-spe-2 {
    margin-top: 15px;
    margin-top: 1.5rem;
  }
  .page-content .bloc-spe.bloc-spe-2 figure {
    margin-top: 0px;
    margin-top: 0rem;
  }
  .page-content .bloc-spe.bloc-spe-2 p {
    margin: 0;
  }
  .container-list-more-brand {
    padding-top: 0;
  }
  .container-thumb-archive {
    position: absolute;
    left: 5%;
    width: 90%;
  }
  .container-options {
    padding: 15px 0px;
    padding: 1.5rem 0rem;
    padding-bottom: 0px;
    padding-bottom: 0rem;
  }
  .container-options .infos-options .header-option {
    padding: 15px 30px;
    padding: 1.5rem 3rem;
  }
  .container-options .infos-options .header-option,
  .container-options .infos-options .cols-text-option {
    align-items: start;
    flex-direction: column;
    width: 100%;
  }
  .container-all-layouts h2:first-child {
    width: unset;
  }
  .page-introduction .title-page-gamme {
    align-items: center;
  }
  .direct-link-box {
    padding: 10px 80px 10px 20px;
    padding: 1rem 8rem 1rem 2rem;
    padding-right: 20px;
    padding-right: 2rem;
  }
  .direct-link-box:after {
    left: -5%;
    width: 145%;
  }
  .direct-link-box p span {
    display: none;
  }
  .direct-link-box.direct-link-grey .direct-link i {
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .direct-link-box {
    height: 65px;
    height: 6.5rem;
    overflow: hidden;
  }
  .container-post-hero h1 {
    max-width: 100%;
    font-size: 40px;
    font-size: 4rem;
    text-align: left;
  }
  .container-post-hero h1 span {
    font-size: 57px;
    font-size: 5.7rem;
  }
  .container-module-one-gamme {
    padding: 0;
  }
  .archive .container-thumb-archive {
    margin: 0 auto;
    width: 50vh;
    position: relative;
  }
  .archive .container-intro {
    padding-top: 40px;
    padding-top: 4rem;
  }
  .archive .intro-gamme-title-box h1 {
    text-align: center;
  }
  .intro-gamme-title {
    font-size: 80px;
    font-size: 8rem;
  }
  .intro-gamme-title span {
    font-size: 25px;
    font-size: 2.5rem;
  }
  .page-introduction .links-cto {
    padding: 0px;
    padding: 0rem;
  }
  .page-introduction .links-cto .link-module-two {
    background: unset;
  }
  .page-introduction .links-cto .link-module-two .link-open-module {
    display: unset;
  }
  .page-introduction .links-cto .link-module-two i {
    margin-left: 10px;
  }
  .page-introduction .links-cto .link-module-two:after {
    position: absolute;
    content: "";
    background: #454e5e;
    width: 110%;
    height: 100%;
    top: 0;
    left: -10%;
    transform: skew(45deg, 0);
    z-index: -1;
  }
  .page-introduction .links-cto .link-module-one .link-open-module {
    display: unset;
  }
  .page-introduction .links-cto .link-module-one .svg-inline--fa {
    margin-left: 10px;
  }
  .container-gammes .item-gamme .item-gamme-box {
    gap: 4rem;
    justify-content: center;
  }
  .container-gammes .item-gamme .gamme-informations-container {
    padding-left: 0px;
    padding-left: 0rem;
  }
  .container-gammes .item-gamme figure {
    padding-right: 0px;
    padding-right: 0rem;
  }
  .container-gammes .item-gamme:nth-child(2n) .gamme-informations-container {
    padding-right: 0px;
    padding-right: 0rem;
    padding-left: 15px;
    padding-left: 1.5rem;
  }
  .container-gammes .item-gamme:nth-child(2n) figure {
    padding-left: 0px;
    padding-left: 0rem;
    padding-right: 15px;
    padding-right: 1.5rem;
  }
  .container-gammes .item-gamme .title-gamme span:before {
    left: -1%;
    width: 115%;
  }
  .page-content h1,
  .page-introduction h1,
  .page-content p,
  .page-introduction p {
    padding-left: 0px;
    padding-left: 0rem;
    padding-right: 0px;
    padding-right: 0rem;
  }
  .page-content .bloc-spe h2 {
    font-size: 40px;
    font-size: 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .container-gammes .item-gamme .item-gamme-box {
    gap: 6rem;
  }
  .direct-link-box.direct-link-grey:after {
    background-color: #242f42;
  }
  .direct-link-box.direct-link-grey .direct-link {
    color: #ffffff;
  }
  .direct-link-box.direct-link-grey .direct-link .svg-inline--fa,
  .direct-link-box.direct-link-grey .direct-link i {
    padding: 0;
    margin-top: 0;
    margin-left: 10px;
    margin-left: 1rem;
  }
  .page-template-page-implantations .container-post-hero .page-intro-grey,
  .page-template-page-contact .container-post-hero .page-intro-grey,
  .page-template-page-reseau .container-post-hero .page-intro-grey {
    min-height: 32vh;
  }
  .page-template-page-implantations .container-post-hero .page-intro-grey h1,
  .page-template-page-contact .container-post-hero .page-intro-grey h1,
  .page-template-page-reseau .container-post-hero .page-intro-grey h1 {
    text-align: unset;
    width: unset;
  }
  body {
    margin-bottom: unset;
  }
  .archive .container-thumb-archive {
    width: unset;
  }
  .archive .intro-gamme-title-box h1 {
    text-align: unset;
  }
  .container-module-one,
  .container-module-two {
    position: absolute;
    margin: unset;
    height: unset;
    top: unset;
  }
  .container-module-one .grid-full-galerie,
  .container-module-two .grid-full-galerie,
  .container-module-one .container-layout,
  .container-module-two .container-layout,
  .container-module-one .wpcf7-form,
  .container-module-two .wpcf7-form {
    height: unset;
    overflow: unset;
  }
  .container-post-hero {
    position: relative;
  }
  .container-post-hero h1 {
    color: #ffffff;
    font-size: 50px;
    font-size: 5rem;
    position: relative;
    margin-top: -170px;
    margin-top: -17rem;
    height: 170px;
    height: 17rem;
    padding: 0;
    line-height: 1;
    background: unset;
    max-width: 1140px;
    overflow: unset;
  }
  .container-post-hero h1:after {
    display: none;
  }
  .container-post-hero h1 span {
    color: inherit;
    font-size: 70px;
    font-size: 7rem;
  }
  .container-post-hero h1.title-page-gamme {
    margin-top: -145px;
    margin-top: -14.5rem;
  }
  .container-post-hero h1.title-page-common {
    font-size: 55px;
    font-size: 5.5rem;
  }
  .intro-gamme-descript-box .container-thumb-archive {
    position: relative;
    top: 0;
    left: -8vw;
  }
  .intro-gamme-title {
    font-size: 80px;
    font-size: 8rem;
  }
  .page-content,
  .page-introduction {
    padding-top: 15px;
    padding-top: 1.5rem;
  }
  .page-content .title-page-gamme strong,
  .page-introduction .title-page-gamme strong {
    font-size: 60px;
    font-size: 6rem;
  }
  .page-content .title-page-gamme strong span,
  .page-introduction .title-page-gamme strong span {
    display: block;
    font-size: 35px;
    font-size: 3.5rem;
    margin-left: 0px;
    margin-left: 0rem;
  }
  .page-content .title-page-gamme .title-gamme,
  .page-introduction .title-page-gamme .title-gamme {
    font-size: 120px;
    font-size: 12rem;
  }
  .page-content .title-page-gamme .title-gamme .gamme-bos-title,
  .page-introduction .title-page-gamme .title-gamme .gamme-bos-title {
    font-size: 35px;
    font-size: 3.5rem;
  }
  .page-content .title-page-gamme .title-page,
  .page-introduction .title-page-gamme .title-page {
    padding-top: 25px;
    padding-top: 2.5rem;
  }
  .page-content h1,
  .page-introduction h1,
  .page-content p,
  .page-introduction p {
    padding-left: 15px;
    padding-left: 1.5rem;
    padding-right: 15px;
    padding-right: 1.5rem;
  }
  .page-content .bloc-spe h2,
  .page-introduction .bloc-spe h2 {
    font-size: 50px;
    font-size: 5rem;
  }
  .page-content .links-cto,
  .page-introduction .links-cto {
    padding: 0px 15px;
    padding: 0rem 1.5rem;
  }
  .page-content .links-cto .link-module-two,
  .page-introduction .links-cto .link-module-two {
    background: unset;
  }
  .page-content .links-cto .link-module-two .link-open-module,
  .page-introduction .links-cto .link-module-two .link-open-module {
    display: unset;
  }
  .page-content .links-cto .link-module-two i,
  .page-introduction .links-cto .link-module-two i {
    margin-left: 10px;
  }
  .page-content .links-cto .link-module-two:after,
  .page-introduction .links-cto .link-module-two:after {
    position: absolute;
    content: "";
    background: #454e5e;
    width: 110%;
    height: 100%;
    top: 0;
    left: -10%;
    transform: skew(45deg, 0);
    z-index: -1;
  }
  .page-content .links-cto .link-module-one .link-open-module,
  .page-introduction .links-cto .link-module-one .link-open-module {
    display: unset;
  }
  .page-content .links-cto .link-module-one .svg-inline--fa,
  .page-introduction .links-cto .link-module-one .svg-inline--fa {
    margin-left: 10px;
  }
}
@media screen and (min-width: 1800px) {
  .intro-gamme-descript-box .container-thumb-archive {
    position: relative;
    top: 0;
    left: -8%;
  }
  .container-options .infos-options .cols-text-option ul:before {
    left: -4.5px;
    left: -0.45rem;
    top: -4.5px;
    top: -0.45rem;
    width: calc(100% - -0.9rem);
  }
}
@media screen and (min-width: 2200px) {
  .container-post-hero h1 {
    margin-top: -155px;
    margin-top: -15.5rem;
  }
}
.main-site {
  padding-top: 64px;
  padding-top: 6.4rem;
  position: relative;
  overflow-x: hidden;
}
.archive .main-site:before {
  content: "\e90c";
  color: #ffffff;
  display: block;
  font-family: "elios";
  font-size: 80px;
  font-size: 8rem;
  left: 3%;
  top: 106px;
  top: 10.600000000000001rem;
  position: absolute;
  z-index: 1;
}
.archive .container-intro {
  position: relative;
}
.archive .intro-gamme-title-box {
  position: relative;
}
.archive .intro-gamme-title-box h1 {
  padding-top: 0;
  text-align: left;
  font-size: 30px;
  font-size: 3rem;
}
.archive .container-links {
  background-color: #242f42;
}
.archive .container-links h2 {
  color: #ffffff !important;
  padding: 15px;
  padding: 1.5rem;
}
.archive .container-links h2 .svg-inline--fa {
  color: #172640;
}
.archive .container-links .container-thumb-page {
  height: 100%;
}
.archive .container-links .container-thumb-page img {
  height: 100%;
  object-fit: cover;
}
.container-a-propos {
  overflow: hidden;
}
.container-a-propos .container-text {
  color: #ffffff;
  position: relative;
  padding: 15px;
}
.container-a-propos .container-text .logo-simple-elios {
  width: 75%;
}
.container-a-propos .container-text h2 {
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 40px;
  font-size: 4rem;
}
.container-a-propos .container-text h2 span {
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.container-a-propos .container-text p {
  margin-top: 25px;
  margin-top: 2.5rem;
}
.container-a-propos .container-text p:first-of-type {
  margin: 0;
}
.container-a-propos .container-text p,
.container-a-propos .container-text li {
  font-size: 14px;
  font-size: 1.4000000000000001rem;
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.container-a-propos .container-text p a,
.container-a-propos .container-text li a {
  font-size: 14px;
  font-size: 1.4000000000000001rem;
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff !important;
  text-decoration: underline !important;
}
.container-a-propos .container-text ul li {
  list-style: initial;
}
.container-a-propos .container-text i {
  position: relative;
  bottom: -20px;
  bottom: -2rem;
  right: 0;
  font-size: 50px;
  font-size: 5rem;
  display: flex;
  justify-content: end;
}
.container-a-propos .container-image {
  padding: 0;
}
.container-a-propos .container-image img {
  height: 100%;
  object-fit: cover;
}
.container-a-propos,
.page-introduction {
  background-image: url('../images/svg/elios-courbes-carte.svg');
  background-repeat: no-repeat;
  background-position: -60rem -86rem;
  background-size: cover;
  background-color: #242f42;
}
.container-event-links-video {
  margin-bottom: 25px;
  margin-bottom: 2.5rem;
}
.container-links .page-hero {
  padding: 0;
  position: relative;
  margin-top: 30px;
  margin-top: 3rem;
}
.container-links .page-hero .content-img-page-hero {
  align-items: center;
  display: flex;
  padding: 0;
  position: relative;
  overflow: hidden;
  justify-content: center;
}
.container-links .page-hero .content-img-page-hero i,
.container-links .page-hero .content-img-page-hero .svg-inline--fa {
  font-size: 14px;
  font-size: 1.4000000000000001rem;
  position: absolute;
  bottom: 8px;
  bottom: 0.8rem;
  right: 10px;
  width: 15px;
  z-index: 4;
}
.container-links .page-hero .content-img-page-hero i {
  bottom: 18px;
  bottom: 1.8rem;
  right: -15px;
  right: -1.5rem;
}
.container-links .page-hero .content-img-page-hero:after {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  transform: rotate(45deg);
  bottom: -40px;
  right: -40px;
}
.container-links .page-hero h2 {
  color: #172640;
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 50px;
  font-size: 5rem;
  margin: 0;
  position: unset;
  text-transform: uppercase;
  z-index: 1;
}
.container-links .page-hero h2 span {
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
  height: 30px;
  height: 3rem;
  left: 4%;
  margin-bottom: 10px;
  margin-bottom: 1rem;
  text-transform: none;
  color: #ffffff;
}
.container-links .page-hero h2 span:before {
  position: absolute;
  content: "";
  background: #d1001f;
  width: 120%;
  height: 100%;
  transform: skew(-15deg, 0);
  z-index: -1;
  border-radius: 5px;
  left: -8%;
  top: 50%;
}
.container-links .page-hero h2 i,
.container-links .page-hero h2 .svg-inline--fa {
  font-size: 14px;
  font-size: 1.4000000000000001rem;
  position: absolute;
  bottom: 8px;
  bottom: 0.8rem;
  right: 10px;
  width: 15px;
  z-index: 4;
}
.container-links .page-hero h2 i {
  bottom: 18px;
  bottom: 1.8rem;
  right: -15px;
  right: -1.5rem;
}
.page-template-page-implantations .container-post-hero .page-introduction .container {
  background-color: transparent;
}
.page-template-page-implantations .container-post-hero .container {
  background-color: #ffffff;
}
@media screen and (max-width: 576px) {
  .container-post-hero h1:after {
    background-color: #f7f8f9;
  }
  .container-links .page-hero {
    margin-top: 5px;
    margin-top: 0.5rem;
  }
  .container-links .page-hero div {
    height: 150px;
    height: 15rem;
  }
  .container-links .page-hero div figure {
    height: 100%;
  }
  .container-links .page-hero div figure img {
    height: 100%;
    max-width: unset;
    width: 100%;
    object-fit: cover;
  }
  .container-links .page-hero.page-hero-sky-lift div {
    height: 210px;
    height: 21rem;
  }
  .container-links .page-hero .content-img-page-hero i {
    right: 10px;
    right: 1rem;
  }
  .container-links .page-hero:nth-last-of-type(1) {
    margin-top: 10px;
    margin-top: 1rem;
  }
  .cff-posts-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .archive .main-site:before {
    top: 56px;
    top: 5.6000000000000005rem;
  }
}
@media screen and (min-width: 768px) {
  .container-event-links-video {
    margin-top: 25px;
    margin-top: 2.5rem;
    margin-bottom: 25px;
    margin-bottom: 2.5rem;
  }
  .container-links .page-hero {
    max-width: 49%;
    margin-top: unset;
    max-height: 250px;
  }
  .container-links .page-hero a {
    background-color: #ffffff;
    height: 100%;
  }
  .container-links .page-hero .content-img-page-hero:after {
    position: absolute;
    content: "";
    background-color: #242f42;
    transform: rotate(45deg);
    height: 80px;
    height: 8rem;
    width: 80px;
    width: 8rem;
    right: -40px;
  }
  .container-links .page-hero .content-img-page-hero i {
    color: #ffffff;
    left: 5px;
    left: 0.5rem;
    right: unset;
  }
  .container-links .page-hero figure {
    height: 95%;
  }
  .container-links .page-hero figure img {
    max-width: unset;
    height: 100%;
    object-fit: contain;
    width: 100%;
  }
  .container-links .page-hero h2 {
    color: #ffffff;
    background-color: #242f42;
    position: relative;
    font-size: 50px;
    font-size: 5rem;
    padding: 20px;
    padding: 2rem;
  }
  .container-links .page-hero i,
  .container-links .page-hero .svg-inline--fa {
    bottom: 15px;
    bottom: 1.5rem;
    right: 0;
  }
  .container-links .page-hero.page-hero-van figure {
    height: 70%;
  }
  .archive .container-links h2 .svg-inline--fa {
    color: #ffffff;
  }
}
@media screen and (min-width: 1200px) {
  .main-site {
    overflow-x: unset;
  }
  .main-site:before {
    content: "\e90c";
    color: #ffffff;
    display: block;
    font-family: "elios";
    font-size: 80px;
    font-size: 8rem;
    left: 3%;
    top: 43px;
    top: 4.3rem;
    position: absolute;
    z-index: 1;
  }
  .container-links .page-hero div:after {
    bottom: -40px;
    right: unset;
    left: -40px;
  }
  .container-links .page-hero h2 {
    padding: 0px 10px;
    padding: 0rem 1rem;
  }
  .archive .main-site:before {
    display: none;
  }
  .archive .intro-gamme-title-box h1 {
    padding-top: 30px;
    padding-top: 3rem;
    font-size: 40px;
    font-size: 4rem;
  }
  .archive .intro-gamme-title-box:before {
    top: -25px;
    top: -2.5rem;
  }
  .archive .container-links {
    background-color: #242f42;
  }
  .archive .container-intro {
    position: relative;
  }
  .archive .container-intro:before {
    content: "\e90c";
    color: #ffffff;
    display: block;
    font-family: "elios";
    font-size: 80px;
    font-size: 8rem;
    left: 3%;
    top: -100px;
    top: -10rem;
    position: absolute;
    z-index: 1;
  }
  .container-social-medias .social-menu-container {
    margin: 0;
  }
  .container-a-propos .container-text .logo-simple-elios {
    width: 50%;
    margin-left: -15px;
    margin-left: -1.5rem;
  }
  .container-a-propos .container-text h2 {
    font-size: 30px;
    font-size: 3rem;
  }
  .container-a-propos .container-text i {
    position: absolute;
    bottom: 0;
    right: -10%;
    font-size: 50px;
    font-size: 5rem;
    display: unset;
  }
  .container-a-propos .container-text p:last-of-type {
    padding-bottom: 45px;
    padding-bottom: 4.5rem;
  }
  .container-a-propos .container-image {
    padding: unset;
    padding-left: 75px;
    padding-left: 7.5rem;
  }
}
.container-intro-single {
  margin-top: -45px;
  margin-top: -4.5rem;
}
.single-dwnld {
  border: solid 1px #d1001f;
  color: #d1001f;
  padding: 10px;
  text-transform: uppercase;
  font-weight: 700;
}
.single-carvan .container-intro-single .row div {
  margin-left: 20px;
  margin-left: 2rem;
}
.title-single-tax {
  font-size: 45px;
  font-size: 4.5rem;
  margin: 0 auto 30px;
}
.container-intro.container-intro-single h1 .title-type {
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  font-size: 2rem;
  color: #242f42;
  margin: 0;
  display: flex;
  align-items: center;
}
.container-intro.container-intro-single h1 .title-type strong {
  padding: 0px 5px;
  padding: 0rem 0.5rem;
  color: #d1001f;
  font-size: 32px;
  font-size: 3.2rem;
  text-transform: uppercase;
  position: relative;
  margin-left: 5px;
  margin-left: 0.5rem;
}
.container-intro.container-intro-single h1 .title-type strong:before {
  content: "";
  display: block;
  border: 2px solid #d1001f;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  height: 46px;
  height: 4.6000000000000005rem;
  -moz-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  -webkit-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  transform-origin: 50% 50%;
  position: absolute;
  left: 0px;
  left: 0rem;
  top: -6px;
  top: -0.6000000000000001rem;
  width: 109%;
}
.container-intro.container-intro-single h1 .title-type strong {
  margin-left: 10px;
  margin-left: 1rem;
}
.container-intro.container-intro-single h1 .title-type strong:before {
  left: -2px;
  left: -0.2rem;
  top: -1px;
  top: -0.1rem;
}
.container-intro.container-intro-single h1 .title-model {
  margin-top: 50px;
  margin-top: 5rem;
  margin-top: 20px;
  margin-top: 2rem;
  text-align: left;
}
.container-intro.container-intro-single h1 .title-model span,
.container-intro.container-intro-single h1 .title-model strong {
  padding: 0px 5px;
  padding: 0rem 0.5rem;
  color: #ffffff;
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 55px;
  font-size: 5.5rem;
  text-transform: uppercase;
  position: relative;
  margin-left: 16px;
  margin-left: 1.6rem;
}
.container-intro.container-intro-single h1 .title-model span:before,
.container-intro.container-intro-single h1 .title-model strong:before {
  content: "";
  display: block;
  background-color: #242f42;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  height: 75px;
  height: 7.5rem;
  -moz-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  -webkit-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  transform-origin: 50% 50%;
  position: absolute;
  left: -10px;
  left: -1rem;
  top: 6px;
  top: 0.6000000000000001rem;
  width: 105%;
  z-index: -1;
}
.container-intro.container-intro-single h1 .title-model i {
  font-size: 32px;
  font-size: 3.2rem;
  color: #d1001f;
}
.container-intro.container-intro-single h1 .title-model strong {
  font-size: 48px;
  font-size: 4.800000000000001rem;
  padding: 0px 20px;
  padding: 0rem 2rem;
  padding-left: 0px;
  padding-left: 0rem;
}
.container-intro.container-intro-single h1 .title-model strong:before {
  height: 55px;
  height: 5.5rem;
  width: 105%;
  top: 2px;
  top: 0.2rem;
}
.container-intro.container-intro-single h2 {
  transform: unset;
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  font-size: 2.4000000000000004rem;
  text-transform: uppercase;
}
.container-more {
  margin-top: 45px;
  margin-top: 4.5rem;
  background-color: #eaecf0;
  padding-bottom: 15px;
  padding-bottom: 1.5rem;
  padding-top: 15px;
  padding-top: 1.5rem;
}
.container-more h2.title-more-gamme,
.container-more h2.title-more-brand {
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.container-more h2.title-more-gamme span,
.container-more h2.title-more-brand span {
  color: #242f42;
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  text-align: center;
}
.container-more h2.title-more-gamme b,
.container-more h2.title-more-brand b {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #242f42;
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #ffffff;
  font-size: 80px;
  font-size: 8rem;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  border: 10px solid #ffffff;
  text-align: center;
  margin-top: -3vh;
  height: 90px;
  height: 9rem;
  width: 90px;
  width: 9rem;
}
.container-more .container-list-more ul {
  padding-top: 20px;
  padding-top: 2rem;
}
.container-more .container-list-more li:before {
  content: "\2022";
  display: inline-block;
  color: #d1001f;
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  margin-right: 15px;
  margin-right: 1.5rem;
  width: 1px;
  width: 0.1rem;
}
.container-more .item-more:before {
  content: "\2022";
  display: inline-block;
  color: #d1001f;
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  margin-right: 15px;
  margin-right: 1.5rem;
  width: 1px;
  width: 0.1rem;
}
.container-more figure {
  margin-top: -30px;
  margin-top: -3rem;
}
.container-more .chassis-gamme {
  font-size: 60px;
  font-size: 6rem;
}
.container-more .container-resume .icon-arrow {
  font-size: 60px;
  font-size: 6rem;
  color: #ffffff;
  top: 25px;
  top: 2.5rem;
}
.container-more .text-implantation.infos-vehicule-single .item-implant {
  height: 40px;
  height: 4rem;
  width: 100%;
}
.container-more .text-implantation.infos-vehicule-single a {
  background-color: #dfe2e7;
  position: relative;
  width: 50%;
  font-size: 20px;
  font-size: 2rem;
}
.container-more .text-implantation.infos-vehicule-single a:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 10px;
  right: -14px;
  background: #dfe2e7;
  transform: skew(10deg);
}
.container-more .text-implantation.infos-vehicule-single a i {
  margin-left: 15px;
  margin-left: 1.5rem;
}
.container-more .text-implantation.infos-vehicule-single a strong {
  margin-left: 8px;
  margin-left: 0.8rem;
}
.container-more .text-implantation.infos-vehicule-single p {
  background-color: #ffffff;
  padding: 0px 10px;
  padding: 0rem 1rem;
  width: 25%;
}
.container-more .text-implantation.infos-vehicule-single p span {
  display: flex;
  height: 100%;
  margin-left: 0;
  right: 15px;
  right: 1.5rem;
}
.container-more .text-implantation.infos-vehicule-single p b {
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
}
.container-more .text-implantation.infos-vehicule-single a,
.container-more .text-implantation.infos-vehicule-single p {
  border-left: none;
  border-right: none;
}
.container-more .text-implantation.infos-vehicule-single a:after,
.container-more .text-implantation.infos-vehicule-single p span.number:after {
  height: calc(100% + 2px);
  top: -1px;
  top: -0.1rem;
  width: 40px;
  width: 4rem;
}
.tax-gamme .container-more h2.title-more-gamme b,
.page-template-page-marque .container-more h2.title-more-gamme b,
.tax-gamme .container-more h2.title-more-brand b,
.page-template-page-marque .container-more h2.title-more-brand b {
  font-size: 24px;
  font-size: 2.4000000000000004rem;
}
.container-caracteristiques-product {
  padding: 15px;
  padding: 1.5rem;
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.container-caracteristiques-product h4 {
  background-color: #eaecf0;
  font-size: 20px;
  font-size: 2rem;
  line-height: 50px;
  line-height: 5rem;
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding-left: 10px;
  padding-left: 1rem;
}
.container-caracteristiques-product ul {
  border: 1px solid #242f42;
  border-top: none;
  border-left: none;
  border-right: none;
  margin: 0;
  padding: 10px 0px;
  padding: 1rem 0rem;
  width: 100%;
}
.container-caracteristiques-product li {
  border-top: 1px solid #dfe2e7;
  border-left: none;
  border-right: none;
  padding: 5px 0px;
  padding: 0.5rem 0rem;
  font-size: 16px;
  font-size: 1.6rem;
}
.container-caracteristiques-product li .tab-value {
  min-width: 25%;
  text-align: center;
}
.container-caracteristiques-product li.tab-title {
  border: none;
  padding: 0;
}
.container-caracteristiques-product ul.list-equipment,
.container-caracteristiques-product li.item-equipment {
  border: none;
}
.container-caracteristiques-product li.item-equipment i {
  font-size: 24px;
  font-size: 2.4000000000000004rem;
  margin-right: 10px;
  margin-right: 1rem;
}
.container-caracteristiques-product ul.list-equipment {
  padding: 0px;
  padding: 0rem;
  margin-top: 15px;
  margin-top: 1.5rem;
}
.container-caracteristiques-product ul.tab-couchage {
  border-bottom: none;
}
.container-caracteristiques-product .container-cto {
  padding-left: 15px;
  padding-left: 1.5rem;
  width: 100%;
}
.container-caracteristiques-product .container-cto p {
  color: #ffffff;
  margin: 0;
}
.container-caracteristiques-product .container-cto p * {
  color: inherit;
}
.container-caracteristiques-product .tableaux-single {
  padding-bottom: 15px;
  padding-bottom: 1.5rem;
}
.container-caracteristiques-product .direct-link-box {
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
}
.container-caracteristiques-product .direct-link-box:after {
  transform: unset;
  left: 0;
}
.container-caracteristiques-product .direct-link-box .direct-link {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container-caracteristiques-product .direct-link-box .direct-link i {
  margin-top: 15px;
  margin-top: 1.5rem;
}
.container-caracteristiques-product .direct-link-box.direct-link-box-two a {
  color: #242f42;
}
.container-caracteristiques-product .direct-link-box.direct-link-box-two a i {
  color: #242f42;
}
.container-caracteristiques-product .direct-link-box.direct-link-box-two a i:before {
  color: inherit;
}
.container-caracteristiques-product .direct-link-box.direct-link-box-two:after {
  background-color: transparent;
}
.container-more-single .row {
  position: relative;
}
.container-more-single .chassis-gamme {
  position: absolute;
  margin: 10px 0px 25px 0px;
  margin: 1rem 0rem 2.5rem 0rem;
  padding-right: 15px;
  padding-right: 1.5rem;
  right: 0;
  width: auto;
}
.container-more-single .container {
  padding-bottom: 0px;
  padding-bottom: 0rem;
}
@media screen and (min-width: 768px) {
  .container-intro.container-intro-single {
    margin-top: 25px;
    margin-top: 2.5rem;
  }
  .tableaux-single {
    padding-bottom: 0px;
    padding-bottom: 0rem;
  }
  .container-more h2.title-more-gamme b {
    font-size: 25px;
    font-size: 2.5rem;
  }
  .container-more .list-items-more {
    column-count: 2;
    column-gap: 15px;
  }
  .container-more .text-implantation.infos-vehicule-single .item-implant {
    height: 60px;
    height: 6rem;
  }
  .container-more .text-implantation.infos-vehicule-single a {
    font-size: 24px;
    font-size: 2.4000000000000004rem;
    width: 50%;
  }
  .container-more .text-implantation.infos-vehicule-single a:after {
    right: -24px;
    right: -2.4000000000000004rem;
  }
  .container-more .text-implantation.infos-vehicule-single a i {
    margin-left: 15px;
    margin-left: 1.5rem;
  }
  .container-more .text-implantation.infos-vehicule-single a strong {
    margin-left: 8px;
    margin-left: 0.8rem;
  }
  .container-more .text-implantation.infos-vehicule-single p {
    font-size: 20px;
    font-size: 2rem;
    width: 25%;
  }
  .container-more .text-implantation.infos-vehicule-single p span {
    right: 20px;
    right: 2rem;
  }
  .container-more .text-implantation.infos-vehicule-single a:after,
  .container-more .text-implantation.infos-vehicule-single p span:after {
    width: 80px;
    width: 8rem;
  }
  .container-caracteristiques-product h4 {
    font-size: 24px;
    font-size: 2.4000000000000004rem;
    line-height: 50px;
    line-height: 5rem;
  }
  .single .container-more h2.title-more-gamme b {
    font-size: 50px;
    font-size: 5rem;
  }
  .single .container-list-more ul {
    padding-top: 20px;
    padding-top: 2rem;
  }
  .single .container-list-more li:before {
    content: "\2022";
    display: inline-block;
    color: #d1001f;
    font-family: "akrobatbold", sans-serif;
    font-style: normal;
    font-weight: normal;
    margin-right: 15px;
    margin-right: 1.5rem;
    width: 1px;
    width: 0.1rem;
  }
}
@media screen and (min-width: 992px) {
  .single .main-site:before {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .container-intro.container-intro-single {
    margin-top: 0px;
    margin-top: 0rem;
  }
  .container-more {
    padding: 0px;
    padding: 0rem;
  }
  .container-more .container-list-more-gamme {
    padding-left: 0;
  }
  .container-more .container-list-more-gamme h2.title-more-gamme span {
    margin-top: -110px;
    margin-top: -11rem;
  }
  .container-more .container-list-more-gamme h2.title-more-gamme b {
    margin-top: -55px;
    margin-top: -5.5rem;
    height: 110px;
    height: 11rem;
    width: 110px;
    width: 11rem;
  }
  .container-more .container-list-more-gamme ul {
    padding-top: 60px;
    padding-top: 6rem;
  }
  .container-more .text-implantation.infos-vehicule-single a:after {
    display: none;
  }
  .container-more .text-implantation.infos-vehicule-single p span:after {
    -moz-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(45deg);
    -webkit-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(45deg);
    transform: scaleX(1) scaleY(1) scaleZ(1) skewX(45deg);
    transform-origin: 50% 50%;
  }
  .container-more .text-implantation.infos-vehicule-single p span.number:after {
    width: 70px;
    width: 7rem;
  }
  .container-intro.container-intro-single {
    margin-top: -30px;
    margin-top: -3rem;
  }
  .container-intro.container-intro-single h1 .title-model strong:before {
    top: 0;
  }
  .container-caracteristiques-product {
    padding: 45px 15px;
    padding: 4.5rem 1.5rem;
  }
  .container-caracteristiques-product .direct-link-box {
    text-align: right;
  }
  .container-caracteristiques-product .direct-link-box:hover {
    cursor: pointer;
  }
  .container-caracteristiques-product .direct-link-box:after {
    transform: skew(30deg, 0);
  }
  .container-caracteristiques-product .direct-link-box .direct-link {
    width: unset;
    display: unset;
    flex-direction: unset;
    align-items: unset;
  }
  .container-caracteristiques-product .direct-link-box .direct-link i {
    margin-top: 0px;
    margin-top: 0rem;
  }
  .container-caracteristiques-product .direct-link-box-one {
    padding-left: 20px;
    padding-left: 2rem;
    padding-right: 60px;
    padding-right: 6rem;
  }
  .container-caracteristiques-product .direct-link-box-one:after {
    left: -6%;
  }
  .container-caracteristiques-product .direct-link-box-two:after {
    left: 4%;
  }
  .container-caracteristiques-product .direct-link-box.direct-link-box-two a {
    color: #ffffff;
  }
  .container-caracteristiques-product .direct-link-box.direct-link-box-two a i {
    color: #ffffff;
  }
  .container-caracteristiques-product .direct-link-box.direct-link-box-two a i:before {
    color: inherit;
  }
  .container-caracteristiques-product .direct-link-box.direct-link-box-two:after {
    background-color: #242f42;
  }
  .container-single .container-module-one {
    top: 64px;
    top: 6.4rem;
  }
  .container-more-single .chassis-gamme {
    position: initial;
    padding-right: unset;
    right: unset;
    width: 100%;
  }
}
.container-thumb {
  height: 20vh;
  overflow: hidden;
  position: relative;
}
.container-thumb img {
  height: auto;
  position: absolute;
  max-width: none;
  left: -66%;
  top: -11%;
  width: 170%;
  object-fit: cover;
}
.container-thumb-grey {
  background-color: #bbbbba;
}
.container-img-link {
  width: 100%;
}
.container-link-event {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  margin-top: 15px;
  margin-top: 1.5rem;
}
.container-link-event img {
  max-width: none;
  width: 100%;
  object-fit: cover;
}
.home .container-thumb {
  height: 25vh;
}
.slider-thumb {
  margin-top: 15px;
  margin-top: 1.5rem;
}
.slider-thumb .type-image {
  height: 60px;
  height: 6rem;
  width: 75px !important;
  width: 7.5rem !important;
  padding-right: 15px;
  padding-right: 1.5rem;
  overflow: hidden;
}
.slider-thumb .type-image:last-of-type {
  padding: 0;
}
.slider-thumb .type-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 576px) {
  .main-page-2164 .container-thumb img {
    left: -8%;
    top: 0;
    width: 108%;
  }
}
@media screen and (min-width: 768px) {
  .content-page .header-thumb-top {
    margin-top: -30px;
    height: 30vh;
  }
  .container-thumb {
    height: 20vh;
    overflow: hidden;
  }
  .container-thumb img {
    height: 100%;
    object-fit: cover;
    max-height: 500px;
    max-height: 50rem;
    position: initial;
    width: 100%;
  }
  .container-link-event {
    margin-top: 15px;
    margin-left: -15px;
    margin-right: -15px;
    width: 768px;
    width: 76.80000000000001rem;
  }
}
@media screen and (min-width: 992px) {
  .container-thumb {
    height: unset;
  }
  .container-link-event {
    width: 992px;
    width: 99.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .home .container-thumb {
    height: 55vh;
  }
  .container-link-event {
    width: 1140px;
    width: 114rem;
  }
  .content-page .header-thumb-top {
    margin-top: 0;
    height: 40vh;
  }
  .page-template-page-gamme .container-thumb,
  .page-template-page-gamme .page-intro-grey {
    position: relative;
  }
  .page-template-page-gamme .container-thumb:after,
  .page-template-page-gamme .page-intro-grey:after {
    position: absolute;
    content: "";
    background-color: #242f42;
    width: 120px;
    height: 120px;
    transform: rotate(45deg);
    bottom: -60px;
    right: -60px;
  }
  .container-thumb,
  .page-intro-grey {
    position: relative;
  }
  .container-thumb:after,
  .page-intro-grey:after {
    position: absolute;
    content: "";
    background-color: #f7f8f9;
    width: 120px;
    height: 120px;
    transform: rotate(45deg);
    bottom: -60px;
    right: -60px;
  }
}
@media screen and (min-width: 2200px) {
  .home .container-thumb {
    height: 56vh;
  }
  .home .container-thumb img {
    max-height: 700px;
    max-height: 70rem;
  }
}
.site-widgets-header {
  background-color: #eaecf0;
  height: 80px;
  height: 8rem;
  position: relative;
  overflow: hidden;
  width: 45%;
  z-index: 5;
}
.site-widgets-header .menu-nav-secondaire {
  position: relative;
  width: 100%;
  z-index: 6;
}
.site-widgets-header .menu-nav-secondaire li {
  margin-right: 10px;
  margin-right: 1rem;
}
.site-widgets-header .menu-nav-secondaire li a {
  display: flex;
  align-items: center;
}
.site-widgets-header .menu-nav-secondaire li a:before {
  font-family: "elios";
}
.site-widgets-header .menu-nav-secondaire li a span {
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #242f42;
  font-size: 13px;
  font-size: 1.3rem;
  padding: 0px 15px;
  padding: 0rem 1.5rem;
  padding-left: 10px;
  padding-left: 1rem;
  text-transform: uppercase;
}
.site-widgets-header .menu-nav-secondaire li.la-marque a:before {
  content: "\e90c";
}
.site-widgets-header .menu-nav-secondaire li.le-reseau a:before {
  content: "\e91d";
}
.site-widgets-header .menu-nav-secondaire li.actualites a:before {
  content: "\e908";
}
.site-widgets-header .menu-nav-secondaire li.nous-contacter a {
  color: #d1001f;
}
.site-widgets-header .menu-nav-secondaire li.nous-contacter a span {
  color: inherit;
}
.site-widgets-header .menu-nav-secondaire li.nous-contacter a:before {
  color: inherit;
  content: "\e913";
}
.site-widgets-header .container-nav-media-sociaux {
  width: 25%;
}
.widget-medias-sociaux span {
  direction: ltr;
  text-indent: -999em;
  height: 0px;
  width: 0px;
}
.container-widgets {
  background: #dfe2e7;
}
.container-widgets .widget-catalogue {
  background: #a0abb9;
  position: relative;
  overflow: hidden;
}
.container-widgets .widget-catalogue:after {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  transform: rotate(45deg);
  bottom: -40px;
  right: -40px;
}
.container-widgets .widget-rendez-vous {
  background: #dfe2e7;
  position: relative;
  overflow: hidden;
}
.container-widgets .widget-rendez-vous:after {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  transform: rotate(45deg);
  bottom: -40px;
  right: -40px;
}
.container-widgets .widget-concessionnaires {
  background: #8994a3;
  position: relative;
  overflow: hidden;
}
.container-widgets .widget-concessionnaires:after {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  transform: rotate(45deg);
  bottom: -40px;
  right: -40px;
}
.container-widgets .widget-catalogue,
.container-widgets .widget-rendez-vous,
.container-widgets .widget-concessionnaires {
  padding: 0;
}
.container-widgets .widget-catalogue h3,
.container-widgets .widget-rendez-vous h3,
.container-widgets .widget-concessionnaires h3 {
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #454e5e;
  font-size: 20px;
  font-size: 2rem;
  margin-top: 30px;
  margin-top: 3rem;
  margin-bottom: 30px;
  margin-bottom: 3rem;
}
.container-widgets .widget-catalogue h3 span,
.container-widgets .widget-rendez-vous h3 span,
.container-widgets .widget-concessionnaires h3 span {
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.container-widgets .widget-catalogue h3 .svg-inline--fa,
.container-widgets .widget-rendez-vous h3 .svg-inline--fa,
.container-widgets .widget-concessionnaires h3 .svg-inline--fa {
  margin-left: 10px;
}
.container-social-medias {
  background: #a0abb9;
  padding: 45px 0px;
  padding: 4.5rem 0rem;
}
.container-social-medias .social-menu-container {
  margin-bottom: 20px;
  margin-bottom: 2rem;
}
.container-social-medias .social-menu-container h3 {
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 35px;
  font-size: 3.5rem;
  text-transform: uppercase;
}
.container-social-medias .social-menu-container h3 span {
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.widget-medias-sociaux {
  width: 100%;
}
.widget-medias-sociaux .items-medias-sociaux {
  column-gap: 15px;
}
.widget-medias-sociaux .items-medias-sociaux svg {
  height: 35px;
  height: 3.5rem;
}
header .widget-medias-sociaux .items-medias-sociaux svg,
footer .widget-medias-sociaux .items-medias-sociaux svg {
  height: 16px;
  height: 1.6rem;
}
@media screen and (max-width: 576px) {
  .container-widgets i {
    margin-left: 10px;
    margin-left: 1rem;
  }
  .container-social-medias {
    padding-bottom: 0;
  }
  .container-social-medias #cff.cff-masonry {
    margin-bottom: 15px;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 800px) {
  #cff.cff-masonry.cff-mob-cols-1 .cff-posts-wrap .cff-item,
  #cff.cff-mob-cols-1 .cff-posts-wrap .cff-album-item {
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .container-widgets .widget-catalogue {
    background-color: #ffffff;
    position: unset;
    overflow: unset;
  }
  .container-widgets .widget-catalogue:after {
    display: none;
  }
  .container-widgets .widget-rendez-vous:after {
    background-color: #ffffff;
    bottom: -40px;
    right: unset;
    left: -40px;
  }
  .container-widgets .widget-concessionnaires:after {
    background: #dfe2e7;
    bottom: -40px;
    right: unset;
    left: -40px;
  }
  .container-widgets .widget-catalogue h3,
  .container-widgets .widget-rendez-vous h3,
  .container-widgets .widget-concessionnaires h3 {
    text-align: center;
  }
  .container-widgets .widget-catalogue h3 .svg-inline--fa,
  .container-widgets .widget-rendez-vous h3 .svg-inline--fa,
  .container-widgets .widget-concessionnaires h3 .svg-inline--fa {
    margin-left: 0;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .site-widgets-header {
    width: 65%;
  }
  .site-widgets-header:before {
    background-color: #ffffff;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 80px;
    width: 8rem;
    left: -40px;
    left: -4rem;
    -moz-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(25deg);
    -webkit-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(25deg);
    transform: scaleX(1) scaleY(1) scaleZ(1) skewX(25deg);
    transform-origin: 50% 50%;
    z-index: 1;
  }
  .container-widgets .widget-catalogue h3,
  .container-widgets .widget-rendez-vous h3,
  .container-widgets .widget-concessionnaires h3 {
    color: #454e5e;
    text-align: unset;
    margin-top: unset;
    margin-bottom: 30px;
    margin-bottom: 3rem;
  }
  .container-widgets .widget-catalogue h3 i,
  .container-widgets .widget-rendez-vous h3 i,
  .container-widgets .widget-concessionnaires h3 i {
    display: inline-block;
    margin-left: 1rem;
    width: unset;
  }
  .container-social-medias {
    padding-top: 105px;
    padding-top: 10.5rem;
  }
  .widget-medias-sociaux .items-medias-sociaux {
    justify-content: start;
    margin: 0;
  }
  .widget-medias-sociaux .items-medias-sociaux li a {
    text-decoration: none;
  }
}
@media screen and (min-width: 1800px) {
  .site-widgets-header {
    width: 45%;
  }
}
.type-text,
.type-image {
  float: left;
  overflow: hidden;
}
.type-text figure,
.type-image figure {
  height: 100%;
  overflow: hidden;
}
.type-text figure img,
.type-image figure img {
  height: 100%;
  max-width: none;
  object-fit: cover;
  width: 100%;
  position: relative;
}
.type-image figure img {
  position: relative;
  top: 4vh;
}
.slider {
  position: relative;
}
.type-text,
.type-image,
.slider {
  height: 400px;
  height: 40rem;
  margin: 0;
}
.slick-prev,
.slick-next {
  background-color: #242f42;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  position: absolute;
  top: 50%;
  height: 50px;
  height: 5rem;
  margin-top: -25px;
  margin-top: -2.5rem;
  transform: skewX(-10deg);
  width: 50px;
  width: 5rem;
  z-index: 5;
}
.slick-prev {
  left: 5%;
}
.slick-next {
  right: 5%;
}
@media screen and (min-width: 768px) {
  .type-image figure img {
    top: initial;
  }
}
@media screen and (min-width: 992px) {
  .type-text,
  .type-image,
  .slider {
    height: 550px;
    height: 55rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1800px) {
  .type-text,
  .type-image,
  .slider {
    height: 745px;
    height: 74.5rem;
  }
}
@media screen and (min-width: 2200px) {
  .type-text,
  .type-image,
  .slider {
    height: 945px;
    height: 94.5rem;
  }
}
.container-filter,
.container-layout {
  width: 100%;
}
.container-layout {
  margin-bottom: 45px;
  margin-bottom: 4.5rem;
}
.container-filter {
  margin-top: 45px;
  margin-top: 4.5rem;
  width: 100%;
}
.container-filter p {
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}
.list-items-filters {
  text-align: center;
  max-width: 100%;
  flex-wrap: wrap;
}
.list-items-filters a {
  display: block;
  color: #8994a3;
  padding: 10px;
  padding: 1rem;
  margin: 10px;
  margin: 1rem;
  position: relative;
  text-transform: uppercase;
}
.list-items-filters a:before {
  position: absolute;
  content: "";
  display: block;
  border: 1px solid #dfe2e7;
  height: 48px;
  height: 4.800000000000001rem;
  top: 0;
  left: -5px;
  left: -0.5rem;
  -moz-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  -webkit-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  transform-origin: 50% 50%;
  width: calc(100% + 10px);
}
.list-items-filters a.actif {
  color: #ffffff;
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.list-items-filters a.actif:before {
  background-color: #242f42;
  border-color: #242f42;
  z-index: -1;
}
.container-intro-single h3,
.link-to-product h3 {
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  font-size: 2rem;
  color: #242f42;
  margin: 0;
  display: flex;
  align-items: center;
}
.container-intro-single h3 strong,
.link-to-product h3 strong {
  padding: 0px 5px;
  padding: 0rem 0.5rem;
  color: #d1001f;
  font-size: 32px;
  font-size: 3.2rem;
  text-transform: uppercase;
  position: relative;
  margin-left: 5px;
  margin-left: 0.5rem;
}
.container-intro-single h3 strong:before,
.link-to-product h3 strong:before {
  content: "";
  display: block;
  border: 2px solid #d1001f;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  height: 46px;
  height: 4.6000000000000005rem;
  -moz-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  -webkit-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  transform-origin: 50% 50%;
  position: absolute;
  left: 0px;
  left: 0rem;
  top: -6px;
  top: -0.6000000000000001rem;
  width: 109%;
}
.container-intro-single h3 strong:before,
.link-to-product h3 strong:before {
  top: -1.5px;
  top: -0.15000000000000002rem;
}
.container-intro-single h2,
.link-to-product h2 {
  margin-top: 50px;
  margin-top: 5rem;
  margin-top: 10px;
  margin-top: 1rem;
}
.container-intro-single h2 span,
.link-to-product h2 span,
.container-intro-single h2 strong,
.link-to-product h2 strong {
  padding: 0px 5px;
  padding: 0rem 0.5rem;
  color: #ffffff;
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 55px;
  font-size: 5.5rem;
  text-transform: uppercase;
  position: relative;
  margin-left: 16px;
  margin-left: 1.6rem;
}
.container-intro-single h2 span:before,
.link-to-product h2 span:before,
.container-intro-single h2 strong:before,
.link-to-product h2 strong:before {
  content: "";
  display: block;
  background-color: #242f42;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  height: 75px;
  height: 7.5rem;
  -moz-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  -webkit-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  transform-origin: 50% 50%;
  position: absolute;
  left: -10px;
  left: -1rem;
  top: 6px;
  top: 0.6000000000000001rem;
  width: 105%;
  z-index: -1;
}
.container-intro-single h2 i,
.link-to-product h2 i {
  font-size: 32px;
  font-size: 3.2rem;
  color: #d1001f;
}
.container-intro-single h2 strong:before,
.link-to-product h2 strong:before {
  top: 0px;
  top: 0rem;
  left: 0px;
  left: 0rem;
  width: 110%;
}
.container-intro-single h3,
.link-to-product h3,
.container-intro-single h2,
.link-to-product h2 {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}
.container-intro-single figure,
.link-to-product figure {
  height: 120px;
  height: 12rem;
  width: 85%;
}
.container-intro-single figure img,
.link-to-product figure img {
  max-width: none;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.layout-vehicule {
  position: relative;
  margin: 15px 0px;
  margin: 1.5rem 0rem;
  overflow: hidden;
}
.layout-vehicule .link-to-product {
  width: 100%;
}
.layout-vehicule .link-to-product h2 strong:before {
  width: 115%;
}
.layout-vehicule .infos-vehicule {
  border-left: 1px solid #dfe2e7;
  margin-top: 15px;
  margin-top: 1.5rem;
  position: relative;
  justify-content: space-between;
  width: 99%;
}
.layout-vehicule .infos-vehicule:before {
  content: "";
  position: absolute;
  border-top: 1px solid #dfe2e7;
  top: 0;
  left: 0;
  width: 95%;
}
.layout-vehicule .infos-vehicule .info-vehicule {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-left: 10px;
  padding-left: 1rem;
  height: 32px;
  height: 3.2rem;
  width: 33%;
}
.layout-vehicule .infos-vehicule .item-implant {
  border: none;
  font-size: 12px;
  font-size: 1.2000000000000002rem;
  margin-bottom: 0;
  background-color: #ffffff;
}
.layout-vehicule .infos-vehicule span {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  font-size: 1.6rem;
  min-width: 4rem;
  padding: 0 5px;
  position: relative;
  z-index: 1;
}
.layout-vehicule .infos-vehicule span:nth-child(3n) {
  width: 52px;
  width: 5.2rem;
}
.layout-vehicule .infos-vehicule span:nth-child(3n):after {
  width: 60px;
  width: 6rem;
}
.layout-vehicule .infos-vehicule span:after {
  content: "";
  position: absolute;
  background-color: #dfe2e7;
  top: -5px;
  top: -0.5rem;
  -moz-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(10deg);
  -webkit-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(10deg);
  transform: scaleX(1) scaleY(1) scaleZ(1) skewX(10deg);
  transform-origin: 50% 50%;
  height: 36px;
  height: 3.6rem;
  min-width: 3.6rem;
  width: 100%;
  z-index: -1;
}
.layout-vehicule .item-implant.item-implant-link {
  align-items: center;
  color: #ffffff;
  background-color: #242f42;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  height: 100%;
  padding: 10px;
  padding: 1rem;
  padding-left: 50px;
  padding-left: 5rem;
  text-decoration: none;
  display: flex;
  justify-content: center;
  padding: 0;
  position: relative;
  height: 36px;
  height: 3.6rem;
  width: calc(100% + 30px);
  z-index: 2;
}
.layout-vehicule .item-implant.item-implant-link i {
  margin-left: 10px;
  margin-left: 1rem;
}
.container-layout-vehicule {
  padding: 0px 15px;
  padding: 0rem 1.5rem;
}
.container-layout-vehicule .layout-vehicule {
  background-color: #ffffff;
  padding: 15px 15px 0px 15px;
  padding: 1.5rem 1.5rem 0rem 1.5rem;
}
.container-layout-vehicule .layout-vehicule h2 {
  position: relative;
}
.container-layout-vehicule .layout-vehicule h2 i {
  position: absolute;
  left: -55px;
  top: 15px;
}
.page-template-page-implantations .title-page-common {
  text-align: center;
}
@media screen and (max-width: 576px) {
  .container-layout {
    margin-bottom: 20px;
    margin-bottom: 2rem;
  }
  .link-to-product h3 {
    margin-bottom: 15px;
    margin-bottom: 1.5rem;
  }
  .link-to-product h3 strong:before {
    top: -13px;
    top: -1.3rem;
  }
  .container-layout-vehicule .layout-vehicule {
    margin-bottom: 0;
    margin-top: 0;
    padding-top: 30px;
    padding-top: 3rem;
  }
  .container-layout-vehicule .layout-vehicule .link-to-product h3 strong:before {
    width: 103%;
  }
  .container-layout-vehicule .layout-vehicule .infos-vehicule {
    width: 100%;
  }
  .container-layout-vehicule .layout-vehicule .infos-vehicule:after {
    content: "";
    position: absolute;
    border-top: 1px solid #dfe2e7;
    bottom: -4px;
    bottom: -0.4rem;
    left: 0;
    width: 95%;
  }
  .container-layout-vehicule .layout-vehicule .infos-vehicule .item-implant {
    line-height: 1;
    margin: 0;
  }
  .container-layout-vehicule .layout-vehicule .infos-vehicule .info-vehicule {
    padding-left: 5px;
    padding-left: 0.5rem;
  }
  .container-layout-vehicule .layout-vehicule .infos-vehicule .info-vehicule:last-of-type span:after {
    width: 100%;
  }
  .container-layout-vehicule .layout-vehicule .infos-vehicule span {
    font-size: 14px;
    font-size: 1.4000000000000001rem;
    padding: 0;
  }
  .container-layout-vehicule .layout-vehicule .infos-vehicule span:after {
    width: 70%;
  }
  .container-layout-vehicule .layout-vehicule .item-implant.item-implant-link {
    margin: 0;
    margin-top: 15px;
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .layout-vehicule {
    position: relative;
    margin: 15px 0px;
    margin: 1.5rem 0rem;
    padding: 0px 15px;
    padding: 0rem 1.5rem;
  }
  .container-layout-vehicule {
    padding: 0;
  }
  .container-layout-vehicule .layout-vehicule .infos-vehicule,
  .container-layout-vehicule .layout-vehicule .item-implant-link {
    overflow: hidden;
  }
  .link-to-product h3 {
    margin-bottom: 15px;
    margin-bottom: 1.5rem;
    padding-top: 15px;
    padding-top: 1.5rem;
  }
  .link-to-product h3 strong:before {
    top: -13.5px;
    top: -1.35rem;
  }
}
@media screen and (min-width: 1200px) {
  .layout-vehicule .infos-vehicule {
    border-left: 1px solid #dfe2e7;
    background: unset;
  }
  .layout-vehicule .infos-vehicule p {
    background: unset;
  }
  .layout-vehicule .infos-vehicule span {
    background-color: #ffffff;
  }
  .layout-vehicule .item-implant.item-implant-link {
    width: 100%;
  }
  .layout-vehicule .item-implant.item-implant-link:after {
    content: "";
    position: absolute;
    top: 0;
    right: -33px;
    right: -3.3000000000000003rem;
    background-color: #ffffff;
    height: 36px;
    height: 3.6rem;
    width: 36px;
    width: 3.6rem;
    -moz-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
    -webkit-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
    transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
    transform-origin: 50% 50%;
  }
  .list-items-filters {
    flex-wrap: unset;
    max-width: unset;
  }
  .container-layout-vehicule {
    background: unset;
  }
  .container-layout-vehicule .layout-vehicule {
    background: unset;
    padding: 0px 15px;
    padding: 0rem 1.5rem;
  }
  .container-layout-vehicule .layout-vehicule .infos-vehicule,
  .container-layout-vehicule .layout-vehicule .item-implant-link {
    overflow: unset;
  }
  .container-layout-vehicule .layout-vehicule .item-implant-link {
    position: relative;
    width: 100%;
    left: 0%;
  }
  .page-template-page-implantations .title-page-common {
    text-align: unset;
  }
}
.link-to-article {
  background-color: transparent;
  font-size: 16px;
  font-size: 1.6rem;
  color: #ffffff;
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  height: 45px;
  height: 4.5rem;
  position: relative;
  padding-right: 15px;
  padding-right: 1.5rem;
  margin-right: 45px;
  margin-right: 4.5rem;
  overflow: hidden;
  width: auto;
}
.link-to-article:before {
  content: '';
  display: inline-block;
  -webkit-border-bottom-right-radius: 2px;
  -moz-border-bottom-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border: 2px solid #ffffff;
  position: absolute;
  height: 100%;
  left: -15px;
  left: -1.5rem;
  width: 100%;
  -moz-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  -webkit-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  transform-origin: 50% 50%;
  background: rgba(0, 0, 0, 0.5);
}
.link-to-article:last-child {
  margin: 0;
}
.link-to-article span {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-size: 1.6rem;
  color: #ffffff;
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  padding-left: 15px;
  padding-left: 1.5rem;
  position: relative;
  height: 100%;
  border-left: 2px solid #ffffff;
}
.link-to-article i {
  padding-left: 10px;
  padding-left: 1rem;
  padding-right: 15px;
  padding-right: 1.5rem;
  color: #ffffff;
  position: relative;
}
.mfp-image-holder .mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: 0;
  text-align: center;
  padding-right: 0;
  width: 35px;
  height: 35px;
  top: -10px;
  border: 2px solid #FFF;
  line-height: 35px;
  border-radius: 100%;
}
@media screen and (min-width: 992px) {
  .link-to-article:before {
    background: unset;
  }
}
@media screen and (min-width: 1200px) {
  .link-to-article:hover:before {
    background-color: #d1001f;
    border-color: #d1001f;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .link-to-article:hover span {
    border-left-color: #d1001f;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
/*---------------------------------
FORM
-----------------------------------*/
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"] {
  background: #eaecf0;
  border: 1px solid #eaecf0;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  box-shadow: none;
  color: #172640;
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  font-size: 1.8rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 5px;
  padding: 0.5rem;
  width: 100%;
}
input[type="email"]:hover,
input[type="month"]:hover,
input[type="number"]:hover,
input[type="password"]:hover,
input[type="tel"]:hover,
input[type="text"]:hover,
input[type="time"]:hover,
input[type="url"]:hover,
input[type="week"]:hover,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="week"]:focus {
  background: none;
}
input[type="submit"]:not(.wpcf7-submit),
input[type="submit"][disabled]:not(.wpcf7-submit),
input[type="button"]:not(.wpcf7-submit),
input[type="reset"]:not(.wpcf7-submit),
input[type="reset"][disabled]:not(.wpcf7-submit) {
  background-color: #615f5f;
  border: none;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  color: #ffffff;
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  height: 45px;
  height: 4.5rem;
  line-height: 45px;
  line-height: 4.5rem;
  text-align: center;
  text-transform: uppercase;
  padding: 0px;
  padding: 0rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
input[type="submit"]:not(.wpcf7-submit):hover,
input[type="submit"][disabled]:not(.wpcf7-submit):hover,
input[type="button"]:not(.wpcf7-submit):hover,
input[type="reset"]:not(.wpcf7-submit):hover,
input[type="reset"][disabled]:not(.wpcf7-submit):hover,
input[type="submit"]:not(.wpcf7-submit):focus,
input[type="submit"][disabled]:not(.wpcf7-submit):focus,
input[type="button"]:not(.wpcf7-submit):focus,
input[type="reset"]:not(.wpcf7-submit):focus,
input[type="reset"][disabled]:not(.wpcf7-submit):focus {
  background: #d1001f;
}
input[type="submit"][disabled] {
  opacity: 0.6;
}
textarea {
  background: #eaecf0;
  border: 1px solid #eaecf0;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  box-shadow: none;
  color: #172640;
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  font-size: 1.8rem;
  min-height: 250px;
  min-height: 25rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
textarea:hover,
textarea:focus {
  background: none;
}
label {
  margin-bottom: 5px;
  margin-bottom: 0.5rem;
}
label sup {
  color: #d1001f;
}
input::-webkit-input-placeholder {
  color: #172640;
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
input:hover::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
  color: #bbbbba;
}
input:-moz-placeholder {
  color: #172640;
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
input:-moz-placeholder:focus,
input:-moz-placeholder:hover {
  color: #bbbbba;
}
input::-moz-placeholder {
  color: #172640;
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
input::-moz-placeholder:focus,
input::-moz-placeholder:hover {
  color: #bbbbba;
}
input:-ms-input-placeholder {
  color: #172640;
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
input:-ms-input-placeholder:focus,
input:-ms-input-placeholder:hover {
  color: #bbbbba;
}
*::-webkit-input-placeholder,
*:-moz-placeholder,
*::-moz-placeholder,
*:-ms-input-placeholder {
  color: #172640;
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
*::-webkit-input-placeholder:focus,
*:-moz-placeholder:focus,
*::-moz-placeholder:focus,
*:-ms-input-placeholder:focus,
*::-webkit-input-placeholder:hover,
*:-moz-placeholder:hover,
*::-moz-placeholder:hover,
*:-ms-input-placeholder:hover {
  color: #bbbbba;
}
::-webkit-input-placeholder {
  color: #172640;
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
::-webkit-input-placeholder:focus,
::-webkit-input-placeholder:hover {
  color: #bbbbba;
}
:-moz-placeholder {
  color: #172640;
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
:-moz-placeholder:focus,
:-moz-placeholder:hover {
  color: #bbbbba;
}
::-moz-placeholder {
  color: #172640;
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
::-moz-placeholder:focus,
::-moz-placeholder:hover {
  color: #bbbbba;
}
:hover::-moz-placeholder {
  color: #bbbbba;
}
:-ms-input-placeholder {
  color: #172640;
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
:-ms-input-placeholder:focus,
:-ms-input-placeholder:hover {
  color: #bbbbba;
}
.wpcf7-list-item {
  margin: 0;
}
.wpcf7-checkbox {
  display: block;
}
.wpcf7-checkbox .wpcf7-list-item.first {
  margin-right: 10px;
  margin-right: 1rem;
}
.mfp-bg,
.mfp-wrap {
  z-index: 10000;
  position: fixed !important;
}
.mfp-bg {
  max-height: 100vh;
}
.mfp-wrap {
  top: 0 !important;
}
.grid-full-galerie {
  background-color: #ffffff;
  padding-top: 0px;
  padding-top: 0rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.grid-full-galerie li {
  padding: 0 !important;
  border-top: 0 !important;
}
.item-grid-video {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.item-grid-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.item-grid-picture img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.item-grid-picture:hover {
  cursor: pointer;
}
.grid-full-galerie-1 {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 240px;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.grid-full-galerie-1 .item-1 {
  grid-area: 1 / 1 / 2 / 2;
}
.grid-full-galerie-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 240px);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.grid-full-galerie-2 .item-1 {
  grid-area: 1 / 1 / 2 / 3;
}
.grid-full-galerie-2 .item-2 {
  grid-area: 2 / 1 / 3 / 3;
}
.grid-full-galerie-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 240px);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.grid-full-galerie-3 .item-1 {
  grid-area: 1 / 1 / 2 / 3;
}
.grid-full-galerie-3 .item-2 {
  grid-area: 2 / 1 / 3 / 2;
}
.grid-full-galerie-3 .item-3 {
  grid-area: 2 / 2 / 3 / 3;
}
.grid-full-galerie-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 240px);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.grid-full-galerie-4 .item-1 {
  grid-area: 1 / 1 / 3 / 3;
}
.grid-full-galerie-4 .item-2 {
  grid-area: 3 / 1 / 5 / 2;
}
.grid-full-galerie-4 .item-3 {
  grid-area: 3 / 2 / 4 / 3;
}
.grid-full-galerie-4 .item-4 {
  grid-area: 4 / 2 / 5 / 3;
}
.grid-full-galerie-5 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, 240px);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.grid-full-galerie-5 .item-1 {
  grid-area: 1 / 1 / 3 / 3;
}
.grid-full-galerie-5 .item-2 {
  grid-area: 3 / 1 / 4 / 2;
}
.grid-full-galerie-5 .item-3 {
  grid-area: 3 / 2 / 4 / 3;
}
.grid-full-galerie-5 .item-4 {
  grid-area: 4 / 1 / 6 / 2;
}
.grid-full-galerie-5 .item-5 {
  grid-area: 4 / 2 / 6 / 3;
}
.grid-full-galerie-6 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, 240px);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.grid-full-galerie-6 .item-1 {
  grid-area: 1 / 1 / 3 / 3;
}
.grid-full-galerie-6 .item-2 {
  grid-area: 3 / 1 / 4 / 2;
}
.grid-full-galerie-6 .item-3 {
  grid-area: 3 / 2 / 4 / 3;
}
.grid-full-galerie-6 .item-4 {
  grid-area: 4 / 1 / 6 / 2;
}
.grid-full-galerie-6 .item-5 {
  grid-area: 4 / 2 / 5 / 3;
}
.grid-full-galerie-6 .item-6 {
  grid-area: 5 / 2 / 6 / 3;
}
.grid-full-galerie-7 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(7, 240px);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.grid-full-galerie-7 .item-1 {
  grid-area: 1 / 1 / 3 / 3;
}
.grid-full-galerie-7 .item-2 {
  grid-area: 3 / 1 / 4 / 2;
}
.grid-full-galerie-7 .item-3 {
  grid-area: 3 / 2 / 4 / 3;
}
.grid-full-galerie-7 .item-4 {
  grid-area: 4 / 1 / 6 / 2;
}
.grid-full-galerie-7 .item-5 {
  grid-area: 4 / 2 / 5 / 3;
}
.grid-full-galerie-7 .item-6 {
  grid-area: 5 / 2 / 6 / 3;
}
.grid-full-galerie-7 .item-7 {
  grid-area: 6 / 1 / 8 / 3;
}
.grid-full-galerie-8 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(7, 240px);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.grid-full-galerie-8 .item-1 {
  grid-area: 1 / 1 / 3 / 3;
}
.grid-full-galerie-8 .item-2 {
  grid-area: 3 / 1 / 4 / 2;
}
.grid-full-galerie-8 .item-3 {
  grid-area: 3 / 2 / 4 / 3;
}
.grid-full-galerie-8 .item-4 {
  grid-area: 4 / 1 / 6 / 2;
}
.grid-full-galerie-8 .item-5 {
  grid-area: 4 / 2 / 5 / 3;
}
.grid-full-galerie-8 .item-6 {
  grid-area: 5 / 2 / 6 / 3;
}
.grid-full-galerie-8 .item-7 {
  grid-area: 6 / 1 / 8 / 2;
}
.grid-full-galerie-8 .item-8 {
  grid-area: 6 / 2 / 8 / 3;
}
.grid-full-galerie-9 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(9, 240px);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.grid-full-galerie-9 .item-1 {
  grid-area: 1 / 1 / 3 / 3;
}
.grid-full-galerie-9 .item-2 {
  grid-area: 3 / 1 / 4 / 2;
}
.grid-full-galerie-9 .item-3 {
  grid-area: 3 / 2 / 4 / 3;
}
.grid-full-galerie-9 .item-4 {
  grid-area: 4 / 1 / 6 / 2;
}
.grid-full-galerie-9 .item-5 {
  grid-area: 4 / 2 / 5 / 3;
}
.grid-full-galerie-9 .item-6 {
  grid-area: 5 / 2 / 6 / 3;
}
.grid-full-galerie-9 .item-7 {
  grid-area: 6 / 1 / 8 / 3;
}
.grid-full-galerie-9 .item-8 {
  grid-area: 8 / 1 / 10 / 2;
}
.grid-full-galerie-9 .item-9 {
  grid-area: 8 / 2 / 10 / 3;
}
.grid-full-galerie-10 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(9, 240px);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.grid-full-galerie-10 .item-1 {
  grid-area: 1 / 1 / 3 / 3;
}
.grid-full-galerie-10 .item-2 {
  grid-area: 3 / 1 / 4 / 2;
}
.grid-full-galerie-10 .item-3 {
  grid-area: 3 / 2 / 4 / 3;
}
.grid-full-galerie-10 .item-4 {
  grid-area: 4 / 1 / 6 / 2;
}
.grid-full-galerie-10 .item-5 {
  grid-area: 4 / 2 / 5 / 3;
}
.grid-full-galerie-10 .item-6 {
  grid-area: 5 / 2 / 6 / 3;
}
.grid-full-galerie-10 .item-7 {
  grid-area: 6 / 1 / 8 / 3;
}
.grid-full-galerie-10 .item-8 {
  grid-area: 8 / 1 / 9 / 2;
}
.grid-full-galerie-10 .item-9 {
  grid-area: 8 / 1 / 10 / 2;
}
.grid-full-galerie-10 .item-10 {
  grid-area: 8 / 2 / 10 / 3;
}
.grid-full-galerie-11 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(10, 240px);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.grid-full-galerie-11 .item-1 {
  grid-area: 1 / 1 / 3 / 3;
}
.grid-full-galerie-11 .item-2 {
  grid-area: 3 / 1 / 4 / 2;
}
.grid-full-galerie-11 .item-3 {
  grid-area: 3 / 2 / 4 / 3;
}
.grid-full-galerie-11 .item-4 {
  grid-area: 4 / 1 / 6 / 2;
}
.grid-full-galerie-11 .item-5 {
  grid-area: 4 / 2 / 5 / 3;
}
.grid-full-galerie-11 .item-6 {
  grid-area: 5 / 2 / 6 / 3;
}
.grid-full-galerie-11 .item-7 {
  grid-area: 6 / 1 / 8 / 3;
}
.grid-full-galerie-11 .item-8 {
  grid-area: 8 / 1 / 10 / 2;
}
.grid-full-galerie-11 .item-9 {
  grid-area: 8 / 2 / 10 / 3;
}
.grid-full-galerie-11 .item-10 {
  grid-area: 10 / 1 / 11 / 2;
}
.grid-full-galerie-11 .item-11 {
  grid-area: 10 / 2 / 11 / 3;
}
.grid-full-galerie-12 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(11, 240px);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.grid-full-galerie-12 .item-1 {
  grid-area: 1 / 1 / 3 / 3;
}
.grid-full-galerie-12 .item-2 {
  grid-area: 3 / 1 / 4 / 2;
}
.grid-full-galerie-12 .item-3 {
  grid-area: 3 / 2 / 4 / 3;
}
.grid-full-galerie-12 .item-4 {
  grid-area: 4 / 1 / 6 / 2;
}
.grid-full-galerie-12 .item-5 {
  grid-area: 4 / 2 / 5 / 3;
}
.grid-full-galerie-12 .item-6 {
  grid-area: 5 / 2 / 6 / 3;
}
.grid-full-galerie-12 .item-7 {
  grid-area: 6 / 1 / 8 / 3;
}
.grid-full-galerie-12 .item-8 {
  grid-area: 8 / 1 / 10 / 2;
}
.grid-full-galerie-12 .item-9 {
  grid-area: 8 / 2 / 10 / 3;
}
.grid-full-galerie-12 .item-10 {
  grid-area: 10 / 2 / 12 / 3;
}
.grid-full-galerie-12 .item-11 {
  grid-area: 10 / 1 / 11 / 2;
}
.grid-full-galerie-12 .item-12 {
  grid-area: 11 / 1 / 12 / 2;
}
.grid-full-galerie-13 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(12, 240px);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.grid-full-galerie-13 .item-1 {
  grid-area: 1 / 1 / 3 / 3;
}
.grid-full-galerie-13 .item-2 {
  grid-area: 3 / 1 / 4 / 2;
}
.grid-full-galerie-13 .item-3 {
  grid-area: 3 / 2 / 4 / 3;
}
.grid-full-galerie-13 .item-4 {
  grid-area: 4 / 1 / 6 / 2;
}
.grid-full-galerie-13 .item-5 {
  grid-area: 4 / 2 / 5 / 3;
}
.grid-full-galerie-13 .item-6 {
  grid-area: 5 / 2 / 6 / 3;
}
.grid-full-galerie-13 .item-7 {
  grid-area: 6 / 1 / 8 / 3;
}
.grid-full-galerie-13 .item-8 {
  grid-area: 8 / 1 / 10 / 2;
}
.grid-full-galerie-13 .item-9 {
  grid-area: 8 / 2 / 10 / 3;
}
.grid-full-galerie-13 .item-10 {
  grid-area: 10 / 2 / 12 / 3;
}
.grid-full-galerie-13 .item-11 {
  grid-area: 10 / 1 / 11 / 2;
}
.grid-full-galerie-13 .item-12 {
  grid-area: 11 / 1 / 13 / 2;
}
.grid-full-galerie-13 .item-13 {
  grid-area: 12 / 2 / 13 / 3;
}
.grid-full-galerie-14 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(14, 240px);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.grid-full-galerie-14 .item-1 {
  grid-area: 1 / 1 / 3 / 3;
}
.grid-full-galerie-14 .item-2 {
  grid-area: 3 / 1 / 4 / 2;
}
.grid-full-galerie-14 .item-3 {
  grid-area: 3 / 2 / 4 / 3;
}
.grid-full-galerie-14 .item-4 {
  grid-area: 4 / 1 / 6 / 2;
}
.grid-full-galerie-14 .item-5 {
  grid-area: 4 / 2 / 5 / 3;
}
.grid-full-galerie-14 .item-6 {
  grid-area: 5 / 2 / 6 / 3;
}
.grid-full-galerie-14 .item-7 {
  grid-area: 6 / 1 / 8 / 3;
}
.grid-full-galerie-14 .item-8 {
  grid-area: 8 / 1 / 10 / 2;
}
.grid-full-galerie-14 .item-9 {
  grid-area: 8 / 2 / 10 / 3;
}
.grid-full-galerie-14 .item-10 {
  grid-area: 10 / 2 / 12 / 3;
}
.grid-full-galerie-14 .item-11 {
  grid-area: 10 / 1 / 11 / 2;
}
.grid-full-galerie-14 .item-12 {
  grid-area: 11 / 1 / 13 / 2;
}
.grid-full-galerie-14 .item-13 {
  grid-area: 12 / 2 / 13 / 3;
}
.grid-full-galerie-14 .item-14 {
  grid-area: 13 / 1 / 15 / 3;
}
.grid-full-galerie-15 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(15, 240px);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.grid-full-galerie-15 .item-1 {
  grid-area: 1 / 1 / 3 / 3;
}
.grid-full-galerie-15 .item-2 {
  grid-area: 3 / 1 / 4 / 2;
}
.grid-full-galerie-15 .item-3 {
  grid-area: 3 / 2 / 4 / 3;
}
.grid-full-galerie-15 .item-4 {
  grid-area: 4 / 1 / 6 / 2;
}
.grid-full-galerie-15 .item-5 {
  grid-area: 4 / 2 / 5 / 3;
}
.grid-full-galerie-15 .item-6 {
  grid-area: 5 / 2 / 6 / 3;
}
.grid-full-galerie-15 .item-7 {
  grid-area: 6 / 1 / 8 / 3;
}
.grid-full-galerie-15 .item-8 {
  grid-area: 8 / 1 / 10 / 2;
}
.grid-full-galerie-15 .item-9 {
  grid-area: 8 / 2 / 10 / 3;
}
.grid-full-galerie-15 .item-10 {
  grid-area: 10 / 2 / 12 / 3;
}
.grid-full-galerie-15 .item-11 {
  grid-area: 10 / 1 / 11 / 2;
}
.grid-full-galerie-15 .item-12 {
  grid-area: 11 / 1 / 13 / 2;
}
.grid-full-galerie-15 .item-13 {
  grid-area: 12 / 2 / 13 / 3;
}
.grid-full-galerie-15 .item-14 {
  grid-area: 13 / 1 / 15 / 3;
}
.grid-full-galerie-15 .item-15 {
  grid-area: 15 / 1 / 16 / 2;
}
.grid-full-galerie-16 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(15, 240px);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.grid-full-galerie-16 .item-1 {
  grid-area: 1 / 1 / 3 / 3;
}
.grid-full-galerie-16 .item-2 {
  grid-area: 3 / 1 / 4 / 2;
}
.grid-full-galerie-16 .item-3 {
  grid-area: 3 / 2 / 4 / 3;
}
.grid-full-galerie-16 .item-4 {
  grid-area: 4 / 1 / 6 / 2;
}
.grid-full-galerie-16 .item-5 {
  grid-area: 4 / 2 / 5 / 3;
}
.grid-full-galerie-16 .item-6 {
  grid-area: 5 / 2 / 6 / 3;
}
.grid-full-galerie-16 .item-7 {
  grid-area: 6 / 1 / 8 / 3;
}
.grid-full-galerie-16 .item-8 {
  grid-area: 8 / 1 / 10 / 2;
}
.grid-full-galerie-16 .item-9 {
  grid-area: 8 / 2 / 10 / 3;
}
.grid-full-galerie-16 .item-10 {
  grid-area: 10 / 2 / 12 / 3;
}
.grid-full-galerie-16 .item-11 {
  grid-area: 10 / 1 / 11 / 2;
}
.grid-full-galerie-16 .item-12 {
  grid-area: 11 / 1 / 13 / 2;
}
.grid-full-galerie-16 .item-13 {
  grid-area: 12 / 2 / 13 / 3;
}
.grid-full-galerie-16 .item-14 {
  grid-area: 13 / 1 / 15 / 3;
}
.grid-full-galerie-16 .item-15 {
  grid-area: 15 / 1 / 16 / 2;
}
.grid-full-galerie-16 .item-16 {
  grid-area: 15 / 2 / 16 / 3;
}
.grid-full-galerie-17 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(16, 240px);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.grid-full-galerie-17 .item-1 {
  grid-area: 1 / 1 / 3 / 3;
}
.grid-full-galerie-17 .item-2 {
  grid-area: 3 / 1 / 4 / 2;
}
.grid-full-galerie-17 .item-3 {
  grid-area: 3 / 2 / 4 / 3;
}
.grid-full-galerie-17 .item-4 {
  grid-area: 4 / 1 / 6 / 2;
}
.grid-full-galerie-17 .item-5 {
  grid-area: 4 / 2 / 5 / 3;
}
.grid-full-galerie-17 .item-6 {
  grid-area: 5 / 2 / 6 / 3;
}
.grid-full-galerie-17 .item-7 {
  grid-area: 6 / 1 / 8 / 3;
}
.grid-full-galerie-17 .item-8 {
  grid-area: 8 / 1 / 10 / 2;
}
.grid-full-galerie-17 .item-9 {
  grid-area: 8 / 2 / 10 / 3;
}
.grid-full-galerie-17 .item-10 {
  grid-area: 10 / 2 / 12 / 3;
}
.grid-full-galerie-17 .item-11 {
  grid-area: 10 / 1 / 11 / 2;
}
.grid-full-galerie-17 .item-12 {
  grid-area: 11 / 1 / 13 / 2;
}
.grid-full-galerie-17 .item-13 {
  grid-area: 12 / 2 / 13 / 3;
}
.grid-full-galerie-17 .item-14 {
  grid-area: 13 / 1 / 15 / 3;
}
.grid-full-galerie-17 .item-15 {
  grid-area: 15 / 1 / 17 / 2;
}
.grid-full-galerie-17 .item-16 {
  grid-area: 15 / 2 / 16 / 3;
}
.grid-full-galerie-17 .item-17 {
  grid-area: 16 / 2 / 17 / 3;
}
.grid-full-galerie-18 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(18, 240px);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.grid-full-galerie-18 .item-1 {
  grid-area: 1 / 1 / 3 / 3;
}
.grid-full-galerie-18 .item-2 {
  grid-area: 3 / 1 / 4 / 2;
}
.grid-full-galerie-18 .item-3 {
  grid-area: 3 / 2 / 4 / 3;
}
.grid-full-galerie-18 .item-4 {
  grid-area: 4 / 1 / 6 / 2;
}
.grid-full-galerie-18 .item-5 {
  grid-area: 4 / 2 / 5 / 3;
}
.grid-full-galerie-18 .item-6 {
  grid-area: 5 / 2 / 6 / 3;
}
.grid-full-galerie-18 .item-7 {
  grid-area: 6 / 1 / 8 / 3;
}
.grid-full-galerie-18 .item-8 {
  grid-area: 8 / 1 / 10 / 2;
}
.grid-full-galerie-18 .item-9 {
  grid-area: 8 / 2 / 10 / 3;
}
.grid-full-galerie-18 .item-10 {
  grid-area: 10 / 2 / 12 / 3;
}
.grid-full-galerie-18 .item-11 {
  grid-area: 10 / 1 / 11 / 2;
}
.grid-full-galerie-18 .item-12 {
  grid-area: 11 / 1 / 13 / 2;
}
.grid-full-galerie-18 .item-13 {
  grid-area: 12 / 2 / 13 / 3;
}
.grid-full-galerie-18 .item-14 {
  grid-area: 13 / 1 / 15 / 3;
}
.grid-full-galerie-18 .item-15 {
  grid-area: 15 / 1 / 17 / 2;
}
.grid-full-galerie-18 .item-16 {
  grid-area: 15 / 2 / 16 / 3;
}
.grid-full-galerie-18 .item-17 {
  grid-area: 16 / 2 / 17 / 3;
}
.grid-full-galerie-19 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(19, 240px);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.grid-full-galerie-19 .item-1 {
  grid-area: 1 / 1 / 3 / 3;
}
.grid-full-galerie-19 .item-2 {
  grid-area: 3 / 1 / 4 / 2;
}
.grid-full-galerie-19 .item-3 {
  grid-area: 3 / 2 / 4 / 3;
}
.grid-full-galerie-19 .item-4 {
  grid-area: 4 / 1 / 6 / 2;
}
.grid-full-galerie-19 .item-5 {
  grid-area: 4 / 2 / 5 / 3;
}
.grid-full-galerie-19 .item-6 {
  grid-area: 5 / 2 / 6 / 3;
}
.grid-full-galerie-19 .item-7 {
  grid-area: 6 / 1 / 8 / 3;
}
.grid-full-galerie-19 .item-8 {
  grid-area: 8 / 1 / 10 / 2;
}
.grid-full-galerie-19 .item-9 {
  grid-area: 8 / 2 / 10 / 3;
}
.grid-full-galerie-19 .item-10 {
  grid-area: 10 / 2 / 12 / 3;
}
.grid-full-galerie-19 .item-11 {
  grid-area: 10 / 1 / 11 / 2;
}
.grid-full-galerie-19 .item-12 {
  grid-area: 11 / 1 / 13 / 2;
}
.grid-full-galerie-19 .item-13 {
  grid-area: 12 / 2 / 13 / 3;
}
.grid-full-galerie-19 .item-14 {
  grid-area: 13 / 1 / 15 / 3;
}
.grid-full-galerie-19 .item-15 {
  grid-area: 15 / 1 / 17 / 2;
}
.grid-full-galerie-19 .item-16 {
  grid-area: 15 / 2 / 16 / 3;
}
.grid-full-galerie-19 .item-17 {
  grid-area: 16 / 2 / 17 / 3;
}
.grid-full-galerie-19 .item-18 {
  grid-area: 17 / 1 / 19 / 3;
}
.grid-full-galerie-19 .item-19 {
  grid-area: 19 / 1 / 20 / 2;
}
.grid-full-galerie-20 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(19, 240px);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.grid-full-galerie-20 .item-1 {
  grid-area: 1 / 1 / 3 / 3;
}
.grid-full-galerie-20 .item-2 {
  grid-area: 3 / 1 / 4 / 2;
}
.grid-full-galerie-20 .item-3 {
  grid-area: 3 / 2 / 4 / 3;
}
.grid-full-galerie-20 .item-4 {
  grid-area: 4 / 1 / 6 / 2;
}
.grid-full-galerie-20 .item-5 {
  grid-area: 4 / 2 / 5 / 3;
}
.grid-full-galerie-20 .item-6 {
  grid-area: 5 / 2 / 6 / 3;
}
.grid-full-galerie-20 .item-7 {
  grid-area: 6 / 1 / 8 / 3;
}
.grid-full-galerie-20 .item-8 {
  grid-area: 8 / 1 / 10 / 2;
}
.grid-full-galerie-20 .item-9 {
  grid-area: 8 / 2 / 10 / 3;
}
.grid-full-galerie-20 .item-10 {
  grid-area: 10 / 2 / 12 / 3;
}
.grid-full-galerie-20 .item-11 {
  grid-area: 10 / 1 / 11 / 2;
}
.grid-full-galerie-20 .item-12 {
  grid-area: 11 / 1 / 13 / 2;
}
.grid-full-galerie-20 .item-13 {
  grid-area: 12 / 2 / 13 / 3;
}
.grid-full-galerie-20 .item-14 {
  grid-area: 13 / 1 / 15 / 3;
}
.grid-full-galerie-20 .item-15 {
  grid-area: 15 / 1 / 17 / 2;
}
.grid-full-galerie-20 .item-16 {
  grid-area: 15 / 2 / 16 / 3;
}
.grid-full-galerie-20 .item-17 {
  grid-area: 16 / 2 / 17 / 3;
}
.grid-full-galerie-20 .item-18 {
  grid-area: 17 / 1 / 19 / 3;
}
.grid-full-galerie-20 .item-19 {
  grid-area: 19 / 1 / 20 / 2;
}
.grid-full-galerie-20 .item-20 {
  grid-area: 19 / 2 / 20 / 3;
}
@media screen and (min-width: 768px) {
  .grid-full-galerie {
    padding-top: 45px;
    padding-top: 4.5rem;
  }
}
.site-main .site-inner.wpGmap {
  margin-bottom: 45px;
}
.wpgmza-modern-marker-open-button {
  color: #d1001f;
}
.wpgmza-modern-marker-open-button path {
  fill: #d1001f;
}
.wpgmza_marker_list_class {
  display: none;
  background-color: #dfe2e7;
  height: 970px;
  height: 97rem;
  width: 33% !important;
  overflow-y: scroll !important;
  padding: 15px;
  padding: 1.5rem;
}
.wpgmza_marker_list_class .wpgmza_marker_title {
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #242f42 !important;
}
.wpgmza_marker_list_class .wpgmza_marker_address {
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #242f42 !important;
  font-style: normal !important;
}
.wpgmza-modern-store-locator {
  margin-right: 0px !important;
  position: absolute;
  top: -60px;
  width: calc(100% - 35px);
  z-index: 2;
}
.wpgmza-modern-store-locator > .wpgmza-inner {
  flex-wrap: nowrap !important;
}
.wpgmza-modern-store-locator label.wpgmza-address {
  display: none !important;
}
.wpgmza-modern-store-locator .wpgmza-address-container {
  width: 100%;
}
.wpgmza-modern-store-locator .wpgmza-radius-container {
  display: none !important;
}
.wpgmza-modern-store-locator .wpgmza-reset,
.wpgmza-modern-store-locator .wpgmza-search {
  margin: 0;
}
.wpgmza-modern-store-locator .wpgmza-reset input[type="button"],
.wpgmza-modern-store-locator .wpgmza-search input[type="button"] {
  color: #999999 !important;
  display: inline-block;
  border: none;
  margin: 0px !important;
  line-height: 28px;
}
.wpgmza-modern-store-locator .wpgmza-reset input[type="button"]:hover,
.wpgmza-modern-store-locator .wpgmza-search input[type="button"]:hover,
.wpgmza-modern-store-locator .wpgmza-reset input[type="button"]:focus,
.wpgmza-modern-store-locator .wpgmza-search input[type="button"]:focus {
  background-color: #d1001f;
  color: #ffffff !important;
}
.wpgmza_infowindow_title {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #242f42;
  text-align: center;
}
.wpgmza_infowindow_description {
  color: #d1001f;
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
}
.wpgmza_infowindow_description p {
  color: #d1001f;
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
.wpgmza_infowindow_description p a {
  color: #d1001f;
  text-decoration: none;
}
.wpgmza_infowindow_description p:before {
  content: "\f095";
  font-family: "Fontawesome", sans-serif;
  display: inline-block;
  margin-right: 5px;
  margin-right: 0.5rem;
}
.wpgmza_infowindow_link {
  text-align: center;
}
.wpgmza_infowindow_link a {
  color: #ffffff;
  padding: 8px;
  padding: 0.8rem;
  background-color: #242f42;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
}
.wpgmza_infowindow_link a:hover,
.wpgmza_infowindow_link a:focus {
  background-color: #d1001f;
}
.wpgmaps_blist_row {
  background-color: #ffffff;
  padding: 15px !important;
  padding: 1.5rem !important;
  padding-left: 45px;
  padding-left: 4.5rem;
}
.wpgmaps_blist_row:before {
  content: '';
  background: url('../images/svg/mark-concession.svg') no-repeat center center;
  display: inline-block;
  float: left;
  height: 52px;
  height: 5.2rem;
  width: 30px;
  width: 3rem;
  margin-right: 10px;
  margin-right: 1rem;
}
.gm-style-iw-d p {
  text-align: center;
}
.wpgmza-pagination {
  display: none;
}
@media screen and (max-width: 600px) {
  .wpgmza-modern-store-locator {
    left: 15px !important;
    left: 1.5rem !important;
    max-width: calc(100% - 30px) !important;
  }
}
@media screen and (min-width: 768px) {
  .wpgmza_marker_list_class {
    display: block;
  }
  .wpgmza_map {
    width: 66% !important;
  }
}
.header-site-mobile {
  position: fixed;
  width: 100vw;
  bottom: 0;
  z-index: 999;
  height: 10vh;
  background-color: #ffffff;
}
.header-site-mobile .nav-menu-mobile,
.header-site-mobile .container-navigations-header-mobile,
.header-site-mobile .site-navigation-mobile,
.header-site-mobile .menu-nav-primaire {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}
.header-site-mobile .menu-item-type-post_type {
  height: fit-content;
}
.header-site-mobile .nav-menu-mobile,
.header-site-mobile .nav-widgets-mobile {
  position: relative;
}
.header-site-mobile .sub-menu .sub-menu {
  display: none;
}
.header-site-mobile .menu-item-has-children .sub-menu {
  position: absolute;
  bottom: 10vh;
  left: 0;
  height: fit-content;
  width: 100vw;
  background-color: #ffffff;
  z-index: -1;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  padding: 15px;
  padding: 1.5rem;
  transform: translate(0, 100vh);
  transition: all 0.5s ease-in-out;
}
.header-site-mobile .menu-item-has-children > a {
  text-transform: uppercase;
  color: #d1001f;
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  row-gap: 5px;
}
.header-site-mobile .menu-item-has-children .svg-inline--fa:first-child {
  transition: all 0.5s ease-in-out;
}
.header-site-mobile .menu-item-has-children.on .sub-menu,
.header-site-mobile .menu-item-has-children.on .sub-menu {
  transform: translate(0, 0vh);
}
.header-site-mobile .menu-item-has-children.on .svg-inline--fa:first-child,
.header-site-mobile .menu-item-has-children.on .svg-inline--fa:first-child {
  transform: rotate(180deg);
}
.header-site-mobile .elios-mobile-card-arrow i {
  font-size: 20px;
  font-size: 2rem;
}
.header-site-mobile .menu-item-has-children:before,
.header-site-mobile .menu-item-has-children:before,
.header-site-mobile .nav-widgets-mobile:before {
  content: "";
  position: absolute;
  background-color: #ffffff;
  left: 0;
  bottom: 0;
  height: 0vh;
  z-index: -2;
  width: 100vw;
  opacity: 0;
  transition: height 0.5s ease-in-out, opacity 0.7s ease-in-out;
}
.header-site-mobile .menu-item-has-children.on:before,
.header-site-mobile .menu-item-has-children.on:before,
.header-site-mobile .nav-widgets-mobile.on:before {
  opacity: 0.8;
  height: 100vh;
}
.header-site-mobile .nav-widgets-mobile .site-widgets {
  position: absolute;
  bottom: 10vh;
  left: 0;
  width: 100vw;
  height: fit-content;
  z-index: -1;
  transform: translate(0, 80vh);
  transition: all 0.5s ease-in-out;
}
.header-site-mobile .nav-widgets-mobile.on .site-widgets {
  transform: translate(0, 0vh);
}
.header-site-mobile .menu-item-type-taxonomy,
.header-site-mobile .menu-item-object-carvan {
  background-color: #242f42;
  position: relative;
  overflow: hidden;
}
.header-site-mobile .menu-item-type-taxonomy:after,
.header-site-mobile .menu-item-object-carvan:after {
  position: absolute;
  content: "";
  width: 40px;
  width: 4rem;
  height: 40px;
  height: 4rem;
  bottom: -20px;
  bottom: -2rem;
  right: -20px;
  right: -2rem;
  transform: rotate(45deg);
  background-color: #ffffff;
}
.header-site-mobile .menu-item-type-taxonomy img,
.header-site-mobile .menu-item-object-carvan img {
  width: 100%;
}
.header-site-mobile .menu-item-has-children .menu-item {
  background-color: #242f42;
}
.header-site-mobile .menu-item-has-children .menu-item .descript-item-menu {
  width: 65%;
  padding: 10px;
  padding: 1rem;
}
.header-site-mobile .menu-item-has-children .menu-item .descript-item-menu .col-implant-profil {
  padding: 0px;
  padding: 0rem;
}
.header-site-mobile .menu-item-has-children .menu-item .descript-item-menu .col-implant-profil figure {
  height: unset;
}
.header-site-mobile .menu-item-object-carvan {
  position: relative;
}
.header-site-mobile .menu-item-object-carvan .menu-item-has-children-title-gamme {
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 35%;
  color: #ffffff;
}
.header-site-mobile .site-widgets-header {
  align-items: center;
}
.header-site-mobile .site-widgets-header .container-nav-media-sociaux {
  width: 100% !important;
  background-color: #ffffff;
  justify-content: center;
  padding: 10px 0px 0px 0px;
  padding: 1rem 0rem 0rem 0rem;
}
.header-site-mobile .site-widgets-header .container-nav-media-sociaux .svg-inline--fa {
  font-size: 25px;
  font-size: 2.5rem;
}
.header-site-mobile .site-widgets-header .menu-nav-secondaire {
  margin-left: 0;
}
.header-site-mobile .site-widgets-header .menu-nav-secondaire .menu-item {
  padding: 10px 0px;
  padding: 1rem 0rem;
  margin: 0;
  width: 100%;
}
.header-site-mobile .site-widgets-header .menu-nav-secondaire .menu-item a {
  align-items: center;
  justify-content: center;
}
.header-site-mobile .site-widgets-header .menu-nav-secondaire .menu-item a span {
  font-size: 16px;
  font-size: 1.6rem;
  padding-right: 0px;
  padding-right: 0rem;
}
.header-site-mobile .site-widgets-header .menu-nav-secondaire .implantations {
  background: #dfe2e7;
}
.header-site-mobile .burger-menu-mobile {
  position: relative;
  width: 20px;
  height: 10px;
}
.header-site-mobile .burger-menu-mobile:after {
  content: "";
  position: absolute;
  width: 50%;
  top: calc(50% - 1px);
  right: 0;
  height: 1px;
  background: #172640;
  transition: all 0.5s ease-in-out;
}
.header-site-mobile .burger-menu-mobile .burger-menu-top,
.header-site-mobile .burger-menu-mobile .burger-menu-bottom {
  position: absolute;
  background: #172640;
  width: 100%;
  height: 1px;
  transition: all 0.5s ease-in-out;
}
.header-site-mobile .burger-menu-mobile .burger-menu-top {
  top: 0;
}
.header-site-mobile .burger-menu-mobile .burger-menu-bottom {
  bottom: 0;
}
.header-site-mobile .site-navigation-mobile .widgets.on .burger-menu-mobile:after {
  opacity: 0;
}
.header-site-mobile .site-navigation-mobile .widgets.on .burger-menu-mobile .burger-menu-top {
  top: 50%;
  transform: rotate(45deg);
}
.header-site-mobile .site-navigation-mobile .widgets.on .burger-menu-mobile .burger-menu-bottom {
  bottom: calc(50% - 1px);
  transform: rotate(-45deg);
}
.container-navigations-header {
  position: absolute;
  top: 90px;
  top: 9rem;
  -webkit-transform: translateX(-200%);
  -ms-transform: translateX(-200%);
  -o-transform: translateX(-200%);
  transform: translateX(-200%);
  -webkit-transition: transform 0.7s ease-in-out;
  -moz-transition: transform 0.7s ease-in-out;
  -ms-transition: transform 0.7s ease-in-out;
  -o-transition: transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out;
  width: 100%;
}
.container-navigations-header.on {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.nav-widgets-mobile .items-medias-sociaux {
  margin-left: 0;
  margin-bottom: 10px;
  margin-bottom: 1rem;
}
.nav-widgets-mobile .items-medias-sociaux i {
  font-size: 18px;
  font-size: 1.8rem;
}
.nav-widgets-mobile .items-medias-sociaux i:before {
  font-size: inherit;
}
.site-widgets-header-mobile {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 50%;
  justify-content: space-evenly;
}
.site-widgets-header-mobile .site-widgets-mobile-contact,
.site-widgets-header-mobile .site-widgets-mobile-shop,
.site-widgets-header-mobile .site-widgets-mobile-search {
  width: 33.33%;
  height: 100%;
}
.site-widgets-header-mobile .site-widgets-mobile-contact a,
.site-widgets-header-mobile .site-widgets-mobile-shop a,
.site-widgets-header-mobile .site-widgets-mobile-search a {
  height: 100%;
}
.site-widgets-header-mobile .site-widgets-mobile-contact {
  background: #615f5f;
}
.site-widgets-header-mobile .site-widgets-mobile-contact .widget-sav {
  color: #ffffff;
}
.site-widgets-header-mobile .site-widgets-mobile-shop {
  background-color: #ffffff;
}
.site-widgets-header-mobile .site-widgets-mobile-search {
  background: #caa22e;
}
.site-widgets-header-mobile .site-widgets-mobile-search div {
  background: unset;
}
.site-navigation {
  width: 100%;
  background-color: #ffffff;
}
.site-navigation .item-has-parent {
  line-height: 55px;
  line-height: 5.5rem;
  width: 100%;
}
.site-navigation .item-has-parent.menu-item-4305 {
  padding-left: 10%;
}
.site-navigation .item-has-parent.menu-item-4305 a span {
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #242f42;
  font-size: 16px;
  font-size: 1.6rem;
}
.site-navigation .item-has-parent.menu-item-4305 i {
  margin-right: 10px;
  margin-right: 1rem;
}
.site-navigation .item-has-parent > a {
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
  text-transform: uppercase;
  position: relative;
}
.site-navigation .item-has-parent > a i {
  font-size: 11px;
  font-size: 1.1rem;
}
.site-navigation .item-has-parent > a i:before {
  content: "\e628";
  display: block;
  -webkit-transition: transform 0.7s ease-in-out;
  -moz-transition: transform 0.7s ease-in-out;
  -ms-transition: transform 0.7s ease-in-out;
  -o-transition: transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out;
}
.site-navigation .item-has-parent > ul {
  background-color: #ffffff;
  position: absolute;
  left: 0;
  opacity: 0;
  margin: 0;
  padding-bottom: 45px;
  padding-bottom: 4.5rem;
  width: 100%;
  -webkit-transform: translateX(-200%);
  -ms-transform: translateX(-200%);
  -o-transform: translateX(-200%);
  transform: translateX(-200%);
  -webkit-transition: all 0.7s ease-in-out;
  -moz-transition: all 0.7s ease-in-out;
  -ms-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  z-index: -1;
}
.site-navigation .item-has-parent > ul > li > a {
  padding: 10px 0px;
  padding: 1rem 0rem;
  text-transform: uppercase;
}
.site-navigation .item-has-parent > ul li.menu-item-type-post_type > a {
  width: 15%;
  border-bottom: 1px solid #bbbbba;
  padding: 10px;
  padding: 1rem;
}
.site-navigation .item-has-parent > ul li.menu-item-type-post_type > a span {
  color: #bbbbba;
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
}
.site-navigation .item-has-parent > ul li.menu-item-type-post_type.on > a {
  border-color: #707070;
}
.site-navigation .item-has-parent > ul li.menu-item-type-post_type.on > a span {
  color: #707070;
}
.site-navigation .item-has-parent > ul li.menu-item-object-gamme > a {
  text-transform: capitalize;
  position: relative;
}
.site-navigation .item-has-parent > ul li.menu-item-object-gamme > a span {
  opacity: 0.6;
}
.site-navigation .item-has-parent > ul li.menu-item-object-gamme:first-child > a {
  background-color: #dfe2e7;
}
.site-navigation .item-has-parent > ul li.menu-item-object-gamme:nth-child(2n) > a:after {
  background-color: #c9cfd8;
  content: "";
  width: 100%;
  height: 100%;
  -moz-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-30deg);
  -webkit-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-30deg);
  transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-30deg);
  transform-origin: 50% 50%;
  position: absolute;
  left: -30px;
  left: -3rem;
  z-index: 0;
}
.site-navigation .item-has-parent > ul li.menu-item-object-gamme:nth-child(2n):nth-child(3n) > a {
  background-color: #b7c0cc;
}
.site-navigation .item-has-parent > ul li.menu-item-object-gamme:nth-child(2n):nth-child(3n) > a span {
  opacity: 0.4;
}
.site-navigation .item-has-parent > ul li.menu-item-object-gamme:nth-child(2n):nth-child(3n) > a:after {
  background-color: #b7c0cc;
  content: "";
  width: 100%;
  height: 100%;
  -moz-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-30deg);
  -webkit-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-30deg);
  transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-30deg);
  transform-origin: 50% 50%;
  position: absolute;
  left: -30px;
  left: -3rem;
  z-index: 0;
}
.site-navigation .item-has-parent > ul li.menu-item-object-gamme li.menu-item-object-gamme.on > a {
  background-color: #dfe2e7;
}
.site-navigation .item-has-parent > ul li.menu-item-object-gamme li.menu-item-object-gamme.on > a span {
  opacity: 1;
}
.site-navigation .item-has-parent > ul li.menu-item-object-gamme li.menu-item-object-gamme.on:nth-child(2n) > a:after,
.site-navigation .item-has-parent > ul li.menu-item-object-gamme li.menu-item-object-gamme.on:nth-child(3n) > a:after {
  background-color: #dfe2e7;
}
.site-navigation .item-has-parent > ul li.menu-item-object-gamme .container-sub-menu {
  padding-top: 15px;
  padding-top: 1.5rem;
}
.site-navigation .item-has-parent > ul li.menu-item-object-gamme .container-sub-menu li a {
  margin: 15px 0px;
  margin: 1.5rem 0rem;
  display: block;
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  font-size: 2.2rem;
  margin-bottom: 5px;
  margin-bottom: 0.5rem;
  text-align: left;
}
.site-navigation .item-has-parent > ul li.menu-item-object-gamme .container-sub-menu li > ul {
  padding-right: 15px;
  padding-right: 1.5rem;
}
.site-navigation .item-has-parent > ul li.menu-item-object-gamme .container-sub-menu li > ul li {
  display: flex;
  align-items: center;
  border-bottom: 1px #caa22e solid;
  height: 40px;
  height: 4rem;
}
.site-navigation .item-has-parent > ul li.menu-item-object-gamme .container-sub-menu li > ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  padding: 1rem;
  font-family: "akrobatregular", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  font-size: 1.4000000000000001rem;
  text-transform: uppercase;
  height: 100%;
  width: 100%;
}
.site-navigation .item-has-parent > ul .img-sub-menu-niv1 {
  padding: 0;
}
.site-navigation .item-has-parent > ul .img-sub-menu-niv1 .container-img-sub-menu {
  height: 20vh;
}
.site-navigation .item-has-parent > ul .img-sub-menu-niv1 .container-img-sub-menu img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.site-navigation .item-has-parent .item-has-parent.on > a i:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.site-navigation .item-has-parent .item-has-parent.on > ul {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
  z-index: 1;
}
.site-navigation .item-has-parent .item-has-parent.menu-item-4305.on i:before {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.site-navigation .item-has-parent .sub-menu {
  padding: 15px;
  padding: 1.5rem;
}
.site-navigation .item-has-parent .menu-item-3220 > ul {
  padding: 15px;
  padding: 1.5rem;
}
.site-navigation .item-has-parent .menu-item-3220 > ul > li {
  width: 100%;
}
.site-navigation .item-has-parent .menu-item-3220 > ul > li > a {
  height: 50px;
  height: 5rem;
  width: 15%;
}
.site-navigation .item-has-parent .menu-item-3220 > ul > li .descript-item-menu {
  width: 100%;
}
.site-navigation .item-has-parent .menu-item-3220 > ul > li .descript-item-menu .title-model strong:before {
  width: 135%;
}
.menu-item-object-gamme > a {
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  display: flex;
  align-items: center;
}
.menu-item-object-gamme > a span {
  color: #ffffff;
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  background-color: #172640;
  line-height: 1;
  position: relative;
  z-index: 0;
  margin: 5px 0px;
  margin: 0.5rem 0rem;
  width: 100%;
}
.menu-item-object-gamme > a span.elios-nav-prefix {
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.menu-item-object-gamme > a span:before {
  position: absolute;
  background-color: #172640;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  content: "";
  display: block;
  height: calc(100% + 8px);
  left: -4px;
  left: -0.4rem;
  -moz-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  -webkit-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  transform-origin: 50% 50%;
  top: -4px;
  top: -0.4rem;
  width: calc(100% + 8px);
  z-index: -1;
}
.menu-item-object-gamme > a .col-link {
  background-color: transparent;
}
.menu-item-object-gamme > a .col-link:before {
  background-color: transparent;
}
.menu-item-object-gamme > ul {
  background-color: #ffffff;
  margin: 0;
  height: 100%;
  width: 100%;
}
span.col-link {
  color: #ffffff;
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
span.col-link span {
  color: #172640;
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  background-color: #172640;
  line-height: 1;
  position: relative;
  z-index: 0;
  margin: 20px 0px;
  margin: 2rem 0rem;
  margin-top: 5px;
  margin-top: 0.5rem;
}
span.col-link span:before {
  position: absolute;
  background-color: #ffffff;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  content: "";
  display: block;
  height: calc(100% + 8px);
  left: -4px;
  left: -0.4rem;
  -moz-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  -webkit-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  transform-origin: 50% 50%;
  top: -4px;
  top: -0.4rem;
  width: calc(100% + 8px);
  z-index: -1;
}
.menu-item-object-gamme.on .sub-menu {
  z-index: 4;
}
.link-parent {
  color: #d1001f;
}
.link-parent span {
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #d1001f;
  font-size: 18px;
  font-size: 1.8rem;
}
.link-parent svg {
  width: 10px;
  width: 1rem;
}
.link-parent svg path {
  fill: #d1001f;
}
.item-has-parent.on svg {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.item-has-parent.on .item-implant-link svg {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.button-menu-mobile {
  background-color: #d1001f;
  height: 45px;
  height: 4.5rem;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 45px;
  top: 4.5rem;
  right: 0;
  width: 40%;
}
.button-menu-mobile:focus,
.button-menu-mobile:active {
  outline: none;
  background-color: #d1001f;
}
.button-menu-mobile p {
  margin: 0;
  margin-right: 10px;
  margin-right: 1rem;
  line-height: 1;
  text-transform: uppercase;
}
.button-menu-mobile span {
  display: block;
  direction: ltr;
  text-indent: -999em;
  background-color: #ffffff;
  height: 2px;
  height: 0.2rem;
  position: relative;
  width: 15px;
  width: 1.5rem;
}
.button-menu-mobile span:before,
.button-menu-mobile span:after {
  background-color: #ffffff;
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  height: 0.2rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 20px;
  width: 2rem;
}
.button-menu-mobile span:before {
  top: -6px;
  top: -0.6000000000000001rem;
}
.button-menu-mobile span:after {
  top: 6px;
  top: 0.6000000000000001rem;
}
.button-menu-mobile.on span {
  background-color: transparent;
}
.button-menu-mobile.on span:before,
.button-menu-mobile.on span:after {
  top: 0;
}
.button-menu-mobile.on span:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.button-menu-mobile.on span:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.descript-item-menu {
  padding: 15px;
  padding: 1.5rem;
  padding-top: 30px;
  padding-top: 3rem;
}
.col-implant-title .title-type {
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  font-size: 2rem;
  color: #242f42;
  margin: 0;
  display: flex;
  align-items: center;
}
.col-implant-title .title-type strong {
  padding: 0px 5px;
  padding: 0rem 0.5rem;
  color: #d1001f;
  font-size: 32px;
  font-size: 3.2rem;
  text-transform: uppercase;
  position: relative;
  margin-left: 5px;
  margin-left: 0.5rem;
}
.col-implant-title .title-type strong:before {
  content: "";
  display: block;
  border: 2px solid #d1001f;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  height: 46px;
  height: 4.6000000000000005rem;
  -moz-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  -webkit-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  transform-origin: 50% 50%;
  position: absolute;
  left: 0px;
  left: 0rem;
  top: -6px;
  top: -0.6000000000000001rem;
  width: 109%;
}
.col-implant-title .title-model {
  margin-top: 50px;
  margin-top: 5rem;
}
.col-implant-title .title-model span,
.col-implant-title .title-model strong {
  padding: 0px 5px;
  padding: 0rem 0.5rem;
  color: #ffffff;
  font-family: "neo-sans", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 55px;
  font-size: 5.5rem;
  text-transform: uppercase;
  position: relative;
  margin-left: 16px;
  margin-left: 1.6rem;
}
.col-implant-title .title-model span:before,
.col-implant-title .title-model strong:before {
  content: "";
  display: block;
  background-color: #242f42;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  height: 75px;
  height: 7.5rem;
  -moz-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  -webkit-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
  transform-origin: 50% 50%;
  position: absolute;
  left: -10px;
  left: -1rem;
  top: 6px;
  top: 0.6000000000000001rem;
  width: 105%;
  z-index: -1;
}
.col-implant-title .title-model i {
  font-size: 32px;
  font-size: 3.2rem;
  color: #d1001f;
}
.col-implant-profil figure {
  height: 215px;
  height: 21.5rem;
}
.col-implant-plan figure {
  height: 205px;
  height: 20.5rem;
}
.img-sub-menu img {
  max-height: none;
  height: 100%;
  object-fit: contain;
}
.text-implantation {
  margin-top: 20px;
  margin-top: 2rem;
}
.text-implantation .item-implant {
  border: 1px solid #dfe2e7;
  border-right: none;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-size: 1.8rem;
  height: 45px;
  height: 4.5rem;
  line-height: 1;
  margin: 0;
  padding: 0px 10px;
  padding: 0rem 1rem;
  position: relative;
}
.text-implantation .item-implant:nth-child(2n) {
  padding-left: 50px;
  padding-left: 5rem;
  z-index: 1;
}
.text-implantation .item-implant span {
  display: flex;
  align-items: center;
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  justify-content: center;
  margin-left: 10px;
  margin-left: 1rem;
  margin-right: -20px;
  margin-right: -2rem;
  position: absolute;
  right: -5px;
  right: -0.5rem;
  z-index: 2;
}
.text-implantation .item-implant span:after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  background-color: #dfe2e7;
  height: 45px;
  height: 4.5rem;
  width: 45px;
  width: 4.5rem;
  -moz-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(10deg);
  -webkit-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(10deg);
  transform: scaleX(1) scaleY(1) scaleZ(1) skewX(10deg);
  transform-origin: 50% 50%;
  z-index: -1;
}
.text-implantation .item-implant span b {
  display: block;
  font-family: "akrobatbold", sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 45px;
  line-height: 4.5rem;
}
.item-implant.item-implant-link {
  border: none;
  z-index: 0;
}
.item-implant.item-implant-link a {
  align-items: center;
  display: flex;
  color: #ffffff;
  background-color: #242f42;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  height: 100%;
  padding: 10px;
  padding: 1rem;
  padding-left: 50px;
  padding-left: 5rem;
  text-decoration: none;
}
.item-implant.item-implant-link a i {
  margin-left: 10px;
  margin-left: 1rem;
}
@media screen and (min-width: 768px) {
  .menu-item-object-gamme > a {
    font-weight: 500;
    font-family: "neo-sans", sans-serif;
    font-weight: 700;
    font-style: italic;
    display: flex;
    align-items: center;
  }
  .menu-item-object-gamme > a span {
    margin: 20px 0px;
    margin: 2rem 0rem;
    margin-top: 5px;
    margin-top: 0.5rem;
    width: unset;
  }
  .header-site-mobile .menu-item-has-children .sub-menu,
  .header-site-mobile .menu-item-has-children .sub-menu {
    top: 0vh;
    bottom: unset;
    transform: translate(0, 0vh);
  }
  .header-site-mobile .menu-item-has-children .menu-item,
  .header-site-mobile .menu-item-has-children .menu-item {
    min-height: 200px;
    min-height: 20rem;
    padding: 10px;
    padding: 1rem;
  }
  .header-site-mobile .menu-item-has-children .menu-item a,
  .header-site-mobile .menu-item-has-children .menu-item a {
    justify-content: center;
  }
  .header-site-mobile .menu-item-has-children .menu-item img,
  .header-site-mobile .menu-item-has-children .menu-item img {
    width: 40%;
  }
  .header-site-mobile .menu-item-has-children.on .sub-menu,
  .header-site-mobile .menu-item-has-children.on .sub-menu {
    transform: translate(0, -100%);
  }
  .button-menu-mobile {
    width: 62%;
    position: unset;
    height: 100%;
  }
  .site-widgets-header-mobile {
    height: 67%;
    width: 58%;
  }
  .container-navigations-header {
    top: 60px;
    top: 6rem;
  }
  .site-navigation ul.menu-item {
    padding-top: 30px;
  }
  .site-navigation .menu-item-object-gamme {
    width: 33vw;
  }
  .site-navigation .menu-item-object-gamme > a {
    width: 100%;
  }
  .site-navigation .menu-item-object-gamme > ul {
    position: absolute;
    left: 15px;
    background-color: transparent;
  }
  .site-navigation .menu-item-object-gamme > ul li.menu-item-type-post_type > div {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 15%;
    width: calc(100% - 15%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .site-navigation .menu-item-object-gamme > ul li.menu-item-type-post_type.on > div {
    opacity: 1;
    z-index: 2;
  }
}
@media screen and (min-width: 992px) {
  .site-navigation .item-has-parent > ul li.menu-item-object-gamme:first-child > a {
    padding-left: 15%;
  }
}
@media screen and (min-width: 1200px) {
  .site-navigation {
    height: 100%;
    position: relative;
    transform: none;
    padding-top: 0;
    padding-left: 15%;
    width: 100%;
  }
  .site-navigation ul.menu-item {
    padding-top: unset;
    padding-left: 15%;
    width: 100%;
  }
  .site-navigation .item-has-parent {
    height: 100%;
    line-height: unset;
    width: auto;
  }
  .site-navigation .item-has-parent:nth-child(2n) {
    margin-left: 15%;
  }
  .site-navigation .item-has-parent .link-parent {
    height: inherit;
    padding: 0px 20px;
    padding: 0rem 2rem;
    font-size: 12px;
    font-size: 1.2000000000000002rem;
  }
  .site-navigation .item-has-parent > ul {
    position: fixed;
    height: 340px;
    height: 34rem;
    left: 0;
    opacity: 0;
    margin: 0;
    padding-bottom: 45px;
    padding-bottom: 4.5rem;
    top: 80px;
    top: 8rem;
    -webkit-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    -o-transform: translateX(-150%);
    transform: translateX(-150%);
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    width: 100vw;
    z-index: -1;
  }
  .site-navigation .item-has-parent > ul .container-sub-menu li {
    width: 31%;
    display: block;
    float: left;
    padding: 0;
  }
  .site-navigation .item-has-parent > ul .container-sub-menu li a {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 5px;
    margin-bottom: 0.5rem;
    margin-top: 15px;
    margin-top: 1.5rem;
    text-align: unset;
  }
  .site-navigation .item-has-parent > ul .container-sub-menu li > ul li {
    width: 100%;
  }
  .site-navigation .item-has-parent > ul .container-sub-menu li > ul li a {
    padding-right: 15px;
    padding-right: 1.5rem;
    -webkit-transition: padding 0.3s ease-in-out;
    -moz-transition: padding 0.3s ease-in-out;
    -ms-transition: padding 0.3s ease-in-out;
    -o-transition: padding 0.3s ease-in-out;
    transition: padding 0.3s ease-in-out;
  }
  .site-navigation .item-has-parent > ul .container-sub-menu li > ul li a:hover {
    padding-right: 10px;
    padding-right: 1rem;
    background-color: #615f5f;
  }
  .site-navigation .item-has-parent .link-parent i:before {
    content: "\e64b";
  }
  .site-navigation .item-has-parent .link-parent.menu-link-implantation i:before {
    content: "\e91b";
  }
  .site-navigation .item-has-parent .img-sub-menu-niv1 {
    padding-right: 40px;
    padding-right: 4rem;
    margin-right: 40px;
    margin-right: 4rem;
    margin-left: -50px;
    margin-left: -5rem;
    margin-bottom: -45px;
    margin-bottom: -4.5rem;
  }
  .site-navigation .item-has-parent .img-sub-menu-niv1 .container-img-sub-menu {
    height: 100%;
  }
  .site-navigation .item-has-parent .img-sub-menu-niv1 .container-img-sub-menu img {
    width: 108%;
  }
  .site-navigation .item-has-parent .container-img-sub-menu {
    overflow: hidden;
    -webkit-border-top-right-radius: 20px;
    -moz-border-top-right-radius: 20px;
    border-top-right-radius: 20px;
    height: 340px;
    height: 34rem;
    -moz-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
    -webkit-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
    transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-10deg);
    transform-origin: 50% 50%;
  }
  .site-navigation .item-has-parent .container-img-sub-menu img {
    object-fit: cover;
    height: 100%;
    -moz-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(10deg);
    -webkit-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(10deg);
    transform: scaleX(1) scaleY(1) scaleZ(1) skewX(10deg);
    transform-origin: 50% 50%;
    max-width: 120%;
    width: 110%;
  }
  .site-navigation .item-has-parent.on > ul {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
    z-index: -1;
  }
  .site-navigation .menu-item-type-post_type_solo {
    padding: 0px 15px;
    padding: 0rem 1.5rem;
    width: 100%;
  }
  .site-navigation .menu-item-type-post_type_solo > a {
    height: 48px;
    height: 4.800000000000001rem;
  }
  .site-navigation .descript-item-menu {
    width: 85vw;
  }
  .site-widgets-header .widgets-col-2 .widgets-line .widget-tel {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .site-widgets-header .widgets-col-2 .widgets-line .text-reseau .title-social-media-header-widget {
    font-size: 14px;
    font-size: 1.4000000000000001rem;
  }
  .container-navigations-header {
    position: static;
    height: 80px;
    height: 8rem;
    width: 65%;
    margin-left: 0px;
    margin-left: 0rem;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    top: 90px;
    top: 9rem;
  }
  .menu-item-object-gamme.on .sub-menu {
    z-index: 4;
  }
  .menu-item-object-gamme.on > a:before {
    opacity: 1;
  }
  .menu-item-object-gamme > a:before {
    content: "La gamme";
    position: relative;
    z-index: 1;
    color: unset;
    opacity: 0.5;
  }
  .menu-item-object-gamme > a a {
    display: unset;
    width: unset;
    color: unset;
  }
  .menu-item-object-gamme > a a:before {
    display: none;
  }
  .menu-item-object-gamme > a span {
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 2;
  }
  .menu-item-object-gamme > a span:before {
    background-color: #d1001f;
  }
  footer .menu-item-object-gamme > a:before {
    opacity: 1;
  }
  .col-implant-title .title-model strong {
    font-size: 53px;
    font-size: 5.300000000000001rem;
  }
  .col-implant-title .title-model strong:before {
    left: 0px;
    left: 0rem;
    top: 0px;
    top: 0rem;
  }
  .header-site-mobile .menu-item-type-taxonomy {
    padding: 0;
  }
  .header-site-mobile .menu-item-type-taxonomy img {
    width: 45%;
  }
  .item-implant {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1400px) {
  .site-navigation .item-has-parent .link-parent {
    font-size: 14px;
    font-size: 1.4000000000000001rem;
  }
}
@media screen and (min-width: 1600px) {
  .site-navigation .item-has-parent .link-parent {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .site-widgets i {
    display: inline-block !important;
  }
  .site-widgets-header .widgets-col-2 .widgets-line .widget-tel {
    font-size: 20px;
    font-size: 2rem;
  }
  .item-implant {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .col-implant-title .title-model strong {
    font-size: 55px;
    font-size: 5.5rem;
  }
}
@media screen and (min-width: 1800px) {
  .container-navigations-header {
    width: 75%;
  }
}
/* Nouvelle navigation 2026 */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.elios-primary-menu,
.elios-mobile-menu,
.elios-mega-list,
.elios-mega-nested-list,
.elios-mobile-options,
.elios-mobile-sub-options {
  list-style: none;
  margin: 0;
  padding: 0;
}
.elios-primary-menu .menu-item-object-gamme > a:before,
.elios-mobile-menu .menu-item-object-gamme > a:before,
.elios-primary-menu .menu-item-object-gamme > button:before,
.elios-mobile-menu .menu-item-object-gamme > button:before {
  display: none;
}
.elios-primary-menu .menu-item-object-gamme > a span:not(.elios-nav-badge):not(.elios-mobile-badge):not(
			.elios-mobile-card-badge
		),
.elios-mobile-menu .menu-item-object-gamme > a span:not(.elios-nav-badge):not(.elios-mobile-badge):not(
			.elios-mobile-card-badge
		),
.elios-primary-menu .menu-item-object-gamme > button span:not(.elios-nav-badge):not(.elios-mobile-badge):not(
			.elios-mobile-card-badge
		),
.elios-mobile-menu .menu-item-object-gamme > button span:not(.elios-nav-badge):not(.elios-mobile-badge):not(
			.elios-mobile-card-badge
		) {
  background: transparent;
  color: inherit;
  margin: 0;
  width: auto;
}
.elios-primary-menu .menu-item-object-gamme > a span:not(.elios-nav-badge):not(.elios-mobile-badge):not(
			.elios-mobile-card-badge
		):before,
.elios-mobile-menu .menu-item-object-gamme > a span:not(.elios-nav-badge):not(.elios-mobile-badge):not(
			.elios-mobile-card-badge
		):before,
.elios-primary-menu .menu-item-object-gamme > button span:not(.elios-nav-badge):not(.elios-mobile-badge):not(
			.elios-mobile-card-badge
		):before,
.elios-mobile-menu .menu-item-object-gamme > button span:not(.elios-nav-badge):not(.elios-mobile-badge):not(
			.elios-mobile-card-badge
		):before {
  display: none;
}
.elios-nav-badge,
.elios-mobile-badge,
.elios-mobile-card-badge {
  background: transparent;
  border-radius: 0;
  color: #ffffff;
  display: inline-flex;
  isolation: isolate;
  line-height: 1;
  padding: 4px 8px;
  position: relative;
  text-transform: uppercase;
  z-index: 0;
}
.elios-nav-badge:before,
.elios-mobile-badge:before,
.elios-mobile-card-badge:before {
  background: #d1001f;
  border-radius: 4px;
  content: "";
  inset: 0;
  position: absolute;
  transform: skew(-8deg);
  z-index: -1;
}
.elios-mobile-badge {
  color: #d1001f;
  font-size: clamp(22px, 4.5vw, 34px);
  padding: 0;
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: italic;
}
.elios-mobile-badge:before {
  display: none;
}
.elios-mobile-label {
  color: #242f42;
  font-size: 12px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.header-site-mobile {
  height: max(72px, 10vh);
  z-index: 1000;
}
.header-site-mobile .nav-menu-mobile,
.header-site-mobile .container-navigations-header-mobile,
.header-site-mobile .site-navigation-mobile,
.header-site-mobile .menu-nav-primaire {
  background: #ffffff;
  height: 100%;
  width: 100%;
}
.site-navigation-mobile {
  align-items: stretch;
  display: flex !important;
}
.elios-mobile-menu {
  align-items: stretch;
  display: grid;
  flex: 1 1 auto;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
  height: 100%;
}
.header-site-mobile .elios-mobile-menu > .elios-mobile-item {
  align-items: center;
  align-self: stretch;
  display: flex;
  height: 100%;
  justify-content: center;
  min-height: 100%;
}
.elios-mobile-trigger {
  align-items: center;
  height: 100%;
  justify-content: center;
}
.elios-mobile-trigger,
.elios-mobile-more-toggle {
  align-items: center;
  background: #ffffff;
  border: 0;
  border-radius: 0;
  color: #d1001f;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0 8px;
  text-decoration: none;
  width: 100%;
}
.elios-mobile-trigger:hover,
.elios-mobile-more-toggle:hover {
  background: transparent;
}
.elios-mobile-trigger:focus,
.elios-mobile-more-toggle:focus,
.elios-mobile-trigger:active,
.elios-mobile-more-toggle:active {
  background: #ffffff;
  outline: none;
}
.elios-mobile-trigger {
  flex-direction: column;
  gap: 8px;
}
.elios-mobile-trigger .fa-angle-up {
  color: #d1001f;
  font-size: clamp(18px, 3.8vw, 28px);
  line-height: 1;
  transition: transform 0.25s ease;
}
.elios-mobile-item.on > .elios-mobile-trigger .fa-angle-up {
  transform: rotate(180deg);
}
.elios-mobile-more-toggle {
  flex: 0 0 max(72px, 10vh);
  position: relative;
  z-index: 1003;
}
.elios-mobile-panel {
  align-items: flex-end;
  background: rgba(255, 255, 255, 0.82);
  bottom: max(72px, 10vh);
  display: flex;
  left: 0;
  opacity: 0;
  padding: 16px clamp(15px, 4vw, 32px) 22px;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  z-index: 1001;
}
.elios-mobile-item.on > .elios-mobile-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}
.elios-mobile-panel-inner,
.elios-mobile-options {
  width: 100%;
}
.elios-mobile-options > .elios-mobile-option {
  display: block;
}
.elios-mobile-options {
  display: flex;
  flex-direction: column;
  gap: clamp(13px, 2.2vh, 30px);
}
.elios-mobile-sub-options {
  display: none;
}
.header-site-mobile .elios-mobile-option {
  background: transparent;
  min-height: 0;
  overflow: visible;
  padding: 0;
}
.header-site-mobile .elios-mobile-option:after {
  display: none;
}
a.elios-mobile-card {
  align-items: center;
  background: #242f42;
  border: 0;
  color: #ffffff;
  display: flex;
  height: clamp(150px, 20vh, 265px);
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(14px, 3vw, 28px) 0 clamp(14px, 3vw, 28px) clamp(16px, 5vw, 42px);
  position: relative;
  text-decoration: none;
}
a.elios-mobile-card:after {
  background: #ffffff;
  bottom: -22px;
  content: "";
  display: block;
  height: 44px;
  pointer-events: none;
  position: absolute;
  right: -22px;
  transform: rotate(45deg);
  width: 44px;
  z-index: 3;
}
.elios-mobile-card-image {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  height: 100%;
  min-width: 0;
  padding-right: clamp(8px, 2.5vw, 22px);
}
.elios-mobile-card-image img {
  display: block;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center left;
  width: auto;
}
.elios-mobile-card-content {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 clamp(124px, 34%, 250px);
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  position: relative;
  z-index: 2;
}
.elios-mobile-card-title {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1.3vw, 12px);
  text-transform: uppercase;
  width: 100%;
  font-weight: 500;
  font-family: "neo-sans", sans-serif;
  font-weight: 700;
  font-style: italic;
}
.elios-mobile-card-kicker {
  color: #d1001f;
  font-size: clamp(20px, 4.2vw, 36px);
  font-style: normal;
  line-height: 1;
  padding-left: clamp(9px, 2vw, 18px);
}
.elios-mobile-card-badge {
  background: transparent;
  color: #ffffff;
  display: flex;
  font-size: clamp(26px, 5vw, 44px);
  line-height: 1;
  padding: clamp(5px, 1vw, 8px) 0 clamp(6px, 1.1vw, 10px) clamp(9px, 2vw, 18px);
  width: 100%;
}
.elios-mobile-card-badge:before {
  background: #172640;
  border-radius: 4px 0 0 4px;
  inset: 0 -18px 0 0;
  transform: skew(-8deg);
  transform-origin: left center;
}
.elios-mobile-card-arrow {
  align-self: flex-start;
  color: #d1001f;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1;
  margin-left: clamp(9px, 2vw, 18px);
  margin-top: clamp(10px, 2vw, 22px);
  position: relative;
  z-index: 2;
}
.header-site-mobile .nav-widgets-mobile {
  position: static;
}
.header-site-mobile .nav-widgets-mobile:before {
  background: rgba(255, 255, 255, 0.82);
  bottom: max(72px, 10vh);
  content: "";
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  z-index: 1001;
}
.header-site-mobile .nav-widgets-mobile.on:before {
  opacity: 1;
  visibility: visible;
}
.header-site-mobile .nav-widgets-mobile .site-widgets {
  background: #ffffff;
  bottom: max(72px, 10vh);
  left: 0;
  position: fixed;
  right: 0;
  transform: translateY(125%);
  transition: transform 0.3s ease;
  width: 100vw;
  z-index: 1002;
}
.header-site-mobile .nav-widgets-mobile.on .site-widgets {
  transform: translateY(0);
}
.elios-mobile-more-toggle.on .burger-menu-mobile:after {
  opacity: 0;
}
.elios-mobile-more-toggle.on .burger-menu-mobile .burger-menu-top {
  top: 50%;
  transform: rotate(45deg);
}
.elios-mobile-more-toggle.on .burger-menu-mobile .burger-menu-bottom {
  bottom: calc(50% - 1px);
  transform: rotate(-45deg);
}
.elios-nav-prefix {
  color: #d1001f !important;
}
@media screen and (min-width: 1200px) {
  .main-header {
    height: 64px;
    overflow: visible;
  }
  .main-header-container {
    flex-wrap: nowrap;
    height: 64px;
    width: 100%;
  }
  .main-header .brand-logo {
    flex: 0 0 10%;
    height: 64px;
    padding: 15px 0;
    position: relative;
    width: 10%;
  }
  .container-navigations-header {
    flex: 1 1 0;
    height: 64px;
    margin-left: 0;
    min-width: 0;
    position: static;
    top: auto;
    transform: none;
    width: auto;
  }
  .site-navigation {
    background: #ffffff;
    height: 100%;
    padding: 0;
    position: static;
    width: 100%;
  }
  .elios-primary-menu {
    align-items: center;
    display: flex;
    height: 100%;
    min-width: 0;
    padding: 0;
    width: 100%;
  }
  .elios-primary-menu > .elios-nav-depth-0 {
    height: 100%;
  }
  .elios-primary-menu > .elios-nav-depth-0 + .elios-nav-depth-0 {
    margin-left: 28px;
  }
  .elios-nav-link--top {
    align-items: center;
    color: #d1001f;
    display: flex;
    gap: 8px;
    height: 100%;
    padding: 0;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 500;
    font-family: "neo-sans", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  .elios-nav-item--plain .elios-nav-link--top {
    color: #242f42;
    font-family: "neo-sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
  }
  .elios-nav-item--plain .elios-nav-link--top .icon-implantation {
    font-size: 17px;
    line-height: 1;
  }
  .elios-nav-prefix {
    color: #d1001f;
    font-size: 16px;
    line-height: 1;
    text-transform: none;
  }
  .elios-nav-label {
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
  }
  .elios-nav-badge {
    font-size: 16px;
  }
  .elios-nav-caret {
    color: #d1001f;
    font-size: 11px;
    margin-left: 3px;
    transition: transform 0.25s ease;
  }
  .elios-nav-depth-0.on > .elios-nav-link--top .elios-nav-caret,
  .elios-nav-item--has-children.on > .elios-nav-link--top .elios-nav-caret {
    transform: rotate(180deg);
  }
  .elios-mega-menu {
    background: #ffffff;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), calc(100% - 42px) 100%, 0 100%);
    height: 306px;
    left: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 58px;
    transform: translateY(-14px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    visibility: hidden;
    width: 100%;
    z-index: 31;
  }
  .elios-mega-menu:after {
    bottom: 23px;
    content: "";
    height: 2px;
    pointer-events: none;
    position: absolute;
    right: -5px;
    transform: rotate(-49deg);
    transform-origin: center;
    width: 66px;
    z-index: 5;
  }
  .elios-nav-depth-0.on > .elios-mega-menu,
  .elios-nav-item--has-children.on > .elios-mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }
  .elios-mega-shell {
    height: 100%;
    padding: 40px 0 0 15px;
    position: relative;
    width: 100%;
  }
  .elios-mega-list {
    position: static;
    width: 180px;
    z-index: 2;
  }
  .elios-mega-list .elios-nav-item {
    position: static;
  }
  .elios-mega-nested-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .elios-mega-list > .elios-nav-item > .elios-mega-group-link {
    display: none;
  }
  .elios-mega-list-link,
  .elios-mega-group-link {
    border-bottom: 1px solid #bbbbba;
    color: #707070;
    display: block;
    font-size: 16px;
    line-height: 1.1;
    padding: 10px 0;
    text-decoration: none;
    font-family: "neo-sans", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .elios-mega-list-link span {
    color: #bbbbba;
  }
  .elios-mega-list .elios-nav-item.on > .elios-mega-list-link span,
  .elios-mega-list-link:hover span,
  .elios-mega-list-link:focus span {
    color: #242f42;
    font-weight: 500;
    font-family: "neo-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  .site-navigation .elios-primary-menu .elios-mega-list .elios-nav-item > .elios-mega-detail {
    align-items: start;
    background: #ffffff;
    bottom: 58px;
    display: grid;
    column-gap: clamp(28px, 3vw, 46px);
    grid-template-columns: minmax(210px, 255px) minmax(250px, 310px) minmax(410px, 1fr);
    left: 225px;
    opacity: 0;
    padding: 0;
    padding-left: 25px;
    pointer-events: none;
    position: absolute;
    right: auto;
    top: -20px;
    transition: opacity 0.2s ease;
    width: calc(100% - 225px - 15px);
    z-index: 1;
  }
  .site-navigation .elios-primary-menu .elios-mega-list .elios-nav-item.on > .elios-mega-detail {
    opacity: 1;
    pointer-events: auto;
    z-index: 3;
  }
  .elios-mega-identity {
    align-self: flex-start;
    padding-top: 20px;
  }
  .elios-mega-kicker {
    align-items: center;
    color: #242f42;
    display: flex;
    font-size: 19px;
    gap: 10px;
    line-height: 1;
    margin: 0 0 22px;
    text-transform: none;
    font-family: "neo-sans", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  .elios-mega-kicker span {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #d1001f;
    display: inline-flex;
    font-weight: 500;
    font-family: "neo-sans", sans-serif;
    font-weight: 700;
    font-style: italic;
    isolation: isolate;
    padding: 4px 10px;
    position: relative;
    z-index: 0;
  }
  .elios-mega-kicker span:before {
    background: #ffffff;
    border: 3px solid #d1001f;
    border-radius: 4px;
    content: "";
    inset: 0;
    position: absolute;
    transform: skew(-8deg);
    z-index: -1;
  }
  .elios-mega-model {
    align-items: center;
    display: flex;
    margin: 0;
  }
  .elios-mega-model strong {
    background: #242f42;
    border-radius: 6px;
    color: #ffffff;
    display: inline-flex;
    font-size: 54px;
    line-height: 0.9;
    padding: 8px 18px 10px;
    font-family: "akrobatbold", sans-serif;
    font-style: normal;
    font-weight: normal;
  }
  .elios-mega-model i {
    color: #d1001f;
    font-size: 42px;
    margin-right: -6px;
    position: relative;
    z-index: 2;
  }
  .elios-mega-profile,
  .elios-mega-plan {
    margin: 0;
  }
  .elios-mega-profile img,
  .elios-mega-plan img {
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
  }
  .elios-mega-profile {
    height: 190px;
  }
  .elios-mega-plan-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    overflow: visible;
  }
  .elios-mega-plan {
    height: 155px;
  }
  .elios-mega-specs {
    align-items: stretch;
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
    padding-right: 15px;
    overflow: visible;
    width: 100%;
  }
  .elios-mega-specs .item-implant {
    background: #ffffff;
    border-color: #dfe2e7;
    color: #707070;
    flex: 0 0 150px;
    font-size: 16px;
    height: 44px;
    line-height: 0.95;
    padding: 0 52px 0 12px;
    white-space: normal;
    width: 150px;
  }
  .elios-mega-specs .item-implant:nth-child(2n) {
    padding-left: 20px;
  }
  .elios-mega-specs .item-implant span {
    margin: 0;
    right: -5px;
    width: 45px;
  }
  .elios-mega-specs .item-implant-link {
    background: #d1001f;
    flex: 0 0 180px;
    min-width: 180px;
    padding: 0;
    width: 180px;
  }
  .elios-mega-specs .item-implant-link a {
    align-items: center;
    background: #d1001f;
    color: #ffffff !important;
    display: flex;
    font-size: 16px;
    height: 44px;
    justify-content: space-between;
    line-height: 0.95;
    padding: 0 10px 0 14px;
    text-align: left;
    text-decoration: none !important;
    text-transform: none;
    width: 100%;
    white-space: normal;
    font-weight: 500;
    font-family: "neo-sans", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  .elios-mega-specs .item-implant-link i {
    flex: 0 0 auto;
    margin-left: 8px;
  }
  .elios-mega-all {
    align-items: center;
    background: #dfe2e7;
    bottom: 0;
    color: #615f5f;
    display: flex;
    font-size: 18px;
    height: 48px;
    justify-content: flex-end;
    left: 0;
    padding-right: 50px;
    position: absolute;
    right: 0;
    text-decoration: none;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, calc(100% - 42px) 100%, 0 100%);
    font-weight: 500;
    font-family: "neo-sans", sans-serif;
    font-weight: 700;
    font-style: italic;
    z-index: 3;
  }
  .elios-mega-all b {
    background: transparent;
    border-radius: 0;
    color: #ffffff;
    display: inline-flex;
    font-size: 16px;
    isolation: isolate;
    margin-left: 4px;
    padding: 2px 5px;
    position: relative;
    z-index: 0;
  }
  .elios-mega-all b:before {
    background-color: #172640;
    border-radius: 4px;
    content: "";
    inset: 0;
    position: absolute;
    transform: skew(-15deg);
    z-index: -1;
  }
  .elios-mega-all i {
    margin-left: 18px;
  }
  .elios-mega-all:after {
    content: "";
    height: 2px;
    position: absolute;
    right: -5px;
    top: 24px;
    transform: rotate(-49deg);
    transform-origin: center;
    width: 66px;
  }
  .site-widgets-header {
    flex: 0 1 50%;
    height: 64px;
    min-width: 0;
    width: 50%;
  }
  .site-widgets-header .menu-nav-secondaire {
    align-items: center;
    flex: 1 1 auto;
    height: 100%;
    justify-content: flex-start;
    min-width: 0;
    padding: 0;
    padding-left: 70px;
    margin: 0;
    width: auto;
  }
  .site-widgets-header .menu-nav-secondaire li a {
    text-decoration: none;
  }
  .site-widgets-header .menu-nav-secondaire li {
    margin-right: 0;
  }
  .site-widgets-header .menu-nav-secondaire li + li {
    margin-left: 10px;
  }
  .site-widgets-header .menu-nav-secondaire li a span {
    font-size: 12px;
    padding: 0 5px;
  }
  .site-widgets-header .menu-nav-secondaire li.implantations a:before {
    content: "\e90e";
  }
  .site-widgets-header .container-nav-media-sociaux {
    flex: 0 0 auto;
    min-width: max-content;
    padding-right: 15px;
    width: auto;
  }
  .site-widgets-header .container-nav-media-sociaux .widget-medias-sociaux {
    width: auto;
  }
}
@media screen and (min-width: 1500px) {
  .elios-primary-menu > .elios-nav-depth-0 + .elios-nav-depth-0 {
    margin-left: 44px;
  }
  .site-widgets-header .menu-nav-secondaire li + li {
    margin-left: 18px;
  }
  .site-widgets-header .menu-nav-secondaire li a span {
    font-size: 13px;
    padding: 0 8px;
  }
}
@media screen and (min-width: 1600px) {
  .site-widgets-header {
    flex-basis: 49%;
    width: 49%;
  }
}
@media screen and (min-width: 1800px) {
  .main-header-container {
    padding-left: 2vw;
  }
  .site-widgets-header .container-nav-media-sociaux {
    padding-right: 4vw;
  }
}
.list-items-more {
  display: flex;
  flex-direction: column;
}
.archive .container-more .row {
  position: relative;
}
.archive .container-more h2.title-more-gamme {
  margin: 0;
}
.archive .container-more h2.title-more-gamme span {
  display: block;
  line-height: 75px;
  line-height: 7.5rem;
  color: #ffffff;
  font-size: 50px;
  font-size: 5rem;
}
.archive .container-more h2.title-more-gamme span b {
  display: block;
  line-height: 30px;
  line-height: 3rem;
  font-size: 18px;
  font-size: 1.8rem;
  padding-top: 2%;
}
.archive .chassis-gamme {
  position: absolute;
}
.archive .container-intro {
  padding-top: 20px;
  padding-top: 2rem;
}
.archive.term-sky-lift .container-intro {
  padding-top: 70px;
  padding-top: 7rem;
}
.descript-archive {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 576px) {
  .archive .container-intro {
    padding-right: 20px;
    padding-right: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .descript-archive {
    gap: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .archive .container-more .row {
    position: initial;
  }
  .archive .chassis-gamme {
    position: initial;
  }
  .archive .container-thumb-archive {
    position: relative;
    margin-top: -21vh;
    padding: 15px;
    padding: 1.5rem;
  }
  .archive .container-intro {
    padding-top: 40px;
    padding-top: 4rem;
  }
  .archive .descript-archive {
    gap: unset;
  }
}
@media screen and (min-width: 1800px) {
  .archive .container-more h2.title-more-gamme span {
    font-size: 65px;
    font-size: 6.5rem;
  }
}
/*# sourceMappingURL=app.css.map */