@-webkit-keyframes bounce {
  20%,53%,80%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%,43% {
    -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    -webkit-transform: translate3d(0,-30px,0);
    transform: translate3d(0,-30px,0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    -webkit-transform: translate3d(0,-15px,0);
    transform: translate3d(0,-15px,0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  20%,53%,80%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%,43% {
    -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    -webkit-transform: translate3d(0,-30px,0);
    transform: translate3d(0,-30px,0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    animation-timing-function: cubic-bezier(.755,.05,.855,.06);
    -webkit-transform: translate3d(0,-15px,0);
    transform: translate3d(0,-15px,0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

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

@-webkit-keyframes flash {
  50%,from,to {
    opacity: 1;
  }

  25%,75% {
    opacity: 0;
  }
}

@keyframes flash {
  50%,from,to {
    opacity: 1;
  }

  25%,75% {
    opacity: 0;
  }
}

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

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }

  50% {
    -webkit-transform: scale3d(1.05,1.05,1.05);
    transform: scale3d(1.05,1.05,1.05);
  }

  to {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }

  50% {
    -webkit-transform: scale3d(1.05,1.05,1.05);
    transform: scale3d(1.05,1.05,1.05);
  }

  to {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }
}

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

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }

  30% {
    -webkit-transform: scale3d(1.25,.75,1);
    transform: scale3d(1.25,.75,1);
  }

  40% {
    -webkit-transform: scale3d(.75,1.25,1);
    transform: scale3d(.75,1.25,1);
  }

  50% {
    -webkit-transform: scale3d(1.15,.85,1);
    transform: scale3d(1.15,.85,1);
  }

  65% {
    -webkit-transform: scale3d(.95,1.05,1);
    transform: scale3d(.95,1.05,1);
  }

  75% {
    -webkit-transform: scale3d(1.05,.95,1);
    transform: scale3d(1.05,.95,1);
  }

  to {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }

  30% {
    -webkit-transform: scale3d(1.25,.75,1);
    transform: scale3d(1.25,.75,1);
  }

  40% {
    -webkit-transform: scale3d(.75,1.25,1);
    transform: scale3d(.75,1.25,1);
  }

  50% {
    -webkit-transform: scale3d(1.15,.85,1);
    transform: scale3d(1.15,.85,1);
  }

  65% {
    -webkit-transform: scale3d(.95,1.05,1);
    transform: scale3d(.95,1.05,1);
  }

  75% {
    -webkit-transform: scale3d(1.05,.95,1);
    transform: scale3d(1.05,.95,1);
  }

  to {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }
}

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

@-webkit-keyframes shake {
  from,to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  10%,30%,50%,70%,90% {
    -webkit-transform: translate3d(-10px,0,0);
    transform: translate3d(-10px,0,0);
  }

  20%,40%,60%,80% {
    -webkit-transform: translate3d(10px,0,0);
    transform: translate3d(10px,0,0);
  }
}

@keyframes shake {
  from,to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  10%,30%,50%,70%,90% {
    -webkit-transform: translate3d(-10px,0,0);
    transform: translate3d(-10px,0,0);
  }

  20%,40%,60%,80% {
    -webkit-transform: translate3d(10px,0,0);
    transform: translate3d(10px,0,0);
  }
}

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

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0,0,1,15deg);
    transform: rotate3d(0,0,1,15deg);
  }

  40% {
    -webkit-transform: rotate3d(0,0,1,-10deg);
    transform: rotate3d(0,0,1,-10deg);
  }

  60% {
    -webkit-transform: rotate3d(0,0,1,5deg);
    transform: rotate3d(0,0,1,5deg);
  }

  80% {
    -webkit-transform: rotate3d(0,0,1,-5deg);
    transform: rotate3d(0,0,1,-5deg);
  }

  to {
    -webkit-transform: rotate3d(0,0,1,0deg);
    transform: rotate3d(0,0,1,0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0,0,1,15deg);
    transform: rotate3d(0,0,1,15deg);
  }

  40% {
    -webkit-transform: rotate3d(0,0,1,-10deg);
    transform: rotate3d(0,0,1,-10deg);
  }

  60% {
    -webkit-transform: rotate3d(0,0,1,5deg);
    transform: rotate3d(0,0,1,5deg);
  }

  80% {
    -webkit-transform: rotate3d(0,0,1,-5deg);
    transform: rotate3d(0,0,1,-5deg);
  }

  to {
    -webkit-transform: rotate3d(0,0,1,0deg);
    transform: rotate3d(0,0,1,0deg);
  }
}

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

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }

  10%,20% {
    -webkit-transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);
    transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);
  }

  30%,50%,70%,90% {
    -webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
    transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
  }

  40%,60%,80% {
    -webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
    transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
  }

  to {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }

  10%,20% {
    -webkit-transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);
    transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);
  }

  30%,50%,70%,90% {
    -webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
    transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
  }

  40%,60%,80% {
    -webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
    transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
  }

  to {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }
}

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

@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  15% {
    -webkit-transform: translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);
    transform: translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);
  }

  30% {
    -webkit-transform: translate3d(20%,0,0) rotate3d(0,0,1,3deg);
    transform: translate3d(20%,0,0) rotate3d(0,0,1,3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);
    transform: translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);
  }

  60% {
    -webkit-transform: translate3d(10%,0,0) rotate3d(0,0,1,2deg);
    transform: translate3d(10%,0,0) rotate3d(0,0,1,2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);
    transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);
  }

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  15% {
    -webkit-transform: translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);
    transform: translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);
  }

  30% {
    -webkit-transform: translate3d(20%,0,0) rotate3d(0,0,1,3deg);
    transform: translate3d(20%,0,0) rotate3d(0,0,1,3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);
    transform: translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);
  }

  60% {
    -webkit-transform: translate3d(10%,0,0) rotate3d(0,0,1,2deg);
    transform: translate3d(10%,0,0) rotate3d(0,0,1,2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);
    transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);
  }

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

@-webkit-keyframes jello {
  11.1%,from,to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
    transform: skewX(-.78125deg) skewY(-.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(.390625deg) skewY(.390625deg);
    transform: skewX(.390625deg) skewY(.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
    transform: skewX(-.1953125deg) skewY(-.1953125deg);
  }
}

@keyframes jello {
  11.1%,from,to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
    transform: skewX(-.78125deg) skewY(-.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(.390625deg) skewY(.390625deg);
    transform: skewX(.390625deg) skewY(.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
    transform: skewX(-.1953125deg) skewY(-.1953125deg);
  }
}

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

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  20%,40%,60%,80%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }

  20% {
    -webkit-transform: scale3d(1.1,1.1,1.1);
    transform: scale3d(1.1,1.1,1.1);
  }

  40% {
    -webkit-transform: scale3d(.9,.9,.9);
    transform: scale3d(.9,.9,.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(.97,.97,.97);
    transform: scale3d(.97,.97,.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }
}

@keyframes bounceIn {
  20%,40%,60%,80%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }

  20% {
    -webkit-transform: scale3d(1.1,1.1,1.1);
    transform: scale3d(1.1,1.1,1.1);
  }

  40% {
    -webkit-transform: scale3d(.9,.9,.9);
    transform: scale3d(.9,.9,.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(.97,.97,.97);
    transform: scale3d(.97,.97,.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }
}

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

@-webkit-keyframes bounceInDown {
  60%,75%,90%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,-3000px,0);
    transform: translate3d(0,-3000px,0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0,25px,0);
    transform: translate3d(0,25px,0);
  }

  75% {
    -webkit-transform: translate3d(0,-10px,0);
    transform: translate3d(0,-10px,0);
  }

  90% {
    -webkit-transform: translate3d(0,5px,0);
    transform: translate3d(0,5px,0);
  }

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

@keyframes bounceInDown {
  60%,75%,90%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,-3000px,0);
    transform: translate3d(0,-3000px,0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0,25px,0);
    transform: translate3d(0,25px,0);
  }

  75% {
    -webkit-transform: translate3d(0,-10px,0);
    transform: translate3d(0,-10px,0);
  }

  90% {
    -webkit-transform: translate3d(0,5px,0);
    transform: translate3d(0,5px,0);
  }

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

@-webkit-keyframes bounceInLeft {
  60%,75%,90%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px,0,0);
    transform: translate3d(-3000px,0,0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px,0,0);
    transform: translate3d(25px,0,0);
  }

  75% {
    -webkit-transform: translate3d(-10px,0,0);
    transform: translate3d(-10px,0,0);
  }

  90% {
    -webkit-transform: translate3d(5px,0,0);
    transform: translate3d(5px,0,0);
  }

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

@keyframes bounceInLeft {
  60%,75%,90%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px,0,0);
    transform: translate3d(-3000px,0,0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px,0,0);
    transform: translate3d(25px,0,0);
  }

  75% {
    -webkit-transform: translate3d(-10px,0,0);
    transform: translate3d(-10px,0,0);
  }

  90% {
    -webkit-transform: translate3d(5px,0,0);
    transform: translate3d(5px,0,0);
  }

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

@-webkit-keyframes bounceInRight {
  60%,75%,90%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px,0,0);
    transform: translate3d(3000px,0,0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px,0,0);
    transform: translate3d(-25px,0,0);
  }

  75% {
    -webkit-transform: translate3d(10px,0,0);
    transform: translate3d(10px,0,0);
  }

  90% {
    -webkit-transform: translate3d(-5px,0,0);
    transform: translate3d(-5px,0,0);
  }

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

@keyframes bounceInRight {
  60%,75%,90%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px,0,0);
    transform: translate3d(3000px,0,0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px,0,0);
    transform: translate3d(-25px,0,0);
  }

  75% {
    -webkit-transform: translate3d(10px,0,0);
    transform: translate3d(10px,0,0);
  }

  90% {
    -webkit-transform: translate3d(-5px,0,0);
    transform: translate3d(-5px,0,0);
  }

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

@-webkit-keyframes bounceInUp {
  60%,75%,90%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0,3000px,0);
    transform: translate3d(0,3000px,0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0,-20px,0);
    transform: translate3d(0,-20px,0);
  }

  75% {
    -webkit-transform: translate3d(0,10px,0);
    transform: translate3d(0,10px,0);
  }

  90% {
    -webkit-transform: translate3d(0,-5px,0);
    transform: translate3d(0,-5px,0);
  }

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

