/*!
 * icomoon.css
 */

@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?a1nuem');
  src:  url('../fonts/icomoon.eot?a1nuem#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?a1nuem') format('truetype'),
    url('../fonts/icomoon.woff?a1nuem') format('woff'),
    url('../fonts/icomoon.svg?a1nuem#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.icon-account:before {
  content: "\e900";
  color: #fff;
}
.icon-entrprise:before {
  content: "\e901";
  color: #fff;
}
.icon-location:before {
  content: "\e902";
  color: #fff;
}
 

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

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

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

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

@-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.15, 1.15, 1.15);
    transform: scale3d(1.15, 1.15, 1.15); }
  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.15, 1.15, 1.15);
    transform: scale3d(1.15, 1.15, 1.15); }
  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: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.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: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.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 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-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: none;
    transform: none; } }
@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: none;
    transform: none; } }
.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: none;
    transform: none; } }
@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: none;
    transform: none; } }
.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: none;
    transform: none; } }
@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: none;
    transform: none; } }
.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-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, -150%, 0);
    transform: translate3d(0, -150%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -150%, 0);
    transform: translate3d(0, -150%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.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: none;
    transform: none; } }
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.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: none;
    transform: none; } }
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.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: none;
    transform: none; } }
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 150%, 0);
    transform: translate3d(0, 150%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 150%, 0);
    transform: translate3d(0, 150%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.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: none;
    transform: none; } }
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.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) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

@-webkit-keyframes flipInX {
  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-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-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);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@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);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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-name: hinge;
  animation-name: hinge; }

/* 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: none;
    transform: none; } }
@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: none;
    transform: none; } }
.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; }

/**/
@-webkit-keyframes blurFadeIn {
  0% {
    opacity: 0;
    transform: scale(1.3); }
  50% {
    opacity: 0.5; }
  100% {
    opacity: 1;
    transform: scale(1); } }
@keyframes blurFadeIn {
  0% {
    opacity: 0;
    transform: scale(1.3); }
  50% {
    opacity: 0.5; }
  100% {
    opacity: 1;
    transform: scale(1); } }
.blurFadeIn {
  -webkit-animation-name: blurFadeIn;
  animation-name: blurFadeIn; }

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

@-webkit-keyframes passing {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0; }
  50% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0; } }
@keyframes passing {
  0% {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0; }
  50% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0; } }
@-webkit-keyframes passing-reverse {
  0% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0; }
  50% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0; } }
@keyframes passing-reverse {
  0% {
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0; }
  50% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0; } }
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom; }
  50% {
    transform: rotate(-10deg); }
  70% {
    transform: rotate(3deg); }
  to {
    opacity: 1;
    transform: scale(1); } }
.jackInTheBox {
  animation-name: jackInTheBox; }

.contact-display-1-row .title-contact{
  display: inline;
}
@media (max-width: 1600px) and (min-width: 1024px){
  .banner-left{
    max-width: 52%;
  }
  .banner-right{
    max-width: 46%;
  }
}
.med-bestsale .js-product-miniature{
  border-bottom: none;
  border-left: none;
  border-right: none;
  padding-left: 0;
  padding-right: 0;
  margin: 0 20px !important;
}
.med-bestsale .js-product-miniature:hover{
  border-color: #ebebeb;
}
.med-bestsale .pos-product-widget .slick-arrow{
  top: -2.957rem !important;
}
.med-bestsale .pos-product-widget .slick-next{
  right: 1rem !important;
}
.med-bestsale .pos-product-widget .slick-prev{
  right: 3.5rem !important;
}
.toy-bestsale .js-product-miniature{
  border-bottom: none;
  border-left: none;
  border-right: none;
  padding-left: 0;
  padding-right: 0;
  margin: 0 20px;
  border-radius:0;
}
.toy-bestsale .js-product-miniature:hover{
  border-color: #ebebeb;
}
.toy-bestsale .pos-product-widget .slick-slide > *:not(:last-child) {
    margin-bottom: 0;
}
.toy-bestsale .pos-product-widget .slick-next{
  right: 1rem !important;
}
.toy-bestsale .pos-product-widget .slick-prev{
  right: 3.5rem !important;
}
/*# sourceMappingURL=animate.css.map */

.list-bigger-image .style_product_list .img_block{
  max-width: 170px;
}

.has-section-inner .elementor-widget-wrap{
  display: block !important;
}
.elementor-widget-wrap > section{
  width: 100% !important;
}
.elementor-editor-active .elementor.elementor-edit-mode .elementor-top-column .elementor-widget-wrap .elementor-inner-section{
  margin-top: 0;
}

/* Override */

/* HELPER */
:root {
	--main-color: #B0CB52;
	--seconcondary-color: #131921;
	--new-flag-color: #109533;
	--reduction-flag-color: #ff4e00;
}

.special-title h2{
	font-size: 32px !important;
	font-weight: 500 !important;
	line-height: 38.73px !important;
	color: #000000 !important;
	border-bottom: 1px solid #D9D9D9;
	padding-bottom: 8px !important;
}

.vertical-separator{
	border-right: 1px solid #D9D9D9;
    position: absolute;
    height: 170px;
    top: 50%;
    right: -10px;
    transform: translateY(-69%);
}

#wrapper .breadcrumb li:after {
    content: "\f054";
	font-family: 'FontAwesome' !important;
	font-size: 9px;
}

.breadcrumb ol > li:first-child a{
	font-size: 0;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-color: #f3f3f3;
}

.breadcrumb ol > li:first-child a:before{
	content: "\f015";
	font-family: 'FontAwesome' !important;
	font-size: 15px;
}

body {
    color: #666;
    font-family: Inter, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.71428571;
    font-size: 14px;
}

ul.tiret{
   list-style-type: none;
}

ul.tiret li:before{
   content: '- ';
}

ul.square-style{
	list-style-type: square !important;
	padding-left: 30px;
	padding-top: 15px;
}

ul.circle-empty-style{
	list-style-type: circle !important;
	padding-left: 15px;
	padding-top: 15px;
}

#blockcart-modal .btn-primary{
    line-height: 40px;
}

.btn-primary{
	height: 53px;
    line-height: 33px;
    font-weight: 600;
    background: #b0cb52;
    border: none;
    font-size: 16px !important;
    color: #fff;
}

