@charset "UTF-8";
/*! 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.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes bounce {
  0%, 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: translateZ(0);
    transform: translateZ(0); }
  40%, 43% {
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  40%, 43%, 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); }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

@keyframes bounce {
  0%, 20%, 53%, 80%, 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: translateZ(0);
    transform: translateZ(0); }
  40%, 43% {
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  40%, 43%, 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); }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

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

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

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

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

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

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

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

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(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: scaleX(1);
    transform: scaleX(1); } }

@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(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: scaleX(1);
    transform: scaleX(1); } }

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

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

@keyframes shake {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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: rotate(15deg);
    transform: rotate(15deg); }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg); }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); } }

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

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

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

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

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

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

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

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

@-webkit-keyframes jello {
  0%, 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.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

@keyframes jello {
  0%, 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.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

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

@-webkit-keyframes bounceIn {
  0%, 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: scaleX(1);
    transform: scaleX(1); } }

@keyframes bounceIn {
  0%, 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: scaleX(1);
    transform: scaleX(1); } }

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

@-webkit-keyframes bounceInDown {
  0%, 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 {
  0%, 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 {
  0%, 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 {
  0%, 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 {
  0%, 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 bounceInRight {
  0%, 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; } }

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

@-webkit-keyframes bounceInUp {
  0%, 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, -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: translateZ(0);
    transform: translateZ(0); } }

@keyframes bounceInUp {
  0%, 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, -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: translateZ(0);
    transform: translateZ(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 {
  0% {
    opacity: 0; }
  to {
    opacity: 1; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes fadeInUpBig {
  0% {
    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 {
  0% {
    opacity: 1; }
  to {
    opacity: 0; } }

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

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

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

@keyframes fadeOutDown {
  0% {
    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 {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes fadeOutDownBig {
  0% {
    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 {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes fadeOutLeft {
  0% {
    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 {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes fadeOutLeftBig {
  0% {
    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 {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes fadeOutRight {
  0% {
    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 {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes fadeOutRightBig {
  0% {
    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 {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes fadeOutUp {
  0% {
    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 {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes fadeOutUpBig {
  0% {
    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 {
  0% {
    -webkit-transform: perspective(400px) rotateY(-1turn);
    transform: perspective(400px) rotateY(-1turn); }
  0%, 40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg); }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg); }
  50%, 80% {
    -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); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(-1turn);
    transform: perspective(400px) rotateY(-1turn); }
  0%, 40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg); }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg); }
  50%, 80% {
    -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); }
  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 {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; }
  0%, 40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg); }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; }
  0%, 40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg); }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-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 {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; }
  0%, 40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg); }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; }
  0%, 40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg); }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-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 {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; } }

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

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

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

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

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

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

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg); }
  60%, 80% {
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg); }
  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 {
  0% {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

@keyframes lightSpeedOut {
  0% {
    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 {
  0% {
    transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0; }
  0%, to {
    -webkit-transform-origin: center; }
  to {
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes hinge {
  0% {
    transform-origin: top left; }
  0%, 20%, 60% {
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    transform-origin: top left; }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(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% {
    transform-origin: top left; }
  0%, 20%, 60% {
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    transform-origin: top left; }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(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; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes zoomOut {
  0% {
    opacity: 1; }
  50% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50%, 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 {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); } }

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

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

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

:root {
  --shop-color-bg: #ffffff;
  --shop-color-main: #171718;
  --shop-color-text: #252a2b;
  --shop-color-title: #333333;
  --shop-color-hover: #2f3030;
  --shop-color-button: #161718;
  --shop-color-border: #eae4e8;
  --topbar-bg: #193d87;
  --topbar-color-text: #ffffff;
  --home-category-bg-1: #faf1ff;
  --home-category-bg-2: #faf4eb;
  --home-category-bg-3: #f4e6e5;
  --home-category-bg-4: #e6f2f4;
  --home-category-bg-5: #fff6f6;
  --home-coupon-bg: #ffffff;
  --home-coupon-light: #ffffff;
  --home-coupon-border: #f8d0d3;
  --home-coupon-text: #333333;
  --home-collection2-bg: #adc4d2;
  --home-collection2-title: #ff0000;
  --home-collection3-bg: #e9dabe;
  --footer-bg-color-1: #1c4290;
  --footer-bg-color-2: #171717;
  --footer-bg-color-copyright: #1c4290;
  --footer-color-title: #A3A3A3;
  --footer-color-text: #A3A3A3;
  --footer-color-hover: #A3A3A3;
  --bg-color-style01: #ffffff;
  --btn-color-style01: #ff0000;
  --btn-hover-color-style01: #e70505;
  --bg-color-style02: #f7f7f7;
  --btn-color-style02: #ff0000;
  --btn-hover-color-style02: #e70505;
  --bg-color-style03: #ffffff;
  --btn-color-style03: #ff0000;
  --btn-hover-color-style03: #e70505;
  --bg-color-style04: #ffffff;
  --btn-color-style04: #ff0000;
  --btn-hover-color-style04: #e70505; }

@font-face {
  font-family: 'FontAwesome';
  src: url("//theme.hstatic.net/200000912279/1001272816/14/fontawesome-webfont.eot?v=907");
  src: url("//theme.hstatic.net/200000912279/1001272816/14/fontawesome-webfont.eot?v=907") format("embedded-opentype"), url("//theme.hstatic.net/200000912279/1001272816/14/fontawesome-webfont.woff2?v=907") format("woff2"), url("//theme.hstatic.net/200000912279/1001272816/14/fontawesome-webfont.woff?v=907") format("woff"), url("//theme.hstatic.net/200000912279/1001272816/14/fontawesome-webfont.ttf?v=907") format("truetype"), url("//theme.hstatic.net/200000912279/1001272816/14/fontawesome-webfont.svg?v=907") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.fa {
  font-family: "FontAwesome" !important; }

html, body {
  border: 0;
  background-color: #fff; }

html {
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: 100%; }

img {
  max-width: 100%; }

body {
  color: var(--shop-color-text);
  line-height: 1.45;
  font-size: 14px;
  background: var(--shop-color-bg);
  font-family: "Noto Sans", sans-serif;
  overflow-x: hidden;
  position: initial; }

.mt-130 {
  margin-top: 130px; }

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

/* 1.2 - HTML5 Elements */
article, aside, details, figcaption, figure, dialog, footer, header, hgroup, menu, nav, section {
  display: block; }

/* 1.3 - Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--shop-color-title);
  margin: 0 0 13px 0;
  font-weight: 700;
  line-height: 1.2; }

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: var(--shop-color-title); }

img {
  max-width: 100%; }

/* 1.4 - Links and Buttons */
a {
  color: var(--shop-color-text);
  text-decoration: none;
  outline: none;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

a:hover, a:focus {
  color: var(--shop-color-hover);
  text-decoration: none;
  outline: none; }

a:active {
  outline: none; }

strong {
  font-weight: 700; }

em {
  font-style: italic; }

textarea {
  resize: none; }

/* 1.5 - Lists */
ul, ol {
  padding: 0;
  margin: 0;
  list-style-type: none; }

.typeList-style * {
  max-width: 100% !important; }

.typeList-style ul {
  list-style: initial;
  padding-left: 20px; }

.typeList-style ol {
  list-style-type: decimal;
  padding-left: 20px; }

.typeList-style ul ul {
  list-style-type: circle; }

.typeList-style ul ul ul {
  list-style-type: square; }

.typeList-style ul li, .typeList-style ol li {
  margin: 5px 0; }

/* 1.6 - Variable */
/*-----End Variable---*/
/* 1.7 - Button */
.button {
  position: relative;
  display: inline-block;
  z-index: 1;
  overflow: hidden;
  padding: 8px 24px;
  line-height: normal;
  color: #fff;
  border-radius: 20px;
  background-color: var(--shop-color-hover);
  border: 0;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  outline: none !important;
  -webkit-transition: all 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86); }

.button:before {
  content: '';
  display: block;
  background-color: var(--shop-color-button);
  position: absolute;
  left: -2px;
  top: 0;
  right: -2px;
  bottom: 0;
  z-index: -1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86); }

.button.btnwhite {
  color: var(--shop-color-text);
  border-color: var(--shop-color-text); }

.button.btnwhite:before {
  background-color: #ffffff; }

.button.btnred {
  background-color: #e70505;
  border-color: #e70505; }
  .style_01 .button.btnred {
    background-color: var(--btn-hover-color-style01);
    border-color: var(--btn-hover-color-style01); }
  .style_02 .button.btnred {
    background-color: var(--btn-hover-color-style02);
    border-color: var(--btn-hover-color-style02); }
  .style_03 .button.btnred {
    background-color: var(--btn-hover-color-style03);
    border-color: var(--btn-hover-color-style03); }
  .style_04 .button.btnred {
    background-color: var(--btn-hover-color-style04);
    border-color: var(--btn-hover-color-style04); }

.button.btnred:before {
  background: #ff0000; }
  .style_01 .button.btnred:before {
    background: var(--btn-color-style01); }
  .style_02 .button.btnred:before {
    background: var(--btn-color-style02); }
  .style_03 .button.btnred:before {
    background: var(--btn-color-style03); }
  .style_04 .button.btnred:before {
    background: var(--btn-color-style04); }

@media (min-width: 992px) {
  .button:hover,
  .button:focus {
    border-color: var(--shop-color-hover);
    color: #ffffff; }
  .button:hover:before, .button:focus:before {
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1); }
  .button.btnwhite:hover, .button.btnwhite:focus {
    border-color: var(--shop-color-hover);
    background-color: var(--shop-color-hover);
    color: #ffffff; }
  .button.btnred:hover,
  .button.btnred:focus {
    color: #fff;
    border-color: #ff0000; }
    .style_01 .button.btnred:hover, .style_01
    .button.btnred:focus {
      border-color: var(--btn-hover-color-style01); }
    .style_02 .button.btnred:hover, .style_02
    .button.btnred:focus {
      border-color: var(--btn-hover-color-style02); }
    .style_03 .button.btnred:hover, .style_03
    .button.btnred:focus {
      border-color: var(--btn-hover-color-style02); }
    .style_04 .button.btnred:hover, .style_04
    .button.btnred:focus {
      border-color: var(--btn-hover-color-style04); } }

/* 1.8 - Anmaiton css3 */
@-webkit-keyframes marginRight {
  0% {
    background-position: 90%; }
  100% {
    background-position: 15%; } }

@keyframes marginRight {
  0% {
    background-position: 90%; }
  100% {
    background-position: 15%; } }

@-webkit-keyframes h-alo-ring-ring {
  0% {
    transform: rotate(0deg) scale(1) skew(1deg); }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg); }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg); }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg); }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg); }
  50% {
    transform: rotate(0deg) scale(1) skew(1deg); }
  100% {
    transform: rotate(0deg) scale(1) skew(1deg); } }

@keyframes h-alo-ring-ring {
  0% {
    transform: rotate(0deg) scale(1) skew(1deg); }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg); }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg); }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg); }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg); }
  50% {
    transform: rotate(0deg) scale(1) skew(1deg); }
  100% {
    transform: rotate(0deg) scale(1) skew(1deg); } }

@-webkit-keyframes widthAnimation {
  0% {
    width: 0;
    opacity: 1; }
  80% {
    width: 100%;
    opacity: 1; }
  100% {
    width: 100%;
    opacity: 0; } }

@keyframes widthAnimation {
  0% {
    width: 0;
    opacity: 1; }
  80% {
    width: 100%;
    opacity: 1; }
  100% {
    width: 100%;
    opacity: 0; } }

@-webkit-keyframes shine {
  100% {
    left: 125%; } }

@keyframes shine {
  100% {
    left: 125%; } }

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

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

@keyframes scroll-in {
  0% {
    top: 2px; }
  49% {
    top: -14px; }
  50% {
    top: 19px; }
  100% {
    top: 2px; } }

@keyframes scroll-out {
  0% {
    top: 2px; }
  49% {
    top: 19px; }
  50% {
    top: -14px; }
  100% {
    top: 2px; } }

@keyframes popoverTheLookDot {
  from {
    opacity: 0.6;
    transform: scale(0.6); }
  to {
    opacity: 0;
    transform: scale(1.2); } }

@keyframes scaleDown1 {
  0% {
    transform: scale(1);
    opacity: 0; }
  1% {
    transform: scale(0); }
  100% {
    transform: scale(1);
    opacity: 1; } }

@keyframes rotate {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes rotateIconLoad {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0; }
  100% {
    background-position: 468px 0; } }

@-webkit-keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0; }
  100% {
    background-position: 468px 0; } }

@keyframes pulseSmall {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1; }
  50% {
    opacity: 0.6; }
  100% {
    -webkit-transform: scale(3.4);
    transform: scale(3.4);
    opacity: 0; } }

@keyframes shine {
  100% {
    left: 125%; } }

@keyframes spinner {
  to {
    transform: rotate(360deg); } }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@-webkit-keyframes slideshowFade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px); }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1; } }

@keyframes slideshowFade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1; } }

@keyframes pulsate {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1; }
  50% {
    opacity: 0.6; }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0; } }

@keyframes iconSkew {
  0% {
    transform: rotate(0deg) scale(1) skew(1deg); }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg); }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg); }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg); }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg); }
  50% {
    transform: rotate(0deg) scale(1) skew(1deg); }
  100% {
    transform: rotate(0deg) scale(1) skew(1deg); } }

@keyframes pulselive {
  0% {
    opacity: 1; }
  50% {
    opacity: 0.6; }
  100% {
    opacity: 0.3; } }

@keyframes euiBeaconPulseSmall {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1; }
  50% {
    opacity: 0.6; }
  100% {
    -webkit-transform: scale(1.6);
    transform: scale(1.4);
    opacity: 0; } }

@keyframes rightarrow {
  0% {
    transform: translateX(-8px); }
  100% {
    transform: translateX(0); } }

@keyframes downscroll {
  0% {
    transform: translateY(-3px); }
  100% {
    transform: translateY(3px); } }

/* 2.0 - CSS  General */
.dFlex-row {
  display: flex;
  display: -ms-flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap; }

@media (max-width: 767.98px) {
  .dFlex-row {
    margin-left: -7px;
    margin-right: -7px; }
  .col-pd {
    padding: 0 7px; } }

.mainBody-theme.body-scroll {
  overflow: hidden; }