@keyframes bounceInUp {
  60%,75%,90%,from,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0,3000px,0);
    transform: translate3d(0,3000px,0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0,-20px,0);
    transform: translate3d(0,-20px,0);
  }

  75% {
    -webkit-transform: translate3d(0,10px,0);
    transform: translate3d(0,10px,0);
  }

  90% {
    -webkit-transform: translate3d(0,-5px,0);
    transform: translate3d(0,-5px,0);
  }

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9,.9,.9);
    transform: scale3d(.9,.9,.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(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9,.9,.9);
    transform: scale3d(.9,.9,.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(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }
}

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

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0,10px,0);
    transform: translate3d(0,10px,0);
  }

  40%,45% {
    opacity: 1;
    -webkit-transform: translate3d(0,-20px,0);
    transform: translate3d(0,-20px,0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0,2000px,0);
    transform: translate3d(0,2000px,0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0,10px,0);
    transform: translate3d(0,10px,0);
  }

  40%,45% {
    opacity: 1;
    -webkit-transform: translate3d(0,-20px,0);
    transform: translate3d(0,-20px,0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0,2000px,0);
    transform: translate3d(0,2000px,0);
  }
}

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

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px,0,0);
    transform: translate3d(-2000px,0,0);
  }
}

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px,0,0);
    transform: translate3d(-2000px,0,0);
  }
}

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

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px,0,0);
    transform: translate3d(2000px,0,0);
  }
}

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px,0,0);
    transform: translate3d(2000px,0,0);
  }
}

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0,-10px,0);
    transform: translate3d(0,-10px,0);
  }

  40%,45% {
    opacity: 1;
    -webkit-transform: translate3d(0,20px,0);
    transform: translate3d(0,20px,0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0,-2000px,0);
    transform: translate3d(0,-2000px,0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0,-10px,0);
    transform: translate3d(0,-10px,0);
  }

  40%,45% {
    opacity: 1;
    -webkit-transform: translate3d(0,20px,0);
    transform: translate3d(0,20px,0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0,-2000px,0);
    transform: translate3d(0,-2000px,0);
  }
}

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

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0,-2000px,0);
    transform: translate3d(0,-2000px,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0,-2000px,0);
    transform: translate3d(0,-2000px,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px,0,0);
    transform: translate3d(-2000px,0,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px,0,0);
    transform: translate3d(-2000px,0,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px,0,0);
    transform: translate3d(2000px,0,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px,0,0);
    transform: translate3d(2000px,0,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0,2000px,0);
    transform: translate3d(0,2000px,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0,2000px,0);
    transform: translate3d(0,2000px,0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0,2000px,0);
    transform: translate3d(0,2000px,0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0,2000px,0);
    transform: translate3d(0,2000px,0);
  }
}

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

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px,0,0);
    transform: translate3d(-2000px,0,0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px,0,0);
    transform: translate3d(-2000px,0,0);
  }
}

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

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px,0,0);
    transform: translate3d(2000px,0,0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px,0,0);
    transform: translate3d(2000px,0,0);
  }
}

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

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

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

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0,-2000px,0);
    transform: translate3d(0,-2000px,0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0,-2000px,0);
    transform: translate3d(0,-2000px,0);
  }
}

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

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);
    transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
    transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
    transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);
    transform: perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);
    transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);
    transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
    transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
    transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);
    transform: perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);
    transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
    transform: perspective(400px) rotate3d(1,0,0,90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
    transform: perspective(400px) rotate3d(1,0,0,-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1,0,0,10deg);
    transform: perspective(400px) rotate3d(1,0,0,10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1,0,0,-5deg);
    transform: perspective(400px) rotate3d(1,0,0,-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
    transform: perspective(400px) rotate3d(1,0,0,90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
    transform: perspective(400px) rotate3d(1,0,0,-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1,0,0,10deg);
    transform: perspective(400px) rotate3d(1,0,0,10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1,0,0,-5deg);
    transform: perspective(400px) rotate3d(1,0,0,-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
    transform: perspective(400px) rotate3d(0,1,0,90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0,1,0,-20deg);
    transform: perspective(400px) rotate3d(0,1,0,-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0,1,0,10deg);
    transform: perspective(400px) rotate3d(0,1,0,10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0,1,0,-5deg);
    transform: perspective(400px) rotate3d(0,1,0,-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
    transform: perspective(400px) rotate3d(0,1,0,90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0,1,0,-20deg);
    transform: perspective(400px) rotate3d(0,1,0,-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0,1,0,10deg);
    transform: perspective(400px) rotate3d(0,1,0,10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0,1,0,-5deg);
    transform: perspective(400px) rotate3d(0,1,0,-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

  to {
    -webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
    transform: perspective(400px) rotate3d(1,0,0,90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

  to {
    -webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
    transform: perspective(400px) rotate3d(1,0,0,90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

  to {
    -webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
    transform: perspective(400px) rotate3d(0,1,0,90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

  to {
    -webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
    transform: perspective(400px) rotate3d(0,1,0,90deg);
    opacity: 0;
  }
}

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

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

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%,0,0) skewX(30deg);
    transform: translate3d(100%,0,0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%,0,0) skewX(30deg);
    transform: translate3d(100%,0,0) skewX(30deg);
    opacity: 0;
  }
}

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

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

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0,0,1,200deg);
    transform: rotate3d(0,0,1,200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0,0,1,200deg);
    transform: rotate3d(0,0,1,200deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0,0,1,45deg);
    transform: rotate3d(0,0,1,45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0,0,1,45deg);
    transform: rotate3d(0,0,1,45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0,0,1,-45deg);
    transform: rotate3d(0,0,1,-45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0,0,1,-45deg);
    transform: rotate3d(0,0,1,-45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0,0,1,-45deg);
    transform: rotate3d(0,0,1,-45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0,0,1,-45deg);
    transform: rotate3d(0,0,1,-45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0,0,1,90deg);
    transform: rotate3d(0,0,1,90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0,0,1,90deg);
    transform: rotate3d(0,0,1,90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,60% {
    -webkit-transform: rotate3d(0,0,1,80deg);
    transform: rotate3d(0,0,1,80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,80% {
    -webkit-transform: rotate3d(0,0,1,60deg);
    transform: rotate3d(0,0,1,60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0,700px,0);
    transform: translate3d(0,700px,0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,60% {
    -webkit-transform: rotate3d(0,0,1,80deg);
    transform: rotate3d(0,0,1,80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,80% {
    -webkit-transform: rotate3d(0,0,1,60deg);
    transform: rotate3d(0,0,1,60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0,700px,0);
    transform: translate3d(0,700px,0);
    opacity: 0;
  }
}

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

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(.1) rotate(30deg);
    transform: scale(.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(.1) rotate(30deg);
    transform: scale(.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

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

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }

  50% {
    opacity: 1;
  }
}

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

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
    transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
    transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
    transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
    transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

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

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
    transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
    transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
    transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
    transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

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

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
    transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
    transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
    transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
    transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

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

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
    transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
    transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
    transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
    transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

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

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }

  to {
    opacity: 0;
  }
}

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
    transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
    transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
    transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
    transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
    transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px,0,0);
    transform: scale(.1) translate3d(-2000px,0,0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
    transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px,0,0);
    transform: scale(.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(.475,.475,.475) translate3d(-42px,0,0);
    transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px,0,0);
    transform: scale(.1) translate3d(2000px,0,0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
    transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px,0,0);
    transform: scale(.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(.475,.475,.475) translate3d(0,60px,0);
    transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
    transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
    transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
    -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    animation-timing-function: cubic-bezier(.55,.055,.675,.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
    transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
    animation-timing-function: cubic-bezier(.175,.885,.32,1);
  }
}

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

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

  to {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

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

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

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

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

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

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

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

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

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

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

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

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

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

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

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

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

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

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

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

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

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

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

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

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
}

.animated.faster {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
}

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

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print),(prefers-reduced-motion:reduce) {
  .animated {
    -webkit-animation-duration: 1ms!important;
    animation-duration: 1ms!important;
    -webkit-transition-duration: 1ms!important;
    transition-duration: 1ms!important;
    -webkit-animation-iteration-count: 1!important;
    animation-iteration-count: 1!important;
  }
}

#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #ff0505;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

#nprogress .peg {
  display: block;
  position: absolute;
  right: 0;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d,0 0 5px #29d;
  opacity: 1;
  -webkit-transform: rotate(3deg) translate(0,-4px);
  -ms-transform: rotate(3deg) translate(0,-4px);
  transform: rotate(3deg) translate(0,-4px);
}

#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 999;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;
  -webkit-animation: nprogress-spinner .4s linear infinite;
  animation: nprogress-spinner .4s linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .bar,.nprogress-custom-parent #nprogress .spinner {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes nprogress-spinner {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*
:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical>.swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,.swiper-wrapper {
  transform: translate3d(0px,0,0);
}

.swiper-container-multirow>.swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column>.swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode>.swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform,height;
}

.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
}

.swiper-container-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size)/ 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color,var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none!important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0,0,0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: .2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color,var(--swiper-theme-color));
}

.swiper-container-vertical>.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px,-50%,0);
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: .2s transform,.2s top;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s transform,.2s left;
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s transform,.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0,0,0,.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color,var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0,0,0,.1);
}

.swiper-container-horizontal>.swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical>.swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0,0,0,.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color,var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}/*@font-face {    font-family: 'BedrockPlain';    src: url('../fonts/BedrockPlain/43707366.eot');    src: local(''), url('../fonts/BedrockPlain/43707366.woff') format('woff'), url('../fonts/BedrockPlain/fonts/43707366.ttf') format('truetype'), url('../fonts/BedrockPlain/43707366.svg') format('svg');    font-weight: normal;    font-style: normal;}@font-face { font-family: 'LatoBlack'; src: url('../fonts/lato/LatoBlack.eot');  src: url('../fonts/lato/LatoBlack.woff') format('woff'), url('../fonts/lato/LatoBlack.ttf') format('truetype'), url('../fonts/lato/LatoBlack.svg') format('svg'); font-weight: normal;  font-style: normal;}@font-face {  font-family: 'LatoSemibold';  src: url('../fonts/lato/LatoSemibold.eot'); src: url('../fonts/lato/LatoSemibold.woff') format('woff'), url('../fonts/lato/LatoSemibold.ttf') format('truetype'), url('../fonts/lato/LatoSemibold.svg') format('svg');  font-weight: normal;  font-style: normal;}@font-face {  font-family: 'LatoHeavy'; src: url('../fonts/lato/LatoHeavy.eot');  src: url('../fonts/lato/LatoHeavy.woff') format('woff'), url('../fonts/lato/LatoHeavy.ttf') format('truetype'), url('../fonts/lato/LatoHeavy.svg') format('svg'); font-weight: normal;  font-style: normal;}@font-face {  font-family: 'LatoBold';  src: url('../fonts/lato/LatoBold.eot'); src: url('../fonts/lato/LatoBold.woff') format('woff'), url('../fonts/lato/LatoBold.ttf') format('truetype'), url('../fonts/lato/LatoBold.svg') format('svg');  font-weight: normal;  font-style: normal;}@font-face {  font-family: 'MuliRegular'; src: url('fonts/lato/MuliRegular.eot'); src: url('../fonts/lato/MuliRegular.woff') format('woff'), url('../fonts/lato/MuliRegular.ttf') format('truetype'), url('../fonts/lato/MuliRegular.svg') format('svg'); font-weight: normal;  font-style: normal;}@font-face {    font-family: 'Dancingscript';     src: url('../fonts/Dancing/SVNDancingscript.eot');    src: url('../fonts/Dancing/SVNDancingscript.eot') format('embedded-opentype'),    url('../fonts/Dancing/SVNDancingscript.woff2') format('woff2'),    url('../fonts/Dancing/SVNDancingscript.woff') format('woff'),    url('../fonts/Dancing/SVNDancingscript.ttf') format('truetype'),    url('../fonts/Dancing/SVNDancingscript.svg#SVNDancingscript') format('svg');}@font-face { font-family: 'LatoMedium';  src: url('../fonts/lato/LatoMedium.eot'); src: url('../fonts/lato/LatoMedium.woff') format('woff'), url('../fonts/lato/LatoMedium.ttf') format('truetype'), url('../fonts/lato/LatoMedium.svg') format('svg');  font-weight: normal;  font-style: normal; font-display: block;}*/.bg-gray {
  background: #EDEDED;
}
*/
body {
  font-family: roboto,arial;
  font-weight: 300;

  margin: auto;
  position: relative;

  margin: auto;
}

p {
  margin-bottom: 0;
}

b,strong,h1,h2,h3,h4,h5 {
/* font-family:'LatoMedium'; *//* font-weight: normal; */;
}

.b5 {
  border: 5px solid rgba(108, 139, 198, 0.47);
}

.ccol-10 {
  padding: 10px;
}

.crow-10 {
  margin-left: -10px;
  margin-right: -10px;
}

.bg-blue {
  background: url(../img/han-mem-c.png) repeat-x  center;
  background-size: cover;
}

.bfont {
}

.fw {
  width: 100%;
}

a {
  color: #0066cc;
}

.line-through {
  text-decoration: line-through;
}

.pitem {
  margin-bottom: 20px;
}

.xgift {
  background: url(../img/gift.png) no-repeat 0px 1px;
  background-size: 17px;
  height: 19px;
  padding-left: 22px;
  font-size: 14px;
}

.container {
    /* width: 1200px; */;
}

.fb-comments iframe {
  width: 100% !important;
  display: block;
}

.v-title {
  font-family: avo;
  letter-spacing: 2px;
  margin-bottom: 10px;
  margin-top: 5px;
  font-size: 20px;
}

.v-title .vfont {
/* font-family:BedrockPlain; */
  letter-spacing: 3px;
  font-size: 33px;
}

.xtitle {
  position: relative;
  top: -52px;
  text-align: center;
  text-transform: uppercase;
}

.xtitle .title {
  display: inline-block;
  margin: auto;
  background: #e7e8e8;
  display: inline-block;
  height: 50px;
  position: relative;
  line-height: 50px;
  padding: 0 20px;
  font-size: 22px;
}

.xtitle .title:after {
  content: "";
  background: url(../img/right-title.png) no-repeat;
  width: 24px;
  height: 50px;
  right: -24px;
  position: absolute;
}

.xtitle .title:before {
  content: "";
  background: url(../img/left-title.png) no-repeat;
  width: 24px;
  height: 50px;
  position: absolute;
  left: -23px;
}
#slide_show{position:relative;z-index:1}
img {
  max-width: 100%;
  height: auto !Important;
}

.img-max {
  width: 100%;
}

.content_main {
  padding-bottom: 20px;
}

.red {
  color: red !important;
}

.crow-10 {
  margin-left: -10px;
  margin-right: -10px;
}

.ccol-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.crow-0 {
  margin-left: -0px;
  margin-right: -0px;
}

.ccol-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.crow-5 {
  margin-left: -4px;
  margin-right: -4px;
}

.ccol-5 {
  padding-left: 4px;
  padding-right: 4px;
}

.owl-carousel {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ytb-control {
  width: 100%;
  padding: 5px;
  margin-top: 10px;
}

.main-title.white .title {
  color: #fff;
}

.main-title .title.mini {
  font-size: 17px;
}

.main-title.white .title:after {
}

.w-100 {
/* width:100% */;
}

.alert ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.alert ul li {
}

.text-left.main-title:after {
  content: "";
  display: none;
}

.text-left.main-title {
  margin-bottom: 0;
}

.main-title {
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 25px;
  display: block;
  width: 100%;
  font-weight: 500;
  position: relative;
  font-size: 30px;
  color: #333;
}

.main-title .title.left {
  text-align: left;
}

.main-title .title.left:after {
  background: url(../img/title-main.jpg) no-repeat -40px 0px;
  bottom: -15px;
}

.main-title.white .title {
  color: #fff;
}

.main-title .title:before {
  content: "";
  width: 200px;
  height: 1px;
  position: absolute;
  bottom: 1px;
  left: calc(50% - 100px);
  background: #000000;
  height: 1px;
}
.main-title .title:after {
  content: "";
  width: 60px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 30px);
  background: #fbc71b;
  height: 3px;
}



.main-title.left .title{
    padding-left: 0;
}
.main-title.left{
    text-align: left;
    padding-bottom: 0;
}

.main-title.left .title:before {
  
left: 0;
}
.main-title.left .title:after {
  
left: 0;
}


.main-title .title {
  font-size: 25px;
  position: relative;
  display: inline-block;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: 700;
  color: #303a59;
  padding-bottom: 7px;
  margin-bottom: 20px;
}/* brand */#owl-doitac {
}

#owl-doitac .item-doitac {border: 1px solid #ccc;padding: 10px;}

#owl-doitac .item-doitac img {
}/* brand *//* tags-section */#tags-section {
}

#tags-section .wrap-tags {
}

#tags-section .wrap-tags a {
  display: inline-block;
  border: 1px solid #4D2D1D;
  color: #4D2D1D;
  padding: 2px 12px;
  margin-right: 7px;
  transition: 0.2s ease;
}

#tags-section .wrap-tags a:hover {
  background: #4D2D1D;
  color: #fff;
  text-decoration: none;
}/* brand *//* header */.menu-rp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-rp > li:hover > a {
    /* color: #fed524; */
  text-decoration: none;
}