.btn-primary:hover, .btn-primary:focus{
    border: none;
}

#cart .qty:not(#product .product-actions .qty) .bootstrap-touchspin-up{
	position: absolute;
    right: 18px;
    z-index: 99;
    height: 45px;
    border-left: none;
    border-radius: 3px;
    border-right: none;
}

#cart .qty:not(#product .product-actions .qty) .bootstrap-touchspin-up > i, #cart .cart-grid .qty .bootstrap-touchspin-down i{
	height: 100%;
    line-height: 38px;
}

#cart .qty:not(#product .product-actions .qty) .bootstrap-touchspin-down{
	position: absolute;
    left: -100px;
    z-index: 99;
    height: 45px;
    top: 2px;
    display: flex;
    align-items: center;
    border-left: none;
    border-radius: 3px;
    border-right: none;
}

#cart .qty:not(#product .product-actions .qty) .bootstrap-touchspin-down:hover, #cart .cart-grid .qty .bootstrap-touchspin-up:hover{
	background: none;
	color: var(--hovercolor);
}

#cart .qty:not(#product .product-actions .qty) .bootstrap-touchspin .input-group-btn-vertical .touchspin-down::after{
	content: '\f068';
	font-family: 'FontAwesome' !important;
	font-size: 11px;
	font-weight: 400;
}

#cart .qty:not(#product .product-actions .qty) .bootstrap-touchspin .input-group-btn-vertical .touchspin-up::after {
    content: '\f067';
	font-family: 'FontAwesome' !important;
	font-size: 11px;
	font-weight: 400;
}

button[data-action="show-password"]{
	border-radius: 0 3px 3px 0;
}

.done{
	color: var(--hovercolor);
}

.horizontal-banner-content{
	text-align: center;
	position: absolute;
    z-index: 99;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 219px;
}

.horizontal-banner-content h5{
	font-size: 16px;
    line-height: 16px;
	font-weight: 700;
	color: #000000;
	margin-bottom: 15px;
}

.horizontal-banner-content h4{
	font-size: 20px;
    line-height: 20px;
	font-weight: 400;
	color: #000000;
}

.horizontal-banner-content h3{
	font-size: 30px;
    line-height: 30px;
	font-weight: 600;
	color: #000000;
}

.btn-horizontal-banner{
	background: #b0cb52 !important;
    color: white !important;
    border-color: #b0cb52 !important;
    font-size: 16px !important;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px;
    padding: 15px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    max-width: 100%;
    transition: opacity .5s ease;
    word-break: break-word;
    background: #b0cb52;
    border: 2px solid transparent;
    color: #333e48;
    cursor: pointer;
    font-family: Inter, sans-serif, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 500;
    border-radius: 3px;
    box-shadow: none;
    text-transform: capitalize;
}

.btn-horizontal-banner:hover{
	background: white !important;
	color: black !important;
	border-color: #b0cb52 !important;
	border: 2px solid transparent;
	-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
/* END HELPER */

/* HEADER */
header .elementor-element-nyoethd{
	background-color: var(--main-color) !important;
	height: 50px;
}

#_desktop_megamenu ul li a span, #_desktop_megamenu ul li a i{
	color: #000000;
}

#_desktop_megamenu ul li.active a{
	border: none;
}

header .elementor-element-s1fcksz, header .elementor-element-beenxzc{
	width: auto !important;
}

header p{
	margin-bottom: 0;
}

header .account-login span{
	display: block;
}

header #_desktop_cart_block > .blockcart > a{
	display: block;
    text-align: center;
}

#_desktop_cart_block .cart-products-total{
	display: block;
}

header .elementor-element-s1fcksz a, header .elementor-element-beenxzc a{
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 500;
	line-height: 12.1px;
	text-align: center;
}

header #_desktop_megamenu ul.menu-content li a{
	font-size: 16px;
	font-weight: 500;
    line-height: 19.36px;
    color: #000000;
	margin: 0px 22px 0px 22px;
}

#header .cart-products-count{
	top: -4px;
    left: initial !important;
	background: var(--hovercolor);
    color: #ffffff;
    font-weight: 400;
}

#header .elementor-element-wrslqan .elementor-widget-wrap > div:hover a:not(#header .dropdown-menu a, #header .checkout a){
	color: var(--hovercolor);
}

header .elementor-widget-posCart.button-layout-icon_text .blockcart .cart-products-total{
	padding-left: 0;
}

header .elementor-4010000 .elementor-element.elementor-element-gdtevex .blockcart > a > i{
	font-size: 35px !important;
}

header .elementor-4010000 .elementor-element.elementor-element-9h1ptrm .pos-account i{
	font-size: 36px !important;
}

header .elementor-element-bzshjpm{
	width: auto !important;
}	

header .pos-search .pos-search__container .pos-search__submit{
	font-family: 'Inter', sans-serif !important;
}

header .elementor-widget-posAccount .pos-account > a{
	text-align: center;
}

#header .elementor-element-hxbqlaz .account-login{
	margin-top: -8px;
}

#header .elementor-element-hxbqlaz .account-login i{
	margin-bottom: 7px;
    display: block;
}

@media (max-width: 436px) {
	#header .elementor-element-hxbqlaz .account-login span, .elementor-element-qylgfaz .blockcart a span{
		display: none !important;
	}
	
	#header .elementor-element-hxbqlaz .account-login{
		margin-top: 0 !important;
	}
}

@media (max-width: 1295px) {
	#header .elementor-element-beenxzc, #header .elementor-element-s1fcksz{
		display: none;
	}
}

/* END HEADER */

/* FOOTER */
#footer a:hover{
	color: var(--hovercolor) !important;
}

#footer, #footer h4, #footer span, #footer p{
	font-family: 'Inter', sans-serif !important;
}

#footer a:not(.pos-socials-widget a){
	font-family: 'Inter', sans-serif !important;
	font-size: 14px !important;
	color: #666666;
}

#footer .elementor-element-njspfbv .elementor-column-wrap{
	border: none !important;
}

#footer .elementor-element-h5smqal > .elementor-container{
	max-width: 1710px !important;
	margin: 0 auto !important;
	padding: 0 5px;
}

#footer .elementor-element-z25dxzj > .elementor-column-wrap{
	padding: 5px !important;
}

#footer .elementor-element-2gn7ti6 .elementor-column-wrap{
	padding: 5px 0 0 0;
}