table {
  border-spacing: 0;
  width: 100%;
  border-collapse: collapse; }

table tr td p, table tr th p {
  margin-bottom: 0; }

.owl-carousel.slider-owl .owl-item img {
  width: auto !important;
  text-align: center;
  margin: auto;
  overflow: hidden; }

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: initial !important; }

img.lazyload:not([src]) {
  visibility: hidden; }

/*.product-loop.product-horizontal .product--image .prod-img img:not(.lazyloaded) {min-height:140px;}*/
.lazyloading {
  opacity: 0.3;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  transition: opacity 300ms, filter 400ms;
  -webkit-transition: opacity 300ms, filter 400ms; }

.lazyloaded {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
  transition: opacity 300ms, filter 400ms;
  -webkit-transition: opacity 300ms, filter 400ms; }

.sitebox-recaptcha {
  padding: 6px 0 0;
  text-align: left;
  color: #9e9e9e;
  font-size: 13px;
  clear: both; }

.sitebox-recaptcha a {
  color: #2962ff; }

.grecaptcha-badge {
  visibility: hidden; }

.owlCarousel-style.owl-carousel .owl-nav .owl-prev,
.owlCarousel-style.owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: -50px;
  z-index: 3;
  width: 30px;
  height: 30px;
  line-height: 28px;
  font-size: 14px;
  border-radius: 50%;
  color: #858380;
  background: #fff;
  border: 1px solid var(--shop-color-border);
  outline: none;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  -webkit-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s; }
  .owlCarousel-style.owl-carousel .owl-nav .owl-prev span,
  .owlCarousel-style.owl-carousel .owl-nav .owl-next span {
    font-size: 0; }
    .owlCarousel-style.owl-carousel .owl-nav .owl-prev span:before,
    .owlCarousel-style.owl-carousel .owl-nav .owl-next span:before {
      content: "";
      font-family: 'FontAwesome';
      font-size: 22px; }

.owlCarousel-style.owl-carousel .owl-nav .owl-prev {
  right: 47px; }
  .owlCarousel-style.owl-carousel .owl-nav .owl-prev span:before {
    content: "\f104"; }

.owlCarousel-style.owl-carousel .owl-nav .owl-next {
  right: 7px; }
  .owlCarousel-style.owl-carousel .owl-nav .owl-next span:before {
    content: "\f105"; }

.owlCarousel-style.owl-carousel .owl-nav .owl-prev.disabled,
.owlCarousel-style.owl-carousel .owl-nav .owl-next.disabled {
  opacity: 0.5; }
  .owlCarousel-style.owl-carousel .owl-nav .owl-prev.disabled:hover,
  .owlCarousel-style.owl-carousel .owl-nav .owl-next.disabled:hover {
    background: #fff;
    color: #858380;
    cursor: no-drop; }

.owlCarousel-style.owl-carousel:not(.owl-loaded) .slider-item {
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%; }

.owlCarousel-style.owl-carousel .owl-stage {
  margin: 5px 0;
  display: flex;
  display: -ms-flex; }

.owlCarousel-style .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  text-align: center; }
  .owlCarousel-style .owl-dots .owl-dot {
    margin: 0 3px;
    outline: 0; }
  .owlCarousel-style .owl-dots .owl-dot span {
    display: flex;
    display: -ms-flex;
    display: -webkit-flex;
    width: 7px;
    height: 7px;
    margin: 5px;
    border-radius: 50%;
    background: #928c8c; }
  .owlCarousel-style .owl-dots .owl-dot.active {
    border-radius: 50%;
    border: 2px solid #000000; }
  .owlCarousel-style .owl-dots .owl-dot.active span {
    background: #000000; }

.owlCarousel-style .product-loop .product-inner {
  margin-bottom: 0; }

@media (min-width: 992px) and (max-width: 1199.98px) {
  .owlCarousel-style.owl-carousel .owl-nav .owl-prev {
    right: 47px; }
  .owlCarousel-style.owl-carousel .owl-nav .owl-next {
    right: 7px; } }

@media (min-width: 992px) {
  .owlCarousel-style.owl-carousel .owl-nav .owl-prev:hover,
  .owlCarousel-style.owl-carousel .owl-nav .owl-next:hover {
    background: var(--shop-color-button);
    color: #fff; } }

@media (max-width: 767.98px) {
  .owlCarousel-style .owl-item:hover {
    box-shadow: none; }
  .owlCarousel-style.owl-carousel .owl-nav .owl-prev, .owlCarousel-style.owl-carousel .owl-nav .owl-next {
    top: -45px; }
    .owlCarousel-style.owl-carousel .owl-nav .owl-prev span:before, .owlCarousel-style.owl-carousel .owl-nav .owl-next span:before {
      font-size: 18px; }
  .owlCarousel-style.owl-carousel .owl-nav .owl-prev {
    right: 45px; }
  .owlCarousel-style.owl-carousel .owl-nav .owl-next {
    right: 7px; }
  .owlCarousel-style .owl-dots .owl-dot span {
    width: 5px;
    height: 5px;
    margin: 4px; }
  .owlCarousel-style .owl-dots {
    bottom: -30px; } }

.owlCarousel-dfex.owl-loaded .owl-stage {
  -webkit-display: flex;
  -ms-display: flex;
  display: flex;
  margin-top: 3px; }

.owlCarousel-dfex.owl-loaded .owl-stage:after {
  display: none; }

.owlCarousel-dfex.owl-loaded .product-loop {
  height: 100%;
  margin-bottom: 0;
  padding-bottom: 14px; }

.owlCarousel-dfex.owl-carousel:not(.owl-loaded) {
  display: flex;
  display: -ms-flex;
  overflow: hidden; }

.owlCarousel-dfex .owl-item img {
  width: initial; }

@media (min-width: 1200px) {
  .owlCarousel-dfex:not(.owl-loaded) .product-loop {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%; } }

@media (max-width: 1199.98px) and (min-width: 992px) {
  .owlCarousel-dfex:not(.owl-loaded) .product-loop {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%; } }

@media (max-width: 991.98px) {
  .owlCarousel-dfex:not(.owl-loaded) .product-loop {
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%; } }

@media (max-width: 767.98px) {
  .owlCarousel-dfex.owl-loaded .product-loop {
    padding-bottom: 0; } }

.banner-hover-effect {
  position: relative;
  overflow: hidden;
  display: block; }
  .banner-hover-effect:before, .banner-hover-effect::after {
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    background-color: rgba(255, 255, 255, 0.15);
    transition: all .5s ease-in-out 0s;
    -webkit-transition: all .5s ease-in-out 0s;
    -ms-transition: all .5s ease-in-out 0s; }
  .banner-hover-effect:before {
    top: 0;
    left: 0;
    z-index: 1; }
  .banner-hover-effect:after {
    bottom: 0;
    right: 0;
    z-index: 2; }
  @media (min-width: 1200px) {
    .banner-hover-effect:hover:before, .banner-hover-effect:hover:after {
      width: 100%;
      height: 100%; }
    .banner-hover-effect img {
      display: block;
      margin: 0;
      height: auto;
      transition: all 0.5s ease-in-out;
      -moz-transition: all 0.5s ease-in-out;
      -webkit-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out; }
    .banner-hover-effect:hover img {
      -moz-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      -o-transform: scale(1.1);
      -ms-transform: scale(1.1);
      transform: scale(1.1); } }

.flow-zoom {
  overflow: hidden; }
  .flow-zoom img {
    transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -webkit-transition: all 400ms ease; }
  .flow-zoom:hover img {
    transform: scale(1.15);
    -ms-transform: scale(1.15);
    -webkit-transform: scale(1.15); }

.tooltip-cs {
  position: relative; }
  .tooltip-cs .tooltip-hover {
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    height: 24px;
    line-height: 24px;
    background: #17191a;
    color: #fff;
    font-size: 10px;
    text-decoration: none;
    white-space: nowrap;
    padding: 0 8px;
    border-radius: 3px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease; }
    .tooltip-cs .tooltip-hover:after {
      content: "";
      display: block;
      position: absolute;
      bottom: 1px;
      left: 50%;
      width: 0;
      height: 0;
      border: solid;
      border-width: 8px 8px 0 8px;
      border-color: transparent;
      border-top-color: #000;
      -webkit-transform: translate(-50%, 100%);
      transform: translate(-50%, 100%); }
  .tooltip-cs:hover .tooltip-hover {
    opacity: 1;
    visibility: visible; }

/* 2.2 - Breadcrumb */
.breadcrumb-shop {
  background: var(--shop-color-bg);
  padding: 0 0px;
  border-bottom: 1px solid #dfe2e6;
  border-top: 1px solid #dfe2e6; }

.breadcrumb-paralax {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 0px 0;
  margin-bottom: 40px;
  background-color: #fafafa; }

.breadcrumb-list {
  overflow: hidden; }

.breadcrumb-list .breadcrumb-arrows {
  font-size: 13px;
  padding: 10px 0;
  background: transparent;
  border-radius: 0;
  margin: 0;
  list-style: none; }

.breadcrumb-list .breadcrumb-arrows > li {
  display: inline-block; }

.breadcrumb-list .breadcrumb-arrows > li strong {
  font-weight: 400; }

.breadcrumb-list .breadcrumb-arrows > li a {
  color: var(--shop-color-text); }

.breadcrumb-list .breadcrumb-arrows > li + li:before {
  padding: 0 3px;
  margin-left: 5px;
  color: #ccc;
  font-family: 'FontAwesome';
  content: "/\00a0"; }

@media (max-width: 767.98px) {
  .breadcrumb-list .breadcrumb-arrows {
    padding: 7px 0;
    font-size: 12px;
    display: block;
    white-space: nowrap;
    overflow: scroll; }
  .breadcrumb-list .breadcrumb-arrows > li + li:before {
    padding: 0 2px; }
  .breadcrumb-list .breadcrumb-arrows::-webkit-scrollbar {
    display: none; }
  .breadcrumb-list .breadcrumb-arrows {
    -ms-overflow-style: none;
    scrollbar-width: none; } }

/* 2.3 - Pagination */
#pagination {
  margin: 30px 0; }
  #pagination .pagination {
    margin: 0;
    padding: 0;
    justify-content: center;
    -webkit-justify-content: center; }
    #pagination .pagination > li {
      display: inline-block;
      vertical-align: middle; }
      #pagination .pagination > li:not(:last-child) {
        margin-right: 8px; }
      #pagination .pagination > li > span, #pagination .pagination > li a {
        position: relative;
        float: left;
        line-height: 33px;
        text-decoration: none;
        color: #333e48;
        background-color: #fff;
        border: 1px solid #dee2e6;
        width: 35px;
        height: 35px;
        text-align: center;
        border-radius: 0 !important;
        font-weight: 600;
        padding: 0;
        cursor: pointer; }
        #pagination .pagination > li > span.current, #pagination .pagination > li a.current {
          background-color: var(--shop-color-main);
          border-color: var(--shop-color-main);
          color: #fff; }
      #pagination .pagination > li > a:hover, #pagination .pagination > li > a:focus, #pagination .pagination > li > span:hover, #pagination .pagination > li > span:focus {
        z-index: 2;
        color: #fff;
        background-color: var(--shop-color-hover);
        border-color: var(--shop-color-hover); }

/* 2.4 - 404 */
.layout-pageNot {
  padding: 40px 0; }

.layout-pageNot h1 span {
  display: block;
  color: #fff;
  font-size: 170px;
  font-weight: bold;
  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.2), 0 20px 20px rgba(0, 0, 0, 0.15); }

.layout-pageNot .subtext {
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 30px;
  font-weight: 400; }

@media (min-width: 992px) {
  /*.container{	max-width: 100%;padding-left: 20px;	padding-right: 20px;}*/
  .mainHeader .container-fluid, .topbar-bottom .container-fluid {
    padding-left: 20px;
    padding-right: 20px; }
  .col-lg-cus5 {
    -webkit-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; } }

@media (min-width: 1200px) {
  .container, .container-fluid {
    max-width: 1360px; } }

@media (min-width: 1400px) {
  .container, .container-fluid {
    padding-left: 75px;
    padding-right: 75px; }
  .mainHeader .container-fluid, .topbar-bottom .container-fluid {
    padding-left: 30px;
    padding-right: 30px; } }

@media (max-width: 992px) {
  .row-mg0 {
    margin: 0; } }

@media (max-width: 767.98px) {
  .container.container-pd, .container-fluid.container-pd {
    padding-left: 7px;
    padding-right: 7px; }
  .container.container-pd-parent {
    padding-left: 2px;
    padding-right: 2px; }
  .container.container-pd0 {
    padding-left: 0px;
    padding-right: 0px; }
  .row-mg-parent {
    margin: 0 -2px; } }