.menu-rp > li a {
  display: block;
  width: 100%;
  padding: 18px 0px;
  color: #fff;
}

.menu-rp > li:hover ul {
}

.menu-rp > li ul {
  display: none;
}

.menu-rp > li {
  position: relative;
  z-index: 1;
  text-align: center;
  -ms-flex: 1 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: auto;
}/* header *//*searcg */.box-search-result {
  position: absolute;
  background: #fff;
  border: 1px solid #cccccca1;
  box-shadow: 0px 0px 1px #e1e1e1;
  left: 0;
  top: 33px;
  max-width: 100%;
  display: none;
  max-height: 400px;
  overflow-y: scroll;
  width: 100%;
  z-index: 1234;
/* padding: 5px; */;
}

.box_prosearchajax {
  border-bottom: 1px dashed #e1e1e1;
  padding: 5px;
  display: flex;
}

.box_prosearchajax:last-child {
  border-bottom: none;
}

.box_prosearchajax:hover {
  background: #e1e1e1;
}

.box_prosearchajax a {
  color: #000 !important;
  font-size: 12px;
  background: transparent !important;
  padding: 0 !important;
}

.box_prosearchajax a:hover {
  color: red;
}

.box_prosearchajax img {
  margin-right: 10px;
  width: 58px;
}

.box-search-result::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.box-search-result::-webkit-scrollbar {
  width: 5px;
  background-color: #F5F5F5;
}

.box-search-result::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: #555;
}

.box_searchtitle {
  background-color: #f6f7f9;
  padding: 3px 10px;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  font-size: 12px;
  color: #333;
  font-weight: bold;
}/* menu nav */.nav-wrap-menu {
}

.nav-wrap-menu {
  background: #4d2d1d;
}

#nav-menu {
}

#nav-menu li {
  position: relative;
}

#nav-menu li .toggle {
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  text-indent: 0;
  z-index: 2333333;
}

#nav-menu li .toggle i {
}

#nav-menu li.search {
}

#nav-menu li:hover > a {
  color: #ffc107;
  text-decoration: none;
}

#nav-menu li a {
  display: block;
  width: 100%;
  text-align: center;
  transition: 0.4s ease;
  padding: 10px 10px;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
}

#nav-menu li ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1234;
  background: #4d2d1d;
  display: none;
}

#nav-menu li ul a {
  text-align: left;
}

#nav-menu li ul ul {
  left: 100%;
  top: 0;
}

#nav-menu li ul li {
  white-space: nowrap;
  border-bottom: 1px solid #ccc6;
  padding-right: 20px;
}

#nav-menu li ul li a {
  font-size: 12px;
  padding: 7px 10px;
}

#nav-menu li ul li:hover a {
}

#nav-menu li:hover > ul {
  display: block;
}/* menu nav */header.sticky {
  padding: 0;
  position: sticky;
  top: 0;
}

header {
  z-index: 14;
  min-width: 100%;
  background-size: 100% 90%;
  position: relative;
  z-index: 2;
}

header .wrap-link {
  max-width: 600px;
}

header .wrap-link ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: auto;
}

header .wrap-link ul li:after {
  content: "";
  background: #333;
  width: 2px;
  height: 30%;
  top: 35%;
  position: absolute;
  right: 0;
}

header .wrap-link ul li:last-child:after {
  display: none;
}

header .wrap-link ul li {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  width: auto;
}

header .wrap-link ul li a {
  padding: 10px 10px;
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
    /* padding-left: 0; */;
}

header .wrap-link ul li:hover a {
}

header > .container {
    /* display: flex; */;
}

header.fixed .top-header {
  display: none;
}

header .top-header .lang-w {
}

header .top-header .lang-w a {
  font-size: 12px;
  position: relative;
  top: 3px;
}

header .top-header .lang-w a img {
}

header .top-header .right-m:before {
  content: "";
  width: 30px;
  height: 100%;
  position: absolute;
  background: #22252a;
  left: 10px;
  border-left: 1px solid #9394942e;
  transform: skewX(-25deg);
}

header .top-header .right-m:after {
  content: "";
  width: 30px;
  height: 100%;
  position: absolute;
  background: #22252a;
  left: -1px;
}

header .top-header .right-m {
  background: #303338;
  position: relative;
  padding-left: 70px;
}

header .top-header .right-m .d-inline {
  padding-right: 20px;
}
header .top-header .slogan{
    font-size: 13px;
}
header .top-header {
  color: #fff;
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 36px;
  z-index: 2;
  position: relative;
  background: #1a1d22;
  /* overflow: hidden; */
  z-index: 3;
}

header .top-header a {
  color: #fff;
  position:relative;
  padding: 0 12px;
}
header .top-header a:first-child:after{content:"";position:absolute;background: rgba(255, 255, 255, 0.54);width: 1px;height: 15px;right: -3px;top: 1px;}
header .top-header .pull-left {
  float: left;
  padding: 4px 0px;
}

header .top-header .location {
  background: url(../img/location.png) no-repeat;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  position: relative;
  top: 2px;
}

header .top-header .email {
  position: relative;
  display: inline-block;
}

header .top-header .middle-header {
}

header .top-header .wrap-logo {
}

header .top-heade .wrap-search {
}

header .top-heade .wrap-search input {
}

header .top-heade .wrap-search button {
}

header .top-heade .wrap-search a {
}

header .top-heade .wrap-search a:hover {
}

header .top-heade .hotline {
}

header .top-heade .hotline span {
}

header .top-header .pull-right {
  float: right;
}
header .top-header .hotline:after{content:"";position: absolute;background: #fbc71b;left: 100%;height: 100%;width: 200%;top: 0;}
header .top-header .hotline:before{content:"";background: #fbc71b;position: absolute;left: -9px;top: 0;width: 30px;height: 100%;transform: skewX(-25deg);}
header .top-header .hotline {
  padding-left: 0px;
  padding-top: 1px;
  background: #fbc71b;
  width: auto;
  position: relative;
  top: 10px;
}

header .top-header .hotline span {
  margin-right: 20px;
  display: inline-block;
  padding: 5px 0;
}

header .top-header .social {
  position: relative;
  padding-left: 5px;
}

header .top-header .social span {
}

header .top-header .social a {
  display: inline-block;
  color: #fff;
  margin-left: 1px;
  border: 1px solid #ccc;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 17px;
  line-height: 35px;
}

header .top-header .social a i {
}

header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
/* background:#ffffff; */
  -webkit-box-shadow: 0px 2px 3px 0px rgba(50, 50, 50, 0.2);
  -moz-box-shadow: 0px 2px 3px 0px rgba(50, 50, 50, 0.2);
  box-shadow: 0px 2px 3px 0px rgba(50, 50, 50, 0.2);
  z-index: 111;
}

header .middle-header {
  position: relative;
  z-index: 2;
}

header .middle-header .phone {
  padding: 9px 20px 9px 0;
  display: inline-block;
}

header .middle-header .phone a {
  color: #fff;
  font-weight: bold;
}

header .middle-header .phone .w-phone {
  display: inline-block;
  width: 25px;
  height: 25px;
  border: 2px solid #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 21px;
  margin-left: 6px;
}

header .middle-header .phone .w-phone i {
  font-size: 14px;
  position: relative;
  left: 1px;
  color: white;
}

.middle-header.clone-menu {
  transition: 0.5s;
  transform: translateY(-30px);
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  padding: 5px 0;
  opacity: 0;
  z-index: -1;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.2);
  -moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.2);
  box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.2);
  display: none;
}

.middle-header.clone-menu.show-menu {
  opacity: 1;
  transform: translateY(0px);
  z-index: 123;
  padding: 0;
  background: #22252a;
}

header .middle-header.clone-menu .wrap-logo {
  margin-top: 4px;
}

header .middle-header.clone-menu .wrap-logo img {
  max-height: 60px;
  width: auto;
}

header .wrap-logo > a {
  float: right;
}

header .wrap-logo .wrap-menu {
  float: right;
  width: 110px;
  margin-right: 10px;
  background: transparent;
  margin-top: 16px;
}

header .wrap-logo .hotline {
  display: none;
}

header .wrap-logo .lang-w {
  display: none;
}

header .wrap-logo {
    /* width: 20%; */    /* flex: 0 0 20%; */    /* padding-top: 2px; */    /* text-align: center; */
  -ms-flex: 20%;
  text-align: right;
  padding-left: 15px;
  padding-right: 15px;
}

header .shop-cart {
  background: url(../img/shop-cart.png) no-repeat 0px 16px;
  padding-left: 39px;
  padding-top: 10px;
  float: right;
}

header .shop-cart a {
  display: block;
  position: relative;
}

header .shop-cart span {
  color: #fff;
  text-transform: uppercase;
  width: 52px;
  display: inline-block;
}

header .shop-cart i:after,header .shop-cart i:before {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

header .shop-cart i:after {
  border-color: rgba(136, 183, 213, 0);
  border-right-color: #fd2c66;
  border-width: 6px;
  margin-top: -6px;
}

header .shop-cart i:before {
  border-color: rgba(194, 225, 245, 0);
  border-right-color: #fd2c66;
  border-width: 6px;
  margin-top: -6px;
}

header .shop-cart i {
  position: relative;
  background: #fd2c66;
  width: 32px;
  height: 30px;
  display: inline-block;
  top: -17px;
  border-radius: 4px;
  text-align: center;
  font-size: 16px;
  line-height: 29px;
  font-style: normal;
  color: #fff;
}

header .search-in-menu {
  width: 100% !important;
  position: relative;
  top: 7px;
  flex: 1 !important;
}

header .wrap-hotline {
}

header .wrap-hotline .v-content {
  margin-left: 10px;
/* padding-bottom: 10px; */;
}

header .wrap-hotline .v-content .has-icon {
  width: 40px;
  height: 40px;
  border: 2px solid red;
  display: inline-block;
  min-width: 40px;
  border-radius: 50%;
  line-height: 37px;
  text-align: center;
  font-size: 1.4em;
}

header .wrap-hotline .v-content .has-icon span {
}

header .wrap-hotline .v-content .has-icon span i {
}

header .wrap-hotline .v-content .has-content {
  padding-left: 10px;
  font-size: 14px;
}

header .wrap-hotline .v-content .has-content p {
  font-weight: bold;
  color: red;
}

header .wrap-hotline .v-content .has-content p:last-child {
  font-weight: normal;
  color: #333;
}

header .wrap-search {
  width: 25%;
  flex: 0 0 25%;
    /* text-align: center; */
  padding-top: 10px;
}

header  .hotline p {
}

header  .hotline p {
  margin: 0 0 5px 0;
  text-transform: uppercase;
  color: #a90606;
  font-size: 15px;
  background: url(../img/phone-header.png) 0px 3px no-repeat;
  padding-left: 26px;
  font-weight: 500;
}

header  .hotline {
}

header .wrap-search .list-icon {
  display: inline-block;
  width: calc(100% - 200px);
  text-align: center;
}

header .d-sm-none .wrap-search .search-form input {
  border: 1px solid #ccc;
}

header .d-sm-none .wrap-search .search-form {
  width: 96%;
}

header .wrap-search .search-form {
  width: 100%;
  position: relative;
  display: inline-block;
  border-radius: 4px;
  overflow: hidden;
}

header .wrap-search .search-form input {
  width: 100%;
  border: 0;
  padding: 5px 10px;
  border-radius: 0px;
  font-size: 13px;
  border: 2px solid #d8271b;
}

header .wrap-search .search-form button {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  padding: 0px 6px;
  border: 0;
  cursor: pointer;
  background: #d9261a;
  color: #fff;
}

header .wrap-search  a {
  display: inline-block;
  padding: 7px 17px;
  border-radius: 3px;
  color: #fff;
  font-size: 13px;
}

header .wrap-search  a.photo {
  flex: 0 0 20%;
  max-width: 20%;
}

header .wrap-search  .info {
  flex: 0 0 80%;
  max-width: 80%;
}

header .wrap-search  .info a {
}

header .wrap-search  .info .price {
  color: red;
  font-size: 15px;
}

header .wrap-search  .info .price span {
  text-decoration: line-through;
  color: #333;
}

header .wrap-tools {
  float: right;
  color: #fff;
  width: 75%;
}

header .wrap-tools .search-tool {
  margin-top: 20px;
}

header .wrap-tools .cart {
  background: transparent;
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: #fff;
  margin-right: 30px;
}

header .wrap-tools .vi-2:after {
  content: "";
  background: url(../img/icons.png) -66px 0px;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 0px;
}

header .wrap-tools .en-2:after {
  content: "";
  background: url(../img/icons.png) -46px 0px;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 0px;
}

header .wrap-tools .vi-2 {
  background: transparent;
  position: relative;
  padding-left: 23px;
  font-size: 14px;
  color: #fff;
  margin-right: 20px;
}

header .wrap-tools .en-2 {
  background: transparent;
  position: relative;
  padding-left: 23px;
  font-size: 14px;
  color: #fff;
  margin-right: 20px;
}

header .wrap-tools .cart:after {
  content: "";
  background: url(../img/icons.png) 31px 0px;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 1px;
}

header .wrap-tools .slogan {
  font-size: 15px;
  width: 65%;
  text-align: center;
}

header .wrap-tools .top-menu {
}

header .wrap-tools .top-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}

header .wrap-tools .top-menu .lang {
  top: 3px;
  display: inline-block;
  position: relative;
}

header .wrap-tools .top-menu .lang .vi {
  text-indent: -9999em;
  width: 23px;
  height: 18px;
  color: transparent;
  display: inline-block;
  background-position: -23px 2px;
}

header .wrap-tools .top-menu .lang .en {
  text-indent: -9999em;
  width: 23px;
  height: 18px;
  color: transparent;
  display: inline-block;
  background-position: 0px 2px;
}

header .wrap-tools .top-menu ul li {
  display: inline-block;
  position: relative;
  padding: 0 6px;
}