#footer .elementor-element-yp0cehf p{
	color: #666666;
    font-size: 14px;
}

#footer .elementor-element-mtsrcea h2{
	font-size: 15px;
    margin-bottom: 20px;
    color: #333e48;
    font-weight: 700;
}

#footer .navbar-toggler{
	cursor: pointer;
}

#footer .elementor-element-4jltrha p{
	font-size: 22px;
    margin-top: 9px;
}

#footer .elementor-element-q23d9dy{
	padding-left: 0;
}

#footer .elementor-element-cndd6b3{
	padding-right: 0;
}

@media (max-width: 558px) {
	#footer .elementor-element-cwgktm8 p span{
		display: none;
	}
}

@media (max-width: 767px) {
	#footer .elementor-element-zz68qxh{
		width: 100%;
		order: 2;
		text-align: center;
	}

	#footer .elementor-element-cwgktm8{
		width: 100%;
		order: 1;
	}

	#footer .elementor-element-cwgktm8 p{
		text-align: center !important;
	}
	
	#footer .links-widget-title.hidden-md-up{
		background-color: #f1f1f1;
		padding: 15px;
		margin: 0 15px 15px 15px;
		margin-bottom: 15px !important;
	}
	
	#footer .elementor-column-gap-extended>.elementor-row>.elementor-column>.elementor-element-populated{
		padding: 0;
	}
	
	#footer .navbar-toggler.collapse-icons{
		padding: 15px;
	}
	
	#footer .elementor-widget-pos_links .pos-links-widget .links-widget-content {
		margin: 0 0 15px 30px;
	}
	
}

@media (min-width: 768px) {
	#footer .elementor-element-mtsrcea i{
		display: none;
	}
}

@media (max-width: 767px) {
	#footer .elementor-element-mtsrcea i.remove, #footer .elementor-element-fldqqrq{
		display: none;
	}
	
	#footer .elementor-element-mtsrcea i.add{
		display: inline;
	}
	
	#footer .elementor-element-mtsrcea h2{
		margin: 0 !important;
	}
	
	#footer .elementor-element-mtsrcea div.footer-title-block span:first-child{
		float: left;
		padding: 15px 0 0 15px;
	}
	
	#footer .elementor-element-mtsrcea div.footer-title-block span:last-child{
		float: right;
		padding: 0;
		display: flex;
		align-items: center;
		height: 45px;
	}
	
	#footer .elementor-element-mtsrcea .elementor-text-editor{
		background: #f1f1f1 !important;
		margin-left: 15px;
		margin-right: 15px;
	}
	
	#footer .elementor-element-fldqqrq{
		padding: 15px 0px 0px 30px;
	}
	
	#footer .elementor-9010000 .elementor-element.elementor-element-ihblfoi{
		padding-top: 20px;
	}
}

@media (max-width: 1088px) {
	#footer .elementor-element-cndd6b3 p{
		text-align: left;
	}
}
/* END FOOTER */

/* HOMEPAGE */
.elementor-element-4noonx2{
	position: initial !important;
}

.elementor-element-4noonx2 .horizontal-banner-content{
	top: 90px !important	;
}

#index h2:not(footer h2){
	font-size: 21px;
	font-weight: 600;
	line-height: 26.63px;
	color: #000000 !important;
}

.pos-producttabs-widget .slick-dots{
	display: none !important;
}	

.pos-producttabs-widget .tab-titles .nav-item a{
	font-family: 'Inter', sans-serif !important;
	color: #606060;
    font-size: 14px !important;
    font-weight: 500 !important;
	transition: none !important;
}

.pos-producttabs-widget .tab-titles .nav-item a.active{
	background: var(--main-color);
    padding: 8px;
    border-radius: 5px;
    color: #ffffff;
	transition: none;
}

.pos-producttabs-widget .tab-titles .nav-item a:hover:not(.active){
    color: var(--main-color);
}

.pos-producttabs-widget .tab-titles{
	margin-bottom: 5px !important;
    text-align: right !important;
}

.elementor-element-5cbmkqi .elementor-text-editor{
	display: flex;
    align-items: center;
}

.elementor-element-5cbmkqi .elementor-text-editor p:first-child{
	margin-right: 9px;
}

.elementor-element-zixehlx .elementor-row > div .elementor-widget-wrap div:last-child p:hover{
	color: var(--hovercolor);
	webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

.elementor-element-zixehlx .elementor-row > div .elementor-widget-wrap div:last-child p{
	cursor: pointer;
	webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear; 
}

.pos-producttabs-widget ul.tab-titles{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
	justify-content: flex-end;
}

@media (max-width: 1024px) {
	.elementor-element-969y8zw, .elementor-element-s3qmr0o{
		width: 100% !important;
	}
	
	/*.elementor-element-l1mlwru{
		display: none;
	}*/
}

@media (max-width: 767px) {
	.elementor-element-zixehlx .vertical-separator{
		display: none;
	}
	
	.elementor-element-twpvxcp .elementor-row > .elementor-element{
		border-right: none !important;
	}
	
	.pos-search .pos-search__input::placeholder{
		font-size: 12px;
	}
	
	.pos-search .pos-search__input{
		border-color: var(--hovercolor) !important;
	}
	
	.pos-search .pos-search__submit{
		background-color: var(--hovercolor) !important;
	}
}
/* END HOMEPAGE */

/* PRODUCT MINIATURE */
#js-product-list .product_content.list .js-product-miniature .product-price-and-shipping .discount-product{
	position: absolute;
    top: 36px;
    left: 20px;
}

#js-product-list .product_content.grid .js-product-miniature .product-price-and-shipping .discount-product{
	position: absolute;
    top: 36px;
    left: 10px;
}

#js-product-list .product_content.list button.add-to-cart:before{
	font-size: 1.3125rem;
    font-family: "roadthemes-icon";
    content: '\e905';
	font-weight: 400;
}

#js-product-list .product_content.list .js-product-miniature, #js-product-list .product_content.grid .js-product-miniature{
	padding-bottom: 0;
}

#js-product-list .product_content.list .js-product-miniature img.first-image{
	max-width: 240px;	
	padding-top: 15px;
}

.js-product-miniature .product_desc, .js-product-miniature .inner_desc{
	position: initial !important;
}