/* 2.5 - CSS Loading  */
.animated-background, .loading-mask .loading-mask__image .mask-line, .loading-mask .loading-mask__detail .mask-line {
  animation-duration: 1.25s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: #F6F6F6;
  background: linear-gradient(to right, #F6F6F6 8%, #F0F0F0 18%, #F6F6F6 33%);
  background-size: 800px 104px;
  position: relative; }

.loading-mask .loading-mask__image {
  position: relative;
  overflow: hidden;
  width: 100%; }

.loading-mask .loading-mask__detail {
  padding: 10px; }

.loading-mask .loading-mask__detail .mask-line {
  height: 10px;
  width: 100%;
  border-radius: 8px;
  margin: 4px 0; }
  .loading-mask .loading-mask__detail .mask-line:nth-child(2) {
    width: 80%; }
  .loading-mask .loading-mask__detail .mask-line:nth-child(3) {
    width: 65%; }

.product-loop-load {
  border: 1px solid #eae8e4;
  margin-left: -1px;
  margin-bottom: -1px; }

.product-loadding {
  padding-left: 0;
  padding-right: 0; }

.btn-loadmore {
  position: relative;
  color: var(--shop-color-button);
  border: 1px solid var(--shop-color-button);
  background: var(--shop-color-hover);
  margin-top: 20px;
  text-transform: initial;
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 25px; }

.btn-loadmore:before {
  background: #fff; }

.btn-loadmore:after {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 20px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: var(--shop-color-button);
  animation: spinner .6s linear infinite;
  opacity: 0;
  transition: opacity 1s ease; }

.btn-loadmore.btn-loading {
  padding-left: 40px;
  padding-right: 10px; }

.btn-loadmore.btn-loading:after {
  opacity: 1; }

.wrapperMain_content {
  min-height: 80vh;
  padding: 0; }
  @media (max-width: 1199.98px) and (min-width: 992px) {
    .wrapperMain_content {
      min-height: 65vh; } }

/*=== HEADER ++ FOOTER ++ MAINMENU ======================*/
.sitenav-content .btnclose {
  display: none;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 10px;
  top: 13px;
  z-index: 5;
  border: 0;
  background: transparent;
  text-align: center;
  outline: none; }
  .sitenav-content .btnclose svg {
    width: 16px;
    height: 30px; }

.sitenav-content__title {
  position: relative;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--shop-color-border);
  text-align: center; }
  .sitenav-content__title .btn-close {
    display: none;
    width: 32px;
    height: 30px;
    position: absolute;
    right: 0;
    top: -6px;
    border: 0;
    background: transparent;
    text-align: center;
    outline: none; }
    .sitenav-content__title .btn-close svg {
      width: 18px;
      height: 30px; }
  .sitenav-content__title .txt-title {
    font-size: 18px;
    color: var(--shop-color-title);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    font-weight: 500; }

.sitenav-content__block {
  padding-top: 20px; }

@media (min-width: 992px) {
  .sitenav-content .sitenav-boxscroll {
    overflow-y: scroll;
    max-height: 55vh;
    -webkit-overflow-scrolling: touch;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
    margin-right: -20px;
    padding-right: 20px; }
  .sitenav-content .sitenav-boxscroll::-webkit-scrollbar {
    width: 4px;
    height: 3px; }
  .sitenav-content .sitenav-boxscroll::-webkit-scrollbar-track {
    -webkit-border-radius: 2px;
    border-radius: 2px; }
  .sitenav-content .sitenav-boxscroll::-webkit-scrollbar-thumb {
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background: #e1e3e4;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }
  .sitenav-content .sitenav-boxscroll::-webkit-scrollbar-thumb:window-inactive {
    background: #e1e3e4; } }

@media (max-width: 767.98px) {
  .sitenav-content .btnclose {
    display: block; }
  .sitenav-content__title {
    text-align: left;
    padding-right: 40px; }
    .sitenav-content__title .btn-close {
      display: block; }
    .sitenav-content__title .txt-title {
      font-size: 15px; } }

.sitenav-locate .sitenav-content__block {
  padding-top: 15px; }
  .sitenav-locate .sitenav-content__block .boxaddress {
    border: 1px solid rgba(23, 23, 24, 0.18);
    border-radius: 5px;
    padding: 6px 15px;
    font-size: 13px;
    background: rgba(23, 23, 24, 0.1);
    color: var(--shop-color-text); }
    .sitenav-locate .sitenav-content__block .boxaddress span {
      display: block;
      font-weight: 500; }
  .sitenav-locate .sitenav-content__block .boxprovince {
    padding: 10px 0; }
    .sitenav-locate .sitenav-content__block .boxprovince .textprov {
      color: #000;
      font-weight: 500;
      margin-bottom: 10px; }
    .sitenav-locate .sitenav-content__block .boxprovince .listprov li {
      position: relative;
      cursor: pointer;
      padding: 10px 0 10px 35px;
      transition: background 0.4s ease;
      font-size: 13px;
      color: var(--shop-color-text);
      border-top: 1px dotted var(--shop-color-border); }
      .sitenav-locate .sitenav-content__block .boxprovince .listprov li .address-name {
        display: block;
        font-weight: 600; }
      .sitenav-locate .sitenav-content__block .boxprovince .listprov li .icmap {
        width: 18px;
        height: 18px;
        position: absolute;
        top: 15px;
        left: 8px; }
    .sitenav-locate .sitenav-content__block .boxprovince .listprov li:hover {
      background: rgba(23, 23, 24, 0.05); }
  .sitenav-locate .sitenav-content__block .boxfilter {
    margin-bottom: 3px; }
    .sitenav-locate .sitenav-content__block .boxfilter .filter-select {
      margin-right: -5px;
      margin-left: -5px;
      display: -ms-flexbox;
      display: flex; }
    .sitenav-locate .sitenav-content__block .boxfilter .filter-select .select-item {
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      -ms-flex-positive: 1;
      flex-grow: 1;
      min-width: 0;
      max-width: 50%;
      padding-left: 5px;
      padding-right: 5px;
      margin-bottom: 10px; }
    .sitenav-locate .sitenav-content__block .boxfilter .filter-select .select-item .field-select {
      position: relative; }
    .sitenav-locate .sitenav-content__block .boxfilter .filter-select .select-item .field-select:after {
      content: '';
      position: absolute;
      top: calc(50% - 5px);
      right: 12px;
      border: solid #666666;
      border-width: 0px 1px 1px 0;
      display: inline-block;
      padding: 3px;
      transform: rotate(45deg);
      -webkit-transform: rotate(45deg); }
    .sitenav-locate .sitenav-content__block .boxfilter .filter-select .select-item label {
      display: block;
      font-weight: 500;
      font-size: 13px;
      margin: 0 0 5px; }
    .sitenav-locate .sitenav-content__block .boxfilter .filter-select .select-item select {
      padding: 0px 8px;
      padding-right: 25px;
      cursor: pointer;
      outline: none;
      text-overflow: ellipsis;
      border-radius: 4px;
      height: 34px;
      line-height: 32px;
      background: #ffffff;
      border: 1px solid var(--shop-color-border);
      font-size: 13px;
      width: 100%;
      color: #000;
      font-weight: 500;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      -ms-appearance: none;
      -o-appearance: none;
      appearance: none; }
    .sitenav-locate .sitenav-content__block .boxfilter .filter-select .select-item select:-ms-expand {
      display: none; }
    .sitenav-locate .sitenav-content__block .boxfilter .filter-select .select-item select:invalid {
      color: #677279; }
    .sitenav-locate .sitenav-content__block .boxfilter .filter-select .select-item select [disabled] {
      color: #ededed;
      font-weight: 300; }
    .sitenav-locate .sitenav-content__block .boxfilter .filter-select .select-item select option {
      color: #000;
      font-weight: 500;
      line-height: 18px; }
    .sitenav-locate .sitenav-content__block .boxfilter .filter-select .select-item select option[value="null"] {
      color: #677279; }

.sitenav-overlay {
  background: rgba(225, 225, 225, 0.05);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: all 200ms linear; }

.sitenav-menu .mobile-menu__section .mobile-menu__section-title {
  font-size: 15px;
  color: var(--shop-color-title);
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 500;
  font-style: normal; }

.sitenav-menu .mobile-menu__section .mobile-menu__help-wrapper + .mobile-menu__help-wrapper {
  margin-top: 15px; }

.sitenav-menu .mobile-menu__section .mobile-menu__help-wrapper {
  color: #677279;
  display: flex;
  display: -ms-flex;
  align-items: center; }

.sitenav-menu .mobile-menu__section .mobile-menu__help-wrapper .icon--bi-phone {
  margin-right: 16px;
  width: 24px;
  height: 24px; }

.sitenav-menu .mobile-menu__section .mobile-menu__help-wrapper .icon--bi-email {
  margin-right: 18px;
  width: 22px;
  height: 22px; }

.sitenav-menu .mobile-menu__section .mobile-menu__help-wrapper a {
  border-bottom: 0 !important;
  text-transform: none !important; }

.sitenav-menu .menuList-links li.has-submenu.level0 > ul.submenu-links {
  border: 0; }

.sitenav-menu .menuList-links > li {
  border: 0; }

.sitenav-menu .menuList-links > li > a {
  font-weight: 600; }

.sitenav-menu .menuList-links > li.has-submenu .icon-plus-submenu:hover {
  border: none; }

.sitenav-menu .menuList-links .has-submenu.level0 > ul.submenu-links li a {
  font-weight: 500; }

.mainHeader {
  background: #fff;
  width: 100%;
  transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out; }
  .mainHeader .flex-container-header {
    margin: 0 -10px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    .mainHeader .flex-container-header > [class*='header-wrap-'] {
      padding: 0px 10px; }
  .mainHeader .header-wrap-menu .navbar-mainmenu {
    text-align: center; }
  .mainHeader .header-wrap-menu .menuList-main {
    margin: 0; }
    .mainHeader .header-wrap-menu .menuList-main > li {
      display: inline-block;
      margin: 0 12px;
      position: relative; }
      .mainHeader .header-wrap-menu .menuList-main > li > a {
        opacity: 0.85;
        position: relative;
        z-index: 2;
        display: block;
        padding: 15px 4px;
        width: 100%;
        letter-spacing: 0.75px;
        font-weight: 700;
        font-size: 16px;
        -webkit-transition: none;
        transition: none; }
        .mainHeader .header-wrap-menu .menuList-main > li > a svg {
          display: inline-block;
          vertical-align: middle;
          margin-left: 0;
          -webkit-transition: transform .2s;
          -moz-transition: transform .2s;
          -o-transition: transform .2s;
          transition: transform .2s; }
      .mainHeader .header-wrap-menu .menuList-main > li.active a, .mainHeader .header-wrap-menu .menuList-main > li.active a:focus {
        opacity: 1; }
      .mainHeader .header-wrap-menu .menuList-main > li:hover > a, .mainHeader .header-wrap-menu .menuList-main > li.active:hover a {
        opacity: 1; }
      .mainHeader .header-wrap-menu .menuList-main > li:hover:before {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: 0%;
        transform-origin: 0%; }
      .mainHeader .header-wrap-menu .menuList-main > li:hover > a svg {
        opacity: 1;
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg); }
    .mainHeader .header-wrap-menu .menuList-main li.has-submenu .menuList-submain {
      background: #fff;
      min-width: 230px;
      max-width: 180%;
      padding: 12px 0;
      position: absolute;
      z-index: 99;
      top: 150%;
      pointer-events: none;
      visibility: hidden;
      opacity: 0;
      -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
      box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    .mainHeader .header-wrap-menu .menuList-main li.has-submenu .menuList-submain ul.menuList-submain {
      left: 100%;
      top: 0; }
    .mainHeader .header-wrap-menu .menuList-main li.has-submenu:hover > .menuList-submain {
      pointer-events: auto;
      visibility: visible;
      top: 100%;
      opacity: 1; }
    .mainHeader .header-wrap-menu .menuList-main .has-submenu.fullwidth {
      position: initial; }
      .mainHeader .header-wrap-menu .menuList-main .has-submenu.fullwidth .multicolumn {
        padding: 25px 0;
        left: 0;
        right: 0;
        max-height: 75vh;
        overflow-x: hidden;
        overflow-y: auto; }
      .mainHeader .header-wrap-menu .menuList-main .has-submenu.fullwidth .multicolumn-container {
        max-width: calc(2400px + 80px * 2);
        padding: 0 80px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: space-between; }
      .mainHeader .header-wrap-menu .menuList-main .has-submenu.fullwidth .subchildmenu {
        flex: 0 0 auto;
        width: 62%; }
      .mainHeader .header-wrap-menu .menuList-main .has-submenu.fullwidth .subchildmenu.subchildmenu-full {
        width: 100%; }
      .mainHeader .header-wrap-menu .menuList-main .has-submenu.fullwidth .subchildmenu li a {
        padding: 3px 0; }
      .mainHeader .header-wrap-menu .menuList-main .has-submenu.fullwidth .menuBanner {
        flex: 0 0 auto;
        width: 38%; }
      .mainHeader .header-wrap-menu .menuList-main .has-submenu.fullwidth .ui-menu-item {
        text-align: left;
        margin-bottom: 15px; }
      .mainHeader .header-wrap-menu .menuList-main .has-submenu.fullwidth .ui-menu-item > a {
        font-weight: 600; }
      @media (min-width: 991.98px) {
        .mainHeader .header-wrap-menu .menuList-main .has-submenu.fullwidth .ui-menu-item {
          padding-right: 15px;
          padding-left: 0; } }
    @media (max-width: 1199.98px) and (min-width: 992px) {
      .mainHeader .header-wrap-menu .menuList-main > li > a {
        font-size: 13px; } }
  .mainHeader .header-wrap-menu .menuList-submain {
    /*li:not(:first-child){	border-top: 1px solid #ecf0f1}*/ }
    .mainHeader .header-wrap-menu .menuList-submain li {
      position: relative; }
      .mainHeader .header-wrap-menu .menuList-submain li a {
        padding: 5px 22px;
        text-align: left;
        display: block;
        font-size: 14px;
        font-weight: 500;
        color: var(--shop-color-text);
        opacity: 0.85; }
      .mainHeader .header-wrap-menu .menuList-submain li a svg {
        width: 15px;
        position: absolute;
        right: 15px;
        top: 50%;
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: right 0.3s ease-in-out;
        -ms-transition: right 0.3s ease-in-out;
        transition: right 0.3s ease-in-out; }
      .mainHeader .header-wrap-menu .menuList-submain li a:hover svg {
        right: 10px;
        opacity: 0.8; }
    .mainHeader .header-wrap-menu .menuList-submain li.has-submenu {
      padding-right: 30px; }
    .mainHeader .header-wrap-menu .menuList-submain li a:hover, .mainHeader .header-wrap-menu .menuList-submain li a:hover i {
      opacity: 1; }
  .mainHeader .header-wrap-logo h1, .mainHeader .header-wrap-logo a {
    font-size: 26px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    margin: 0;
    color: var(--shop-color-main);
    white-space: initial;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box; }
  .mainHeader .header-wrap-action .header-action {
    position: relative;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
    -webkit-justify-content: flex-end; }
    .mainHeader .header-wrap-action .header-action .header-action-item {
      margin-left: 10px;
      align-self: center; }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text {
        position: relative;
        height: 100%;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -ms-align-items: center;
        align-items: center; }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .box-triangle {
        position: absolute;
        width: 24px;
        height: 15px;
        top: 100%;
        z-index: 999;
        visibility: hidden;
        opacity: 0;
        left: 0;
        right: 0;
        margin: 0 auto; }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .box-triangle svg {
        -webkit-filter: drop-shadow(0 -3px 2px rgba(0, 0, 0, 0.12));
        filter: drop-shadow(0 -3px 2px rgba(0, 0, 0, 0.12)); }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link {
        position: relative;
        display: block;
        font-size: 13px;
        color: var(--shop-color-text);
        white-space: nowrap; }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-icon,
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-text {
        display: inline-block;
        vertical-align: middle; }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-text {
        padding-left: 2px; }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-text .txtnw {
        font-size: 11px; }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-text .txtbl {
        font-size: 13px;
        display: block;
        font-weight: 500; }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-text .txt-overflow {
        white-space: nowrap;
        text-overflow: ellipsis;
        display: inline-block;
        vertical-align: middle;
        max-width: 115px;
        overflow: hidden; }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-text .fa {
        display: inline-block;
        font-size: 16px;
        vertical-align: middle;
        margin-left: 3px; }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-icon {
        position: relative;
        width: 32px;
        height: 40px;
        text-align: center; }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-icon svg {
        width: 22px;
        height: 40px;
        fill: var(--shop-color-text); }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-icon svg.svg-ico-account {
        width: 22px; }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-icon svg.svg-ico-search {
        width: 20px; }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-icon .box-icon--close {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.3);
        transition: opacity 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
        transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
        transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out; }
        .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-icon .box-icon--close svg {
          width: 18px; }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-icon .count-holder {
        display: inline-block;
        vertical-align: top;
        background: #ff0000;
        color: #fff;
        font-size: 11px;
        text-align: center;
        position: absolute;
        left: 16px;
        top: -1px;
        padding: 0px 3px;
        min-width: 20px;
        height: 20px;
        line-height: 20px;
        border-radius: 50%; }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link:hover svg.svg-ico-search {
        -ms-transform: rotate(-5deg);
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg); }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_dropdown {
        position: absolute;
        top: calc(100% + 15px);
        left: auto;
        right: -15px;
        z-index: 990;
        min-width: 280px;
        border-radius: 3px;
        color: #677279;
        background: #fff;
        border: solid 1px #dfe3e8;
        box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.1);
        visibility: hidden;
        opacity: 0;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out, max-height 0s linear 0.25s, -webkit-transform 0.25s ease-in-out;
        transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out, visibility 0.25s ease-in-out, max-height 0s linear 0.25s;
        transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out, visibility 0.25s ease-in-out, max-height 0s linear 0.25s, -webkit-transform 0.25s ease-in-out;
        will-change: transform; }
        .mainHeader .header-wrap-action .header-action .header-action-item .header-action_dropdown .box-triangle {
          position: absolute;
          bottom: calc(100% - 2px);
          margin: 0 auto;
          width: 22px;
          height: 15px;
          right: 19px; }
        .mainHeader .header-wrap-action .header-action .header-action-item .header-action_dropdown .box-triangle svg {
          -webkit-filter: drop-shadow(0 -3px 2px rgba(0, 0, 0, 0.12));
          filter: drop-shadow(0 -3px 2px rgba(0, 0, 0, 0.12)); }
        .mainHeader .header-wrap-action .header-action .header-action-item .header-action_dropdown .header-dropdown_content {
          width: 100%;
          height: 100%;
          max-height: 100%;
          overflow: hidden;
          padding: 15px 20px; }
          .mainHeader .header-wrap-action .header-action .header-action-item .header-action_dropdown .header-dropdown_content .sitenav-content .boxtitle {
            font-size: 18px;
            color: var(--shop-color-title);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin: 0;
            font-weight: 500;
            padding-bottom: 8px;
            text-align: center;
            border-bottom: 1px solid var(--shop-color-border); }
      .mainHeader .header-wrap-action .header-action .header-action-item.header-action_account .header-action_dropdown .box-triangle {
        right: 58px; }
      .mainHeader .header-wrap-action .header-action .header-action-item.header-action_search .header-action_dropdown .box-triangle {
        right: 98px; }
    .mainHeader .header-wrap-action .header-action .header-action-item.js-action-show .header-action_text .box-triangle {
      visibility: visible;
      opacity: 1; }
    .mainHeader .header-wrap-action .header-action .header-action-item.js-action-show .header-action_dropdown {
      visibility: visible;
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
      transition: opacity 0.4s cubic-bezier(0, 1, 0.4, 1), visibility 0.4s linear, -webkit-transform 0.4s cubic-bezier(0.18, 1.25, 0.4, 1);
      transition: opacity 0.4s cubic-bezier(0, 1, 0.4, 1), transform 0.4s cubic-bezier(0.18, 1.25, 0.4, 1), visibility 0.4s linear;
      transition: opacity 0.4s cubic-bezier(0, 1, 0.4, 1), transform 0.4s cubic-bezier(0.18, 1.25, 0.4, 1), visibility 0.4s linear, -webkit-transform 0.4s cubic-bezier(0.18, 1.25, 0.4, 1); }
    .mainHeader .header-wrap-action .header-action .header-action-item.header-action_account.js-action-show .header-action_dropdown .site_account_panel.is-selected {
      visibility: visible; }
    .mainHeader .header-wrap-action .header-action .header-action-item.header-action_locale.js-action-show .overlays:before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 100vh;
      width: 100%;
      background: #000;
      opacity: 0.7;
      z-index: 100;
      margin: auto; }
    .mainHeader .header-wrap-action .header-action .header-action-item.header-action_locale.js-action-show .overlays .header-action__link {
      z-index: 101; }
  .mainHeader .header-wrap-action.header-wrap-iconav .header-action .header-action-item.header-action_backlink {
    display: none; }
  .mainHeader .header-wrap-action.header-wrap-iconav .header-action .header-action-item.header-action_backlink a {
    margin-right: 0px;
    width: 20px;
    line-height: 32px;
    color: #fff;
    height: 35px;
    display: block;
    font-size: 28px; }
  .mainHeader .header-wrap-action.header-wrap-iconav .header-action .header-action-item.header-action_menu .header-action_dropdown .box-triangle {
    right: initial;
    left: 16px; }
  .mainHeader .header-wrap-action.header-wrap-iconav .header-action .header-action-item.header-action_menu .box-icon {
    width: 25px; }
    .mainHeader .header-wrap-action.header-wrap-iconav .header-action .header-action-item.header-action_menu .box-icon .hamburger-menu {
      width: 25px;
      height: 35px;
      cursor: pointer;
      display: block;
      position: relative; }
      .mainHeader .header-wrap-action.header-wrap-iconav .header-action .header-action-item.header-action_menu .box-icon .hamburger-menu .bar, .mainHeader .header-wrap-action.header-wrap-iconav .header-action .header-action-item.header-action_menu .box-icon .hamburger-menu .bar:after, .mainHeader .header-wrap-action.header-wrap-iconav .header-action .header-action-item.header-action_menu .box-icon .hamburger-menu .bar:before {
        height: 2px;
        background: var(--shop-color-text); }
      .mainHeader .header-wrap-action.header-wrap-iconav .header-action .header-action-item.header-action_menu .box-icon .hamburger-menu .bar {
        position: relative;
        top: 22px;
        display: block;
        margin: auto;
        width: 25px;
        -ms-transition: all 0ms 100ms, width 150ms linear;
        -webkit-transition: all 0ms 100ms, width 150ms linear;
        transition: all 0ms 100ms, width 150ms linear;
        -ms-transform: translateY(-2px);
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px); }
      .mainHeader .header-wrap-action.header-wrap-iconav .header-action .header-action-item.header-action_menu .box-icon .hamburger-menu .bar:before {
        content: "";
        position: absolute;
        right: 0;
        bottom: 7px;
        width: 18px;
        -ms-transition: bottom 300ms 100ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), width 150ms linear, background 150ms linear;
        -webkit-transition: bottom 300ms 100ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), width 150ms linear, background 150ms linear;
        transition: bottom 300ms 100ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), width 150ms linear, background 150ms linear; }
      .mainHeader .header-wrap-action.header-wrap-iconav .header-action .header-action-item.header-action_menu .box-icon .hamburger-menu .bar:after {
        content: "";
        position: absolute;
        right: 0;
        top: 7px;
        width: 15px;
        -ms-transition: top 300ms 100ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), width 150ms linear, background 150ms linear;
        -webkit-transition: top 300ms 100ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), width 150ms linear, background 150ms linear;
        transition: top 300ms 100ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), width 150ms linear, background 150ms linear; }
    .mainHeader .header-wrap-action.header-wrap-iconav .header-action .header-action-item.header-action_menu .box-icon .box-icon--close svg {
      height: 35px; }
  .mainHeader .header-wrap-action.header-wrap-iconav .header-action .header-action-item.header-action_menu.js-action-show .hamburger-menu {
    opacity: 0;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1); }
  .mainHeader .header-menu-desktop .wrap-logo-sticky {
    display: none; }
  .mainHeader .header-navbar-menu .header-wrap-menu {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; }
  .mainHeader.hSticky .header-wrap-menu .menuList-main > li > a {
    padding-top: 25px;
    padding-bottom: 25px; }
  .mainHeader.hSticky .header-wrap-action .header-action .header-action-item.locationContainer {
    display: none; }
  .mainHeader.hSticky {
    visibility: hidden;
    opacity: 0; }
  .mainHeader.hSticky.hSticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    transition: all 400ms ease; }
  .mainHeader.hSticky.hSticky-nav.hSticky-up {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    transition: all 400ms ease; }
  .mainHeader.hSticky-nav .topbar, .mainHeader.hSticky-nav .topbar-banner {
    display: none; }
  .mainHeader.hSticky-nav .header-wrap-menu ul.menuList-primary > li > a {
    padding-top: 25px;
    padding-bottom: 25px; }
  @media (min-width: 1200px) {
    .mainHeader {
      position: relative; }
      .mainHeader .header-wrap-menu ul.menuList-primary > li > a {
        padding-left: 0;
        padding-right: 0; } }
  @media (min-width: 992px) {
    .mainHeader .header-wrap-logo a img {
      max-width: 218px;
      max-height: 49px; }
    .mainHeader .header-wrap-logo .wrap-logo,
    .mainHeader .header-wrap-logo.wrap-logo-sticky .wrap-logo {
      min-width: 100px; }
    .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-icon .pulse {
      border-radius: 50%;
      height: 6px;
      width: 6px;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 4px;
      opacity: 1;
      margin: 0 auto;
      transform: rotateX(55deg); }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-icon .pulse:after {
        content: "";
        border-radius: 50%;
        height: 25px;
        width: 25px;
        position: absolute;
        margin: -8px 0 0 -12px;
        animation: pulsate 1s ease-out;
        animation-iteration-count: infinite;
        opacity: 0;
        animation-delay: 1.1s; }
    .mainHeader.hSticky-nav .header-wrap-logo h1, .mainHeader.hSticky-nav .header-wrap-logo a {
      font-size: 25px; }
    .mainHeader.hSticky-nav .header-wrap-logo a img {
      max-height: 50px; }
    .mainHeader.hSticky-nav .header-wrap-logo.wrap-logo-sticky a img {
      max-height: 60px;
      max-width: 200px; }
    .mainHeader .header-wrap-info li:nth-child(2) {
      margin-left: 15px; }
    .mainHeader .header-wrap-info li svg {
      width: 22px;
      height: 22px;
      transform: translateY(-2px); } }
  @media (max-width: 1199.98px) and (min-width: 992px) {
    .mainHeader .container {
      width: auto; }
    .mainHeader .header-wrap-logo h1, .mainHeader .header-wrap-logo a {
      font-size: 26px; }
    .mainHeader .header-wrap-logo a img {
      max-width: 200px;
      max-height: 70px; }
    .mainHeader.hSticky-nav .header-wrap-logo h1, .mainHeader.hSticky-nav .header-wrap-logo a {
      font-size: 23px; }
    .mainHeader.hSticky-nav .header-wrap-logo a img {
      max-height: 50px; }
    .mainHeader.hSticky-nav .header-wrap-logo.wrap-logo-sticky a img {
      max-height: 55px;
      max-width: 180px; }
    .mainHeader .header-wrap-action .header-action .header-action-item.locationContainer .header-action_text .box-text .txtnw {
      font-size: 10px; }
    .mainHeader .header-wrap-action .header-action .header-action-item.locationContainer .header-action_text .box-text .txtbl {
      font-size: 12px; } }
  @media (max-width: 991.98px) {
    .mainHeader .mainHeader-middle {
      position: relative; }
    .mainHeader .mainHeader-middle .container {
      width: auto; }
    .mainHeader .flex-container-header {
      padding: 8px 0;
      margin: 0 -5px; }
      .mainHeader .flex-container-header > [class*='header-wrap-'] {
        position: initial;
        padding: 0 5px; }
    .mainHeader .header-wrap-logo {
      text-align: center;
      max-width: calc(100% - 140px); }
      .mainHeader .header-wrap-logo .wrap-logo {
        display: flex;
        align-items: center; }
    .mainHeader .header-wrap-action .header-action {
      position: initial;
      height: 100%; }
      .mainHeader .header-wrap-action .header-action .header-action-item {
        position: initial;
        height: 100%; }
        .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .box-triangle {
          top: calc(100% - 5px); }
        .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-text {
          display: none; }
        .mainHeader .header-wrap-action .header-action .header-action-item .header-action_dropdown {
          right: 0;
          left: 0;
          top: 100%;
          width: 100vw;
          height: 100vh; }
        .mainHeader .header-wrap-action .header-action .header-action-item.js-action-show .header-action_text .header-action__link .box-icon .box-icon--close {
          opacity: 1;
          visibility: visible;
          -webkit-transform: scale(1);
          transform: scale(1); }
        .mainHeader .header-wrap-action .header-action .header-action-item.js-action-show .header-action_text .header-action__link .box-icon > svg,
        .mainHeader .header-wrap-action .header-action .header-action-item.js-action-show .header-action_text .header-action__link .box-icon .count-holder {
          opacity: 0;
          visibility: visible;
          -webkit-transform: scale(1);
          transform: scale(1); }
      .mainHeader .header-wrap-action .header-action .header-action-item.header-action_search {
        display: none; }
      .mainHeader .header-wrap-action .header-action .header-action-item.header-action_menu .header-action_dropdown .header-dropdown_content {
        padding: 0 0px 80px; }
      .mainHeader .header-wrap-action .header-action .header-action-item.header-action_menu .header-action_dropdown {
        right: 0;
        left: 0px;
        top: 100%;
        width: 100vw;
        height: 100vh; }
      .mainHeader .header-wrap-action .header-action .header-action-item.header-action_menu .header-action_dropdown .header-dropdown_content {
        overflow: auto;
        padding-bottom: 120px;
        -webkit-overflow-scrolling: touch; }
      .mainHeader .header-wrap-action .header-action .header-action-item.header-action_cart {
        display: none; }
      .mainHeader .header-wrap-action .header-action .header-action-item.header-action_cart.show-mb {
        display: block; }
    .mainHeader.hSticky-nav .header-wrap-logo {
      display: block; }
    .mainHeader.hSticky-nav.mainHeader-product .header-wrap-action .header-action .header-action-item.header-action_backlink {
      display: block; }
    .mainHeader.hSticky-nav.mainHeader-product .header-wrap-action .header-action .header-action-item.header-action_menu .header-action_dropdown .box-triangle {
      left: 44px; } }
  @media (max-width: 992px) and (min-width: 768px) {
    .mainHeader .header-wrap-logo a img {
      max-height: 65px; }
    .mainHeader .header-wrap-logo h1, .mainHeader .header-wrap-logo a {
      font-size: 26px; }
    .mainHeader .header-wrap-action.header-wrap-iconav .header-action .header-action-item.header-action_menu {
      margin-left: 0;
      margin-right: 15px; } }
  @media (max-width: 767.98px) {
    .mainHeader .header-wrap-logo a img {
      max-height: 60px; }
    .mainHeader .header-wrap-logo h1, .mainHeader .header-wrap-logo a {
      font-size: 20px; }
    .mainHeader .header-wrap-logo .wrap-logo a {
      transition: none;
      word-wrap: break-word;
      white-space: initial;
      overflow: hidden;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      display: -webkit-box;
      max-width: 180px; }
    .mainHeader .header-wrap-action .header-action {
      position: initial; }
      .mainHeader .header-wrap-action .header-action .header-action-item {
        position: initial;
        margin-left: 7px; }
        .mainHeader .header-wrap-action .header-action .header-action-item.header-action_menu .header-action_text .box-triangle {
          top: calc(100% - 5px); }
        .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-text .txt-overflow {
          max-width: 90px;
          vertical-align: initial; }
        .mainHeader .header-wrap-action .header-action .header-action-item .header-action_dropdown .header-dropdown_content {
          overflow: auto;
          padding-bottom: 180px;
          -webkit-overflow-scrolling: touch; }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-icon svg.svg-ico-account {
        width: 18px; }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-icon svg.svg-ico-search {
        width: 18px; }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-icon svg {
        width: 18px; }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-icon .box-icon--close svg {
        width: 18px; }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-icon {
        width: 28px; }
      .mainHeader .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-icon .count-holder {
        min-width: 16px;
        height: 16px;
        line-height: 16px;
        left: 12px;
        top: 1px; }
    .mainHeader .header-wrap-action.header-wrap-iconav .header-action .header-action-item {
      padding: 0 5px; }
    .mainHeader .header-wrap-action.header-wrap-iconav .header-action .header-action-item.header-action_menu {
      margin-left: 0;
      margin-right: 8px; } }