header .wrap-tools .top-menu ul li:last-child:after {
  display: none;
}

header .wrap-tools .top-menu ul li:after {
  content: "";
  background: #fff;
  width: 1px;
  height: 9px;
  position: absolute;
  right: -2px;
  top: 8px;
}

header .wrap-tools .top-menu ul li a {
  font-size: 13px;
  color: #fff;
}

header .wrap-logo img {
  transition: 0.7s ease all;
  max-width: 100%;
  opacity: 0;
  margin-bottom: -100px;
}

header .wrap-banner {
  float: left;
    /* width: 200px; */
  padding: 5px 0;
  width: 50%;
  text-align: center;
}

header .wrap-banner .inner {
  display: inline-block;
  padding-left: 50px;
  position: relative;
  text-align: left;
  color: red;
  font-size: 20px;
  line-height: 21px;
}

header .wrap-banner .inner span {
  position: absolute;
  left: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 34px;
  border-radius: 50%;
  border: 2px solid #003180;
}

header .wrap-banner .inner span i {
  font-size: 13px;
  color: #003184;
}

header .wrap-banner img {
  transition: 0.7s ease all;
    /* height: 85px; */
  max-height: 100%;
  max-width: 100%;
}

header.fixed .wrap-menu {
  padding-top: 0;
}

header.fixed .wrap-menu ul li {
  padding-bottom: 9px;
}

#mainSlider {
  max-width: 1200px;
  margin: auto;
}

.wrap-menu .main-menu:after {
  content: "";
  background: #fff;
  width: 3px;
  left: -2px;
  height: 100%;
  position: absolute;
  top: 0;
}

.wrap-menu .main-menu:before {
  content: "";
  background: #fff;
  width: 3px;
  right: -2px;
  height: 100%;
  position: absolute;
  top: 0;
}

.wrap-logo .wrap-menu .main-menu:before,.wrap-logo .wrap-menu .main-menu:after {
  display: none;
}

.wrap-logo .wrap-menu .main-menu .menu-relative {
  display: none;
}

.wrap-logo .wrap-menu .main-menu:hover .menu-relative {
  display: block;
}

.wrap-logo:hover .wrap-menu .main-menu {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.wrap-logo .wrap-menu .main-menu {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #fff;
  font-size: 14px;
  background: #fff;
  padding: 6px;
  color: #4a90e2;
  cursor: pointer;
  border-radius: 3px;
}

.wrap-menu .main-menu {
  width: 100%;
  position: relative;
  padding: 12px 0px;
  color: #4a90e2;
  font-size: 18px;
  -webkit-box-shadow: 0px 3px 2px 0px rgba(50, 50, 50, 0.3);
  -moz-box-shadow: 0px 3px 2px 0px rgba(50, 50, 50, 0.3);
  box-shadow: 0px 2px 2px 0px rgba(50, 50, 50, 0.2);
  margin-bottom: 10px;
  z-index: 23;
}

.wrap-menu .main-menu .menu-tree .menu-layer {
  display: flex;
  display: none;
}

.wrap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  flex: 0 0 75%;
}

.wrap-grid .grid {
}

.wrap-grid .grid strong {
}

.wrap-grid .grid strong a {
}

.wrap-grid .grid strong:hover a {
}

.wrap-grid .grid a {
  color: #9c9c9c;
  font-size: 14px;
  display: block;
  text-transform: capitalize;
}

.wrap-grid .grid a:hover {
}

.wrap-banner {
  flex: 0 0 25%;
}

.wrap-menu .main-menu .menu-tree {
  position: absolute;
  left: 281px;
  top: 0;
  z-index: 1234;
  background: #fff;
  width: calc(1200px - 312px);
  display: none;
  -webkit-box-shadow: -3px 0px 2px 0px rgba(50, 50, 50, 0.1);
  -moz-box-shadow: -3px 0px 2px 0px rgba(50, 50, 50, 0.1);
  box-shadow: -3px 0px 2px 0px rgba(50, 50, 50, 0.1);
  padding: 10px;
}

.wrap-logo .wrap-menu .main-menu .menu-tree {
  left: 200px;
  width: 752px;
  height: auto;
  min-height: 100%;
  -webkit-box-shadow: 0px 2px 6px 1px rgba(50, 50, 50, 0.1);
  -moz-box-shadow: 0px 2px 6px 1px rgba(50, 50, 50, 0.1);
  box-shadow: 0px 2px 6px 1px rgba(50, 50, 50, 0.1);
}

.wrap-logo .wrap-menu .main-menu .menu-relative {
  top: 33px;
  left: 0px;
  width: 200px;
  -webkit-box-shadow: 0px 2px 6px 1px rgba(50, 50, 50, 0.1);
  -moz-box-shadow: 0px 2px 6px 1px rgba(50, 50, 50, 0.1);
  box-shadow: 0px 2px 6px 1px rgba(50, 50, 50, 0.1);
}

.wrap-menu .main-menu .menu-relative {
  position: absolute;
  background: #fff;
  width: 280px;
  top: 60px;
  z-index: 5;
}

.wrap-menu .main-menu .menu-relative > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.wrap-menu .main-menu .menu-relative > ul li {
  padding: 0;
    /* border-bottom: 1px dashed #ccc; */
  z-index: 3;
}

.wrap-menu .main-menu .menu-relative > ul li:last-child {
  border: 0;
}

.wrap-menu .main-menu .menu-relative > ul li a {
  padding: 6.8px 10px;
  position: relative;
}

.wrap-menu .main-menu .menu-relative > ul > li:hover > a {
  background: #189eff;
  border-color: #189eff;
  color: #fff;
  z-index: 2;
/* border-top-left-radius: 5px; *//* border-bottom-left-radius: 5px; */;
}

.wrap-menu .main-menu .menu-relative > ul li span {
  position: relative;
  width: 29px;
  height: 20px;
  display: inline-block;
  top: -2px;
}

.wrap-menu .main-menu .menu-relative > ul li span img {
}

.wrap-menu.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
}

.search-form {padding: 12px 0px;}
.search-form:hover input {width: 200px;}

.search-form input::-webkit-input-placeholder { 
    color:   transparent;
}
.search-form input:-moz-placeholder {
   color:   transparent;
   opacity:  1;
}
.search-form input::-moz-placeholder { 
  color:   transparent;
   opacity:  1;
}
.search-form input:-ms-input-placeholder { 
  color:   transparent;
}
.search-form input::-ms-input-placeholder {
  color:   transparent;
}
.search-form input::placeholder {
   color:   transparent;
}


.search-form:hover input {width: 200px;}

.search-form:hover input::-webkit-input-placeholder { 
    color:   #ccc;
}
.search-form:hover input:-moz-placeholder {
   color:   #ccc;
   opacity:  1;
}
.search-form:hover input::-moz-placeholder { 
  color:  #ccc;
   opacity:  1;
}
.search-form:hover input:-ms-input-placeholder { 
  color:   #ccc;
}
.search-form:hover input::-ms-input-placeholder {
  color:   #ccc;
}
.search-form:hover input::placeholder {
   color:  #ccc;
}


.search-form input {
  width: 100%;
  font-size: 13px;
  padding: 6px 10px;
  border: 1px solid rgba(221, 221, 221, 0.68);
  outline: none;
  position: absolute;
  width: 45px;
  right: 0;
  transition: 0.7s ease;
  border-radius: 3px;
}

.search-form button {
  position: relative;
  top: 6px;
  right: 0;
  height: 100%;
  color: #334876;
  border: 0;
  padding: 0 12px;
  font-size: 15px;
  background: transparent;
}

.search-form button i {
}

.wrap-menu .left-fake-menu:after {
  content: "";
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  left: 15px;
  background: rgba(255, 255, 255, 0.13);
  transform: skewX(-25deg);
  top: 0;
  z-index: 2;
}

.wrap-menu .left-fake-menu > img {
  transform: skewX(-4deg);
  position: relative;
  z-index: 1;
  position: relative;
}

.wrap-menu .left-fake-menu {
  background: #22252a;
  display: inline-block;
  margin-left: -15px;
  float: left;
  position: absolute;
  z-index: 2;
  padding-left: 15px;
}

.wrap-menu .right-fake-menu {
  position: relative;
  z-index: 1;
}
.wrap-menu .logo{
    padding-top: 4px;
}
.wrap-menu {
  position: relative;
  z-index: 16;
  border-left: 0;
  border-right: 0;
  padding: 12px 0;
}

header .wrap-search-cart {
  float: left;
  width: 20%;
  align-content: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .is-search {
  display: none;
}

header .is-search .toggle-search {
}

header .is-search .toggle-search i {
  color: #fff;
  font-size: 22px;
}

header .is-search .wrap-search-form {
  display: none;
  position: absolute;
}

header .is-cart {
}

header .is-cart a {
  color: #fff;
  text-decoration: none;
}

header .is-cart .m-ic {
  position: relative;
}

header .is-cart .m-ic .icon-basket {
  color: #fff;
  font-size: 23px;
}

header .is-cart .m-ic .number {
  width: 16px;
  height: 16px;
  background: red;
  border-radius: 50%;
  font-size: 9px;
  display: inline-block;
  color: #fff;
  line-height: 16px;
  text-align: center;
  font-style: normal;
  position: absolute;
  top: -13px;
  left: 22px;
}

.wrap-menu  ul.menu-rp li.home-menu {
  width: 270px;
  max-width: 270px;
  z-index: 123;
}

.wrap-menu  ul.menu-rp li.home-menu a {padding: 0px 0;}

.wrap-menu  ul.menu-rp {
}

.wrap-menu ul li.search .toggle-btn {
  border: 1px solid #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  outline: none;
  cursor: pointer;
  position: relative;
  left: 16px;
}

.wrap-menu ul li.search {
  text-align: center;
    /* flex-wrap: wrap-reverse; */;
}

.wrap-menu ul li.search form {
  display: none;
}

.wrap-menu ul li.search > span {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 44px;
  font-size: 20px;
  color: #fca700;
}

.wrap-menu ul li.search > span i {
}/*.wrap-menu  ul.menu-rp > li:after{content:"";width: 1px;height: 60%;position: absolute;right: 0;background: #ccc;top: 20%;}*/.wrap-menu  ul.menu-rp > li.no-flut:after {
  display: none;
}

.wrap-menu ul li .toggle-menu {
  color: #fff !important;
  padding: 24px 0;
  text-align: right;
}

.wrap-menu ul li .toggle-menu i {
  font-size: 1.5em;
}

.wrap-menu ul li {
  position: relative;
}

.menu-rp > li {
  transition: 0.4s ease;
  transform-origin: 0 50%;
}

.menu-rp > li > a {
}

.wrap-menu ul li.parent-sub {
  position: relative;
}

.wrap-menu ul li.parent-sub ul ul {
  display: block;
  position: static;
  width: auto;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.wrap-menu ul li.parent-sub ul span.toggle {
  display: none;
}

.wrap-menu ul li.parent-sub > ul > li > a {
}

.wrap-menu ul li.parent-sub:hover > ul {
}

.wrap-menu ul li.parent-sub > ul {
  position: absolute;
  width: 100%;
  left: 100%;
  top: 0px;
  display: none;
  grid-template-columns: repeat(6, 1fr);
    /* padding: 10px; */
  transition: 0.5s ease all;
  opacity: 0;
}

.wrap-menu ul li.parent-sub:hover > ul {
  opacity: 1;
}

.wrap-menu ul li ul li:hover >ul {
  left: 100%;
  top: 0;
  transform: skewX(0deg);
}

.menu-rp > li > ul {
}

.wrap-menu ul li ul {
  position: absolute;
  left: 0;
  top: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  background: #fbc71b;
  display: none;
  transform-origin: 0 0;
}

.wrap-menu ul li:hover > ul {
  display: block;
}

header .parent-sub li {
}

header .parent-sub li li  a {
  text-transform: inherit !Important;
}

header .parent-sub li li i {
  display: inline !Important;
}

header .parent-sub li li a {
  font-size: 13px !important;
}

.wrap-menu ul li ul li {
  padding: 3px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  text-align: left;
  min-width: 200px;
}

.wrap-menu ul li a {
  text-transform: uppercase;
  font-size: 1rem;
  color: #555;
  line-height: 22px;
  width: 100%;
  white-space: nowrap;
}

.wrap-menu ul li li:hover > a {
  color: #e03234;
}

.wrap-menu ul li li a {
  color: #ffffff;
  font-size: 16px;
  padding: 5px 0;
  text-transform: none;
}

.wrap-menu ul li li a h2 {
  font-size: 13px;
  margin: 0;
}

.wrap-menu ul li:hover,.wrap-menu ul li.active {
}

.wrap-menu ul li:hover > a,.wrap-menu ul li.active > a {
  text-decoration: none;
  color: #df3035;
}

.wrap-slider {
  float: right;
  width: calc(100% - 280px);
  position: relative;
  z-index: 1;
}

#slide .owl-next {
  position: absolute;
  bottom: 0;
  right: 4%;
  border-radius: 50%;
  background: transparent;
  outline: none;
  transition: 0.5s ease;
}

#slide .owl-next i {
  color: #d83135;
  font-size: 3rem;
}

#slide:hover .owl-prev,#slide:hover .owl-next {
  opacity: 1;
  background: transparent;
}

#slide .owl-prev {
  position: absolute;
  left: 4%;
  outline: none;
  transition: 0.5s ease;
  bottom: 0;
}

#slide .owl-prev i {
  color: #d83135;
  font-size: 3rem;
}

#slide_show .slider-desc .container {
  overflow: hidden;
}

#slide_show .slider-desc {
  background: #393939;
  padding: 20px 0;
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
}

#slide_show .slider-desc {
  white-space: nowrap;
}

#slide {
  clear: both;
  background: #fff;
  z-index: 13;
  position: relative;
}

.fixed .wrap-search-form {
  padding: 10px 0;
}