.js-product-miniature .product_name, .js-product-miniature .hook-reviews, .js-product-miniature .product-price-and-shipping{
	text-align: left;
}	 

.js-product-miniature .product_desc .product_name{
	height: 40px;
}

.pos-sale-product-widget .js-product-miniature .product_desc .product_name{
	height: 60px;
}

.js-product-miniature:hover{
	border-color: transparent;
}

.js-product-miniature .product_desc .product_name, .product-price-and-shipping .price{
	font-weight: 700;
}

.js-product-miniature .add-to-links{
	background: transparent !important;
    box-shadow: none !important;
}	

.js-product-miniature.style_product3 .add-to-links{
	padding: 0;
}
/* END PRODUCT MINIATURE */

/* PRODUCT TAB WIDGET */
.pos-producttabs-widget .tab-pane .slick-slide{
	/*border: 1px solid #D9D9D9;*/
    padding: 0;
}

.pos-producttabs-widget

.pos-producttabs-widget .tab-pane .slick-track .slick-slide:last-child{
	border-radius: 0 9px 9px 0;
}

.pos-producttabs-widget .tab-pane .slick-slide > div:first-child{
	/*border-bottom: 1px solid #D9D9D9;*/
}

.pos-producttabs-widget .tab-pane .slick-slide img.first-image{
	padding: 0 0.625rem;
}

/*.pos-producttabs-widget .tab-pane .slick-list{
	overflow: visible;
}*/
/* END PRODUCT TAB WIDGET */

/* SALE PRODUCT WIDGET */
.pos-sale-product-widget .slick-slide {
	border-top: 1px solid #ebebeb;
	border-left: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
	border-radius: 9px 0 0 9px;
}

.elementor-element-vwbh1tx, .elementor-element-vwbh1tx div, .elementor-element-t2aw6tn, .elementor-element-t2aw6tn div, .elementor-element-6bs7vkz, .elementor-element-6bs7vkz div{
	height: 100% !important;
}

.pos-sale-product-widget .product-miniature .product_desc .product_name{
	font-size: 22px !important;
    margin: 0;
}
/* END SALE PRODUCT WIDGET */

/* POS PRODUCT WIDGET */
.pos-product-widget .manufacturer, .pos-product-widget .hook-reviews{
	display: none !important;
}

.pos-product-widget .product-miniature .product_desc .product_name{
	height: auto !important;
	margin-bottom: 0;
}

.pos-product-widget .slick-slide > div{
	margin-bottom: 0 !important;
}

.pos-sale-product-widget .countdown .time_count_down{
	text-align: left;
    /*height: 33px !important;*/
}

.pos-sale-product-widget .countdown .countdown-section, .pos-sale-product-widget .countdown .countdown-row{
	display: flex !important;
	align-items: center !important;
}

.pos-sale-product-widget .countdown .countdown-amount{
	margin-bottom: 0 !important;
}

.pos-sale-product-widget .countdown .time_count_down .specific-prices-timer{
	padding: 2px 8px;
}

.pos-sale-product-widget .countdown .time_count_down .specific-prices-timer .countdown-amount, .pos-sale-product-widget .countdown .time_count_down .specific-prices-timer .countdown-period{
	font-size: 15px !important;
    font-weight: 400 !important;
}

.pos-sale-product-widget .countdown .title_countdown{
	font-size: 12px;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}

.pos-sale-product-widget .countdown{
	display: flex;
    flex-wrap: nowrap;
    background: #F04706;
    border-radius: 5px;
    padding: 5px 11px;
    align-items: center;
}

.pos-sale-product-widget .js-product-miniature .product_desc{
	padding: 17px 0;
}

.pos-sale-product-widget .js-product-miniature{
	padding-top: 10px;
} 


.pos-producttabs-widget .tab-content .tab-pane .slick-list:before {
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    position: absolute;
    border: 1px solid #ebebeb;
    border-radius: 0 10px 10px 0;
    z-index: 99;
    pointer-events: none;
}

.pos-producttabs-widget .js-product-miniature{
	padding-top: 10px;
}

@media(min-width: 768px){
	.pos-producttabs-widget .js-product-miniature:not(.slick-track .slick-slide:last-child .js-product-miniature):before {
		content: "";
		right: 0;
		top: 0;
		bottom: 0;
		position: absolute;
		border-right: 1px solid #ebebeb;
		z-index: 99;
	}
}
.pos-producttabs-widget .js-product-miniature:not(.pos-producttabs-widget .slick-track > .slick-slide > div:last-child .js-product-miniature):after {
    content: "";
    border-bottom: 1px solid #ebebeb;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
	z-index: 99;
}

.pos-producttabs-widget .slick-slide > div{
	margin-bottom: -3px !important;
}

/*.pos-sale-product-widget .countdown > .title_countdown{
	display: none;
}*/

/*.pos-sale-product-widget .countdown .time_count_down .specific-prices-timer .countdown-period:first-letter{
	display: inline !important;
}*/
/* END POS PRODUCT WIDGET */

/* POS BRAND WIDGET */
.pos-brand-widgets .slick-track{
	display: flex;
    align-items: center;
}
/* END POS BRAND WIDGET */

/* STATIC BLOCK HOMEPAGE */
.elementor-element-twpvxcp .elementor-image-box-title{
	color: #333e48 !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 1.428 !important;
}

.elementor-element-twpvxcp .elementor-image-box-description{
	font-size: 14px !important;
    font-weight: 400 !important;
	color: #666 !important;
	line-height: 1.4 !important;
}

.elementor-element-twpvxcp .elementor-image-box-wrapper{
	align-items: center !important;
}

.elementor-element-twpvxcp .elementor-image-box-img{
	width: auto !important;
}

.elementor-element-twpvxcp .elementor-row > .elementor-element{
    padding: 4px 0;
    border-right: 1px solid #ebebeb;
}

.elementor-element-twpvxcp .elementor-row > .elementor-element:last-child{
	border: none !important;
}

.elementor-element-twpvxcp{
	padding: 0 !important;
}

/*.elementor-element-twpvxcp .elementor-column-wrap{
	padding: 0 !important;
}*/
/* END STATIC BLOCK HOMEPAGE */

/* CATEGORIES BLOCK HOMEPAGE */
.elementor-element-zixehlx .elementor-element{
	position: initial;
}	
/* END CATEGORIES BLOCK HOMEPAGE */