.mainHeader.mainHeader_temp02 .header-wrap-menu .menuList-main > li > a {
  padding: 25px 0; }

.mainHeader.mainHeader_temp02:not(.hSticky-nav) .mainHeader-middle {
  background: #ffffff; }

.mainHeader.mainHeader_temp02:not(.hSticky-nav) .header-wrap-logo h1, .mainHeader.mainHeader_temp02:not(.hSticky-nav) .header-wrap-logo a {
  color: #000000; }

.mainHeader.mainHeader_temp02:not(.hSticky-nav) .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-icon svg {
  fill: #000000; }

.mainHeader.mainHeader_temp02:not(.hSticky-nav) .header-wrap-action .header-action .header-action-item .header-action__link .box-text {
  color: #000000; }

.mainHeader.mainHeader_temp02:not(.hSticky-nav) .header-wrap-action.header-wrap-iconav .header-action .header-action-item.header-action_menu .box-icon .hamburger-menu .bar, .mainHeader.mainHeader_temp02:not(.hSticky-nav) .header-wrap-action.header-wrap-iconav .header-action .header-action-item.header-action_menu .box-icon .hamburger-menu .bar:after, .mainHeader.mainHeader_temp02:not(.hSticky-nav) .header-wrap-action.header-wrap-iconav .header-action .header-action-item.header-action_menu .box-icon .hamburger-menu .bar:before {
  background: #000000; }

.mainHeader.mainHeader_temp02:not(.hSticky-nav) .header-wrap-menu ul.menuList-primary > li > a {
  color: #000000; }

.mainHeader.mainHeader_temp02:not(.hSticky-nav) .header-wrap-menu ul.menuList-primary > li:before {
  background-color: #000000; }

.mainHeader.mainHeader_temp02:not(.hSticky-nav) .header-wrap-menu .item-live {
  display: -webkit-flex;
  display: flex !important; }

@media (min-width: 992px) {
  .mainHeader.mainHeader_temp02 .flex-container-header {
    -webkit-align-items: initial;
    align-items: initial; }
  .mainHeader.mainHeader_temp02 .header-wrap-menu {
    padding-left: 0px;
    padding-right: 0; }
    .mainHeader.mainHeader_temp02 .header-wrap-menu .navbar-mainmenu {
      height: 100%;
      display: inline-block; }
    .mainHeader.mainHeader_temp02 .header-wrap-menu .header-language {
      display: inline-block; }
    .mainHeader.mainHeader_temp02 .header-wrap-menu .menuList-main {
      height: 100%;
      display: -webkit-flex;
      display: flex;
      -ms-justify-content: center;
      justify-content: center; }
    .mainHeader.mainHeader_temp02 .header-wrap-menu .menuList-main > li {
      display: -webkit-flex;
      display: flex;
      -ms-align-items: center;
      align-items: center; }
    .mainHeader.mainHeader_temp02 .header-wrap-menu ul.menuList-primary > li {
      margin: 0 10px; }
  .mainHeader.mainHeader_temp02 .header-wrap-logo, .mainHeader.mainHeader_temp02 .header-wrap-action {
    padding-top: 16px;
    padding-bottom: 16px;
    -ms-align-self: center;
    align-self: center; }
  .mainHeader.mainHeader_temp02 .header-wrap-action {
    padding-left: 0px; }
  .mainHeader.mainHeader_temp02 .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-icon .pulse {
    background: #000000; }
  .mainHeader.mainHeader_temp02 .header-wrap-action .header-action .header-action-item .header-action_text .header-action__link .box-icon .pulse:after {
    box-shadow: 0 0 1px 2px #000000; }
  .mainHeader.mainHeader_temp02 .header-wrap-action .header-action .header-action-item.header-action_locale .header-action_text {
    padding: 0 5px;
    background: #ffffff;
    border-radius: 5px; }
  .mainHeader.mainHeader_temp02:not(.hSticky-nav) .header-wrap-menu ul.menuList-primary > li > a {
    padding-top: 25px;
    padding-bottom: 25px; } }

@media (max-width: 991.98px) {
  .mainHeader.mainHeader_temp02 .header-wrap-logo {
    padding-left: 0;
    padding-right: 0;
    flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    text-align: left; } }

/*Slider*/
.section-home-slider {
  padding-top: 0;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
  margin-bottom: 0px; }
  .section-home-slider .owl-carousel:not(.owl-loaded) {
    display: flex;
    display: -ms-flex;
    display: -webkit-flex;
    overflow: hidden; }
  .section-home-slider .owl-carousel:not(.owl-loaded) .slider-item {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%; }
  .section-home-slider .owl-carousel .slider-item {
    position: relative; }
  .section-home-slider .owl-carousel .owl-nav button {
    position: absolute;
    top: calc(50% - 20px);
    padding: 0;
    opacity: 0;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    text-align: center;
    color: #444444;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    outline: none;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center; }
    .section-home-slider .owl-carousel .owl-nav button.owl-prev {
      left: 30px; }
    .section-home-slider .owl-carousel .owl-nav button.owl-next {
      right: 30px; }
    .section-home-slider .owl-carousel .owl-nav button svg {
      width: 20px;
      height: 20px; }
  .section-home-slider .owl-carousel .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 15px;
    text-align: center;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
    .section-home-slider .owl-carousel .owl-dots .owl-dot {
      border-radius: 50%;
      border: 2px solid #fff;
      opacity: 0.3; }
      .section-home-slider .owl-carousel .owl-dots .owl-dot {
        margin: 0 3px;
        outline: 0; }
      .section-home-slider .owl-carousel .owl-dots .owl-dot span {
        display: flex;
        display: -ms-flex;
        display: -webkit-flex;
        width: 5px;
        height: 5px;
        margin: 4px;
        border-radius: 50%;
        background: #fff; }
      .section-home-slider .owl-carousel .owl-dots .owl-dot.active {
        border-radius: 50%;
        border: 2px solid #fff;
        opacity: 1; }
      .section-home-slider .owl-carousel .owl-dots .owl-dot.active span {
        background: #fff; }
  @media (max-width: 767.98px) {
    .section-home-slider .owl-carousel .owl-dots {
      bottom: 5px; }
    .section-home-slider .owl-carousel .owl-dots .owl-dot {
      margin: 0 2px; }
    .section-home-slider .owl-carousel .owl-dots .owl-dot span {
      width: 4px;
      height: 4px;
      margin: 4px; }
    .section-home-slider .owl-carousel .owl-dots .owl-dot.active {
      border: 1px solid #fff; } }
  .section-home-slider:hover .owl-nav button {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  @media (max-width: 991.98px) {
    .section-home-slider {
      padding-bottom: 15px; } }

@-webkit-keyframes float {
  0% {
    transform: translateY(0); }
  50% {
    transform: translateY(-8px); }
  to {
    transform: translateY(0); } }

@keyframes float {
  0% {
    transform: translateY(0); }
  50% {
    transform: translateY(-8px); }
  to {
    transform: translateY(0); } }

.scroll-down-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px; }
  @media (max-width: 1199.98px) {
    .scroll-down-section {
      display: none; } }
  .scroll-down-section button {
    -webkit-animation: float 3s ease-in-out infinite;
    animation: float 3s ease-in-out infinite;
    outline: none;
    border: none;
    box-shadow: none;
    background: transparent; }
    .scroll-down-section button svg {
      width: 24px;
      height: 24px; }

/* Home List collection */
.home__list-collection .home__list-collection-item {
  position: relative;
  cursor: pointer; }
  .home__list-collection .home__list-collection-item .home__list-collection-item-cotent {
    transition: all 0.5s ease-in-out;
    padding: 16px 12px; }
  .home__list-collection .home__list-collection-item .home__list-collection-item-wrap {
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    bottom: 0;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.3); }
    .home__list-collection .home__list-collection-item .home__list-collection-item-wrap img {
      width: 60px;
      height: 60px; }
    .home__list-collection .home__list-collection-item .home__list-collection-item-wrap h3 {
      color: #fff;
      font-size: 20px;
      font-weight: 600;
      line-height: 30px;
      letter-spacing: -0.03em; }
    .home__list-collection .home__list-collection-item .home__list-collection-item-wrap .horizontal-divider {
      height: 2px;
      width: 30px;
      margin: 12px auto;
      background: #fff; }
    .home__list-collection .home__list-collection-item .home__list-collection-item-wrap .home__list-collection-item-des {
      color: #fff;
      opacity: 0;
      transition: all 0.5s ease-in-out;
      border-top: 1px solid #fff;
      padding-top: 8px; }
  .home__list-collection .home__list-collection-item:hover .home__list-collection-item-cotent {
    margin-top: -20px; }
  .home__list-collection .home__list-collection-item:hover .home__list-collection-item-des {
    opacity: 1; }
  @media (max-width: 991.98px) {
    .home__list-collection .home__list-collection-item {
      margin-bottom: 15px; } }

/*Home Brand*/
.home__brand {
  background: #F0F7FF;
  padding: 55px 0; }
  .home__brand .home__brand-title {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    padding-bottom: 16px; }
    .home__brand .home__brand-title:after {
      content: '';
      position: absolute;
      height: 3px;
      width: 50px;
      background: #0D80EA;
      margin: 0 auto;
      bottom: 0;
      left: 0;
      text-align: center;
      right: 0; }
  @media (max-width: 991.98px) {
    .home__brand {
      padding: 30px 0; } }

.home__brand-lists-wrap.d-flex-owl:not(.owl-loaded) .item {
  flex: 0 0 calc(100%/6 - 16px);
  margin-right: 16px; }

.home__brand-lists-wrap.owl-carousel img {
  border-radius: 8px; }

.home__brand-lists-wrap.owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  border: 1px solid #A6A6A6;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.5); }
  .home__brand-lists-wrap.owl-carousel .owl-nav button svg {
    height: 19px;
    width: 11px;
    fill: #A6A6A6; }
  .home__brand-lists-wrap.owl-carousel .owl-nav button.owl-prev {
    left: -20px; }
  .home__brand-lists-wrap.owl-carousel .owl-nav button.owl-next {
    right: -20px; }

@media (max-width: 767.98px) {
  .home__brand-lists-wrap.owl-carousel .owl-nav button {
    width: 30px;
    height: 30px; }
    .home__brand-lists-wrap.owl-carousel .owl-nav button.owl-prev {
      left: -10px; }
    .home__brand-lists-wrap.owl-carousel .owl-nav button.owl-next {
      right: -10px; } }

/* Home blog */
#section-home-blog {
  padding: 50px 0; }
  #section-home-blog .slider-home-blog.d-flex-owl:not(.owl-loaded) .item {
    flex: 0 0 calc(100%/3 - 20px);
    margin-right: 20px; }
  #section-home-blog .slider-home-blog.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    border: 1px solid #A6A6A6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    background: white; }
    #section-home-blog .slider-home-blog.owl-carousel .owl-nav button svg {
      height: 19px;
      width: 11px;
      fill: #A6A6A6; }
    #section-home-blog .slider-home-blog.owl-carousel .owl-nav button.owl-prev {
      left: -20px; }
    #section-home-blog .slider-home-blog.owl-carousel .owl-nav button.owl-next {
      right: -20px; }
  @media (max-width: 992px) {
    #section-home-blog .slider-home-blog.d-flex-owl:not(.owl-loaded) .item {
      flex: 0 0 calc(100%/3 - 15px);
      margin-right: 15px; } }
  @media (max-width: 768px) {
    #section-home-blog .slider-home-blog.d-flex-owl:not(.owl-loaded) .item {
      flex: 0 0 calc(100%/2 - 10px);
      margin-right: 10px; } }
  #section-home-blog .sectionHeading h3 {
    text-align: center;
    margin-bottom: 32px; }
    #section-home-blog .sectionHeading h3 a {
      position: relative;
      display: inline-block;
      padding-bottom: 16px; }
      #section-home-blog .sectionHeading h3 a:after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        width: 50px;
        height: 3px;
        background: #6B7280;
        position: absolute;
        margin: 0 auto; }
  @media (max-width: 991.98px) {
    #section-home-blog {
      padding: 30px 0; } }

.item-article .media-article {
  position: relative; }
  .item-article .media-article a time {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px; }

.item-article .info-article {
  padding: 20px 15px 0 15px; }
  .item-article .info-article .title-article h4 {
    font-weight: 600;
    font-size: 18px; }
    .item-article .info-article .title-article h4 a {
      overflow: hidden;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      display: -webkit-box;
      min-height: 43px; }
  .item-article .info-article .short-article {
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box; }
  .item-article .info-article .view-article {
    margin-top: 15px; }
    .item-article .info-article .view-article a {
      text-decoration: underline;
      display: flex;
      align-items: center; }
      .item-article .info-article .view-article a svg {
        width: 12px;
        height: 12px;
        margin-left: 5px; }

/* Home Mục Tiêu */
#section-home-muctieu {
  background: url(https://file.hstatic.net/200000912279/file/bg-muctieu.jpg) rgba(0, 0, 0, 0.6);
  padding: 120px 0;
  position: relative; }
  #section-home-muctieu .sectionHeading h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    max-width: 75%;
    margin: 0 auto 50px; }
  #section-home-muctieu .sectionContent {
    display: flex;
    flex-wrap: wrap;
    max-width: 90%;
    margin: 0 auto;
    gap: 20px; }
    #section-home-muctieu .sectionContent .home-muctieu-item {
      max-width: calc(25% - 20px);
      flex: 0 0 calc(25% - 20px);
      padding: 30px 10px;
      text-align: center; }
      #section-home-muctieu .sectionContent .home-muctieu-item .home-muctieu-item-title {
        font-weight: 500;
        font-size: 20px;
        margin-bottom: 8px; }
  #section-home-muctieu:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1; }
  #section-home-muctieu .container {
    position: relative;
    z-index: 2; }
  @media (max-width: 991.98px) {
    #section-home-muctieu {
      padding: 30px 0;
      background-position: center; }
      #section-home-muctieu .sectionHeading h3 {
        font-size: 24px;
        max-width: 100%;
        margin: 0 auto 30px; }
      #section-home-muctieu .sectionContent {
        gap: 15px; }
        #section-home-muctieu .sectionContent .home-muctieu-item {
          max-width: calc(50% - 15px);
          flex: 0 0 calc(50% - 15px);
          padding: 30px 10px;
          text-align: center; }
          #section-home-muctieu .sectionContent .home-muctieu-item:last-child {
            margin-bottom: 0; } }
  @media (max-width: 767.98px) {
    #section-home-muctieu {
      padding: 30px 0;
      background-position: center; }
      #section-home-muctieu .sectionHeading h3 {
        font-size: 24px;
        max-width: 100%;
        margin: 0 auto 30px; }
      #section-home-muctieu .sectionContent {
        gap: 0; }
        #section-home-muctieu .sectionContent .home-muctieu-item {
          max-width: 100%;
          flex: 0 0 100%;
          padding: 30px 10px;
          text-align: center;
          margin-bottom: 15px; }
          #section-home-muctieu .sectionContent .home-muctieu-item:last-child {
            margin-bottom: 0; } }