.wrap-search-form {
/* float: right; */
  padding: 0px 0;
  transition: 0.7s ease all;
  margin-right: 40px;
}

.wrap-search-form form {
  width: 100%;
  position: relative;
    /* border: 1px solid #ffffff5c; */
  border-radius: 5px;
  overflow: hidden;
  width: 260px;
  box-shadow: 0 0 0 1.4px #ffffff59;
}

.wrap-search-form form input {
  position: relative;
  width: 100%;
  border: 0;
  padding: 4px 11px;
  font-size: 13px;
  background: transparent;
  padding-left: 27px;
  color: #c5c5c5;
}

.wrap-search-form form:after {
  content: "";
  background: url(../img/icons.png) 15px 2px;
  width: 15px;
  height: 17px;
  position: absolute;
  top: 3px;
  left: 4px;
}

.wrap-search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 7px;
  background: url(../img/bg-bt.png);
  height: 100%;
  border: 0;
  color: #fff;
  line-height: 2px;
  font-size: 11px;
  text-transform: uppercase;
  padding-top: 4px;
}

.wrap-search-form form button i {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  box-shadow: 0 0 0 1.4px #ffffff94;
  text-align: center;
  line-height: 17px;
  margin-left: 7px;
  position: relative;
  top: 1px;
  font-size: 13px;
}

.wrap-search-form i {
}

.fb-w {
  background: url(../img/bg-facebook.png) no-repeat top center;
  padding: 18px 0;
}

.fb-w .left {
  padding-top: 40px;
  font-size: 15px;
  color: #fff;
}

.fb-w .left .s-big {
  font-family: LatoBlack;
  font-size: 30px;
  letter-spacing: 2px;
}

.fb-w .left .s-medium {
}

.fb-w .right {
}/* footer */footer .copyright .pull-left {
  float: left;
}

footer .copyright .pull-right {
  float: right;
}

footer .copyright {
  font-size: 13px;
  color: #fff;
  padding-bottom: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.59);
  margin-top: 10px;
  padding-top: 10px;
}

.copyright ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.copyright ul li {
  display: inline-block;
  padding-left: 10px;
}

footer .container {
  position: relative;
  z-index: 3;
}

footer {
  position: relative;
  background: url(../img/bg-footer.jpg);
  background-size: auto;
  padding: 30px 0 20px 0;
  color: #fff;
  padding-bottom: 0;
}
footer .title{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 15px;
    position: relative;
    padding-bottom: 6px;
}
footer .title:after{content:"";position: absolute;bottom: 0;width: 29px;height: 1px;background: #fbc71b;left: 0;}
footer hr {
    /* border-top: 2px solid #6C8CC7; */;
}

footer .logo-footer {
  flex: 0 0 34%;
  padding-top: 20px;
}

footer .address-footer div {
  margin-bottom: 5px;
  font-size: 13px;
}

footer .address-footer {
  flex: 0 0 40%;
}

footer .address-footer span {
  border: 1px solid #cccccc5e;
  width: 30px;
  display: inline-block;
  height: 30px;
  border-radius: 3px;
  line-height: 30px;
  text-align: center;
  margin-right: 10px;
}

footer .address-footer span i {
}

footer .payment-footer {
  flex: 0 0 23%;
  align-self: flex-end;
}

footer .block-1 {
  flex: 0 0 30%;
  padding-top: 0 !important;
}

footer .block-2 {
  flex: 0 0 20%;
}

footer .block-3 {
  flex: 0 0 20%;
}

footer .block-4 {
  flex: 0 0 25%;
}

footer .block-5 {
  flex: 0 0 25%;
}

footer .block {
  margin-bottom: 5px;
  padding-top: 0px;
}

footer .main-title {
  text-align: left;
}

footer .main-title .title {
  color: #fff;
  padding-left: 0;
}

footer .main-title .title:after {
  left: 0;
}

footer .content .cname {
    /* font-family: utm_swissblack; */
  font-size: 16px;
  text-transform: uppercase;
  line-height: 26px;
  margin: 0;
  color: #f4cc0a;
}

footer .content .sp-item:last-child {
  border: 0;
}

footer .content .sp-item {
  font-size: 16px;
  border-bottom: 2px solid #fff;
  margin-bottom: 9px;
}

footer .content .sp-item p {
  background: url(../img/phone-footer.png) no-repeat 1px 5px;
  padding: 0px 0;
  margin: 0;
  padding-left: 45px;
}

footer .content .sp-item p span a {
  color: #f4cc0a;
}

footer .content .sp-item p a:hover {
  text-decoration: none;
  color: #fff;
}

footer .content .sp-item p a {
  color: #fff;
}

footer .content .sp-item p span {
  clear: both;
  display: block;
}

footer .content .sp-item p:last-child {
  background: url(../img/email-footer.png) no-repeat 4px 0px;
  padding: 10px 0;
  padding-left: 45px;
  font-size: 13px;
}

footer .content.key {
}

footer .content.key a {
  font-size: 14px;
  padding: 2px 8px;
  color: #fff;
  border: 1px solid #fff;
  margin: 0 5px 5px 0;
  display: inline-block;
}

footer .content .brand-item {
  padding: 3px 0;
}

footer .content .brand-item .name {
  color: yellow;
  font-size: 16px;
  text-transform: uppercase;
}

footer .content .brand-item .desc {
}

footer .content .company-name {
  letter-spacing: 3px;
  font-size: 23px;
  text-transform: uppercase;
  color: #fbc71b;
}
footer .company-name{}
footer .company-name .hd{
    margin-bottom: 10px;
}
footer .company-name .hd span{
    font-size: 17px;
}
footer .footer-content{
    margin-top: -15px !important;
}
footer .content {
  font-size: 14px;
  margin-top: 15px;
}

footer .w-bct {
  margin-top: 20px;
}

footer .content.tag {
}

footer .content.tag > a {
  color: #fff;
  border: 1px solid #ccc;
  display: inline-block;
  padding: 4px 10px;
  margin: 0 3px 3px 0;
  text-transform: capitalize;
}

footer .content .map-wrapper {
  position: relative;
  height: 0;
  padding-bottom: 66.25%;
  overflow: hidden;
}

footer .content .map-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

footer .content .sub-title {
  margin-bottom: 20px;
}

footer .content .item {
  font-size: 14px;
  position: relative;
  min-height: 22px;
  padding-top: 7px;
  line-height: 22px;
  margin-bottom: 3px;
}
footer .content .social .mb-3{
    font-size: 16px;
}
footer .content .social {
  font-size: 13px;
  margin-top: 10px;
}

footer .content .social a {
  border-radius: 50%;
  width: 35px;
  display: inline-block;
  height: 35px;
  line-height: 35px;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 0 1.4px #ffffff94;
  margin-right: 10px;
}

footer .content .social a i {
  font-size: 17px;
}

footer .content .item span {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #353535;
  line-height: 35px;
  text-align: center;
    /* position: absolute; */
  left: 0;
  top: 0;
}

footer .content .item span i {
}

footer .content ul {
  list-style: none;
  padding: 0;
}

footer .content ul li {
  padding: 0 0 10px 0;
}

footer .content ul li a {
  color: #fff;
  font-size: 15px;
}

footer .content ul li:hover a {
}

footer .content.social {
  margin-top: 6px;
}

footer .content.social a {
  margin-right: 10px;
  background: #fff;
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 50%;
  line-height: 30px;
  font-size: 16px;
  text-align: center;
}

footer .form-email button {
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border: 0;
  color: #333;
  height: 100%;
  line-height: 13px;
  border-radius: 0;
}

footer .form-email {
  position: relative;
  margin: 20px 0;
  overflow: hidden;
}

footer .form-email input {
  width: 100%;
  padding: 4px 9px;
  border: 0;
  height: 30px;
  border-radius: 0;
}

footer .form-email button i {
}

footer .footer-line {
  height: 2px;
  background: #ffffff73;
  margin-bottom: 30px;
}/* footer */#main-content {
  padding-bottom: 20px;
}

#main-content .left-content {
  float: right;
  width: 25%;
    /* padding-left: 10px; */    /* padding-right: 10px; */;
}

.block-left {
  margin-bottom: 20px;
}

.block-left .title {
  background: #0492de;
  padding: 6px;
  text-align: center;
  color: #fff;
  font-size: 17px;
  text-transform: uppercase;
  margin-bottom: 10px;
  border-bottom: 4px solid #0f73a8;
  border-radius: 2px;
}

.block-left .content {
}

.block-left .product-content {
  margin-top: -10px;
}

.block-left .product-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.block-left .product-content li {
  position: relative;
  background: #f7f7f7;
}

.block-left .product-content li li span {
  right: 23px;
}

.block-left .product-content li span {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 0;
  right: 0;
  text-align: center;
  line-height: 30px;
}

.block-left .product-content li span i {
}

.block-left .product-content li a:after {
  content: "";
  position: absolute;
  background: #d8d8d8;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
}

.block-left .product-content li a {
  display: block;
  position: relative;
  width: 100%;
  padding: 5px 10px;
  color: #333;
}

.block-left .product-content li a h2 {
  font-size: 16px;
  font-weight: normal;
  margin: 0;
  line-height: 1.7;
}

.block-left .product-content li a i {
  font-style: normal;
  font-family: roboto;
  font-size: 15px;
}

.block-left .product-content li:hover a {
}

.block-left .product-content ul ul {
  display: none;
  text-indent: 15px;
}

.block-left .content .news-item {
  margin-bottom: 20px;
}

.block-left .content .news-item .photo {
  width: 100px;
  float: left;
}

.block-left .content .news-item .desc {
}

.block-left .content .news-item .date {
  font-size: 13px;
  font-style: italic;
}

.block-left .content .news-item h3 {
  font-weight: normal;
  font-size: 15px;
  margin-bottom: 5px;
  line-height: 22px;
}

.block-left .content .news-item h3 a {
  transition: 0.4s ease;
  font-size: 17px;
  color: #0f73a8;
}

.block-left .content .news-item h3:hover a {
  text-decoration: none;
  color: #333;
}

.block-left .content .news-item .inner {
  color: #909090;
  font-size: 13px;
  line-height: 23px;
}

.block-left .content .service-item {
}

.block-left .content .service-item .photo {
  border: 2px solid #ffcc00;
}

.block-left .content .service-item .photo img {
  width: 100%;
}

.block-left .content .service-item .desc {
  margin-top: 10px;
}

.block-left .content .service-item .date {
}

.block-left .content .service-item h3 {
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 2px;
}

.block-left .content .service-item h3 a {
}

.block-left .content .service-item h3:hover a {
  text-decoration: none;
  color: #333;
}

.block-left .content .service-item .inner {
}

.block-left .content .service-item .inner {
}

#main-content .right-content {
  width: 75%;
  float: left;
    /* padding-left: 10px; */    /* padding-right: 10px; */
  order: 2;
}/* responsive */aside#aside {
  flex: 0 0 18%;
  overflow: hidden;
}

section#content {
  flex: 0 0 82%;
  max-width: 82%;
}

.left-lienhe {
  width: 56%;
  float: right;
}

.info-lienhe {
  font-size: 13px;
  line-height: 1.5;
  color: #333333;
}

.right-lienhe {
  width: 43%;
  float: left;
}

.hr-lienhe {
  border-top: 2px solid rgba(128, 128, 128, 0.52);
  margin: 15px 0px;
}

#map {
  height: 480px;
  margin: 10px 0px;
}

#directionsPanel {
  display: none;
}

span#hint-map {
  font-size: 13px;
  display: block;
}

input.btn-map {
  border: 0px;
  width: 100px;
  height: 31px;
  background: gray;
  color: white;
  border-radius: 2px;
  outline: none;
}

input.txt-map {
  height: 27px;
  width: calc(100% - 110px);
  text-indent: 10px;
  border: 1px solid;
  border-color: #cecbcb;
  border-radius: 0px;
  outline: none;
}

span.tit-map {
  color: red;
  text-transform: uppercase;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
  font-family: tahoma;
  font-weight: bold;
}

.diachi {
  font-size: 13px;
}

.tablelienhe span {
  color: #2d2d2d;
}

.tablelienhe td {
  height: 25px;
}

.tablelienhe .input, .tablelienhe textarea {
  border: 1px #E9E9E9 solid;
  font-size: 12px;
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
  min-height: 30px;
}

.tablelienhe .title {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}

.button {
  border: 1px solid #515151;
  color: #fff;
  font-size: 12px;
  text-transform: capitalize;
  padding: 5px 15px;
  background: #414944;
  border-radius: 1px;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  display: inline-block;
}

.button:hover {
  color: #FFFFFF;
  background: #202020;
  -webkit-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}

.tablelienhe .input::-webkit-input-placeholder {
  color: #585757;
}

.tablelienhe .input:-moz-placeholder {
 /* Firefox 18- */
  color: #585757;
}

.tablelienhe .input::-moz-placeholder {
  /* Firefox 19+ */
  color: #585757;
}

.tablelienhe .input:-ms-input-placeholder {
  color: #585757;
}

.tablelienhe textarea::-webkit-input-placeholder {
  color: #585757;
}

.tablelienhe textarea:-moz-placeholder {
 /* Firefox 18- */
  color: #585757;
}

.tablelienhe textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #585757;
}

.tablelienhe textarea:-ms-input-placeholder {
  color: #585757;
}

.block_doitac .owl-prev {
  position: absolute;
  left: 0;
  top: calc(50% - 10px);
}

.block_doitac .owl-next {
  position: absolute;
  right: 0;
  top: calc(50% - 10px);
}

.block_doitac {
  padding: 10px 0;
  margin: 30px 0;
}

.block_doitac #owl-doitac {
  padding-left: 40px;
  padding-right: 40px;
}

.block_doitac .title {
}

.sidebar {
  width: 70px;
  position: fixed;
  display: none;
  z-index: 10;
  top: 200px;
  background: #393ff4;
}