/* SLIDESHOW */
.pos-slideshow .slider-item{
	border-radius: 15px;
}

.pos-slideshow .slick-active button{
	border-radius: 5px !important;
    width: 49px !important;
    height: 8px !important;
}

.pos-slideshow .title1{
	color: #0D52AD !important;
	text-decoration: underline !important;
}
/* END SLIDESHOW */

/* RESPONSIVE */
@media (max-width: 767px) {
	.count-down-section .elementor-column-wrap{
		margin: 0 !important;
	}
	
	.count-down-section > .elementor-container > .elementor-row > .elementor-element:nth-child(2){
		order: 2;
		
	}
	
	.count-down-section > .elementor-container > .elementor-row > .elementor-element:nth-child(2) .elementor-column-wrap{
		padding-top: 0;
	}
	
	.count-down-section > .elementor-container > .elementor-row > .elementor-element:nth-child(3) .elementor-column-wrap{
		padding-bottom: 0;
	}
	
	.pos-sale-product-widget .slick-slide{
		border-radius: 0 0 9px 9px;
		border-top: none;
		border-right: 1px solid #ebebeb;
	}
	
	.pos-producttabs-widget .tab-content .tab-pane .slick-list:before{
		border-radius: 10px 10px 0px 0px;
	}
	
	.pos-producttabs-widget .tab-titles{
		justify-content: flex-start !important;
	}
	
	.elementor-element-r2136ca .elementor-column-wrap, .elementor-element-ufs9una .elementor-column-wrap{
		padding: 0 !important;
	}
}
/* END RESPONSIVE */

/* PRODUCT PAGE */
#product .product-minimal-quantity{
	margin-bottom: 20px;
}

.product-quick-order-widget{
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    margin: 1rem 0;
    border: 1px solid #ebebeb;
    border-width: 1px 0 1px;
}

.product-quick-order-values {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    margin: 1rem 0;
    border-width: 1px 0 1px;
}

.product-quick-order-label {
    padding: 0 2rem 0 0;
    font-weight: 600;
    font-family: Inter, sans-serif, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1;
    color: #000;
}

.cart_button #wishlist_button{
	display: flex;
    align-items: center;
    margin-top: 5px;
	font-size: 14px;
}

.cart_button #wishlist_button > i{
	line-height: 10px;
    height: 14px;
    margin-right: 9px;
}

.cart_button .compare-button{
	display: flex;
    align-items: center;
    margin-top: 5px;
	font-size: 14px;
}

.cart_button .compare-button > i{
	line-height: 10px;
    height: 11px;
    margin-right: 9px;
}

#product .product-extra-info{
	clear: both;
}

#product .product-extra-info{
	border-top: 1px solid #ebebeb;
    padding: 19.5px 0;
}

#product .product-extra-info > div span:first-child{
	color: #666;
}

#product .product-extra-info > div span:last-child{
	color: #222;
}

#product .product-extra-info > div span, #product .product-extra-info > div strong{
	font-weight: 400;
}

#product .product-extra-info{
	font-size: 14px;
}

#product .social-sharing li.facebook a:before {
    font-size: 18px;
    color: #222;
}

#product .product-images .image-item img{
	border: 1px solid #e6e6e6;
    border-radius: 5px;
    padding: 5px;
}

#product .images-container{
	max-width: 513px;
}

#product .cover-item img:hover{
	cursor: pointer;
}

#product .tabs .nav-tabs .nav-item .nav-link.active{
	background: var(--hovercolor);
	color: #ffffff;
}

#product .tabs .nav-tabs .nav-item .nav-link.active:hover{
	color: #ffffff;
}

#product .tabs .nav-tabs .nav-item .nav-link:hover{
	color: var(--hovercolor);
}

#product .tabs .nav-tabs .nav-item .nav-link{
    height: 44px;
    line-height: 20px;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 5px;
    color: #666;
    text-transform: initial;
    margin-bottom: 11px;
	margin-left: 5px;
	margin-right: 5px;
} 

#product .product-features .table th{
	width: 326.75px;
}

#product .product-features .table th, #product .product-features .table td {
    padding: 8px;
    border-bottom: 1px solid #f6f6f6;
}

#product .product-features .table tr:first-child th, #product .product-features .table tr:first-child td {
    border-top: none;
}

#product .cart_button .compare-button{
	margin-right: 5px;
}

#product .categoryproducts{
	margin-top: 0;
}

@media (max-width: 463px) {
	#product .cart_button #wishlist_button{
		float: none !important;
		margin-bottom: 17px;
	}
	
	#product .cart_button .compare-button{
		float: none;
	}
}

@media (min-width: 464px) and (max-width: 767px) {
	#product .cart_button #wishlist_button {
        float: right !important;
		margin-bottom: 17px;
    }
}

@media (min-width: 768px) and (max-width: 889px) {
	#product .cart_button #wishlist_button{
		float: none;
		margin-bottom: 17px;
	}
}

@media (max-width: 639px) {
	#product .tabs .nav-tabs .nav-item .nav-link{
		margin-bottom: 0 !important;
		margin-left: 0 !important;
	}
	
	.tabs .nav-tabs .nav-item{
		 border: 1px solid #ebebeb;
	}
	
	.tabs .tab-content{
		border-top: none;
	}
}

@media (max-width: 390px) {
	.product-quick-order-widget{
		padding-bottom: 5px !important;
		display: block !important;
	}
	
	.product-quick-order-values{
		margin: 0 !important;
		padding-bottom: 0 !important;
	}
}
/* END PRODUCT PAGE */

/* QUICK VIEW */
.quickview .h1.namne_details, .quickview .product_name_h1{
	font-size: 25px;
    font-weight: 600;
    color: #333e48;
    line-height: 1.2;
	margin-bottom: 10px;
}

.quickview .product-description p{
	color: #666666;
	font-weight: 600 !important;
	font-size: 14px;
}	

.quickview .cart_button #wishlist_button{
	float: right;
}

.quickview .product-reference{
	clear: both;
    border-top: 1px solid #ebebeb;
    padding: 18px 0;
}

.quickview .product-reference strong{
    font-weight: 400;
	font-size: 14px;
	color: #666666;
}

.quickview .product-reference [itemprop="sku"]{
	font-weight: 400;
	font-size: 14px;
	color: #222;
}