/*====== FOOTER ========================*/
.mainFooter {
  background: var(--footer-bg-color-2);
  color: var(--footer-color-text);
  padding: 40px 0; }

.footer-about-logo {
  margin-bottom: 25px;
  max-width: 218px; }

.footer-about-des {
  line-height: 22px; }
  .footer-about-des p {
    margin: 0; }
  .footer-about-des a {
    color: var(--footer-color-text); }
  @media (max-width: 991.98px) {
    .footer-about-des {
      margin-bottom: 15px; } }

.widget-footer .widget-footer-item {
  margin-bottom: 15px; }

.widget-footer h4 {
  color: var(--footer-color-title);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px; }

.widget-footer .footer_address_content .address_content_item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5px;
  align-items: center; }
  .widget-footer .footer_address_content .address_content_item span.icon {
    max-width: 20px;
    flex: 0 0 20px;
    margin-right: 5px; }
  .widget-footer .footer_address_content .address_content_item span.content {
    max-width: calc(100% - 25px);
    flex: 0 0 calc(100% - 25px); }
  .widget-footer .footer_address_content .address_content_item span img {
    width: 20px;
    height: 20px; }
  .widget-footer .footer_address_content .address_content_item.address {
    align-items: flex-start; }

/*--------------------------------------------------------------------------------
SIDEBAR MAIN
--------------------------------------------------------------------------------*/
.sidebar-main .sitenav-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 1010;
  background: transparent; }
  .sidebar-main .sitenav-wrapper.sitenav-right {
    right: 0; }
    .sidebar-main .sitenav-wrapper.sitenav-right .sitenav-inner {
      right: 0;
      -webkit-transform: translateX(120%);
      transform: translateX(120%);
      -webkit-transition: transform 0.35s ease,right 0.25s ease, visibility 0s;
      transition: transform 0.35s ease,right 0.25s ease, visibility 0s; }
  .sidebar-main .sitenav-wrapper.sitenav-left {
    left: 0; }
    .sidebar-main .sitenav-wrapper.sitenav-left .sitenav-inner {
      left: 0;
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
      -webkit-transition: transform 0.35s ease,left 0.25s ease, visibility 0s;
      transition: transform 0.35s ease,left 0.25s ease, visibility 0s; }
  .sidebar-main .sitenav-wrapper .sitenav-inner {
    margin: 0 auto;
    max-width: 480px;
    position: absolute;
    top: 0;
    bottom: 0;
    background: #ffffff;
    background-clip: padding-box;
    display: flex;
    flex-direction: column; }
    .sidebar-main .sitenav-wrapper .sitenav-inner:after {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: #fff;
      z-index: 1;
      opacity: 1;
      visibility: visible; }