.sidebar ul {
  margin: 0;
  padding: 0 5px;
}

.sidebar ul li {
  padding: 10px 0;
}

.sidebar ul li img {
  width: 80%;
}

.sidebar ul li p {
  margin: 0;
  color: white;
}

.sidebar ul li:first-child {
  border-bottom: solid 1px #e0e0e0;
}

.modal.show .modal-big-lg {
  max-width: 1000px;
}/* line 1, template/t5/sass/popup3.scss */.popup-bao-gia {
  padding: 0;
}

.popup-bao-gia .heading {
  margin-bottom: 10px;
  font-size: 15px;
}

.popup-bao-gia .heading h5 {
  margin: 0;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 21px;
  margin-bottom: 10px;
}

.footer-popup-bao-gia {
  display: none;
}/* line 5, template/t5/sass/popup3.scss */.popup-bao-gia h5 {
  margin-left: 20px;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 25px;
  color: #424242;
}/* line 13, template/t5/sass/popup3.scss */.popup-bao-gia .smartobj .phone {
  color: #393ff4;
}/* line 16, template/t5/sass/popup3.scss */.popup-bao-gia .modal-content.modal-content-popup3 {
  height: 100% !important;
  padding: 0;
}/* line 20, template/t5/sass/popup3.scss */.popup-bao-gia .limit-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 16px;
    /* fallback */
  max-height: 52px;
    /* fallback */
  -webkit-line-clamp: 2;
    /* number of lines to show */
  -webkit-box-orient: vertical;
  padding: 10px 18px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.6);
}/* line 31, template/t5/sass/popup3.scss */.popup-bao-gia .limit-text p {
  margin: 0;
  letter-spacing: 0.2px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 15px;
  line-height: 22px;
}/* line 39, template/t5/sass/popup3.scss */.popup-bao-gia .content {
    /* height: 100%; */
  margin: 0;
    /* padding: 0 !important; */;
}/* line 43, template/t5/sass/popup3.scss */.popup-bao-gia .content .img {
    /* height: 100%; */    /* overflow: hidden; */
  position: relative;
    /* height: 100vh; */
  padding: 0;
}/* line 48, template/t5/sass/popup3.scss */.popup-bao-gia .content .img img {
  width: 100%;
    /* position: absolute; */    /* -webkit-transform: translateX(-50%); */
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
    /* transform: translateX(-50%); */    /* left: 49%; */;
}/* line 59, template/t5/sass/popup3.scss */.popup-bao-gia .content .main-content {
  padding-top: 10px;
}/* line 61, template/t5/sass/popup3.scss */.popup-bao-gia .content .main-content h4 {
  padding: 5px 20px;
}/* line 65, template/t5/sass/popup3.scss */.popup-bao-gia .content .main-content .col {
  padding: 0 20px;
  margin-bottom: 0px !important;
}/* line 69, template/t5/sass/popup3.scss */.popup-bao-gia .content .main-content .input-field {
  padding: 0;
  flex: 100%;
}/* line 73, template/t5/sass/popup3.scss */.popup-bao-gia .content .main-content input {
  color: #707070;
  margin: 0;
  height: 2.7rem;
  border: 1px solid #cccccc4f;
  display: block;
  width: 100%;
  outline: none;
  padding: 3px 6px;
  border-radius: 3px;
  border-radius: 52px;
  padding-left: 15px;
}/* line 81, template/t5/sass/popup3.scss */.popup-bao-gia .content .main-content input::placeholder {
  color: #bfbfbf;
  font-size: 16px;
  font-weight: 400;
}/* line 86, template/t5/sass/popup3.scss */.popup-bao-gia .content .main-content .row {
  margin: 0;
}/* line 89, template/t5/sass/popup3.scss */.popup-bao-gia .content .main-content .tag-info {
  background: #f0f0f0;
  border-radius: 20px 0 0 20px;
  height: 40px;
  margin-bottom: 17px;
}

.input-wrapper {
  display: block;
  margin-bottom: 25px;
}

.input-wrapper select {
  color: #707070;
  margin: 0;
  height: 2.7rem;
  border: 1px solid #cccccc4f;
  display: block;
  width: 100%;
  outline: none;
  padding: 3px 6px;
  border-radius: 3px;
  border-radius: 52px;
  padding-left: 15px;
}

.input-wrapper input {
}

.start-wrap {
  color: #ccc;
  background: url(../img/start.webp) no-repeat;
  width: 80px;
  height: 11px;
  display: inline-block;
  position: relative;
  top: 2px;
}

.start-wrap.start-1 {
  background-position: 0px -10px;
}

.start-wrap.start-2 {
  background-position: 0px -20px;
}

.start-wrap.start-3 {
  background-position: 0px -30px;
}

.start-wrap.start-4 {
  background-position: 0px -40px;
}

.start-wrap.start-5 {
  background-position: 0px -50px;
}

.start-wrap i {
  color: #ccc;
}

.start-wrap i.active {
  color: #fde000;
}/* slide */#mainSlider .item {
  position: relative;
}

#mainSlider .in-container {
  position: absolute;
  width: calc(100% - 10%);
  left: 5%;
  height: calc(100% - 20%);
  top: 10%;
  color: #fff;
}

#mainSlider h5 {
  font-size: 20px;
  line-height: 110%;
  letter-spacing: .05em;
  font-weight: normal;
  margin-bottom: 0;
  transition: font 200ms ease-out;
  text-shadow: 2px 0 0 #794422, -2px 0 0 #794422, 0 2px 0 #794422, 0 -2px 0 #794422, 1px 1px #794422, -1px -1px 0 #794422, 1px -1px 0 #794422, -1px 1px 0 #794422;
}

#mainSlider #owl-main .caption h1.light-bg, #mainSlider #owl-main .caption h1.medium-bg, #mainSlider #owl-main .caption h1.dark-bg, #mainSlider #owl-main .caption h1.tint-bg {
  font-size: 73px;
}

#mainSlider h4 {
  font-size: 33px;
  line-height: 120%;
}

#mainSlider p {
  font-size: 27px;
  line-height: 150%;
  font-weight: 600;
  letter-spacing: .015em;
  text-transform: none;
  margin-top: 20px;
  margin-bottom: 0;
  transition: font 200ms ease-out, margin 200ms ease-out;
  text-shadow: 2px 0 0 #794422, -2px 0 0 #794422, 0 2px 0 #794422, 0 -2px 0 #794422, 1px 1px #794422, -1px -1px 0 #794422, 1px -1px 0 #794422, -1px 1px 0 #794422;
}

#mainSlider .btn {
  background-color: #DC9715;
  margin-top: 60px;
  color: #fff;
  margin-bottom: 0;
  transition: background 200ms ease-out, font 200ms ease-out, padding 200ms ease-out, margin 200ms ease-out;
}

#mainSlider .btn-large {
  font-size: 14px;
  padding: 10px 45px 10px;
  text-transform: uppercase;
}/*slide *//* notify */#notify-checkout {
  max-width: 800px;
  margin: 70px auto;
}/* notify */.tag-wrapper {
  padding: 10px 0;
}

.tag-wrapper a {
  font-size: 12px;
  display: inline-block;
  border: 1px solid #ccc;
  margin-right: 5px;
  padding: 0 4px;
  color: #5f5f5f;
  border-left: 3px  solid #ccc;
}

.comment-wrapper {
}

.comment-wrapper .comment-big-title {
  margin-bottom: 16px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
  margin-top: 40px;
}

.comment-wrapper .comment-big-title span {
  position: relative;
  font-weight: bold;
  font-size: 17px;
  color: #777777;
  text-transform: uppercase;
}

.comment-wrapper .comment-big-title span:after {
  content: "";
  width: 100%;
  position: absolute;
  height: 3px;
  background: #006caa;
  bottom: -10px;
  left: 0;
}

#display_comment {
}

#display_comment .panel-heading {
  font-size: 14px;
}

#display_comment .panel-body {
  font-size: 16px;
}

#display_comment .panel-footer {
}

.inner-page #main-wrapper {
}

.title_main {
}

.title_main h1 {
  font-size: 32px;
}

.container {
  max-width: 100%;
}

#form-check-status {
}

#form-check-status button {
  width: 90px;
}

#form-check-status input {
  width: calc(100% - 100px);
}

.modal-footer.footer-hide {
  display: none;
}

.Hunter-pop-up {
  display: none;
  position: absolute;
  bottom: 140%;
  left: 0;
  z-index: 45;
  padding: 1px;
    /* font-family: Microsoft YaHei; */
  background-color: #ffffff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 2px solid #cccccc;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.Hunter-pop-up-right:before,.Hunter-pop-up-right:after {
  left: auto;
  right: 20px;
}

.Hunter-pop-up:after {
  border-color: transparent transparent #c9cbce;
  top: -20px;
}

.Hunter-pop-up ul {
  list-style: none;
}

.Hunter-pop-up ul li {
  display: inline-block;
  position: relative;
  margin: 4px;
  cursor: pointer;
}

.Hunter-pop-up p {
  font-weight: bold;
  padding: 0 4px;
  margin-top: 4px;
  margin-bottom: 10px;
}

.Hunter-pop-up .line {
  width: 340px;
  margin: 0 auto;
  margin-top: 4px;
  border-bottom: 1px solid #d8d8d8;
}

.Hunter-pop-up .close {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 16px;
}

.Hunter-pop-up .title i {
  position: absolute;
  font-size: 10px;
  top: 0px;
  right: 0;
  border: 1px solid #ccc;
  cursor: pointer;
  line-height: 13px;
}

.Hunter-pop-up .title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 18px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
  border-radius: 5px 5px 0 0;
  text-transform: uppercase;
  text-align: center;
}

.Hunter-pop-up .Hunter-wrap {
  position: relative;
  background: #ffffff;
  padding: 8px;
  overflow: auto;
}

#tableContent {
}

#tableContent hr {
  border: 0;
  margin: 5px 0;
  border-top: 1px solid #ccccccb8;
  margin-bottom: 10px;
}

#tableContent select {
  display: block;
  width: 100%;
  padding: 7px 4px;
  margin-bottom: 10px;
  outline: none;
  border-radius: 2px;
  font-size: 12px;
  border: 1px solid #ccc;
}

#tableContent button {
  display: block;
  width: 100%;
  background: #4a90e2;
  border: 0;
  padding: 9px;
  border-radius: 3px;
  outline: none;
  font-size: 11px;
  text-transform: uppercase;
  padding-top: 10px;
  cursor: pointer;
  color: #fff;
}

#tableContent form {
  width: 100%;
  margin-top: 0;
}/*==*/.sidebar_menu ul li span.toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: black;
}

.sidebar_menu ul li span.toggle i {
  color: #151515;
}

.sidebar_menu ul li {
  position: relative;
}

.sidebar_menu > ul > li > ul {
/* position: absolute; *//* right: -600px; *//* top:0%; *//* min-width:600px; *//* background: rgba(22,27,29,0.8); *//* padding: 20px 10px 10px 20px; *//* border-top:1px solid #d56a2d; *//* border-left:1px solid #d56a2d; *//* opacity: 0; *//* max-width: 600px; *//* margin-top: 10px; *//* visibility: hidden; */
  transition: all 0.2s;
  display: none;
}

.sidebar_menu ul li ul li a {
}

.sidebar_menu ul li ul li ul li a {
  padding-left: 20px !important;
}

.sidebar_menu > ul > li > ul > li {
/* float: left; *//* width:calc(100% / 4); *//* padding: 0px 10px; *//* display: inline; */;
}

.sidebar_menu > ul > li > ul > li > a {
  display: block;
  position: relative;
  padding-left: 15px !important;
}

.sidebar_menu > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
  margin-top: 0px;
}

.sidebar_menu > ul > li > ul > li > ul {
  text-indent: 10px;
  display: none;
}

.left_menu {
  width: 170px;
  position: fixed;
  left: 30px;
  top: 0px;
  height: 100vh;
  background: rgb(249, 249, 249);
  z-index: 999;
  padding: 0px 15px 0px 15px;
}

.left_menu_mb.clone-menu {
  display: block;
}

.open-menu .left_menu_mb.clone-menu {
    /* height: auto; */
  overflow: auto;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  left: 0;
    /* max-height: calc(100vh - 200px); */
  height: 100vh !important;
  overflow: hidden;
  top: 0;
  position: fixed;
  color: #ffcc00;
}

.left_menu_mb {
  display: none;
}

.left_menu_mb.clone-menu {
    /* display: none; */
    width: 100%;
    background: #ffeb94;
    left: 0;
    z-index: 12345;
    height: 100%;
    padding: 30px;
    padding: 20px 0px;
    padding-top: 3px;
    position: fixed;
    width: 100%;
    max-width: 250px;
    /* height: auto; */
    top: 0;
    z-index: 9999;
    visibility: hidden;
    transform: translate3d(-99%, 0, 0);
    -webkit-transform: translate3d(-99%, 0, 0);
    -moz-transform: translate3d(-99%, 0, 0);
    -ms-transform: translate3d(-99%, 0, 0);
    -o-transform: translate3d(-99%, 0, 0);
    left: -1%;
    visibility: visible;
    -webkit-transition: transform 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86);
    -moz-transition: transform 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86);
    -o-transition: transform 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86);
    transition: transform 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86);
    -webkit-box-shadow: 13px 1px 6px -8px rgba(0,0,0,0.47);
    -moz-box-shadow: 13px 1px 6px -8px rgba(0,0,0,0.47);
    box-shadow: 7px 1px 5px -8px rgba(0,0,0,0.47);
}

.left_menu_mb.clone-menu .logo {
  display: none;
}

.ft_sidebar {
  padding-left: 10px;
  font-size: 20px;
}

.sidebar_menu {
}

.logo-side-bar {
  text-align: center;
  margin: 10px 0;
}