.quickview .product-images img{
	padding: 5px;
	border-radius: 5px;
	border: 1px solid #e6e6e6;
}

.quickview .product-images .slick-active img{
	border: 1px solid var(--hovercolor);
}
/* END QUICK VIEW */

/* CATEGORY PAGE - PRODUCT LISTING */
#js-product-list-top .sort-by-row .products-sort-order .select-title{
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

#left-column > div:not(#search_filters_wrapper){
	max-width: 260px;
}

#js-product-list-top .display{
	margin: 0;
    position: absolute !important;
    left: 50%;
    transform: translateX(-50%);
}

#js-product-list-top > .row > .total-products{
	position: initial;
}

#js-product-list-top .products-sort-order > button{
	max-width: 202px;
    float: right;
	height: 40px !important;
    border-radius: 5px !important;
    line-height: 35px !important;
	color: #666;
    font-size: 14px;
}

#js-product-list-top .products-sort-order > button i{
	color: #d1d1d1;
	font-size: 9px;
}

#js-product-list-top .products-sort-order > .dropdown-menu{
	max-width: 202px !important;
    margin: 0 0 0 auto;
}

#js-product-list-top .total-products ul.display li{
	border: 1px solid #ebebeb;
    border-radius: 3px;
    color: #666;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#js-product-list-top .total-products ul.display li.selected{
	background: var(--hovercolor);
	color: #ffffff;
	border: transparent;
}

#js-product-list-top > .row:first-child{
	line-height: 40px;
}

#js-active-search-filters .filter-block .close{
	float: none !important;
}

#js-active-search-filters .filter-label{
	color: #333e48;
	font-size: 14px;
	font-weight: 600;
}

#js-active-search-filters .filter-value{
	color: #666;
	font-size: 14px;
    font-weight: 400;
}

#js-active-search-filters .js-search-link{
	line-height: 21px;
    height: 24px;
    display: block;
    float: left;
    margin-right: 5px;
}

#_desktop_search_filters_clear_all button{
	background: transparent;
    border: none;
    padding: 0;
    margin-top: 8px;
	cursor: pointer;
}

#_desktop_search_filters_clear_all button:hover{
	color: var(--hovercolor);
}

#search_filters .facet ul li{
	height: 24px;
    margin: 5px 0;
}

#search_filters .facet ul li .ps-shown-by-js{
	width: 16px;
    height: 16px;
}

#search_filters .facet-label .search-link{
	font-size: 14px;
    font-weight: 400;
    color: #333e48;
}

#search_filters .facet-label .ps-shown-by-js i.checkbox-checked{
	color: transparent !important;
}

#search_filters .facet-label.active .ps-shown-by-js, #search_filters .facet-label:hover .ps-shown-by-js{
	background: var(--hovercolor);
}

#search_filters .facet .facet-title{
	margin-bottom: 0 !important;
}

#left-column .advertising-block img{
	border-radius: 9px;
}

#js-product-list > .product_content:before {
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    position: absolute;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    z-index: 1;
    pointer-events: none;
	z-index: 99;
}

#js-product-list .product_content.grid .item-product:before {
    content: "";
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    border-right: 1px solid #ebebeb;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: rgb(235, 235, 235);
	z-index: 99;
}

#js-product-list .product_content.grid .item-product:last-child:before{
	margin-bottom: 8px;
}

#js-product-list .product_content.grid .item-product:last-child:after {
	margin-right: 8px;
}

#js-product-list .product_content.grid .item-product:nth-child(5):before{
	margin-top: 8px;
}

#js-product-list .product_content.grid .item-product:nth-child(11):after{
	margin-left: 8px;
}

#js-product-list .product_content.grid .item-product:after {
    content: "";
    border-bottom: 1px solid #ebebeb;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(235, 235, 235);
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
	z-index: 99;
}

#js-product-list .product_content.grid .item-product{
	margin-bottom: 0;
	padding-top: 10px;
	padding-bottom: 10px;
}

.pagination li {
	margin-right: 5px;	
}

#js-active-search-filters{
	padding-top: 7px;
}

@media (max-width: 767px) {
	#js-product-list .product_content.grid .item-product:nth-child(2):before{
		margin-top: 8px;
	}
	
	#js-product-list .product_content.grid .item-product:last-child:before{
		margin-bottom: 0;
	}
	
	#js-product-list .product_content.grid .item-product:last-child:after{
		margin-left: 8px;
	}
	
	#js-product-list-top .display{
		position: initial !important;
		transform: none;
	}
	
	#js-product-list-top > .row > div:first-child{
		float: left !important;
	}
	
	#js-product-list-top > .row > div:last-child{
		padding-right: 15px !important;
		padding-top: 15px !important;
	}
	
	#js-product-list-top .sort-by-row .products-sort-order{
		padding-left: 0 !important;
	}
	
	.products-selection .filter-button{
		float: right !important;
	}
	
	.products-selection .sort-by-row{
		display: initial !important;
	}
	
	#js-product-list-top .sort-by-row .products-sort-order .select-title{
		float: initial !important;
	}
	
	#js-product-list-top .sort-by-row .products-sort-order .dropdown-menu{
		left: 0 !important;
		right: initial !important;
	}
	
	#js-product-list-top{
		margin-bottom: 0 !important;
	}	
	
	#search_filters{
		padding-left: 15px !important;
	}
	
	#search_filters .facet ul li:last-child{
		margin-bottom: 17px;
	}
	
	#js-active-search-filters{
		padding-left: 8px;
		margin-top: 5px;
	}
	
	#search_filters .filter-block{
		display: block;
	}
	
	#_mobile_search_filters_clear_all > button{
		background: none;
		border: none;
		cursor: pointer;
	}
	
	#left-column .advertising-block{
		display: none;
	}
	
	.pagination > div:last-child{
		padding-left: 0;
	}
	
	.pagination .page-list{
		justify-content: flex-start;
	}
}

@media (min-width: 575px) {
	#js-product-list-top > .row > div:last-child{
		padding-top: 0 !important;
	}
}

/* list style category page */

#js-product-list .product_content.list .product-desc{
	padding: 0 !important;
}

#js-product-list .product_content.list .item-product:not(#js-product-list .product_content.list .item-product:last-child){
	padding: 0;
    border-bottom: 1px solid #ebebeb;
}