.sidebar-main.is-show-right .sitenav-wrapper.show {
  left: 0 !important;
  -webkit-transition-delay: 0s;
  transition-delay: 0s; }

.sidebar-main.is-show-right .sitenav-wrapper.show .sitenav-inner {
  right: 0;
  width: 85%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s; }
  .sidebar-main.is-show-right .sitenav-wrapper.show .sitenav-inner:after {
    visibility: hidden;
    opacity: 0; }

.sidebar-main.is-show-right .sitenav-wrapper.show .sidebar-overlay {
  opacity: 1;
  visibility: visible; }

.sidebar-main.is-show-left .sitenav-wrapper.show {
  left: 0 !important;
  -webkit-transition-delay: 0s;
  transition-delay: 0s; }

.sidebar-main.is-show-left .sitenav-wrapper.show .sitenav-inner {
  right: 0;
  width: 85%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s; }
  .sidebar-main.is-show-left .sitenav-wrapper.show .sitenav-inner:after {
    visibility: hidden;
    opacity: 1; }

.sidebar-main.is-show-left .sitenav-wrapper.show .sidebar-overlay {
  opacity: 1;
  visibility: visible; }

.sidebar-main .sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1); }

.sitenav-inner .sitenav-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid var(--shop-color-border); }
  .sitenav-inner .sitenav-header__title {
    font-size: 22px;
    font-weight: 600;
    margin: 0; }
  .sitenav-inner .sitenav-header__btn svg {
    width: 17px;
    height: 100%;
    margin: 0 auto;
    cursor: pointer; }
  .sitenav-inner .sitenav-header .cart-shipping {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 18px; }
    .sitenav-inner .sitenav-header .cart-shipping__title {
      font-size: 14px;
      font-weight: 400;
      color: #666666;
      letter-spacing: 0.5px;
      min-height: 30px; }
      .sitenav-inner .sitenav-header .cart-shipping__title .price {
        font-weight: 600;
        color: #ff2c26; }
      .sitenav-inner .sitenav-header .cart-shipping__title .free-ship {
        text-transform: uppercase;
        color: #333333;
        font-weight: 600; }

.sitenav-inner .sitenav-content {
  padding: 15px;
  position: relative;
  overflow-y: scroll;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-scroll-chaining: none;
  overscroll-behavior: none; }
  .sitenav-inner .sitenav-content::-webkit-scrollbar {
    width: 4px;
    height: 3px; }
  .sitenav-inner .sitenav-content::-webkit-scrollbar-track {
    -webkit-border-radius: 2px;
    border-radius: 2px;
    margin-left: 10px; }
  .sitenav-inner .sitenav-content::-webkit-scrollbar-thumb {
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background: #e1e3e4;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }
  .sitenav-inner .sitenav-content::-webkit-scrollbar-thumb:window-inactive {
    background: #e1e3e4; }
  .sitenav-inner .sitenav-content .more-notify {
    padding: 8px 0;
    border-top: 1px solid var(--shop-color-border); }
  .sitenav-inner .sitenav-content .more-notify a {
    color: #0d6efd; }

.sitenav-inner .sitenav-footer {
  padding: 15px;
  margin-top: auto;
  border-top: 1px solid var(--shop-color-border); }

.menuList-links {
  margin: 0; }

.menuList-links li {
  position: relative; }

.menuList-links li a {
  color: var(--shop-color-text);
  position: relative;
  font-size: 13px;
  display: block; }

.menuList-links li a:hover, .menuList-links li a:focus {
  color: var(--shop-color-hover); }

.menuList-links > li {
  border-bottom: 1px dashed var(--shop-color-border); }

.menuList-links > li:last-child {
  border-bottom: none; }

.menuList-links > li > a {
  padding: 12px 0;
  font-weight: 500;
  font-size: 15px; }

.menuList-links > li.has-submenu > a {
  padding-right: 30px; }

.menuList-links > li.has-submenu span.icon-plus-submenu {
  width: 25px;
  height: 25px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 1px solid transparent; }

.icon-plus-submenu:after, .icon-plus-submenu:before {
  background: rgba(9, 9, 9, 0.6);
  content: '';
  display: block;
  position: absolute;
  margin-right: 7px;
  top: 50%;
  right: 0;
  -moz-transition: all .25s linear;
  -o-transition: all .25s linear;
  -webkit-transition: all .25s linear;
  transition: all .25s linear; }

.icon-plus-submenu:before {
  width: 9px;
  height: 1px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

.icon-plus-submenu:after {
  width: 1px;
  height: 9px;
  right: 4px;
  transform-origin: center;
  -moz-transform: translateY(-50%) scale(1, 1);
  -ms-transform: translateY(-50%) scale(1, 1);
  -webkit-transform: translateY(-50%) scale(1, 1);
  transform: translateY(-50%) scale(1, 1); }

li.has-submenu.opened > a .icon-plus-submenu:after {
  -moz-transform: translateY(-50%) scale(1, 0);
  -ms-transform: translateY(-50%) scale(1, 0);
  -webkit-transform: translateY(-50%) scale(1, 0);
  transform: translateY(-50%) scale(1, 0); }

.menuList-links > li.has-submenu .icon-plus-submenu:hover {
  border: 1px solid var(--shop-color-border); }

ul.menuList-links li ul.submenu-links {
  display: none; }

ul.submenu-links li a {
  padding: 8px 0 8px 0px; }

li.has-submenu.level0 > ul.submenu-links {
  border-top: 1px dashed var(--shop-color-border); }

li.has-submenu.level0 > ul.submenu-links li a {
  padding-left: 12px; }

li.has-submenu.level1 > ul.submenu-links li a {
  padding-left: 25px; }

.pageContent img {
  width: auto !important;
  height: auto !important; }

/* Breadcrumb Heading */
.page_breadcrumb {
  padding: 50px 0;
  background-size: cover;
  background-position: top left; }
  .page_breadcrumb .page_breadcrumb_title {
    font-size: 44px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px; }
  .page_breadcrumb .page_breadcrumb_des {
    font-size: 18px;
    font-weight: 600;
    color: #A3A3A3; }
  @media (max-width: 991.98px) {
    .page_breadcrumb {
      background-position: top center; } }

/* Breadcrumb Menu */
.page_tabs_menu {
  background: #171717; }
  .page_tabs_menu ul {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .page_tabs_menu ul li {
      flex: 1 0 0;
      text-align: center; }
      .page_tabs_menu ul li a {
        color: #ffffff;
        display: block;
        padding: 15px;
        font-weight: 500;
        font-size: 16px; }
      .page_tabs_menu ul li.active {
        background: #015CB9;
        color: #ffffff; }
      .page_tabs_menu ul li:hover {
        background: #015CB9;
        color: #ffffff; }
    @media (max-width: 767.98px) {
      .page_tabs_menu ul {
        white-space: nowrap;
        margin: 0px 0px;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-box-pack: start;
        justify-content: start; } }

/* Page HeadingTitle */
.pageHeadingTitle {
  margin-top: 60px;
  position: relative;
  padding-top: 5px;
  font-size: 30px;
  font-weight: 600;
  line-height: 45px;
  padding-bottom: 32px;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 40px; }
  .pageHeadingTitle:before {
    content: '';
    width: 40px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 0;
    background: #015CB9; }
  @media (max-width: 991.98px) {
    .pageHeadingTitle {
      margin-top: 30px;
      padding-bottom: 15px;
      margin-bottom: 15px; } }

.layout-pageDetail {
  padding-bottom: 60px; }

.item-div {
  margin-bottom: 10px; }

/* Cụm các trang Kinh Doanh */
.title-content {
  display: inline-block;
  min-width: 100px;
  text-align: center;
  background: #F5F5F5;
  padding: 5px 0;
  border-radius: 20px;
  font-weight: 500; }

.pageContent-kd h5 {
  font-weight: 600;
  font-size: 24px; }

.pageContent-kd iframe {
  width: 100%; }

.policy-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px; }

.policy-wrap-left {
  flex: 0 0 300px;
  position: relative; }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    .policy-wrap-left {
      flex: 0 0 200px;
      position: relative; } }
  @media (min-width: 768px) and (max-width: 991.98px) {
    .policy-wrap-left {
      flex: 0 0 200px;
      position: relative; } }
  @media (max-width: 767.98px) {
    .policy-wrap-left {
      flex: 0 0 100%; } }

.policy-wrap-right {
  flex: 0 0 350px;
  padding-left: 50px;
  position: relative; }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    .policy-wrap-right {
      flex: 0 0 200px;
      padding-left: 0;
      position: relative; } }
  @media (min-width: 768px) and (max-width: 991.98px) {
    .policy-wrap-right {
      flex: 0 0 200px;
      padding-left: 0;
      position: relative; } }
  @media (max-width: 767.98px) {
    .policy-wrap-right {
      flex: 0 0 100%;
      padding-top: 50px;
      padding-left: 0; } }

.policy-wrap-center {
  flex: 0 0 450px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 40px; }
  .policy-wrap-center .policy-wrap-center-round {
    width: 450px;
    height: 450px;
    background: #F7F7F7;
    border-radius: 50%;
    position: relative; }
  .policy-wrap-center .policy-wrap-center-round1 {
    width: 380px;
    height: 380px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto;
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    bottom: 0; }
  .policy-wrap-center .policy-wrap-center-round2 {
    position: absolute;
    top: 50px;
    width: 350px;
    height: 350px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 50%;
    border: 8px solid #EBEBEB;
    background: url(https://file.hstatic.net/200000912279/file/photo_2024-10-26_14-17-54.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden; }
    .policy-wrap-center .policy-wrap-center-round2:after {
      content: '';
      background: rgba(255, 255, 255, 0.5);
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    .policy-wrap-center .policy-wrap-center-round2 span {
      background: #333333;
      position: absolute;
      top: 50%;
      left: 50%;
      right: 0;
      bottom: 0;
      width: 130px;
      height: 130px;
      border-radius: 50%;
      color: #fff;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      padding: 15px;
      text-align: center;
      transform: translate(-50%, -50%);
      z-index: 10;
      font-size: 16px;
      font-weight: 700; }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    .policy-wrap-center {
      flex: 0 0 350px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center; }
      .policy-wrap-center .policy-wrap-center-round {
        width: 330px;
        height: 330px; }
      .policy-wrap-center .policy-wrap-center-round1 {
        width: 260px;
        height: 260px;
        top: 35px; }
      .policy-wrap-center .policy-wrap-center-round2 {
        top: 50px;
        width: 245px;
        height: 245px; }
        .policy-wrap-center .policy-wrap-center-round2 span {
          width: 100px;
          height: 100px;
          font-size: 12px; } }
  @media (min-width: 768px) and (max-width: 991.98px) {
    .policy-wrap-center {
      flex: 0 0 290px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center; }
      .policy-wrap-center .policy-wrap-center-round {
        width: 270px;
        height: 270px; }
      .policy-wrap-center .policy-wrap-center-round1 {
        width: 200px;
        height: 200px;
        top: 35px; }
      .policy-wrap-center .policy-wrap-center-round2 {
        top: 50px;
        width: 170px;
        height: 170px; }
        .policy-wrap-center .policy-wrap-center-round2 span {
          width: 100px;
          height: 100px;
          font-size: 12px; } }
  @media (max-width: 767.98px) {
    .policy-wrap-center {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding-top: 0; }
      .policy-wrap-center .policy-wrap-center-round {
        width: 320px;
        height: 320px; }
      .policy-wrap-center .policy-wrap-center-round1 {
        width: 280px;
        height: 280px;
        top: 20px; }
      .policy-wrap-center .policy-wrap-center-round2 {
        top: 35px;
        width: 250px;
        height: 250px; } }

.policy-item {
  margin-bottom: 32px; }
  .policy-item h3 {
    color: #015CB9;
    font-size: 24px;
    margin-bottom: 16px; }
  .policy-item ul {
    list-style: disc;
    padding-left: 20px;
    line-height: 27px;
    font-size: 18px;
    font-weight: 600; }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    .policy-item h3 {
      font-size: 16px;
      margin-bottom: 8px; }
    .policy-item ul {
      line-height: 20px;
      font-size: 14px; } }
  @media (min-width: 768px) and (max-width: 991.98px) {
    .policy-item h3 {
      font-size: 16px;
      margin-bottom: 8px; }
    .policy-item ul {
      line-height: 20px;
      font-size: 14px; } }
  @media (max-width: 767.98px) {
    .policy-item h3 {
      font-size: 18px;
      margin-bottom: 8px; }
    .policy-item ul {
      line-height: 24px;
      font-size: 16px; } }

@media (min-width: 1200px) {
  .round-icon1 {
    position: absolute;
    top: 130px;
    left: 70px;
    background: #015CB9;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    z-index: 11; }
  .round-icon2 {
    position: absolute;
    bottom: 130px;
    left: 70px;
    background: #015CB9;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    z-index: 11; }
  .round-icon3 {
    position: absolute;
    top: 130px;
    right: 70px;
    background: #015CB9;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    z-index: 11; }
  .round-icon4 {
    position: absolute;
    bottom: 130px;
    right: 70px;
    background: #015CB9;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    z-index: 11; } }

@media (min-width: 992px) and (max-width: 1199.98px) {
  .round-icon1 {
    content: '';
    position: absolute;
    top: 100px;
    left: 60px;
    background: #015CB9;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    z-index: 11; }
  .round-icon2 {
    position: absolute;
    bottom: 82px;
    left: 60px;
    background: #015CB9;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    z-index: 11; }
  .round-icon3 {
    position: absolute;
    top: 100px;
    right: 60px;
    background: #015CB9;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    z-index: 11; }
  .round-icon4 {
    position: absolute;
    bottom: 82px;
    right: 60px;
    background: #015CB9;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    z-index: 11; } }

@media (min-width: 768px) and (max-width: 991.98px) {
  .round-icon1 {
    content: '';
    position: absolute;
    top: 85px;
    left: 60px;
    background: #015CB9;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    z-index: 11; }
  .round-icon2 {
    position: absolute;
    bottom: 82px;
    left: 63px;
    background: #015CB9;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    z-index: 11; }
  .round-icon3 {
    position: absolute;
    top: 85px;
    right: 60px;
    background: #015CB9;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    z-index: 11; }
  .round-icon4 {
    position: absolute;
    bottom: 82px;
    right: 63px;
    background: #015CB9;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    z-index: 11; } }

@media (max-width: 767.98px) {
  .round-icon1, .round-icon2, .round-icon3 {
    display: none; } }

/* Các trang sản phẩm */
.layout-collections {
  padding-bottom: 30px; }

.productList_tabs {
  display: flex;
  flex-wrap: wrap;
  padding: 0 10%;
  justify-content: center;
  margin-bottom: 40px; }
  .productList_tabs li {
    max-width: 25%;
    flex: 0 0 25%;
    text-align: center;
    position: relative;
    border-bottom: 2px solid transparent; }
    .productList_tabs li.active {
      border-bottom: 2px solid #015CB9; }
    .productList_tabs li:after {
      content: '';
      position: absolute;
      right: 0;
      top: 15px;
      bottom: 0;
      height: 16px;
      width: 1px;
      background: #E5E5E5;
      margin: 0 auto; }
    .productList_tabs li:last-child:after {
      width: 0; }
    .productList_tabs li:hover {
      border-bottom: 2px solid #015CB9; }
    .productList_tabs li a {
      line-height: 21px;
      font-size: 14px;
      font-weight: 700;
      display: block;
      padding: 15px; }
  @media (max-width: 991.98px) {
    .productList_tabs {
      padding: 0;
      white-space: nowrap;
      margin: 0px 0px 15px;
      overflow-x: auto;
      flex-wrap: nowrap;
      -webkit-box-pack: start;
      justify-content: start; }
      .productList_tabs li {
        max-width: inherit;
        flex: 0 0 auto; } }

.product-image {
  position: relative;
  margin-bottom: 40px; }
  .product-image img {
    object-fit: cover;
    height: 218px;
    width: 100%; }
  .product-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    z-index: 1; }
  @media (max-width: 991.98px) {
    .product-image {
      margin-bottom: 15px; } }

.product-title {
  position: absolute;
  top: 50%;
  left: 10%;
  color: #fff;
  z-index: 2;
  font-size: 32px;
  display: flex;
  line-height: 36px;
  align-items: center; }

.product-description table {
  width: 100% !important; }
  .product-description table tr:first-child {
    border-top: 3px solid #737373; }
  .product-description table tr td {
    padding: 10px 8px !important; }

/* Cụm Trang Hỗ trợ */
.pageContent h6 {
  font-size: 18px;
  font-weight: 600; }

.pageContent table td, .pageContent table th {
  padding: 8px; }

.pageContent table tr:first-child {
  border-top: 3px solid #737373; }
  .pageContent table tr:first-child td {
    font-weight: 600; }

/* Cụm các trang công ty */
.congty_des table td, .congty_des table th {
  padding: 8px; }

.congty_des table tr:first-child {
  border-top: 3px solid #737373; }
  .congty_des table tr:first-child td {
    font-weight: 600; }

/* Trang Triết lý quản lý */
.pageHeadingSubTitle {
  max-width: 990px;
  text-align: center;
  margin: 0 auto 16px;
  font-weight: 600;
  font-size: 24px; }
  @media (max-width: 991.98px) {
    .pageHeadingSubTitle {
      max-width: 100%;
      font-size: 20px; } }

.listsTrietly .trietly__item {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  text-align: center;
  padding: 50px 20px; }
  .listsTrietly .trietly__item:nth-child(2) {
    background: #FAFAFA; }
  .listsTrietly .trietly__item .trietly__item-img img {
    max-width: 220px; }
  .listsTrietly .trietly__item .trietly_item-contentTitle {
    margin: 8px 0;
    font-size: 20px;
    font-weight: 600; }
  .listsTrietly .trietly__item .trietly_item-contentDes {
    max-width: 90%;
    margin: 0 auto; }
  @media (max-width: 767.98px) {
    .listsTrietly .trietly__item {
      flex: 0 0 100%;
      max-width: 100%;
      padding: 20px; } }

/* Trang Chứng nhận */
#page-congty-giaychungnhan .nav-tabs {
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
  /*! align-items: center; */
  border: 0; }
  #page-congty-giaychungnhan .nav-tabs .nav-item {
    min-width: 300px;
    margin: 0;
    max-width: 40%; }
    #page-congty-giaychungnhan .nav-tabs .nav-item a {
      font-weight: 500;
      padding: 20px;
      background: #F5F5F5;
      height: 100%;
      align-items: center;
      display: flex;
      text-align: center;
      justify-content: center; }
      #page-congty-giaychungnhan .nav-tabs .nav-item a.active {
        background: #000;
        color: #fff; }
    @media (max-width: 991.98px) and (min-width: 768px) {
      #page-congty-giaychungnhan .nav-tabs .nav-item {
        max-width: 49%; } }
    @media (max-width: 767.98px) {
      #page-congty-giaychungnhan .nav-tabs .nav-item {
        max-width: 100%;
        width: 100%; } }

#page-congty-giaychungnhan .tab-content .tab-pane.active {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center; }

#page-congty-giaychungnhan .tab-content .tab-pane .tab-content-item {
  flex: 0 0 300px;
  width: 300px; }

/* Trang Lịch sử công ty */
.lichsuhinhthanh-item {
  display: flex;
  flex-wrap: wrap; }
  .lichsuhinhthanh-item .lichsuhinhthanh-item-title {
    max-width: 50%;
    flex: 0 0 50%; }
    .lichsuhinhthanh-item .lichsuhinhthanh-item-title h2 {
      font-size: 24px;
      font-weight: 600;
      position: relative;
      padding-top: 16px; }
      .lichsuhinhthanh-item .lichsuhinhthanh-item-title h2:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 140px;
        height: 3px;
        background: #015CB9; }
  .lichsuhinhthanh-item .lichsuhinhthanh-item-des {
    max-width: 50%;
    flex: 0 0 50%;
    padding-top: 57px; }
    .lichsuhinhthanh-item .lichsuhinhthanh-item-des p {
      margin-bottom: 8px; }
  @media (max-width: 767.98px) {
    .lichsuhinhthanh-item .lichsuhinhthanh-item-title {
      max-width: 100%;
      flex: 0 0 100%; }
    .lichsuhinhthanh-item .lichsuhinhthanh-item-des {
      max-width: 100%;
      flex: 0 0 100%;
      padding-top: 25px; } }

/* Page Giới thiệu SHL */
#page-congty-gioithieu .pageContent {
  max-width: 90%;
  margin: 0 auto; }

#page-congty-gioithieu .pageContentTop {
  display: flex;
  flex-wrap: wrap; }
  #page-congty-gioithieu .pageContentTop .pageContentTop-left {
    max-width: 30%;
    flex: 0 0 30%; }
  #page-congty-gioithieu .pageContentTop .pageContentTop-right {
    max-width: 70%;
    flex: 0 0 70%;
    padding-left: 24px; }
    #page-congty-gioithieu .pageContentTop .pageContentTop-right p {
      margin-bottom: 5px; }
  @media (max-width: 991.98px) {
    #page-congty-gioithieu .pageContentTop .pageContentTop-left {
      max-width: 100%;
      flex: 0 0 100%; }
    #page-congty-gioithieu .pageContentTop .pageContentTop-right {
      max-width: 100%;
      flex: 0 0 100%;
      padding-left: 0; } }

/* Page Quan hệ công chúng */
@media (max-width: 991.98px) {
  #page-hotro-quanhecongchung iframe {
    width: 100%; } }

/* Yêu cầu tham quan */
#page-hotro-yeucauthamquan .pageContent .pageContent-title {
  font-size: 18px;
  font-weight: 600; }

#page-hotro-yeucauthamquan .pageContent form {
  border-top: 2px solid #737373; }
  #page-hotro-yeucauthamquan .pageContent form .input-group {
    border-top: 1px solid #f5f5f5; }
    @media (max-width: 991.98px) {
      #page-hotro-yeucauthamquan .pageContent form .input-group {
        margin-bottom: 10px; } }
    #page-hotro-yeucauthamquan .pageContent form .input-group .input-group-label {
      flex: 0 0 200px;
      max-width: 200px;
      padding: 12px 10px;
      position: relative; }
      #page-hotro-yeucauthamquan .pageContent form .input-group .input-group-label:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        height: 20px;
        width: 2px;
        background: #F5F5F5; }
      #page-hotro-yeucauthamquan .pageContent form .input-group .input-group-label .required {
        color: red;
        font-weight: 700;
        margin-left: 5px;
        display: inline-block; }
      @media (max-width: 991.98px) {
        #page-hotro-yeucauthamquan .pageContent form .input-group .input-group-label {
          flex: 0 0 100%;
          max-width: 100%;
          padding: 5px 0px; } }
    #page-hotro-yeucauthamquan .pageContent form .input-group .input-group-textbox {
      flex: 0 0 calc(100% - 200px);
      max-width: calc(100% - 200px);
      padding: 12px 10px; }
      #page-hotro-yeucauthamquan .pageContent form .input-group .input-group-textbox input[type="text"], #page-hotro-yeucauthamquan .pageContent form .input-group .input-group-textbox input[type="email"] {
        border: 1px solid #ced4da;
        width: 300px;
        height: 40px;
        padding: 5px; }
      #page-hotro-yeucauthamquan .pageContent form .input-group .input-group-textbox input[type="file"] {
        display: none; }
      #page-hotro-yeucauthamquan .pageContent form .input-group .input-group-textbox .label-file {
        padding: 10px 28px;
        margin-right: 12px;
        border-radius: 2px;
        border: 1px solid #E5E5E5;
        background: #F5F5F5; }
      #page-hotro-yeucauthamquan .pageContent form .input-group .input-group-textbox textarea {
        border: 1px solid #ced4da;
        width: 900px;
        height: 100px;
        padding: 5px; }
      #page-hotro-yeucauthamquan .pageContent form .input-group .input-group-textbox .input-group-note {
        color: #A3A3A3;
        font-size: 12px;
        margin-top: 7px; }
      @media (max-width: 991.98px) {
        #page-hotro-yeucauthamquan .pageContent form .input-group .input-group-textbox {
          flex: 0 0 100%;
          max-width: 100%;
          padding: 0; }
          #page-hotro-yeucauthamquan .pageContent form .input-group .input-group-textbox input[type="text"], #page-hotro-yeucauthamquan .pageContent form .input-group .input-group-textbox input[type="email"], #page-hotro-yeucauthamquan .pageContent form .input-group .input-group-textbox textarea {
            width: 100%; } }

@-moz-keyframes ripple ripple {
  5%, 100% {
    opacity: 0; }
  5% {
    opacity: 1; } }

@-webkit-keyframes ripple {
  5%, 100% {
    opacity: 0; }
  5% {
    opacity: 1; } }

@keyframes ripple ripple {
  5%, 100% {
    opacity: 0; }
  5% {
    opacity: 1; } }

#page-hotro-yeucauthamquan .pageContent form .input-group .input-group-textbox input[type="radio"] {
  display: none; }

#page-hotro-yeucauthamquan .pageContent form .input-group .input-group-textbox input[type="radio"] + label {
  position: relative;
  cursor: pointer;
  padding-left: 28px;
  margin: 0 20px 0 0; }

#page-hotro-yeucauthamquan .pageContent form .input-group .input-group-textbox input[type="radio"] + label:before, #page-hotro-yeucauthamquan .pageContent form .input-group .input-group-textbox input[type="radio"] + label:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }

#page-hotro-yeucauthamquan .pageContent form .input-group .input-group-textbox input[type="radio"] + label:before {
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: #323232;
  -moz-box-shadow: inset 0 0 0 18px #efefef;
  -webkit-box-shadow: inset 0 0 0 18px #efefef;
  box-shadow: inset 0 0 0 18px #efefef; }

#page-hotro-yeucauthamquan .pageContent form .input-group .input-group-textbox input[type="radio"] + label:after {
  top: 49%;
  left: 9px;
  width: 54px;
  height: 54px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.3);
  -moz-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0); }