.logo-side-bar img {
  max-width: 80%;
  margin: auto;
}
.sidebar_menu form input{width: 100% !important;position: static;border-radius: 0;height: auto;padding-left: 5px;}
.sidebar_menu form button{background: #fbc71b;position: absolute;right: 0;height: 28px;width: 28px;top: 2px;right: 2px;text-align: center;padding: 0;border-radius: 3px;}
.sidebar_menu form {
  position: static;
  width: calc(100% - 10px);
  margin: 0px 5px;
  float: none;
}

.sidebar_menu ul {
  margin: 0;
  padding: 0;
}

.sidebar_menu ul ul {
  max-height: 400px;
  overflow: auto;
}

.sidebar_menu li {
  display: block;
/* padding: 7px 0px; */;
}

.sidebar_menu li a {
  color: #151515;
  font-size: 12px;
  transition: all 0.2s;
}

.clone-menu .sidebar_menu > li > li > a {
}

.clone-menu .sidebar_menu li a {
  font-size: 14px;
  display: block;
  padding: 5px;
  line-height: 19px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.26);
}

.clone-menu .sidebar_menu li a h2 {
  font-size: 14px;
}

.sidebar_menu li a:hover {
  color: #d56a2d;
  text-decoration: none;
}

.sidebar_menu li a.active {
  color: #d56a2d;
}

header .wrap-logo .toggle-menu {
  display: none;
}

.clone-menu .toggle-close-menu {
  display: block;
  position: absolute;
  right: 0px;
  top: 2px;
  color: #fff;
  font-size: 25px;
  width: 30px;
  height: 30px;
  line-height: 27px;
  text-align: center;
  z-index: 30;
  cursor: pointer;
}

.support-online {
  position: fixed;
  z-index: 9999;
  left: 1em;
  bottom: 1em;
}

.support-online span.t a {
  width: 100%;
  color: #fff;
  margin: 2px 5px;
  height: auto;
}

.support-online a,.support-online span.t {
  position: relative;
  margin: 10px 10px;
  text-align: left;
  width: 40px;
  height: 40px;
  padding: 0px;
  display: block;
}

.support-online i {
  width: 40px;
  height: 40px;
  background: #0079c7;
  color: #fff;
  border-radius: 100%;
  font-size: 20px;
  text-align: center;
  line-height: 1.9;
  position: absolute;
  z-index: 999;
  top: 0px;
}

.support-online a span,.support-online span.t span {
  border-radius: 2px;
  text-align: center;
  background: rgb(103, 182, 52);
  padding: 9px;
  display: none;
  width: 180px;
  margin-left: 10px;
  position: absolute;
  color: #ffffff;
  z-index: 999;
  top: 0px;
  left: 40px;
  transition: all 0.2s ease-in-out 0s;
  -moz-animation: headerAnimation 0.7s 1;
  -webkit-animation: headerAnimation 0.7s 1;
  -o-animation: headerAnimation 0.7s 1;
  animation: headerAnimation 0.7s 1;
}

.support-online a:hover span,.support-online span.t:hover span {
  display: block;
}

.support-online a {
  display: block;
}

.support-online a span:before,.support-online span.t span:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent  rgb(103, 182, 52) transparent transparent;
  position: absolute;
  left: -10px;
  top: 10px;
}

.kenit-alo-circle-fill {
  width: 60px;
  height: 60px;
  top: -10px;
  position: absolute;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  background-color: rgba(4, 146, 222, 0.65);
  opacity: .75;
  right: -10px;
}

.kenit-alo-circle {
  width: 50px;
  height: 50px;
  top: -5px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid rgba(30, 30, 30, 0.4);
  opacity: .1;
  border-color: #e9ad41ba;
  opacity: .5;
}

.support-online .btn-support {
  cursor: pointer;
  margin-top: 20px;
}

.breadcrumb {
  padding: 7px 10px;
  border-radius: 0;
}

.breadcrumb li {
  font-size: 13px;
}

.breadcrumb li a {
  color: #333;
}

.hotline-in-mobile {
  display: none;
}

ul.pagination {
  text-align: center;
  flex-flow: wrap;
}

ul.pagination li {
  display: inline-block;
  margin: 2.5px 3px;
}

ul.pagination li a {
  font-size: 17px !important;
  display: block;
  padding: 6px 25px !important;
  border: 2px solid #5a5a5a;
  text-transform: uppercase;
  color: #5a5a5a;
  border-radius: 3px;
  padding-top: 9px;
  transition: 0.5s ease;
}

ul.pagination li:hover a {
  color: #da2128;
  border-color: #da2128;
}

#top-product {
  padding: 20px 0;
}

#top-product .col-item {
  position: relative;
}

#top-product .col-item a {
  display: block;
  font-size: 0;
}

#top-product .col-item a img {
}

#top-product .col-item a span.name {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  background: rgba(0, 102, 204, 0.53);
  text-transform: uppercase;
  font-size: 20px;
  padding: 5px;
  bottom: 0;
  color: #fff;
  transition: 0.4s ease;
  min-height: 0;
}

#top-product .col-item a:hover span.name {
  min-height: 100%;
  line-height: 50%;
}

#top-product .col-item a span.name span {
}

.line-social {
}

.line-social a:hover {
  text-decoration: none;
  background: #df3035;
}

.line-social a {
  width: 35px;
  height: 35px;
  display: inline-block;
  background: #393939;
  line-height: 35px;
  text-align: center;
  color: #fff;
  transition: 0.4s ease;
}

.line-social a img {
  max-width: 100%;
  max-height: 100%;
  display: inline-block;
  position: relative;
}
.toggle-menu{display:none}

@media(min-width: 320px) {
  html {
    font-size: 12px;
  }
}

@media (min-width: 992px) and (max-width: 1280px) {
  .wrap-menu ul.menu-rp li.home-menu {
    width: 160px;
  }
}

@media(min-width: 1280px) {
  html {
    font-size: 12px;
  }

  .container {
    max-width: 1230px;
  }
}

@media(min-width: 1600px) {
  html {
    font-size: 14px;
  }

  header .wrap-link ul li:first-child a {
    padding-left: 10px;
  }
}

@media(max-width:1200px) {
  aside#aside {
    flex: 0 0 25%;
  }

  section#content {
    flex: 0 0 75%;
  }
}

@media(max-width:1024px) {
  aside#aside {
    flex: 0 0 30%;
    max-width: 30%;
  }

  section#content {
    flex: 0 0 70%;
    max-width: 70%;
  }
}

@media(max-width:992px) {
  .wrap-menu ul li a {
    font-size: 1.1rem;
  }

  .wrap-menu ul.menu-rp li.home-menu {
    width: 150px;
  }

  header .wrap-logo {
    display: none;
  }

  .header-block-2 {
  }
}

@media(max-width:768px) {
  .toggle-menu{display:block;position: absolute;top: 5px;right: 10px;font-size: 15px;color: #151515;}
  .wrap-menu .logo img{
    max-height: 30px;
    padding-left: 5px;
}
  header .wrap-link {
    width: 100%;
  }

  .header-block-2,.header-block-3 {
    width: 100% !important;
  }

  .xtitle {
    top: -32px;
  }

  .xtitle .title {
    font-size: 16px;
    height: 30px;
    line-height: 30px;
  }

  .xtitle .title:after {
    height: 30px;
    width: 24px;
  }

  .xtitle .title:before {
    background-size: cover;
    height: 30px;
    width: 23px;
  }

  body > header {
    position: sticky;
    padding-top: 0;
    top: 0;
    z-index: 1234;
    background: #fff;
  }

  .left_menu_mb.clone-menu {
    display: block;
  }

  .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    padding-right: 5px;
    padding-left: 5px;
  }

  .row {
    margin-right: -5px;
    margin-left: -5px;
  }

  .container {
    padding-right: 5px;
    padding-left: 5px;
  }

  #section-about {
    word-break: break-word;
    margin-top: 0 !important;
    padding-top: 10px !important;
  }

  ul.pagination li a {
    padding: 3px 10px !important;
  }

  #top-product .col-item a span.name {
    font-size: 15px;
    word-break: break-all;
  }

  .main-title .title {
    font-size: 19px;
  }

  .fb-w {
    background: transparent;
  }

  .fb-w .right {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .title_main h1 {
    font-size: 20px;
  }

  .middle-header.clone-menu {
    display: none !important;
  }

  .container.max-mobile {
    padding-left: 0;
    padding-right: 0;
  }

  .container.max-mobile .ccol-5 {
    padding-left: 0;
    padding-right: 0;
  }

  .container.max-mobile > .row {
    margin: 0;
  }

  header .wrap-search .search-form {
    width: 100%;
  }

  header .wrap-hotline {
    flex-direction: row;
    display: block !important;
  }

  header .wrap-hotline .v-content .has-content {
    padding: 0;
    font-size: 13px;
  }

  header .wrap-hotline .v-content {
    width: 100%;
    flex: 0 0 100%;
    margin-bottom: 10px;
    padding: 0 !important;
    margin: 0;
  }

  #main-content .left-content {
    display: none !important;
  }

  .left-lienhe,.right-lienhe {
    width: 100%;
  }

  .logo-mobile ~ .name {
    color: #fff;
    font-size: 14px;
  }

  .logo-mobile ~ .name span {
    font-size: 19px;
    color: #ffcc34;
  }

  .logo-mobile ~ .name a {
    color: #fff;
  }

  .logo-mobile img {
    max-height: 134px;
  }

  header .middle-header {
  }

  header .hotline {
    width: 100%;
    flex: 1;
    padding-top: 2px;
  }

  header .wrap-logo .hotline {
    display: block;
  }

  #main-content .right-content,#main-content .left-content {
    width: 100%;
    word-break: break-word;
    overflow: hidden;
  }

  .main-title,.main-title h3 {
    font-size: 20px;
    font-size: 20px;
    padding-bottom: 10px;
  }
  header .row{margin:0  }
 
  .wrap-menu {
  padding: 4px 0;
  background: #fbc71b;
  }

  header .wrap-search {
    margin-bottom: 20px;
  }

  header .wrap-search .list-icon {
    width: 100%;
    display: block;
    overflow: hidden;
  }

  header .wrap-search .hotline {
    display: none;
  }

  header .wrap-search {
    width: calc(100% - 105px);
    text-align: center;
    padding: 0;
    float: none;
    display: inline-block;
    position: relative;
    top: 10px;
  }

  .hotline-in-mobile {
    display: block;
    color: red;
    font-weight: bold;
    top: 7px !important;
    position: relative;
    right: 13px;
  }

  header .wrap-logo > a:hover,header .wrap-logo > a:active {
    text-decoration: none;
    color: #333;
  }

  header .wrap-logo > a {
    float: right;
    width: auto;
    padding: 0;
    margin: 0;
  }

  header .middle-header .container {
    display: block;
    padding: 0;
  }

  header .top-header {
    text-align: center;
    display: none;
  }

  header .top-header .pull-right {
    width: 100%;
  }

  header.sticky {
    display: none;
  }

  header .wrap-tools .slogan {
    width: 100%;
  }

  .wrap-search-form ~ .pull-left {
    width: 100%;
    text-align: center;
  }

  .wrap-tools .pull-right.mt-3 {
    width: 100%;
  }

  header .wrap-tools {
    width: 100%;
  }

  header .wrap-tools .top-menu {
    width: 100%;
    text-align: center;
  }

  footer .copyright {
    text-align: center;
  }

  footer .block {
    flex: 0 0 50%;
  }

  footer .flex-column {
    flex-wrap: wrap;
  }

  #slide {
    padding: 0;
  }

  header > .container {
    flex-wrap: wrap;
  }

  header .wrap-search-cart {
    width: 100%;
  }

  .popup-bao-gia .content .main-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .popup-bao-gia .content .img {
    display: none;
  }

  aside#aside {
    flex: 0 0 100%;
    max-width: 100%;
    order: 2;
  }

  section#content {
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
  }

  header .top-header .social {
    display: none;
  }

  header .wrap-banner {
    width: 100%;
    padding: 17px 0;
    display: none;
  }

  body {
  }

  header .wrap-logo img {
    padding: 5px 7px 0px 0px;
  }

  header .wrap-logo .hotline {
    float: right;
    padding: 3px 5px;
    font-size: 20px;
    font-weight: bold;
  }

  header .wrap-logo .toggle-menu {
    display: inline-block;
    color: #d9261a;
    height: 30px;
    position: relative;
    top: 2px;
  }

  header .wrap-logo .toggle-menu span {
    font-size: 15px;
    position: relative;
    top: -2px;
    left: -7px;
  }

  header .wrap-logo .toggle-menu i {
    display: inline-block;
    font-size: 22px;
  }

  .wrap-logo .lang-w {
    float: right;
    padding-right: 10px;
    display: block !important;
    padding-top: 5px;
  }

  .wrap-logo .lang-w img {
    height: auto !important;
  }

  header .wrap-logo {
    width: 100%;
    text-align: left;
    flex: none;
    margin-bottom: 0;
    display: block;
    padding: 0;
    background: #fff;
    position: fixed;
    z-index: 12345;
    top: 0;
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-box-shadow: 0px 2px 2px 0px rgba(50, 50, 50, 0.3);
    -moz-box-shadow: 0px 2px 2px 0px rgba(50, 50, 50, 0.3);
    box-shadow: 0px 2px 2px 0px rgba(50, 50, 50, 0.3);
    height: 38px;
    margin-top: 0;
  }

  .wrap-search-form {
    width: 100%;
    padding: 10px 0;
  }

  .wrap-search-form form {
    width: 100%;
  }

  header .top-header .hotline {
    width: 100%;
    text-align: center;
  }
}

@media(max-width:450px) {
  .popup-bao-gia .content .main-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .popup-bao-gia .heading ~ .col-6 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  #section-feedback .item img {
    float: none;
    margin: auto;
  }

  #section-feedback .info {
    width: 100%;
    margin-top: 10px;
  }
}

.js-facebook-messenger-container.closed,.js-facebook-messenger-tooltip.closed {
  display: none!important;
}