#js-product-list .product_content.list .js-product-miniature{
	padding-left: 10px;
    padding-right: 10px;
}

#js-product-list .product_content.list h3 a{
	margin-bottom: 0;
}

#js-product-list .product_content.list .list-product-actions{
	position: initial;
}

#js-product-list .product_content.list .product-price-and-shipping{
	display: flex;
    flex-direction: column;
	text-align: center
}

#js-product-list .product_content.list .product-price-and-shipping .regular-price{
	display: block;
    order: 2;
}

#js-product-list .product_content.list .product-price-and-shipping .price-sale{
	display: block;
    order: 1;
	margin-bottom: 5px;
}

#js-product-list .product_content.list .list-product-infos .action-more a{
	display: block;
    text-decoration: underline;
    margin: 15px 0;
    color: #333e48;
    font-size: 14px;
}

#js-product-list .product_content.list .product_name{
	font-size: 18px !important;
}

#js-product-list .product_content.list .img_block .add-to-links{
	display: none !important;
}

#js-product-list .product_content.list .list-main-actions li{
	list-style: none;
}

#js-product-list .product_content.list .list-main-actions li:nth-child(4), #js-product-list .product_content.list .list-main-actions li.quick-view{
	display: none !important;
}

#js-product-list .product_content.list .list-main-actions .product-add-to-cart{
	margin-top: 20px;
}

#js-product-list .product_content.list .list-main-actions .product-add-to-cart button{
	width: 100%;
    padding: 6px 0;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    background: var(--hovercolor);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 33px;
	cursor: pointer;
}

#js-product-list .product_content.list .compare-button{
	display: flex;
    align-items: center;
	justify-content: center;
}

.pos-sale-product-widget .js-product-miniature .inner_desc{
	margin-top: -15px;
}

#js-product-list .product_content.list .list-main-actions li.cart .ajax_add_to_cart_button.disabled{
	width: 100%;
    padding: 6px 0;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    background: var(--hovercolor);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 33px;
    cursor: pointer;
    display: block;
    text-align: center;
    margin-top: 15px;
    opacity: 0.5;
}	

#js-product-list .product_content.list .compare-button:before{
	content: '\e911';
    font-size: 1.3125rem;
    font-family: "roadthemes-icon";
    display: block;
    margin-right: 5px;
}

#js-product-list .product_content.list .list-main-actions li.cart{
	margin-bottom: 15px;
}

#js-product-list .product_content.list .list-main-actions li.compare a{
	font-size: 16px;
    color: #333e48;
	padding: 0 15px;
}

.page-title-wrapper.p_tilte_small .page-header h1, .page-title-wrapper.p_tilte_small .card-block h1, body#contact h1{
	text-align: left;
	color: #333e48;
	font-size: 28px;
}
/* END CATEGORY PAGE - PRODUCT LISTING */

/* CONTACT PAGE */
body#contact .page-title-wrapper.p_tilte_small{
	padding: 20px 0 !important;
}

#contact .content-contact .contact-title {
    border-bottom: 1px solid #ebebeb;
}

#contact .content-contact .contact-title {
    font-size: 28px;
    line-height: 1;
    margin: 0 0 5px;
	margin-bottom: 20px;
}

#contact .content-contact .contact-title span {
    display: inline-block;
    position: relative;
    margin-bottom: 0;
    padding: 0 0 12px;
}

#contact .content-contact .contact-title span:after {
    content: '';
    width: 100%;
    border-bottom: 2px solid #b0cb52;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 1;
}

#contact .content-contact strong{
	font-weight: 600;
}

#contact .content-contact .border-bottom {
	margin-bottom: 20px;
    padding-bottom: 20px;
	word-wrap: break-word;
}

#contact .content-contact h3 {
    margin: 0 0 20px;
}

#contact .content-contact .flex-layout {
    grid-gap: 15px;
}

#contact .content-contact .flex-layout .icon {
    font-size: 28px;
    line-height: 1;
    position: relative;
    padding: 8px 0 0;
}

#contact .section{
	margin: 1em -100%;
    margin: 1em calc(50% - 50vw);
}

#contact .content-contact{
	margin-top: 80px;
}

@media (max-width: 360px){
    #contact .content-contact .flex-layout .content .subtitle br{
		display: none !important;
	}
	
	#contact .content-contact .flex-layout{
		flex-wrap: nowrap !important;
	}
}

@media (min-width: 768px){
    #contact .content-contact .border-bottom {
        border-bottom: 1px solid #ebebeb;
    }
}
/* END CONTACT PAGE */

/* END CMS PAGE */
#cms #wrapper h2{
	color: var(--hovercolor);
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 20px;
}

#cms #wrapper h3{
	color: #888888;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 15px;
}

#cms #wrapper p{
   text-align: justify;
}

#cms .breadcrumb{
	margin-bottom: 1.875rem;
}
/* END CMS PAGE */

/* CART PAGE */
#cart .cart-grid .product-line-grid-left, #cart .cart-grid  .product-line-grid-right .row > div{
	color: #747474;
    font-weight: 400;
    font-size: 14px;
}

#cart .cart-grid .product-line-info a{
	color: #3e3e3e;
    font-size: 16px;
	font-weight: 400;
}

#cart .cart-grid .price{
	color: #666;
	font-size: 16px;
    font-weight: 400;
}

#cart .cart-grid .product-price strong{
	color: #666;
	font-weight: 400;
    font-size: 14px;
}

#cart .cart-grid .cart-items .cart-item:last-child{
	border-bottom: 1px solid #dddddd;
}

#cart .cart-grid .qty input{
	display: block;
    width: 120px;
    text-align: center;
    height: 45px;
    border-radius: 3px;
}

#cart .cart-grid .cart-summary-line span{
	font-size: 14px;
    font-weight: 400;
    color: #666;
}

.cart-summary-totals span{
	color: #666 !important;
	font-weight: 600 !important;
	font-size: 16px !important;
}
/* END CART PAGE */

/* USER ACCOUNT */
body#identity .breadcrumb, body#addresses .breadcrumb, body#history .breadcrumb, body#order-slip .breadcrumb, body#module-psgdpr-gdpr .breadcrumb, body#module-ps_emailalerts-account .breadcrumb, body#authentication .breadcrumb{
	margin-bottom: 1.875rem;
}

body#my-account .links .link-item i{
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