#page-hotro-yeucauthamquan .pageContent form .input-group .input-group-textbox input[type="radio"]:checked + label:before {
  -moz-box-shadow: inset 0 0 0 4px #efefef;
  -webkit-box-shadow: inset 0 0 0 4px #efefef;
  box-shadow: inset 0 0 0 4px #efefef; }

#page-hotro-yeucauthamquan .pageContent form .input-group .input-group-textbox input[type="radio"]:checked + label:after {
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -moz-animation: ripple 1s none;
  -webkit-animation: ripple 1s none;
  animation: ripple 1s none; }

.dieukhoan-group {
  margin-top: 40px; }

.dieukhoan-group-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px; }

.dieukhoan-group-content {
  background: #F5F5F5;
  padding: 10px; }

.dieukhoan-group-content .dieukhoan-group-des {
  background: #fff;
  padding: 24px;
  max-height: 300px;
  overflow-y: auto; }

.dieukhoan-group-content .dieukhoan-group-des p {
  margin-bottom: 5px; }

.dieukhoan-group-content .dieukhoan-group-des ul {
  list-style: inherit;
  padding-left: 30px; }

.dieukhoan-group-radio {
  margin-top: 10px; }

.dieukhoan-group-radio input[type="radio"] {
  display: none; }

.dieukhoan-group-radio input[type="radio"] + label {
  position: relative;
  cursor: pointer;
  padding-left: 28px;
  margin: 0 20px 0 0; }