.js-facebook-messenger-tooltip {
  bottom: 97px;
  right: 97px;
}

.js-facebook-messenger-tooltip {
  color: #404040;
  background: #fff;
}

.js-facebook-messenger-box,.js-facebook-messenger-button,.js-facebook-messenger-tooltip {
  z-index: 999;
}

.js-facebook-messenger-tooltip {
  display: none;
  position: fixed;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  font-size: 12px;
  line-height: 1;
  padding: 10px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: rgba(0,0,0,0.15) 0 2pt 10pt;
  z-index: 1.0E+30;
}

.js-facebook-messenger-close-tooltip {
  width: 10px;
  height: 10px;
  display: inline-block;
  cursor: pointer;
  margin-left: 10px;
}

.js-facebook-messenger-box.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

.js-facebook-messenger-box.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.js-facebook-messenger-box {
  bottom: 70px;
  right: 15px;
}

.js-facebook-messenger-box {
  background: #1182fc;
}

.js-facebook-messenger-box,.js-facebook-messenger-button,.js-facebook-messenger-tooltip {
  z-index: 999;
}

.js-facebook-messenger-box {
  width: 60px;
  height: 60px;
  display: block;
  position: fixed;
  cursor: pointer;
  text-align: center;
  line-height: 60px;
  background: #1182FC;
  border-radius: 100%;
  overflow: hidden;
  -webkit-box-shadow: 1px 1px 4px 0 rgba(0,0,0,0.3);
  -moz-box-shadow: 1px 1px 4px 0 rgba(0,0,0,0.3);
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,0.3);
}

.js-facebook-messenger-box.rotate svg#fb-msng-icon {
  transform: rotate(0deg);
}

.js-facebook-messenger-box svg#fb-msng-icon {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 15px;
  left: 15px;
  opacity: 1;
  overflow: hidden;
  -webkit-transition: opacity 160ms ease-in-out,transform 160ms ease-in-out;
  -moz-transition: opacity 160ms ease-in-out,transform 160ms ease-in-out;
  -o-transition: opacity 160ms ease-in-out,transform 160ms ease-in-out;
  transition: opacity 160ms ease-in-out,transform 160ms ease-in-out;
}

.js-facebook-messenger-box.rotate svg#close-icon {
  transform: rotate(-45deg);
}

.js-facebook-messenger-box svg#close-icon {
  opacity: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  left: 20px;
  -webkit-transition: opacity 160ms ease-in-out,transform 160ms ease-in-out;
  -moz-transition: opacity 160ms ease-in-out,transform 160ms ease-in-out;
  -o-transition: opacity 160ms ease-in-out,transform 160ms ease-in-out;
  transition: opacity 160ms ease-in-out,transform 160ms ease-in-out;
}

.js-facebook-messenger-container {
  transform: translateY(50px);
  bottom: 110px;
  right: 35px;
}

.js-facebook-messenger-container,.js-facebook-messenger-container-button {
  z-index: 1000;
}

.js-facebook-messenger-container {
  position: fixed;
  opacity: 0;
  border-radius: 10px;
  pointer-events: none;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06),0 2px 32px rgba(0,0,0,0.16);
  -webkit-transition: transform 160ms ease-in-out,opacity 160ms ease-in-out;
  -moz-transition: transform 160ms ease-in-out,opacity 160ms ease-in-out;
  -o-transition: transform 160ms ease-in-out,opacity 160ms ease-in-out;
  transition: transform 160ms ease-in-out,opacity 160ms ease-in-out;
}

.js-facebook-messenger-top-header {
  width: 300px;
}

.js-facebook-messenger-top-header {
  color: #fff;
  background: #1182fc;
}

.js-facebook-messenger-top-header {
  display: block;
  position: relative;
  width: 300px;
  background: #1182FC;
  color: #fff;
  text-align: center;
  line-height: 1;
  padding: 10px;
  font-size: 14px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.js-facebook-messenger-container iframe,.js-facebook-messenger-container-button iframe {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.js-facebook-messenger-box,.js-facebook-messenger-button,.js-facebook-messenger-tooltip {
  z-index: 999;
}

.js-facebook-messenger-container,.js-facebook-messenger-container-button {
  display: none;
}

.js-facebook-messenger-top-header {
  color: #fff;
  background: #1182fc;
}

.js-facebook-messenger-box {
  background: #1182fc;
}

.js-facebook-messenger-top-header {
  width: 100%;
}

.js-facebook-messenger-tooltip {
  color: #404040;
  background: #fff;
}

.js-facebook-messenger-box {
  bottom: 105px;
  right: 15px;
}

.js-facebook-messenger-container {
  transform: translateY(50px);
  bottom: 135px;
  right: 35px;
}

.js-facebook-messenger-container.open {
  transform: translateY(0px);
  opacity: 1;
  display: block;
  z-index: 1000;
  pointer-events: all;
}

.js-facebook-messenger-tooltip {
  bottom: 97px;
  right: 97px;
}

.js-facebook-messenger-box.open svg#fb-msng-icon {
  opacity: 0;
}

.js-facebook-messenger-box.rotate.open svg#close-icon {
  transform: rotate(0deg);
}

.js-facebook-messenger-box.open svg#close-icon {
  opacity: 1;
}

#btn-zalo1 {
  display: block;
  width: 40px;
  height: 40px;
  position: fixed;
  right: 25px;
  bottom: 255px;
  z-index: 999;
}

#btn-zalo1 i {
  top: 0;
  right: 0;
  display: flex;
  display: -ms-flex;
  align-items: center;
  -ms-flex-align: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1182FC;
  position: relative;
  z-index: 9999;
}

#btn-zalo1 i svg {
  height: 20px;
  margin: auto;
}

#btn-zalo1 i svg path {
  fill: #fff;
}

#btn-zalo1 .hl-fix {
  background: #fff;
  border-radius: 3px;
  padding: 6px 10px;
  position: absolute;
  right: 0px;
  bottom: 60px;
  line-height: 1.3;
  display: none;
  white-space: nowrap;
}

#btn-zalo1 .hl-fix a {
  color: #f00;
  font-size: 18px;
  display: block;
}

.cssarrow {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
}

.cssarrow:after,.cssarrow:before {
  top: 100%;
  right: 8px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.cssarrow:after {
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #fff;
  border-width: 10px;
  margin-right: 0px;
}

.cssarrow:before {
  border-color: rgba(194, 225, 245, 0);
  border-top-color: #ddd;
  border-width: 12px;
  margin-right: -2px;
}

#btn-zalo {
  display: block;
  width: 40px;
  height: 40px;
  position: fixed;
  right: 25px;
  bottom: 185px;
  z-index: 999;
}

#btn-zalo i {
  top: 0;
  right: 0;
  display: flex;
  display: -ms-flex;
  align-items: center;
  -ms-flex-align: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1182FC;
  position: relative;
  z-index: 9999;
}

#btn-zalo i img {
  vertical-align: middle;
  width: 40px;
}

.kenit-alo-circle-fill {
  width: 60px;
  height: 60px;
  top: -10px;
  position: absolute;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  background-color: rgba(17, 130, 252, 0.45);
  opacity: .75;
  right: -10px;
}

.kenit-alo-circle {
  width: 50px;
  height: 50px;
  top: -5px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid rgba(17, 130, 252, .8);
  opacity: .1;
  border-color: #1182FC;
  opacity: .5;
}

#btn-zalo.hotline-call i:before {
  color: #fff;
  font-size: 20px;
  position: relative;
  left: 12px;
}

#btn-zalo.hotline-call {
  bottom: 245px;
}

.the-article-tools {
  top: 400px;
  z-index: 1000;
  position: fixed;
  margin-right: 0px;
  width: 43px;
  right: 7px;
  padding: 0;
  margin: 0;
}

@media (max-width: 991px) {
  /*.the-article-tools{display:none}*/;
}

.the-article-tools li {
  width: 43px;
  height: 43px;
  display: block;
  cursor: pointer;
  font-size: 16px;
  line-height: 46px;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  margin-bottom: 10px;
  margin-right: 10px;
  border-radius: 50px;
}

.the-article-tools li a,.the-article-tools li button {
  color: #FFF;
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 50px;
}

.the-article-tools li span.label {
  display: none;
  height: 30px;
  line-height: 30px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  position: absolute;
  right: 60px;
  top: 7px;
  white-space: nowrap;
  padding: 0 15px 0 6px;
  background-color: rgba(85,85,85,0.6);
  color: #FFF;
}

.the-article-tools li span.label:before {
  content: "";
  top: 0;
  right: -14px;
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-left: 15px solid rgba(85,85,85,0.6);
  border-bottom: 15px solid transparent;
}

.the-article-tools li:hover span.label {
  display: block;
}

.the-article-tools li.btnZalo {
  background-color: rgba(1,143,229,0.6);
}

.the-article-tools li.btnZalo .ti-zalo {
  background: url('../img/icon_zalomessage.png') no-repeat 50% 50%;
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: 20px;
  vertical-align: middle;
  margin-right: 2px;
  position: relative;
  top: -2px;
}

.the-article-tools li.btnZalo span.label {
  background: rgba(0,143,230,0.6);
  color: #FFF;
}

.the-article-tools li.btnZalo span.label:before {
  border-right-color: rgba(0,143,230,0.6);
}

.the-article-tools li.btnFacebook {
  background-color: rgba(48,97,153,0.7);
}

.the-article-tools li.btnFacebook .ti-facebook {
  background: url('../img/messenger.svg') no-repeat 50% 50%;
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: 20px;
  vertical-align: middle;
  margin-right: 2px;
  position: relative;
  top: -2px;
}

.the-article-tools li.btnFacebook span.label {
  background: rgba(48,97,153,0.7);
  color: #FFF;
}

.the-article-tools li.btnFacebook span.label:before {
  border-right-color: rgba(48,97,153,0.7);
}

.the-article-tools li.btnphone {
  border: 3px solid rgba(101,132,152,0.7);
}

.the-article-tools li.btnphone button {
  background-color: rgba(33,70,99,1);
}

.the-article-tools li.btnphone button {
  animation: colorBackground-phone 0.9s infinite;
  -webkit-animation: colorBackground-phone 1s infinite;
  -moz-animation: colorBackground-phone 1s infinite;
  -o-animation: colorBackground-phone 0.9s infinite;
}

@keyframes colorBackground-phone {
  0% {
    background-color: #e94325;
    *color: yellow;
  }

  50% {
    background-color: #1ad0ca;
    *color: red;
  }
}

.the-article-tools li.btnphone span.label {
  background: rgba(33,70,99,0.7);
  color: #FFF;
}

.the-article-tools li.btnphone span.label:before {
  border-right-color: rgba(33,70,99,0.7);
}

.back-hotline {
  position: fixed;
  right: 10px;
  bottom: 55px;
  z-index: 999;
  cursor: pointer;
  height: 35px;
  width: 35px;
  line-height: 35px;
  border-radius: 3px;
  background-color: #214663;
  color: #fff;
  display: none;
}

@media (max-width: 991px) {
  .back-hotline {
    display: block;
  }
}

.back-hotline button {
  color: #fff !important;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 20px;
  border: none;
  outline: none;
  box-shadow: none;
  background-color: #1eaf8b;
  border-radius: 3px;
  padding: 0;
  margin: 0;
}

.back-hotline button {
  animation: colorBackground-mobile 0.9s infinite;
  -webkit-animation: colorBackground-mobile 1s infinite;
  -moz-animation: colorBackground-mobile 1s infinite;
  -o-animation: colorBackground-mobile 0.9s infinite;
}

@keyframes colorBackground-mobile {
  0% {
    background-color: #e94325;
    *color: yellow;
  }

  50% {
    background-color: #1ad0ca;
    *color: red;
  }
}

.back-zalo {
  position: fixed;
  right: 10px;
  bottom: 100px;
  z-index: 999;
  cursor: pointer;
  height: 35px;
  width: 35px;
  line-height: 35px;
  border-radius: 3px;
  background-color: #018fe5;
  color: #fff;
  display: none;
}

@media (max-width: 991px) {
  .back-zalo {
    display: block;
  }
}

.back-zalo a {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 20px;
}

.back-zalo a .ti-zalo {
  background: url(../img/icon_zalomessage.png?1543911833749) no-repeat 50% 50%;
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: 20px;
  vertical-align: middle;
  margin-right: 0px;
  position: relative;
  top: -2px;
}

#hotlineModal .modal-content {
  border-radius: 0;
}

.page-menu {
  border-bottom: 1px solid #444;
}

.page-menu .xtoggle-menu {
  display: none;
}

.page-menu .menu, .page-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.page-menu li.current-menu-item {
  position: relative;
}

.page-menu li a {
  display: block;
  color: #444;
  padding-bottom: 5px;
  text-decoration: none;
}

.page-menu li.current-menu-item a {
  font-weight: bold;
  color: #000f9f;
  font-size: 1.1em;
}

.page-menu li.current-menu-item:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #000f9f;
  left: 0;
  bottom: 0;
}

.page-menu .xtoggle-menu {
  display: none;
}

.page-menu li {
  display: block;
  margin-right: 30px;
  float: left;
}

@media(max-width: 767.98px) {
  .page-menu  .xtoggle-menu {
    display: block;
    background: #FFF;
    color: #000f9f;
    text-transform: uppercase;
    font-size: 13px;
    margin: 10px 0;
    border: 0;
    padding: 0 20px 0 0;
    position: relative;
  }

  .xtoggle-menu:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: url(../img/arrow-right.svg) no-repeat center;
    background-size: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
  }

  .page-menu .menu {
    display: none;
  }

  .page-menu li {
    float: none;
    margin: 0;
    padding: 5px 0;
  }

  .page-menu .menu li a {
    display: block;
    text-transform: uppercase;
    font-weight: bold;
  }
}

#owl-main .owl-nav {
  margin: 0 !important;
}