body#my-account .links .link-item i:hover{
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

@media(max-width: 450px){
	body#module-psgdpr-gdpr #exportDataToCsv, body#module-psgdpr-gdpr #exportDataToPdf{
		font-size: 11px !important;
		font-weight: 600;
	}
}
/* END USER ACCOUNT */

.elementor-element-zixehlx > .elementor-container > .elementor-row > .elementor-element .elementor-image > a{
	width: 242px;
	height: 242px;
	margin: 0 auto;
	overflow: hidden;
}

.elementor-element-kc86g0o > .elementor-container{
	padding: 0 15px;
}

.elementor-element-ufeedqo{
	padding: 0 15px;
}

.elementor-element-cwgktm8 .elementor-column-wrap{
	padding-right: 0;
}

.elementor-element-zz68qxh .elementor-column-wrap{
	padding-left: 0;
}

.elementor-element-yhaxubx{
	padding: 0 15px;
}

/*.elementor-element-x6rb0zq, .elementor-element-bdj1od1, .elementor-element-bzqxsk3{
	padding-right: 10px;
}*/	

/*.pos-producttabs-widget > .tab-content{
	padding-right: 10px;
    padding-left: 10px;
}*/

.elementor-element-kc86g0o > .elementor-container > .elementor-row div:last-child .slick-slide{
	padding-right: 1px !important;
}

.elementor-element-kc86g0o > .elementor-container > .elementor-row div:first-child .slick-slide{
	padding-left: 0 !important;
}

.elementor-element-kc86g0o > .elementor-container > .elementor-row > div:not(.elementor-element-kc86g0o > .elementor-container > .elementor-row > div:last-child){
	padding-right: 15px; 
}


@media(max-width: 767px){
	.elementor-element-vfnqlnp > .elementor-column-wrap{
		padding-left: 5px !important;
		padding-right: 5px !important;
	}
	
	.elementor-element-pzrklpw > .elementor-column-wrap{
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	
	.elementor-element-kc86g0o > .elementor-container > .elementor-row > div:not(.elementor-element-kc86g0o > .elementor-container > .elementor-row > div:last-child) {
		padding-right: 0;
	}
	
	/*.pos-producttabs-widget .tab-content .tab-pane{
		padding-left: 5px;
	}*/
	
	.pos-producttabs-widget .js-product-miniature{
		border-left: 1px solid #ebebeb
	}
	
}

.elementor-element-wdufdlh .slick-track > .slick-slide img{
	margin-left: 0;
	margin-right: 0;
}

.pos-brand-widgets .brand-item {
    padding: 5px;
}

.elementor-element-fpwffkv > .elementor-container, .elementor-element-nyoethd > .elementor-container{
	padding: 0 5px;
}

@media(min-width: 768px){
	.pos-sale-product-widget{
		/*max-height: 844px;*/
	}
}

.elementor-4010000 .elementor-element.elementor-element-vxhrnhn .pos-menu-horizontal .menu-item:hover > a{
	border-color: transparent !important;
}

#_desktop_megamenu .menu-dropdown .pos-menu-col > a{
	font-weight: bold;
}

#_desktop_megamenu .menu-dropdown .pos-menu-col ul a{
	line-height: 1.8;
}

.main-menu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .ul-column.column_dropdown .submenu-item .category-sub-menu{
	display: none;
}

.images-quickviews .product-images .thumb-container img.selected{
	border: 1px solid var(--hovercolor) !important;
}

#header .location-block .elementor-icon i.fa:before{
	content: "\e902" !important;
	font-family: 'icomoon' !important;
}

#header .entreprise-block .elementor-icon i.fa:before{
	content: "\e901" !important;
	font-family: 'icomoon' !important;
}

#header .account-login i.icon-rt-user:before{
	content: "\e900" !important;
	font-family: 'icomoon' !important;	
}

#header .account-login i.icon-rt-user{
	margin-bottom: 13px;
    display: block;
	font-size: 26px !important;
}

#module-poswishlist-mywishlist h1{
	margin-top: 30px;
}

#module-poswishlist-mywishlist .breadcrumb_container .container{
	padding: 0;
}

.pos-slideshow-wrapper .desc-banner{
	top: initial !important;
	bottom: 20% !important;
}

.pos-product-widget .slick-list.draggable{
	border-radius: 9px;
}

#index .pos-slideshow .slideshow-item .slider-item{
	margin-top: 10px;
}

@media(min-width: 1024px){
	#index .elementor-element-s3qmr0o .home-banner img{
		height: 250px !important;
		width: 100% !important;
		max-width: inherit !important;
	}
}

#index .home-banner img{
	border-radius: 9px
}

@media(max-width: 767px){
	.elementor-4010000 .elementor-element.elementor-element-mnholhk > .elementor-widget-container {
		margin: 0 9px 0 0 !important;
	}
	
	.elementor-element-qylgfaz{
		margin-right: 9px;
	}
}
















@media(max-width:567px){
.elementor-4010000 .elementor-element.elementor-element-dunfmwu {
    width: 25% !important;
}
.elementor-4010000 .elementor-element.elementor-element-ypzjxde {
    width: 50% !important;
}
.elementor-4010000 .elementor-element.elementor-element-phkmmfh {
    width: 25% !important;
}}

#index .brand-logo .slick-track{
	margin: 0 auto !important;
}

.pos-menu-horizontal .col-sm-2{
	width: 19% !important;
}

#product #product-availability .material-icons.product-last-items, #product #product-availability .material-icons.product-unavailable{
	line-height: 24px;
}

#index .pos-brand-widgets .brand-item > a > img{
	max-height: 50px;
}

#_desktop_megamenu .ul-column > .submenu-item{
	margin-bottom: 0 !important;
}

@media(min-width: 768px){
	#footer > div > div.elementor-inner > div > section.elementor-element.elementor-element-ihblfoi.elementor-section-boxed.elementor-section-height-default.elementor-section-height-default.elementor-section.elementor-top-section > div > div > div.elementor-element.elementor-element-tpefjbl.elementor-column.elementor-col-25.elementor-top-column > div > div > div > div > div > h2 > span.navbar-toggler.collapse-icons{
		display: none !important;
	}
}

#footer .footer-title{
	margin-bottom: 9px;
    font-size: 16px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    color: #333E48;
    text-transform: capitalize;
    display: inline-block;
}