.dieukhoan-group-radio input[type="radio"] + label:before, .dieukhoan-group-radio input[type="radio"] + label:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }

.dieukhoan-group-radio input[type="radio"] + label:before {
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: #323232;
  -moz-box-shadow: inset 0 0 0 18px #efefef;
  -webkit-box-shadow: inset 0 0 0 18px #efefef;
  box-shadow: inset 0 0 0 18px #efefef; }

.dieukhoan-group-radio input[type="radio"] + label:after {
  top: 49%;
  left: 9px;
  width: 54px;
  height: 54px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.3);
  -moz-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0); }

.dieukhoan-group-radio input[type="radio"]:checked + label:before {
  -moz-box-shadow: inset 0 0 0 4px #efefef;
  -webkit-box-shadow: inset 0 0 0 4px #efefef;
  box-shadow: inset 0 0 0 4px #efefef; }

.dieukhoan-group-radio input[type="radio"]:checked + label:after {
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -moz-animation: ripple 1s none;
  -webkit-animation: ripple 1s none;
  animation: ripple 1s none; }

#page-hotro-yeucauthamquan .btn-submit {
  background: #171717;
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  padding: 12px 32px;
  border: 0; }

/* Tuyển dụng Phúc lợi */
#page-tuyendung-phucloi .pageContent {
  max-width: 70%;
  justify-content: center;
  margin: 0 auto; }
  @media (max-width: 991.98px) {
    #page-tuyendung-phucloi .pageContent {
      max-width: 100%;
      justify-content: flex-start; } }

.phucloi__item {
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
  background: #F5F5F5;
  padding: 20px 32px 20px 20px;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px; }
  .phucloi__item .phucloi__item-img {
    flex: 0 0 50%;
    max-width: 50%; }
    .phucloi__item .phucloi__item-img img {
      width: 100%; }
  .phucloi__item .phucloi_item-content {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 15px; }
    .phucloi__item .phucloi_item-content .phucloi_item-contentTitle {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 15px; }
    .phucloi__item .phucloi_item-content .phucloi_item-contentDes ul {
      list-style: inherit;
      padding-left: 30px; }
  .phucloi__item:last-child {
    margin-bottom: 0; }
  @media (min-width: 768px) and (max-width: 991.98px) {
    .phucloi__item {
      align-items: flex-start; } }
  @media (max-width: 767.98px) {
    .phucloi__item {
      align-items: flex-start; }
      .phucloi__item .phucloi__item-img {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px; }
      .phucloi__item .phucloi_item-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0; } }

/* Form xin việc */
#page-tuyendung-donxinviec .pageContent form .input-group .input-group-textbox input[type="radio"] {
  display: none; }

#page-tuyendung-donxinviec .pageContent form .input-group .input-group-textbox input[type="radio"] + label {
  position: relative;
  cursor: pointer;
  padding-left: 28px;
  margin: 0 20px 0 0; }

#page-tuyendung-donxinviec .pageContent form .input-group .input-group-textbox input[type="radio"] + label:before, #page-tuyendung-donxinviec .pageContent form .input-group .input-group-textbox input[type="radio"] + label:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }

#page-tuyendung-donxinviec .pageContent form .input-group .input-group-textbox input[type="radio"] + label:before {
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: #323232;
  -moz-box-shadow: inset 0 0 0 18px #efefef;
  -webkit-box-shadow: inset 0 0 0 18px #efefef;
  box-shadow: inset 0 0 0 18px #efefef; }

#page-tuyendung-donxinviec .pageContent form .input-group .input-group-textbox input[type="radio"] + label:after {
  top: 49%;
  left: 9px;
  width: 54px;
  height: 54px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.3);
  -moz-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0); }

#page-tuyendung-donxinviec .pageContent form .input-group .input-group-textbox input[type="radio"]:checked + label:before {
  -moz-box-shadow: inset 0 0 0 4px #efefef;
  -webkit-box-shadow: inset 0 0 0 4px #efefef;
  box-shadow: inset 0 0 0 4px #efefef; }

#page-tuyendung-donxinviec .pageContent form .input-group .input-group-textbox input[type="radio"]:checked + label:after {
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -moz-animation: ripple 1s none;
  -webkit-animation: ripple 1s none;
  animation: ripple 1s none; }

#page-tuyendung-donxinviec .btn-submit {
  background: #171717;
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  padding: 12px 32px;
  border: 0; }

#page-tuyendung-donxinviec .pageContent .pageContent-title {
  font-size: 18px;
  font-weight: 600;
  color: #0A0A0A;
  margin-bottom: 12px; }

#page-tuyendung-donxinviec .pageContent form {
  border-top: 2px solid #737373; }
  #page-tuyendung-donxinviec .pageContent form .input-group {
    border-top: 1px solid #f5f5f5; }
    @media (max-width: 991.98px) {
      #page-tuyendung-donxinviec .pageContent form .input-group {
        margin-bottom: 10px; } }
    #page-tuyendung-donxinviec .pageContent form .input-group .input-group-label {
      flex: 0 0 200px;
      max-width: 200px;
      padding: 12px 10px;
      position: relative; }
      #page-tuyendung-donxinviec .pageContent form .input-group .input-group-label:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        height: 20px;
        width: 2px;
        background: #F5F5F5; }
      #page-tuyendung-donxinviec .pageContent form .input-group .input-group-label .required {
        color: red;
        font-weight: 700;
        margin-left: 5px;
        display: inline-block; }
      @media (max-width: 991.98px) {
        #page-tuyendung-donxinviec .pageContent form .input-group .input-group-label {
          flex: 0 0 100%;
          max-width: 100%;
          padding: 5px 0px; } }
    #page-tuyendung-donxinviec .pageContent form .input-group .input-group-textbox {
      flex: 0 0 calc(100% - 200px);
      max-width: calc(100% - 200px);
      padding: 12px 10px; }
      #page-tuyendung-donxinviec .pageContent form .input-group .input-group-textbox input[type="text"], #page-tuyendung-donxinviec .pageContent form .input-group .input-group-textbox input[type="email"] {
        border: 1px solid #ced4da;
        width: 300px;
        height: 40px;
        padding: 5px; }
      #page-tuyendung-donxinviec .pageContent form .input-group .input-group-textbox input[type="file"] {
        display: none; }
      #page-tuyendung-donxinviec .pageContent form .input-group .input-group-textbox .label-file {
        padding: 10px 28px;
        margin-right: 12px;
        border-radius: 2px;
        border: 1px solid #E5E5E5;
        background: #F5F5F5; }
      #page-tuyendung-donxinviec .pageContent form .input-group .input-group-textbox textarea {
        border: 1px solid #ced4da;
        width: 900px;
        height: 100px;
        padding: 5px; }
      #page-tuyendung-donxinviec .pageContent form .input-group .input-group-textbox .input-group-note {
        color: #A3A3A3;
        font-size: 12px;
        margin-top: 7px; }
      @media (max-width: 991.98px) {
        #page-tuyendung-donxinviec .pageContent form .input-group .input-group-textbox {
          flex: 0 0 100%;
          max-width: 100%;
          padding: 0; }
          #page-tuyendung-donxinviec .pageContent form .input-group .input-group-textbox input[type="text"], #page-tuyendung-donxinviec .pageContent form .input-group .input-group-textbox input[type="email"], #page-tuyendung-donxinviec .pageContent form .input-group .input-group-textbox textarea {
            width: 100%; } }

.skiptranslate.goog-te-gadget {
  display: none; }

.section-home-slider .hrv-banner-content {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%); }

.hrv-banner-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  pointer-events: none; }

.hrv-banner-caption .container {
  height: 100%; }

.hrv-caption-inner {
  position: relative;
  height: 100%;
  max-width: 80%;
  margin: 0 auto; }
  @media (max-width: 767.98px) {
    .hrv-caption-inner {
      max-width: 100%; } }

.section-home-slider .hrv-title1 {
  font-size: 32px;
  color: #fff;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 15px; }
  @media (max-width: 767.98px) {
    .section-home-slider .hrv-title1 {
      font-size: 26px; } }

.section-home-slider .hrv-title2 {
  position: relative;
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff; }
  @media (max-width: 767.98px) {
    .section-home-slider .hrv-title2 {
      font-size: 16px; } }

#homepage-slider .hrv-banner-content {
  text-align: center; }

#homepage-slider .hrv-title1 {
  -webkit-animation: fade 1000ms ease-in-out;
  -moz-animation: fade 1000ms ease-in-out;
  -ms-animation: fade 1000ms ease-in-out;
  animation: fade 1000ms ease-in-out; }

#homepage-slider .hrv-title2 {
  -webkit-animation: fade 2000ms ease-in-out;
  -moz-animation: fade 2000ms ease-in-out;
  -ms-animation: fade 2000ms ease-in-out;
  animation: fade 2000ms ease-in-out; }

.skiptranslate {
  display: none; }

.lichsuhinhthanh-item-img {
  margin-top: 15px;
  padding-right: 30px; }
