/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

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

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

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

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

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

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

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

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    /*-webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);*/
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    /*-webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);*/
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

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

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    /*-webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);*/
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    /*-webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);*/
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

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

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    /*-webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);*/
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    /*-webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);*/
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

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

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    /*-webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);*/
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    /*-webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);*/
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

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

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

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

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

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

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

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

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

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

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

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

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

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

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

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

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

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

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

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

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

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

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

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

.first {
  left: 0;
  animation: slide-in-left 10s ease-out infinite;
}

.second {
  right: 0;
  animation: slide-in-right 10s ease-out infinite;
}

@keyframes slide-in-left {
  0% {
    transform: translate(-100%);
  }
  10% {
    transform: translate(0);
  }
  80% {
    transform: translate(0);
  }
  90% {
    transform: translate(-100%);
  }
  100% {
    transform: translate(-100%);
  }
}
@keyframes slide-in-right {
  0% {
    transform: translate(100%);
  }
  10% {
    transform: translate(0);
  }
  80% {
    transform: translate(0);
  }
  90% {
    transform: translate(100%);
  }
  100% {
    transform: translate(100%);
  }
}
@-webkit-keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    -o-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    -o-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes showStickyMenu {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}
@-moz-keyframes showStickyMenu {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}
@keyframes showStickyMenu {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}
@-webkit-keyframes fadeInNeuron {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInNeuron {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeInNeuron {
  -webkit-animation-name: fadeInNeuron;
  animation-name: fadeInNeuron;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: calc(.3s);
  animation-duration: calc(.3s);
}

@-webkit-keyframes fadeInUpNeuron {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 125px, 0);
    transform: translate3d(0, 125px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpNeuron {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 125px, 0);
    transform: translate3d(0, 125px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpNeuron {
  -webkit-animation-name: fadeInUpNeuron;
  animation-name: fadeInUpNeuron;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: calc(.5s);
  animation-duration: calc(.5s);
}

/*------------------------------------------------------------------
[Icons]
*/
.ico-delevery {
  background-image: url('../images/sprites-sb9269dcebe.png');
  background-position: 0 -173px;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 27px;
  width: 42px;
  display: inline-block;
}

.ico-phone {
  background-image: url('../images/sprites-sb9269dcebe.png');
  background-position: 0 -147px;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 26px;
  width: 26px;
  display: inline-block;
}

.ico-return {
  background-image: url('../images/sprites-sb9269dcebe.png');
  background-position: 0 -122px;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 25px;
  width: 31px;
  display: inline-block;
}

.ico-search {
  background-image: url('../images/sprites-sb9269dcebe.png');
  background-position: 0 -37px;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 21px;
  width: 21px;
  display: inline-block;
}

.ico-setting {
  background-image: url('../images/sprites-sb9269dcebe.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 16px;
  width: 16px;
  display: inline-block;
}

.ico-register {
  background-image: url('../images/sprites-sb9269dcebe.png');
  background-position: 0 -18px;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 13px;
  width: 13px;
  display: inline-block;
}

.ico-check {
  background-image: url('../images/sprites-sb9269dcebe.png');
  background-position: -22px -77px;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 13px;
  width: 13px;
  display: inline-block;
}

.ico-heart {
  background-image: url('../images/sprites-sb9269dcebe.png');
  background-position: 0 -58px;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 11px;
  width: 13px;
  display: inline-block;
}

.ico-cart {
  background-image: url('../images/sprites-sb9269dcebe.png');
  background-position: 0 -99px;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 23px;
  width: 23px;
  display: inline-block;
}

.ico-account {
  background-image: url('../images/sprites-sb9269dcebe.png');
  background-position: 0 -77px;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 22px;
  width: 22px;
  display: inline-block;
}

.ico-account-sm {
  background-image: url('../images/sprites-sb9269dcebe.png');
  background-position: -16px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 18px;
  width: 18px;
  display: inline-block;
}

.ico-addcart {
  background-image: url('../images/sprites-sb9269dcebe.png');
  background-position: -13px -18px;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 19px;
  width: 16px;
  display: inline-block;
}

.ico-addcart-hover, .item-product .productQuickView .btn:hover .ico-addcart, .item-product .productWishList .btn:hover .ico-addcart, .item-product .btnsold-out .btn:hover .ico-addcart, .item-product .formAddToCart .btn:hover .ico-addcart {
  background-image: url('../images/sprites-sb9269dcebe.png');
  background-position: -13px -58px;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 19px;
  width: 16px;
  display: inline-block;
}

.ico-facebook {
  background-image: url('../images/sprites-sb9269dcebe.png');
  background-position: 0 -200px;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 30px;
  width: 30px;
  display: inline-block;
}

/*------------------------------------------------------------------
[Common]
*/
body {
  font-size: 15px;
  font-family: 'Comfortaa', sans-serif;
  line-height: 1.6;
  font-weight: 400;
}
body.open {
  overflow: hidden;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
  font-weight: 600;
  font-family: 'Comfortaa', sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  height: unset;
  width: auto;
}

button {
  cursor: pointer;
}
button:focus {
  outline: none;
}

textarea {
  resize: none;
}

.form-control {
  font-size: 15px;
}

.btn-clear {
  border: none;
  background-color: transparent;
  padding: 0;
}

b, strong {
  font-weight: 700;
}

.wrapper {
  overflow: hidden;
}

a {
  color: #222;
  text-decoration: none;
}
a:focus {
  outline: none;
}
a:hover, a:focus {
  text-decoration: none;
  color: #222;
}

*:focus {
  outline: none;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (min-width: 1200px) {
  .container {
    width: 1320px;
    max-width: 100%;
  }
}
@media only screen and (min-width: 1400px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 90px;
    padding-right: 90px;
  }
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

[class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

.g-0 {
  margin-left: 0;
  margin-right: 0;
}
.g-0 [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 767px) {
  .mb-xs-30 {
    margin-bottom: 30px !important;
  }
}

.mb-20 {
  margin-bottom: 20px !important;
}

@media (max-width: 767px) {
  .mb-md-20 {
    margin-bottom: 20px !important;
  }
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.padding-primary {
  padding: 45px 0;
}
@media only screen and (min-width: 768px) {
  .padding-primary {
    padding: 70px 0;
  }
}

/*------------------------------------------------------------------
[Buttons]
*/
.btn {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: auto;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  padding: 10px 20px 10px;
  background-color: #000;
  color: #fff;
  font-weight: 800;
  white-space: normal;
  text-transform: uppercase;
  font-size: 14px;
}
@media only screen and (min-width: 768px) {
  .btn {
    padding: 8px 18px;
  }
}
.btn:hover {
  background-color: #000;
  color: #fff !important;
}

.btn-lg {
  padding: 15px 18px;
}

.btn-link {
  background-color: transparent;
  border: 0;
  margin: 0;
  color: #2d2d2d;
  text-align: left;
  text-decoration: none;
}

.btn-black {
  background-color: #000;
  color: #fff;
}
.btn-black:hover, .btn-black:focus {
  background-color: #0d0d0d;
  color: #fff !important;
}

.btn-gray {
  background-color: #dcdcdc;
  border-color: #dcdcdc;
  color: #000;
}
.btn-gray:hover, .btn-gray:focus {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.hover-x span {
  padding-top: 2px;
  -webkit-transform: translateX(11px);
  -moz-transform: translateX(11px);
  -o-transform: translateX(11px);
  transform: translateX(11px);
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  display: inline-block;
}
.hover-x i {
  font-weight: 400;
  font-size: 17px;
  margin-left: 12px;
  z-index: 9;
  visibility: hidden;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.hover-x:hover span {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.hover-x:hover i {
  visibility: initial;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-dark {
  border-color: #535353;
  background-color: #535353;
  color: #fff;
}
.btn-dark:hover, .btn-dark:focus {
  border-color: #1a1a1a;
  background-color: #1a1a1a;
  color: #fff;
}

.btn-white {
  border-color: #fff;
  background-color: #fff;
  color: #000 !important;
}
.btn-white:hover, .btn-white:focus {
  border-color: #fff;
  background-color: #fff;
  color: #000 !important;
}

.btn-second {
  border-color: #27a45b;
  color: #27a45b;
  background-color: #fff;
}
.btn-second:hover, .btn-second:focus {
  background-color: #27a45b;
  color: #fff;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  outline: none;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  outline: none;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  outline: none;
  z-index: 3;
}
.slick-track:before {
  display: table;
  content: '';
}
.slick-track:after {
  display: table;
  content: '';
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
  outline: none;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
  outline: none;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
  outline: none;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Dots */
.slick-dots {
  cursor: pointer;
  position: absolute;
  margin: 0;
  padding: 0;
  outline: none;
  right: 10px;
  bottom: 20px;
  z-index: 10;
}
.slick-dots li {
  display: inline-block;
  position: relative;
  margin: 0 4px;
}
.slick-dots li button {
  cursor: pointer;
  font-size: 0px;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  color: red;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:after {
  cursor: pointer;
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
}
.slick-dots li.slick-active {
  outline: none;
}
.slick-dots li.slick-active button::after {
  cursor: pointer;
  background-color: #fff;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-prev, .slick-next {
  z-index: 5;
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  outline: none;
  background-color: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
  opacity: 0.9;
}
.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
  opacity: 0;
}
.slick-prev:before, .slick-next:before {
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-size: 30px;
  line-height: 1;
  color: #fff;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 5px;
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: 15px;
}
.slick-prev:before {
  content: "\f104";
}
[dir="rtl"] .slick-prev:before {
  content: "\e902";
}

.slick-next {
  right: 15px;
}
[dir="rtl"] .slick-next {
  left: 5px;
  right: auto;
}
.slick-next:before {
  content: "\f105";
}
[dir="rtl"] .slick-next:before {
  content: "\e915";
}

/*------------------------------------------------------------------
[Typo]
*/
.heading {
  margin-bottom: 56px;
}

.title-heading {
  font-weight: 900;
  color: #222;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .title-heading {
    font-size: 28px;
  }
}

.sub-title-heading {
  line-height: 22px;
  font-size: 15px;
}
@media only screen and (min-width: 576px) {
  .sub-title-heading {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .sub-title-heading {
    margin-bottom: 30px;
  }
}

.quete-desc {
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 22px;
  font-size: 14px;
}
@media only screen and (min-width: 576px) {
  .quete-desc {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .quete-desc {
    margin-bottom: 54px;
    font-size: 16px;
  }
}

.fz-12 {
  font-size: 12px;
}

.fz-14 {
  font-size: 14px;
}

.fz-15 {
  font-size: 15px;
}

.fz-16 {
  font-size: 16px;
}

/*------------------------------------------------------------------
[Header]
*/
.header-site {
  position: relative;
  background-color: #fff;
}
.header-site .label-header {
  font-size: 13px;
  color: #1a1a1a;
  font-weight: 500;
}
.header-site.open {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99999;
}

.header-center {
  padding: 15px 0;
}
@media only screen and (min-width: 992px) {
  .header-center {
    padding: 30px 0;
  }
}

.main-menu {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.main-menu .nav-item {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .main-menu .nav-item {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .main-menu .nav-item {
    margin-right: 51px;
  }
}
.main-menu .nav-item:hover .nav-link {
  color: #222;
}
.main-menu .nav-item:hover .nav-link::before {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .main-menu .nav-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% - 4px);
  }
}
.main-menu .nav-item:hover.nav-item-mega .sub-menu {
  top: calc(100% - 48px);
}
.main-menu .nav-item.nav-item-mega {
  position: static;
}
.main-menu .nav-item.nav-item-mega .sub-menu {
  width: 100%;
  left: 0;
}
.main-menu .nav-item.nav-item-mega .sub-menu .sub-menu-inner {
  padding-left: 0;
}
.main-menu .nav-link {
  color: #1a1a1a;
  font-weight: 600;
  line-height: 22px;
  font-size: 15px;
  position: relative;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  padding: 0;
}
.main-menu .nav-link::before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.contentsticky-logo img {
  max-height: 55px;
}

@media only screen and (min-width: 992px) {
  .sub-menu {
    opacity: 0;
    visibility: hidden;
    top: calc(100% + 10px);
    z-index: 999;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    padding-top: 48px;
  }
  .sub-menu .sub-menu-inner {
    background: #fff;
    border-top: 1px solid #f2f2f2;
    padding: 48px 0;
    padding-left: 20px;
    padding-right: 0;
    min-width: 270px;
    max-height: 100vh;
    -webkit-box-shadow: 0 15px 15px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 15px 15px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 15px 15px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 15px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.1);
  }
}
.sub-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sub-menu ul li {
  padding: 0 20px;
}
.sub-menu ul li > a {
  font-weight: 500;
  font-size: 14px;
  color: #000;
  line-height: 40px;
}
@media only screen and (min-width: 992px) {
  .sub-menu ul li > a {
    line-height: 36px;
  }
}
.sub-menu ul li:hover > a {
  text-decoration-line: underline;
  text-decoration-color: #222;
}
.sub-menu ul li.menuTitle {
  margin-bottom: 13px;
}
.sub-menu ul li.menuTitle a {
  cursor: text;
  line-height: 22px;
  font-weight: 900;
  text-transform: uppercase;
  color: #1a1a1a;
  font-size: 14px;
}
.sub-menu ul li.menuTitle:hover a {
  text-decoration-line: none;
}
@media only screen and (min-width: 992px) {
  .sub-menu .novMenuLinks {
    margin-bottom: 20px;
  }
}

.hover-image a {
  display: block;
  overflow: hidden;
}
.hover-image a img {
  -webkit-transition: all ease-out 1s;
  -moz-transition: all ease-out 1s;
  -o-transition: all ease-out 1s;
  transition: all ease-out 1s;
}
.hover-image a:hover img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.novMenuBanner {
  height: 100%;
}
.novMenuBanner a {
  height: 100%;
}
.novMenuBanner .respone-image {
  height: 100%;
}

.respone-image {
  position: relative;
  padding-top: 67.5531914893617%;
}
.respone-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
}

.list-collection .list-collection-item:not(:last-child) {
  margin-bottom: 30px;
}
.list-collection .list-collection-item a {
  display: inline-block;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 22px;
  font-size: 14px;
  text-transform: uppercase;
}
.list-collection .list-collection-item a span {
  margin-right: 15px;
}
.list-collection .list-collection-item a i {
  font-size: 14px;
}
.list-collection .list-collection-item a:hover span {
  text-decoration: underline;
}

.toggle-search {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.toggle-search i {
  margin-right: 16px;
}

.site-header-myaccount {
  cursor: pointer;
  margin-left: 37px;
}
.site-header-myaccount .dropdown-toggle::after {
  display: none;
}
.site-header-myaccount:hover .dropdown-menu, .site-header-myaccount.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 64px !important;
}

.dropdown-menu.account-list {
  min-width: 260px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: block;
  border: none;
  overflow: hidden;
  top: 80px !important;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  transform: none !important;
  margin: 0 !important;
  padding: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.dropdown-menu.account-list.show {
  opacity: 1;
  visibility: visible;
  top: 64px !important;
}

.dropdown-menu-right {
  left: auto !important;
  right: 0 !important;
}

.account-list-content {
  list-style: none;
  margin: 0;
  padding: 7px 0 20px;
}
.account-list-content li {
  padding: 10px 15px 10px 25px;
}
.account-list-content li:not(:last-child) {
  border-bottom: 1px solid #f4f4f4;
}
.account-list-content li:last-child {
  padding-bottom: 0;
}
.account-list-content li a {
  padding: 12px 7px;
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 500;
}
.account-list-content li a:hover span {
  text-decoration-line: underline;
  text-decoration-color: #000;
}
.account-list-content li i {
  color: #1a1a1a;
  margin-right: 20px;
  min-width: 13px;
  font-size: 14px;
  vertical-align: middle;
}

.cart-block {
  position: relative;
  cursor: pointer;
  margin-left: 37px;
}
.cart-block:hover .cart-info {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.site-header-cart {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-right: 10px;
}

.site-header-cart-count {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  background: #ffe8a2;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  margin-left: 7px;
}
@media (max-width: 991px) {
  .site-header-cart-count {
    position: absolute;
    top: -23px;
    left: -5px;
  }
}
.site-header-cart-count .cartcount {
  font-size: 10px;
  color: #1a1a1a;
  font-weight: 700;
  line-height: 22px;
}

.cart-info {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 0;
  top: 120%;
  z-index: 99;
  padding-top: 40px;
  cursor: initial;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.cart-info .cart {
  background: #fff;
  min-width: 315px;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 13px;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  -ms-border-radius: 0 0 4px 4px;
  -o-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cart-info .cart.cart-empty {
  padding: 30px;
}
.cart-info .cart.cart-empty .empty-title {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}
.cart-info .media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  color: #222;
  font-weight: 600;
  padding: 20px;
  border-bottom: 1px solid #e6e6e6;
}
.cart-info .media .product-image {
  width: 70px;
  margin-right: 10px;
  border: 1px solid #e6e6e6;
}
.cart-info .media .product-name {
  color: #222;
  font-weight: 600;
}
.cart-info .media .media-body {
  -ms-flex: 1;
  flex: 1;
}
.cart-info .media .remove-from-cart {
  position: absolute;
  font-size: 16px;
  color: #8f8f8f;
  display: inline-block;
  width: 23px;
  height: 23px;
  text-align: center;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  background-color: #e6e6e6;
}
.cart-info .media .remove-from-cart:hover {
  color: #535353;
}
.cart-info .total {
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  font-size: 14px;
  padding: 20px;
}
.cart-info .block-btn-cart {
  padding: 20px;
  border-top: 1px solid #e6e6e6;
}
.cart-info .list-item-cart {
  list-style: none;
  padding: 15px;
  margin: 0;
}
.cart-info .pd {
  padding: 10px 15px 15px;
  font-size: 15px;
  font-weight: 700;
}
.cart-info .pd.right_ct {
  padding-top: 0;
}
.cart-info .pd .price_big {
  font-size: 18px;
  color: red;
}
.cart-info .pd .btn:not(:last-child) {
  margin-bottom: 15px;
}

.border_list {
  display: flex;
}
.border_list .product-image {
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
  max-width: 70px;
}
.border_list .detail-item {
  -ms-flex: 0 0 calc(100% - 70px);
  flex: 0 0 calc(100% - 70px);
  max-width: calc(100% - 70px);
  padding-left: 15px;
}
.border_list .product-name {
  font-weight: 700;
  margin-bottom: 0;
}
.border_list .product-details-bottom {
  white-space: nowrap;
  position: relative;
}
.border_list .product-details-bottom .price {
  color: red;
}
.border_list .product-details-bottom .remove-item-cart {
  position: absolute;
  color: #8f8f8f;
  display: inline-block;
  width: 23px;
  height: 23px;
  text-align: center;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  background-color: #e6e6e6;
  text-align: center;
  font-size: 0;
  line-height: 23px;
}
.border_list .product-details-bottom .remove-item-cart::before {
  font-size: 14px;
}
.border_list .product-details-bottom .remove-item-cart:hover {
  color: #535353;
}
.border_list .product-details-bottom .quantity-select {
  display: inline-block;
}
.border_list .product-details-bottom .quantity-select::before {
  content: "x";
  margin: 0 7px 0 3px;
}
.border_list .product-details-bottom .input-text {
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  display: inline;
  font-weight: 700;
}

.block-link-cart a {
  min-width: 230px;
  background-color: #fff;
  color: #222 !important;
  border: 2px solid #000;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  font-weight: 700;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10000;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0 .5s,visibility 0 .5s;
  -moz-transition: opacity 0 .5s,visibility 0 .5s;
  -ms-transition: opacity 0 .5s,visibility 0 .5s;
  -o-transition: opacity 0 .5s,visibility 0 .5s;
  transition: opacity 0 .5s,visibility 0 .5s;
}
.overlay.style-light-bg {
  background-color: #fff !important;
}
.overlay.overlay-search {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.overlay.open {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media only screen and (min-width: 1400px) {
  .overlay.open {
    overflow: scroll;
    display: block;
    margin-top: 0;
  }
}
.overlay.open .search-container-inner, .overlay.open .search-trend {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.close-search {
  background: 0 0;
  position: absolute;
  top: 212px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 1441px) {
  .close-search {
    top: 111px;
  }
}
.close-search i {
  color: #000;
  font-size: 24px;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.close-search i:hover {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.search-container {
  margin-top: 19%;
}

.search-container-inner {
  margin: 0 auto;
  max-width: 850px;
  position: relative;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  opacity: 0;
  -webkit-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  transform: translateY(-40px);
  -webkit-transition: transform .3s,opacity .3s;
  -moz-transition: transform .3s,opacity .3s;
  -ms-transition: transform .3s,opacity .3s;
  -o-transition: transform .3s,opacity .3s;
  transition: transform .3s,opacity .3s;
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  -ms-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.form-search {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
  -webkit-transition: -webkit-transform .2s,opacity .2s;
  transition: transform .2s,opacity .2s;
  display: inline-block;
  width: 100%;
  position: relative;
}

.search-header-input {
  width: 100%;
  height: 44px;
  font-size: 14px;
  padding: 0;
  border: none;
  border-bottom: 1px solid #000;
  color: #222;
  background-color: transparent;
  outline: 0;
  position: relative;
}

.search-header-submit {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.search-header-submit span {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  padding-top: 5px;
  -webkit-transform: translateX(32px);
  -moz-transform: translateX(32px);
  -o-transform: translateX(32px);
  transform: translateX(32px);
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.search-header-submit i {
  color: #000;
  font-weight: 400;
  font-size: 17px;
  margin-left: 12px;
  visibility: hidden;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.search-header-submit:hover span {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.search-header-submit:hover i {
  visibility: initial;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
}

.search-trend {
  margin: 26px auto 0;
  max-width: 850px;
  font-weight: 500;
  font-size: 12px;
  line-height: 22px;
  color: #909090;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  opacity: 0;
  -webkit-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  transform: translateY(-40px);
  -webkit-transition: transform .5s,opacity .5s;
  -moz-transition: transform .5s,opacity .5s;
  -ms-transition: transform .5s,opacity .5s;
  -o-transition: transform .5s,opacity .5s;
  transition: transform .5s,opacity .5s;
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -ms-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.search-trend strong {
  color: #4a4a4a;
}
.search-trend ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 5px;
}
.search-trend ul li {
  margin: 0 1px;
}
.search-trend ul li a {
  font-weight: 500;
  font-size: 12px;
  line-height: 22px;
  color: #909090;
}
.search-trend ul li a:hover {
  color: #000;
  text-decoration-line: underline;
  text-decoration-color: #000;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.search-guest {
  background-color: #fff;
  overflow: auto;
  top: 150px !important;
  padding-bottom: 100px;
  position: absolute;
  left: 0;
  display: none;
}

.search-results {
  z-index: 9999;
  padding: 0;
  overflow: hidden;
  width: 880px;
  padding-bottom: 100px;
  margin: 0 auto;
  position: relative;
  list-style-type: none;
}
.search-results a {
  display: block;
}
.search-results .media-body {
  text-align: left;
  flex: initial;
}
.search-results .title {
  font-size: 11px;
  color: #000;
  font-weight: 600;
  overflow: hidden;
  line-height: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 15px 0;
  min-height: 40px;
}
.search-results .price {
  color: #222;
  font-size: 11px;
  font-weight: 800;
  margin-top: auto !important;
}
.search-results .see-all {
  font-size: 10px;
  color: #222;
  text-transform: uppercase;
  font-weight: 700;
  padding: 60px 0 0;
  display: block;
  margin-left: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.search-results .see-all::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.search-results .see-all:hover::after {
  width: 50%;
}

@media only screen and (min-width: 768px) {
  .col-md-cus-5 {
    position: relative;
    width: 100%;
    min-height: 1px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.vertical-dropdown {
  cursor: pointer;
}
.vertical-dropdown i {
  font-size: 21px;
}

@media (max-width: 991px) and (min-width: 768px) {
  .ver-menu {
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    text-align: center;
    top: 0;
    left: -270px;
    z-index: 999;
    background: #fff;
    padding: 0 18px 70px;
    width: 270px;
    border: none;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
  }
  .ver-menu.active {
    left: 0;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
  }
  .ver-menu .main-menu {
    display: block;
    margin-top: 40px;
  }
  .ver-menu .main-menu .nav-item {
    margin: 0 0 20px;
  }
  .ver-menu .main-menu .nav-link {
    font-weight: 600;
    display: flex;
  }
  .ver-menu .main-menu .nav-link::before {
    display: none;
  }
  .ver-menu .main-menu .sub-menu {
    position: static;
    width: 100% !important;
    visibility: visible;
    box-shadow: none;
    padding: 0;
    background: 0 0 !important;
    display: none;
    transition: none;
    text-align: left;
  }
  .ver-menu .main-menu .sub-menu ul li > a {
    display: inline-block;
    line-height: 1.6;
    padding: 10px 0;
  }
  .ver-menu .main-menu .sub-menu-inner {
    padding-top: 15px;
  }
  .ver-menu .main-menu .sub-menu-inner .container {
    padding: 0;
  }
  .ver-menu ul.novMenuLinks li:not(.menuTitle) {
    padding: 0 20px;
  }
}

.show-mor i {
  font-size: 18px;
}

.sidebar-overlay {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.5);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.sidebar-overlay.atc {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
  visibility: visible;
}

.header-mobile {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #fff;
  padding: 10px 0;
}
.header-mobile .dropdown-menu.account-list {
  top: 43px !important;
}

.mobile-logo {
  margin-right: 15px;
}
.mobile-logo img {
  height: 45px;
}

.mobile-search {
  position: relative;
  width: 100%;
  margin-right: 15px;
}

.search-header-input-mobile {
  background-color: #f4f4f4;
  border: none;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  padding: 0 20px;
  height: 40px;
  color: #162950;
  max-width: 100%;
  line-height: 1.2;
  width: 100%;
}

.btn-search-mobile {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #f4f4f4;
}
.btn-search-mobile i {
  font-size: 21px;
  color: #000;
}

.item-mobile-top {
  position: relative;
  cursor: pointer;
  font-size: 20px;
  float: inherit;
  text-shadow: none;
  line-height: 10px;
}
.item-mobile-top i {
  color: #222;
  font-size: 24px;
}

.canvas-menu {
  background: #fff;
  color: #666;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: auto;
  right: -250px;
  width: 250px;
  height: 100%;
  -webkit-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  -moz-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  -ms-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  -o-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 767px) {
  .canvas-menu.active {
    right: 0;
  }
}

.canvas-header-box {
  padding: 35px 0;
  font-size: 16px;
  font-weight: 700;
  color: #c3c4c3;
  background-color: #fff;
}

.canvas-overlay {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.5);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 767px) {
  body {
    -webkit-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
    -moz-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
    -o-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
    transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
    position: relative;
  }
  body.canvasmenu-right {
    overflow: hidden;
    right: 250px;
    left: -250px;
  }
  body.canvasmenu-right .canvas-menu {
    right: 0;
  }
  body.canvasmenu-right .canvas-overlay {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    visibility: visible;
  }
}

#canvas-main-menu {
  top: 110px;
  background: #fff;
}

.main-menu-mobile {
  display: block;
}
.main-menu-mobile.over-left {
  position: absolute;
  transform: translate(-275px, 0);
  top: 0;
}
.main-menu-mobile .nav-link::before {
  display: none;
}
.main-menu-mobile .nav-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-menu-mobile .nav-item a {
  display: inline-block;
  padding: 6px 0;
}

.sub-menu-mobile.sub-menu {
  text-align: left;
  transform: translate(275px, 0);
  -webkit-transition: transform ease 0.5s;
  -moz-transition: transform ease 0.5s;
  -o-transition: transform ease 0.5s;
  transition: transform ease 0.5s;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: #fff;
  display: none;
}
.sub-menu-mobile.sub-menu.active {
  transform: translate(0, 0);
  display: block;
}
.sub-menu-mobile.sub-menu ul li > a {
  display: inline-block;
  line-height: 1.6;
  padding: 10px 0;
}
.sub-menu-mobile.sub-menu ul li.menuTitle {
  margin-bottom: 0;
}
.sub-menu-mobile.sub-menu ul li.menuTitle a {
  font-size: 11px;
  font-weight: 900;
}
.sub-menu-mobile.sub-menu .list-collection {
  margin-bottom: 20px;
}
.sub-menu-mobile.sub-menu .list-collection .list-collection-item:not(:last-child) {
  margin-bottom: 15px;
}
.sub-menu-mobile.sub-menu .list-collection .list-collection-item a {
  font-size: 11px;
  line-height: 22px;
}
.sub-menu-mobile .sub-menu-inner {
  padding-top: 15px;
}
.sub-menu-mobile .sub-menu-inner .container {
  padding: 0;
}

.mm-next::before {
  content: "\f2f6";
  font-family: Material-Design-Iconic-Font;
  font-size: 24px;
  color: #b3b4b3;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  border: none;
  display: contents;
  width: initial;
  height: initial;
}

.menu-block {
  display: none;
}

.canvas-menu-body {
  height: calc(100vh - 95px);
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}
.canvas-menu-body .main-menu-mobile, .canvas-menu-body .sub-menu-mobile {
  padding: 0 15px 20px;
}

.back-mn {
  color: #1a1a1a !important;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  padding-left: 24px;
  margin-bottom: 20px;
}
.back-mn i::before {
  content: "";
  border-top: 2px solid #222;
  border-left: 2px solid #222;
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: -2px;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 4px;
  right: auto;
}

/* fixed-header */
@media only screen and (min-width: 992px) {
  .fixed-header .header-site {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    animation: 250ms ease-out 0s normal none 1 running showStickyMenu;
    background-color: #fff;
  }
  .fixed-header .header-center {
    padding: 10px 0;
  }
  .fixed-header .main-menu .nav-item:hover:not(.nav-item-mega) .sub-menu {
    top: calc(100% - 34px);
  }
  .fixed-header .main-menu .nav-item:hover.nav-item-mega .sub-menu {
    top: 100%;
    padding-top: 0;
  }
  .fixed-header .dropdown-menu.account-list.show {
    top: 34px !important;
  }
  .fixed-header .cart-info {
    padding-top: 10px;
  }
}

/*------------------------------------------------------------------
[Content]
*/
/* section-blog */
.section-blog {
  padding-top: 130px;
  padding-bottom: 144px;
}

.article-listing img {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 1.35s ease;
  -moz-transition: all 1.35s ease;
  -o-transition: all 1.35s ease;
  transition: all 1.35s ease;
}
.article-listing:hover img {
  -webkit-transform: scale(1.35, 1.35);
  -moz-transform: scale(1.35, 1.35);
  -o-transform: scale(1.35, 1.35);
  transform: scale(1.35, 1.35);
}
.article-listing .media-body {
  position: relative;
  margin-top: -88px;
  background: #fff;
  padding: 24px 0 0;
  margin-left: 30px;
  margin-right: -1px;
  padding-left: 30px;
  padding-right: 25px;
}
@media (max-width: 1441px) {
  .article-listing .media-body {
    padding-left: 30px;
    padding-right: 5px;
  }
}

.article-list-image-container {
  display: block;
  overflow: hidden;
}
.article-list-image-container .respone-image {
  padding-top: 100%;
}

.article-title {
  margin-bottom: 25px;
}
.article-title a {
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  color: #1a1a1a;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.article-title a:hover {
  color: #1a1a1a;
  text-decoration-line: underline;
  text-decoration-color: #000;
}

.article-excerpt {
  font-weight: 400;
  position: relative;
  padding-bottom: 24px;
  margin-bottom: 29px;
}
.article-excerpt::after {
  content: '';
  display: block;
  width: 70px;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}

.article-cs i {
  vertical-align: top;
  margin-right: 10px;
  font-size: 13px;
}

.article-author {
  color: #222;
  font-weight: 700;
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  margin-right: 16px;
}

.article-date {
  display: inline-block;
  font-weight: 500;
  color: #666;
  font-size: 11px;
  text-transform: uppercase;
}

.slider-blog {
  margin: 0 -30px;
}
.slider-blog .item {
  padding: 0 30px;
  border-right: 1px solid #e5e5e5;
}

/* section-testimonial */
.section-testimonial {
  background-color: #f5f3ee;
  padding-top: 98px;
  padding-bottom: 60px;
}

.title-testimonial {
  font-weight: 600;
  text-transform: uppercase;
  line-height: 22px;
  margin-bottom: -60px;
  font-size: 12px;
  color: #222;
}
@media (max-width: 1199px) {
  .title-testimonial {
    margin-bottom: -50px;
  }
}
@media (max-width: 991px) {
  .title-testimonial {
    margin-bottom: 20px;
  }
}

.testimonial-item .content-info {
  margin: 0 0 40px;
}
@media only screen and (min-width: 768px) {
  .testimonial-item .content-info {
    padding-right: 100px;
    margin: 81px 0 0;
  }
}

.testimonial-item-review {
  margin-bottom: 46px;
}
@media (max-width: 1199px) {
  .testimonial-item-review {
    margin-bottom: 20px;
  }
}

.testimonial-item-text {
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 33px;
  color: #222;
  font-size: 22px;
}
@media (max-width: 1199px) {
  .testimonial-item-text {
    font-size: 17px;
  }
}

.testimonial-item-name {
  color: #222;
  font-weight: 400;
}

.testimonial-part .respone-image {
  padding-top: 100%;
}

.slider-testimonial {
  z-index: 2;
}
.slider-testimonial .slick-arrow {
  position: absolute;
  top: -9px;
  bottom: initial;
}
@media only screen and (min-width: 992px) {
  .slider-testimonial .slick-arrow {
    top: initial;
    bottom: -9px;
  }
}
.slider-testimonial .slick-arrow::before {
  font: normal normal normal 30px/1 'Material-Design-Iconic-Font';
  color: #000;
}
.slider-testimonial .slick-arrow.slick-disabled::before {
  opacity: 0.5;
}
.slider-testimonial .slick-prev {
  right: 61px;
  left: initial;
}
@media only screen and (min-width: 992px) {
  .slider-testimonial .slick-prev {
    left: 15px;
    right: initial;
  }
}
.slider-testimonial .slick-prev::before {
  content: '\f2ff';
}
.slider-testimonial .slick-next {
  right: 15px;
  left: initial;
}
@media only screen and (min-width: 992px) {
  .slider-testimonial .slick-next {
    left: 61px;
    right: initial;
  }
}
.slider-testimonial .slick-next::before {
  content: '\f301';
}

/* section-collection-tabs */
.section-collection-tabs {
  position: relative;
  padding-top: 43px;
}
@media (max-width: 1199px) {
  .section-collection-tabs .title-heading {
    margin-bottom: 30px;
  }
}

.view-all {
  margin-top: 16px;
}
@media only screen and (min-width: 576px) {
  .view-all {
    margin-top: 0;
  }
}
.view-all a {
  color: #222;
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 575px) {
  .view-all a {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    font-size: 9px;
  }
}
@media only screen and (min-width: 576px) {
  .view-all a::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #000;
    margin-right: 22px;
  }
}

.list-product-tabs {
  border: none;
  padding: 0;
}
@media (max-width: 991px) {
  .list-product-tabs {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: initial;
    -moz-flex-wrap: initial;
    -ms-flex-wrap: initial;
    flex-wrap: initial;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
  }
}
.list-product-tabs .nav-item:not(:last-child) {
  margin-right: 30px;
}
@media only screen and (min-width: 992px) {
  .list-product-tabs .nav-item:not(:last-child) {
    margin-right: 40px;
  }
}
.list-product-tabs .nav-link {
  border: none;
  background-color: transparent;
  color: #666;
  font-size: 13px;
  font-weight: 600;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  border: none;
  padding: 0;
  text-transform: uppercase;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.list-product-tabs .nav-link:hover, .list-product-tabs .nav-link.active {
  background-color: transparent;
  color: #000;
}

@media (max-width: 767px) {
  .order-sm-1 {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}

.item-product {
  border: 1px solid #cbcbcb;
  border-top: none;
  border-bottom: none;
  overflow: initial;
  margin-left: -1px;
  padding-bottom: 32px;
}
.item-product.no-border {
  border: none;
  margin-left: 0;
  padding-bottom: 0;
}
.item-product .thumbnail-container {
  position: relative;
  overflow: hidden;
}
.item-product .thumbnail-container a {
  position: relative;
  display: block;
  overflow: hidden;
  text-align: center;
}
.item-product .thumbnail-container a .respone-image {
  padding-top: 126.6666667%;
}
.item-product .thumbnail-container a .respone-image img {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.item-product .thumbnail-container img {
  margin: 0 auto;
}
.item-product .thumbnail-container .group-buttons {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.item-product .productQuickView .btn, .item-product .productWishList .btn, .item-product .btnsold-out .btn, .item-product .formAddToCart .btn {
  padding: 0;
  background: #fff;
  color: #2d2d2d;
  font-size: 17px;
  border: none !important;
  width: 50px;
  height: 50px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.item-product .productQuickView .btn:hover, .item-product .productWishList .btn:hover, .item-product .btnsold-out .btn:hover, .item-product .formAddToCart .btn:hover {
  background: #000;
  color: #fff;
}
.item-product .productQuickView, .item-product .productWishList {
  margin: 0 0 10px;
  opacity: 0;
  visibility: hidden;
}
.item-product .productWishList {
  -webkit-transform: translateX(60px);
  -moz-transform: translateX(60px);
  -o-transform: translateX(60px);
  transform: translateX(60px);
  -webkit-transition: all 0.3s ease 0.4s;
  -moz-transition: all 0.3s ease 0.4s;
  -o-transition: all 0.3s ease 0.4s;
  transition: all 0.3s ease 0.4s;
}
.item-product .productWishList i {
  display: block;
}
.item-product .productWishList span {
  display: none;
}
.item-product .productQuickView {
  -webkit-transform: translateX(60px);
  -moz-transform: translateX(60px);
  -o-transform: translateX(60px);
  transform: translateX(60px);
  -webkit-transition: all 0.3s ease 0.3s;
  -moz-transition: all 0.3s ease 0.3s;
  -o-transition: all 0.3s ease 0.3s;
  transition: all 0.3s ease 0.3s;
}
.item-product .btnsold-out, .item-product .formAddToCart {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(60px);
  -moz-transform: translateX(60px);
  -o-transform: translateX(60px);
  transform: translateX(60px);
  -webkit-transition: all 0.3s ease 0.2s;
  -moz-transition: all 0.3s ease 0.2s;
  -o-transition: all 0.3s ease 0.2s;
  transition: all 0.3s ease 0.2s;
}
.item-product .product-info {
  position: relative;
  z-index: 9;
}
.item-product .product-info .product-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 19px 0 8px;
  font-weight: 600;
  color: #000;
  background: #fff;
  padding-left: 30px;
}
.item-product .product-info .product-title a {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.item-product .product-info .product-title a:hover {
  text-decoration-line: underline;
  text-decoration-color: #000;
}
.item-product .product-info .product-price {
  color: #222;
  font-weight: 700;
  background: #fff;
  padding-left: 30px;
}
.item-product .block-product-info {
  overflow: hidden;
  position: relative;
  z-index: 9;
  background: #fff;
}
.item-product .cate a {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ccc;
}
.item-product .cate a:hover {
  text-decoration-line: underline;
  text-decoration-color: #ccc;
}
.item-product .product-available i {
  margin-right: 10px;
  font-size: 14px;
}
.item-product:hover .productQuickView, .item-product:hover .productWishList,
.item-product:hover .btnsold-out, .item-product:hover .formAddToCart {
  opacity: 1;
  visibility: visible;
}
.item-product:hover .productQuickView, .item-product:hover .productWishList,
.item-product:hover .btnsold-out, .item-product:hover .formAddToCart {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.sale {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  background-color: #FF3C20;
  display: block;
  font-weight: 700;
  color: #fff;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 13px;
  line-height: 40px;
}

.money-old {
  color: #666;
  text-decoration: line-through;
  font-size: 14px;
  margin-left: 5px;
}

.has-multiimage img:not(.product-thumbnail-second) {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
  -webkit-transition: all 0.7s linear;
  -moz-transition: all 0.7s linear;
  -o-transition: all 0.7s linear;
  transition: all 0.7s linear;
}
.has-multiimage .product-thumbnail-second {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  opacity: 0;
}
.has-multiimage:hover {
  z-index: 9;
}
.has-multiimage:hover .product-thumbnail-second {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.3) !important;
  transition: opacity 0.8s, transform 2s cubic-bezier(0, 0, 0.44, 1.18), -webkit-transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}

.owl-custom-dots .owl-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.owl-custom-dots .owl-dots .owl-dot:hover span, .owl-custom-dots .owl-dots .owl-dot.active span {
  background-color: #000;
}

@media only screen and (min-width: 1200px) {
  .col-pr-xl-6 {
    -ms-flex: 0 0 51.808%;
    flex: 0 0 51.808%;
    max-width: 51.808%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-in-xl-6 {
    -ms-flex: 0 0 48.192%;
    flex: 0 0 48.192%;
    max-width: 48.192%;
  }
}

.product-single-info.scroll {
  max-height: 514px;
  overflow-y: auto;
  margin: 41px 0 0;
  padding-left: 30px;
  padding-right: 30px;
}
.product-single-info.scroll::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}
.product-single-info.scroll::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}
.product-single-info.scroll::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
}
.product-single-info.scroll::-webkit-scrollbar, .product-single-info.scroll::-webkit-scrollbar-thumb, .product-single-info.scroll::-webkit-scrollbar-track {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.product-single-info.scroll .product-single-price {
  padding: 17px 0 14px;
}

.product-single-title {
  text-transform: capitalize;
  margin-bottom: 13px;
  font-weight: 700;
  font-size: 18px;
  color: #222;
}

.product-single-price {
  font-size: 20px;
  font-weight: 900;
  color: #000;
  line-height: 22px;
}

.group-reviews {
  margin-bottom: 25px;
}
.group-reviews .spr-badge {
  display: inline-block;
}
.group-reviews .spr-badge-starrating {
  min-width: 115px;
  margin-right: 10px;
}
.group-reviews .spr-badge-starrating i {
  font-size: 14px;
  color: #e8a111;
}
.group-reviews .spr-badge-starrating i.fa-star-o {
  color: #666;
}
.group-reviews .spr-badge-caption {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.available-product {
  margin-bottom: 6px;
}
.available-product .label {
  min-width: 120px;
  margin-right: 0;
  padding-right: 5px;
  display: inline-block;
}
.available-product .product-available {
  font-size: 11px;
  font-weight: 500;
  color: #6bb853;
  text-transform: uppercase;
}
.available-product .product-available > span {
  margin-right: 6px;
}

.label {
  color: #343434;
  letter-spacing: .01px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 30px;
}

.group-single .product-single-sku, .group-single .product-single-cat,
.group-single .product-single-tags {
  margin-bottom: 6px;
  display: -ms-flexbox;
  display: flex;
}
.group-single .product-single-sku .label, .group-single .product-single-cat .label,
.group-single .product-single-tags .label {
  min-width: 120px;
  margin-right: 0;
  padding-right: 5px;
  display: inline-block;
}
.group-single .product-single-sku a, .group-single .product-single-cat a,
.group-single .product-single-tags a {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}
.group-single .product-single-sku a:hover, .group-single .product-single-cat a:hover,
.group-single .product-single-tags a:hover {
  text-decoration-color: #000;
  text-decoration-line: underline;
}
.group-single .label-sku {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.short-desc {
  color: #666;
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  margin-top: 29px;
}

.product-form-item-quantity {
  margin-top: 13px;
}

.quantity-selector {
  color: #444;
  letter-spacing: .2px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.quick-view-qty {
  width: 110px;
  border: 1px solid #ebebeb;
  position: relative;
  font-weight: 400;
  font-size: 14px;
  color: #444;
  margin: 11px 0 30px;
}
.quick-view-qty.big .quick-view-qty-btn {
  height: 50px;
  line-height: 50px;
}
.quick-view-qty.big .product-form-input {
  height: 50px;
}

.quick-view-qty-btn {
  position: absolute;
  padding: 0;
  text-align: center;
  width: 26px;
  height: 40px;
  line-height: 40px;
  color: #b4b4b4;
  font-size: 1.6rem;
  background: #fff;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-align-items: none;
  -moz-align-items: none;
  -ms-align-items: none;
  align-items: none;
  cursor: pointer;
}

.quick-view-qty-minus {
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-right: 1px solid #ebebeb;
}

.quick-view-qty-plus {
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-left: 1px solid #ebebeb;
}

.product-form-input {
  height: 40px;
  font-size: 13px;
  font-weight: 400;
  color: #222;
  text-align: center;
  border: none;
  background-color: #ebebeb;
  padding: 0;
  width: 100%;
}

.product-wishlist a {
  margin: 15px 0;
  font-weight: 600;
  white-space: normal;
  text-transform: uppercase;
  font-size: 11px;
  color: #000;
}
.product-wishlist a i {
  font-size: 18px;
  font-weight: 400;
  color: #1a1a1a;
  margin-right: 6px;
  vertical-align: -1px;
}
.product-wishlist a .zmdi-favorite {
  display: none;
}
.product-wishlist a.active .zmdi-favorite-outline {
  display: none;
}
.product-wishlist a.active .zmdi-favorite {
  display: inline-block;
}
.product-wishlist a .wishlist-text {
  font-size: 12px;
  font-weight: 900;
  line-height: 17px;
  color: #222;
  text-transform: uppercase;
  position: relative;
  margin-left: 4px;
}

.product-form-item-submit {
  margin-bottom: 15px;
}

.product-tabs-content .tab-pane {
  display: block;
  height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}
.product-tabs-content .tab-pane.show {
  height: auto;
  opacity: 1;
  visibility: visible;
}

.slick-custom-arrows .slick-arrow {
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 50px;
  top: 50%;
  background: #fff;
  -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  display: flex !important;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 99;
}
.slick-custom-arrows .slick-arrow::before {
  font: normal normal normal 30px/1 'Material-Design-Iconic-Font';
  font-weight: 400;
  color: #010101;
}
.slick-custom-arrows .slick-arrow.slick-disabled::before {
  opacity: 1;
}
.slick-custom-arrows .slick-prev::before {
  content: '\f2fa';
}
.slick-custom-arrows .slick-next::before {
  content: '\f2fb';
}

.slider-product {
  position: inherit;
}
.slider-product .slick-arrow {
  top: 25px;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  transform: none;
}
.slider-product .slick-prev {
  left: 15px;
}
.slider-product .slick-next {
  right: 15px;
}

/* section-video */
.section-video {
  position: relative;
}
.section-video .sub-title-heading {
  text-transform: uppercase;
  font-family: Poppins,sans-serif;
  font-weight: 700;
}

.video-play {
  width: 100%;
  max-height: 800px;
  overflow: hidden;
}
@media (max-width: 1441px) {
  .video-play {
    max-height: 675px;
  }
}
@media (max-width: 1199px) {
  .video-play {
    max-height: 558px;
  }
}
@media (max-width: 991px) {
  .video-play {
    max-height: 432px;
  }
}
@media (max-width: 767px) {
  .video-play {
    max-height: 400px;
  }
}
@media (max-width: 767px) {
  .video-play video {
    min-height: 400px;
    object-fit: cover;
  }
}
@media (max-width: 575px) {
  .video-play video {
    min-height: 400px;
    object-fit: cover;
  }
}

.overlay-video {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  color: #fff;
}
.overlay-video .heading {
  margin-bottom: 5px;
}
@media only screen and (min-width: 576px) {
  .overlay-video .heading {
    margin-bottom: 13px;
  }
}
@media only screen and (min-width: 768px) {
  .overlay-video .heading {
    margin-bottom: 27px;
  }
}
.overlay-video .title-heading {
  font-family: Poppins,sans-serif;
  color: #fff;
  font-weight: 600;
  line-height: 54px;
  text-transform: none;
  font-size: 20px;
}
@media only screen and (min-width: 576px) {
  .overlay-video .title-heading {
    font-size: 25px;
  }
}
@media only screen and (min-width: 768px) {
  .overlay-video .title-heading {
    font-size: 52px;
  }
}
@media only screen and (min-width: 992px) {
  .overlay-video .title-heading {
    font-size: 60px;
  }
}
.overlay-video .btn {
  font-weight: 800;
  font-size: 12px;
}

/* section-banner */
.section-banner {
  overflow: hidden;
  position: relative;
}

.section-banner-img {
  font-size: 0;
}

.slider-banner-right {
  position: relative;
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.slider-banner-right .item {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.banner-img .respone-image {
  padding-top: 88.54166666666667%;
  overflow: hidden;
}

.section-banner-text {
  margin: 60px 0;
}
@media only screen and (min-width: 768px) {
  .section-banner-text {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 9;
    transform: translate(0, -50%);
    margin: 0;
  }
}

.banner-text {
  text-align: center;
}
.banner-text .title-heading {
  font-weight: 900;
  color: #000;
  line-height: 30px;
  margin-bottom: 10px;
  font-size: 16px;
}
@media only screen and (min-width: 768px) {
  .banner-text .title-heading {
    margin-bottom: 19px;
  }
}
@media only screen and (min-width: 992px) {
  .banner-text .title-heading {
    line-height: 45px;
    font-size: 24px;
  }
}
.banner-text .sub-title-heading {
  font-weight: 500;
  margin-bottom: 10px;
  color: #494949;
}
@media only screen and (min-width: 768px) {
  .banner-text .sub-title-heading {
    margin-bottom: 30px;
  }
}
.banner-text .btn {
  border-color: #000;
  font-weight: 700;
  color: #000 !important;
}
@media only screen and (min-width: 768px) {
  .banner-text .btn {
    min-width: 213px;
  }
}
.banner-text .btn:hover, .banner-text .btn:focus {
  border-color: #000;
  background-color: #000;
  color: #fff !important;
}

.modal-header {
  border: none;
  padding: 0;
}
.modal-header .btn-close {
  background: none;
  opacity: 1;
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  width: 20px;
  cursor: pointer;
  padding: 0;
  margin: 0;
  z-index: 3;
}
.modal-header .btn-close i {
  transform: rotate(0);
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.modal-header .btn-close:hover i {
  transform: rotate(180deg);
}

.modal-header-line {
  border-bottom: 1px solid #dee2e6;
  padding: 16px;
}

.modal-body {
  padding: 20px;
}

.modal-content {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  border: none;
  -webkit-box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.25);
  -o-box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.25);
}

.modal-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

@media only screen and (min-width: 992px) {
  .modal-cs .modal-dialog {
    max-width: 950px;
  }
}

@media only screen and (min-width: 768px) {
  .modal-md {
    max-width: 560px;
  }
}

.bg-modal-first {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0;
  display: none;
}
.bg-modal-first.show {
  opacity: 0.5;
  display: block;
}

.modal-first.show {
  display: block;
}

.btn-close-modal-first {
  padding: 5px;
}

/*-- section-hero --*/
.section-hero {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 90px 0 80px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .section-hero {
    padding: 90px 0 55px;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
  .section-hero {
    padding: 145px 0 90px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-hero {
    padding: 145px 0 126px;
  }
}
.section-hero.big {
  padding: 50px 0;
}
@media only screen and (min-width: 768px) {
  .section-hero.big {
    padding: 90px 0 120px;
  }
}
@media only screen and (min-width: 992px) {
  .section-hero.big {
    padding: 145px 0 191px;
  }
}
.section-hero::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}
.section-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.title-page {
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  line-height: 40px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
@media only screen and (min-width: 768px) {
  .title-page {
    font-size: 24px;
  }
}

.breadcrumb {
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 14px;
}

.breadcrumb-item {
  color: #fff;
  position: relative;
}
.breadcrumb-item a {
  color: #fff;
}
.breadcrumb-item.active {
  color: #fff;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 20px;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #fff;
  position: absolute;
  left: 8px;
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
  -ms-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  padding: 0;
}

/*-- section-list --*/
.sortPagiBar {
  position: relative;
  padding: 60px 0;
  z-index: 9;
}
@media (max-width: 575px) {
  .sortPagiBar #grid-3 {
    display: none !important;
  }
}

.filters-toolbar-item {
  z-index: 9;
  background: #fff;
  position: relative;
  margin-left: auto;
}
.filters-toolbar-item .btn {
  font-size: 10px;
  font-weight: 800;
  line-height: 26px;
  text-transform: uppercase !important;
  color: #000;
  padding: 0;
  padding-left: 0;
  padding-right: 26px;
  border: none;
  background: 0 0;
  border-bottom: 1px solid #000;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  position: relative;
}
.filters-toolbar-item .btn::before {
  content: "\f2f2";
  font-family: Material-Design-Iconic-Font;
  line-height: 0;
  font-size: 19px;
  color: #000;
  font-weight: 700;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}
.filters-toolbar-item .btn::after {
  display: none;
}
.filters-toolbar-item .btn:hover, .filters-toolbar-item .btn:focus {
  color: #000 !important;
  box-shadow: none;
  outline: none;
}
.filters-toolbar-item .dropdown-menu {
  min-width: 160px;
  padding: 5px 0;
  z-index: 999;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 6px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 6px 5px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 6px 5px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 6px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 5px rgba(0, 0, 0, 0.1);
  transform: none !important;
  top: 100% !important;
}
.filters-toolbar-item .dropdown-menu .dropdown-item {
  font-size: 11px;
  color: #494949;
  font-weight: 500;
  line-height: 26px;
}
.filters-toolbar-item .dropdown-menu .dropdown-item:hover, .filters-toolbar-item .dropdown-menu .dropdown-item:focus, .filters-toolbar-item .dropdown-menu .dropdown-item.active {
  cursor: pointer;
  color: #1a1a1a;
  background-color: #fff;
}

.gridlist-toggle {
  background: #fff;
  z-index: 1;
  margin-right: 10px;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.gridlist-toggle a {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  color: #aeaeae;
  font-size: 21px;
  position: relative;
  padding-right: 20px;
  margin-right: 20px;
}
.gridlist-toggle a:hover, .gridlist-toggle a.active {
  color: #000;
}
.gridlist-toggle a:not(:last-child)::after {
  content: '';
  display: block;
  width: 1px;
  height: 11px;
  background: #d8d8d8;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sidebar .title-block {
  padding: 0 0 10px;
}
@media only screen and (min-width: 768px) {
  .sidebar .title-block {
    padding: 0 0 18px;
  }
}
.sidebar .title-block i {
  font-size: 13px;
  color: #1a1a1a;
}
.sidebar .title-block span {
  font-weight: 800;
  text-transform: uppercase;
  line-height: 28px;
  font-size: 13px;
  color: #1a1a1a;
  margin-left: 10px;
}
@media only screen and (min-width: 768px) {
  .sidebar .title-block span {
    font-size: 14px;
  }
}

.headingsidebar {
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 11px;
  margin-bottom: 32px;
}
.headingsidebar i {
  font-size: 18px;
  margin-right: 6px;
}
.headingsidebar span {
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 28px;
  color: #010101;
}
@media only screen and (min-width: 768px) {
  .headingsidebar span {
    font-size: 16px;
  }
}

.list-filter .filter-item:not(:last-child) {
  margin-bottom: 15px;
  border-bottom: 1px solid #e9e9e9;
}
@media only screen and (min-width: 768px) {
  .list-filter .filter-item:not(:last-child) {
    margin-bottom: 33px;
    padding-bottom: 28px;
  }
}
.list-filter .filter-item .custom-checkbox {
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
  border-radius: 1px;
  width: 16px;
  height: 16px;
  border: 1px solid #dbdbdb;
  margin-right: 19px;
  margin-bottom: 5px;
  display: block;
}
.list-filter .list-inline {
  margin-bottom: 0;
}
.list-filter .list-inline li {
  cursor: pointer;
}
.list-filter .list-inline li:not(:last-child) {
  margin-bottom: 15px;
}
.list-filter .list-inline li:hover .custom-checkbox, .list-filter .list-inline li.active .custom-checkbox {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  background: #000;
}
.list-filter .filter-color .custom-checkbox {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-right: 7px;
  border: none;
}
.list-filter .filter-color .list-inline li {
  margin-right: 0;
  margin-bottom: -1px;
}
.list-filter .filter-color .list-inline li:hover .custom-checkbox, .list-filter .filter-color .list-inline li.active .custom-checkbox {
  border: 1px solid #000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 1px #fff inset;
  -moz-box-shadow: 0 0 0 1px #fff inset;
  -ms-box-shadow: 0 0 0 1px #fff inset;
  -o-box-shadow: 0 0 0 1px #fff inset;
  box-shadow: 0 0 0 1px #fff inset;
}
.list-filter .filter-size .list-inline li {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #000;
  cursor: pointer;
  margin-right: 6px;
  background: #fff;
  margin-bottom: 10px;
  padding: 0 7px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.list-filter .filter-size .list-inline li span {
  font-size: 10px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  color: #535353;
}
.list-filter .filter-size .list-inline li:hover, .list-filter .filter-size .list-inline li.active {
  background: #000;
}
.list-filter .filter-size .list-inline li:hover span, .list-filter .filter-size .list-inline li.active span {
  color: #fff;
}
.list-filter .filter-tags .list-unstyled {
  margin-top: 11px;
}
.list-filter .filter-tags .list-unstyled li {
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #dcdcdc;
  cursor: pointer;
  margin-right: 10px;
  background: #fff;
  margin-bottom: 10px;
  padding: 0 7px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.list-filter .filter-tags .list-unstyled li span {
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  text-transform: capitalize;
}
.list-filter .filter-tags .list-unstyled li:hover, .list-filter .filter-tags .list-unstyled li.active {
  background: #000;
}
.list-filter .filter-tags .list-unstyled li:hover span, .list-filter .filter-tags .list-unstyled li.active span {
  color: #fff;
}

@media (max-width: 767px) {
  .filter-item-title {
    position: relative;
    cursor: pointer;
  }
}
@media (max-width: 767px) {
  .filter-item-title::before {
    content: "\f2f9";
    font-family: Material-Design-Iconic-Font;
    position: absolute;
    right: 0;
    top: -3px;
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .filter-item-content {
    display: none;
  }
  .filter-item-content.show {
    display: block;
  }
}

@media only screen and (min-width: 992px) {
  .row.spacing-60 {
    margin-right: -30px;
    margin-left: -30px;
  }
  .row.spacing-60 > [class*="col-"] {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.col-product {
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 22px;
  -webkit-transition: ease-in-out all 0.4s;
  -moz-transition: ease-in-out all 0.4s;
  -o-transition: ease-in-out all 0.4s;
  transition: ease-in-out all 0.4s;
}

.view-3 .col-product {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
@media only screen and (min-width: 576px) {
  .view-3 .col-product {
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

.view-2 .col-product {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.view-grid .item-product .cate, .view-grid .item-product .desc, .view-grid .item-product .available-product {
  display: none !important;
}

.view-list .col-product {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.view-list .item-product {
  padding: 20px;
  border: 1px solid #f1f1f1;
  -webkit-box-shadow: all 0.8s ease;
  -moz-box-shadow: all 0.8s ease;
  -ms-box-shadow: all 0.8s ease;
  -o-box-shadow: all 0.8s ease;
  box-shadow: all 0.8s ease;
}
@media only screen and (min-width: 576px) {
  .view-list .item-product {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.view-list .item-product:hover {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 576px) {
  .view-list .item-product .thumbnail-container {
    width: 270px;
  }
}
.view-list .item-product .product-info {
  padding-top: 35px;
}
@media only screen and (min-width: 576px) {
  .view-list .item-product .product-info {
    width: calc(100% - 270px);
    padding-left: 30px;
  }
}
.view-list .item-product .product-price {
  padding-left: 0;
}
.view-list .item-product .product-title {
  font-size: 13px;
  display: inline-block;
  padding-left: 0;
  margin: 18px 0;
}

.pagination {
  margin: 30px 0 0;
  padding: 60px 0 0;
  position: relative;
  border-top: 1px solid #eaeaea;
}

.page-item:not(:last-child) {
  margin-right: 5px;
}
.page-item.active .page-link {
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
}

.page-text .page-link {
  width: 40px;
  height: 40px;
  line-height: 40px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  padding: 0;
  text-align: center;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  border: 1px solid #dedede;
}
.page-text .page-link:hover, .page-text .page-link:focus {
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
}

.page-btn.disabled {
  cursor: not-allowed;
}
.page-btn .page-link {
  padding: 0 5px;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  padding-bottom: 1px;
  border: none;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  border-radius: 0 !important;
}
.page-btn .page-link i {
  font-size: 12px;
  color: #7d7d7d;
}
.page-btn .page-link:hover, .page-btn .page-link:focus {
  color: #1a1a1a;
  border-bottom: 1px solid #000;
  background-color: transparent;
  padding-bottom: 0;
}

.page-item-prev {
  margin-right: 19px !important;
}
.page-item-prev .page-link i {
  margin-right: 6px;
}

.page-item-next {
  margin-left: 19px !important;
}
.page-item-next .page-link i {
  margin-left: 6px;
}

.moved-product {
  position: relative;
  z-index: 9;
  margin-top: 65px;
}
.moved-product a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.moved-product a:not(:last-child) {
  margin-right: 19px;
  padding-right: 19px;
}
.moved-product a:not(:last-child):after {
  content: '';
  display: block;
  width: 1px;
  height: 15px;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.moved-product a i {
  font-size: 30px;
  color: #fff;
  line-height: 20px;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.moved-product a:hover .zmdi-long-arrow-left {
  -webkit-transform: translateX(-10px);
  -moz-transform: translateX(-10px);
  -o-transform: translateX(-10px);
  transform: translateX(-10px);
}
.moved-product a:hover .zmdi-long-arrow-right {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px);
}

.top-content {
  margin-bottom: 97px;
  padding-top: 15px;
  margin-top: -100px;
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 55px;
}
@media only screen and (min-width: 768px) {
  .top-content {
    margin-top: -70px;
    margin-bottom: 97px;
  }
}
@media only screen and (min-width: 992px) {
  .top-content {
    margin-top: -151px;
  }
}
@media (max-width: 1440px) and (min-width: 1200px) {
  .top-content {
    padding-top: 85px;
  }
}
.top-content .product-single-sku {
  align-items: center;
}
.top-content .product-single-sku label {
  white-space: nowrap;
  margin-right: 10px;
}
.top-content .product-single-sku .form-control {
  max-width: 145px;
}
.top-content .product-single-sku br {
  width: 100%;
}

.slider-main img {
  cursor: zoom-in;
}

.slider-nav .thumbItem {
  padding: 5px;
}
.slider-nav .thumbItem a {
  display: block;
  position: relative;
  border: none;
}
.slider-nav .thumbItem a:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.slider-nav .thumbItem:hover a:after, .slider-nav .thumbItem.slick-active a:after {
  background-color: transparent;
}
.slider-nav .slick-current a:after {
  background-color: transparent;
}

.product-single .product-single-title {
  font-size: 23px;
  font-weight: 800;
  line-height: 35px;
  margin: -5px 0 33px;
}
@media only screen and (min-width: 1200px) {
  .product-single .product-single-info {
    padding-left: 45px;
  }
}

.product-note {
  padding: 20px 0 10px;
}
.product-note label {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  color: #343434;
  letter-spacing: .01px;
  min-width: 134px;
  display: inline-block;
  margin-bottom: 8px;
}
.product-note .form-control {
  background-color: #f5f5f5;
  border: solid 1px #e5e5e5;
  color: #858585;
  font-size: 13px;
  line-height: 17px;
  font-weight: 400;
  text-transform: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  height: 112px;
  overflow-x: hidden;
  overflow-y: auto;
}
.product-note .form-control:hover, .product-note .form-control:focus {
  background-color: #fff;
  border: solid 1px #e5e5e5;
}

.product-page-info-payments label {
  color: #222;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 15px;
}

.productbuttons {
  margin-top: 40px;
}
.productbuttons .control-label {
  text-transform: none;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  color: #494949;
  margin-right: 27px;
  min-width: initial;
  display: inline-block;
}
.productbuttons .control-label i {
  font-size: 18px;
  color: #1a1a1a;
  margin-right: 17px;
}

.items-share a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-right: 20px;
}
.items-share a i {
  font-size: 18px;
  color: #1a1a1a;
  margin-right: 10px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.items-share a .share-title {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  color: #666766;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-30px);
  -moz-transform: translateX(-30px);
  -o-transform: translateX(-30px);
  transform: translateX(-30px);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.items-share a:hover .share-title {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  position: relative;
}

.shiping {
  margin-top: 21px;
}
.shiping .shiping-time, .shiping .shiping-truck {
  color: #494949;
  font-size: 12px;
}
.shiping .shiping-time {
  margin-bottom: 18px;
}
.shiping i {
  font-size: 18px;
  color: #1a1a1a;
  margin-right: 12px;
}

.section-single-product-desc {
  padding: 65px 0 70px;
  background-color: #f5f3ee;
  margin-bottom: 75px;
}
@media only screen and (min-width: 768px) {
  .section-single-product-desc {
    padding: 134px 0 142px;
    margin-bottom: 150px;
  }
}
.section-single-product-desc .heading {
  margin-bottom: 20px;
}

.section-related-product {
  margin-bottom: 75px;
}
@media only screen and (min-width: 768px) {
  .section-related-product {
    margin-bottom: 150px;
  }
}

.owl-custom-arrows.owl-carousel .owl-nav button.owl-prev, .owl-custom-arrows.owl-carousel .owl-nav button.owl-next {
  width: 50px;
  height: 50px;
  top: 39.4%;
  background-color: #fff;
  position: absolute;
  -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #010101;
}
.owl-custom-arrows.owl-carousel .owl-nav button.owl-prev.disabled, .owl-custom-arrows.owl-carousel .owl-nav button.owl-next.disabled {
  opacity: 1;
  cursor: not-allowed;
}
.owl-custom-arrows.owl-carousel .owl-nav button.owl-prev:hover, .owl-custom-arrows.owl-carousel .owl-nav button.owl-next:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  background-color: #535353;
  color: #fff;
}
.owl-custom-arrows.owl-carousel .owl-nav button.owl-prev span, .owl-custom-arrows.owl-carousel .owl-nav button.owl-next span {
  font-size: 0;
}
.owl-custom-arrows.owl-carousel .owl-nav button.owl-prev span::before, .owl-custom-arrows.owl-carousel .owl-nav button.owl-next span::before {
  font-size: 30px;
  font-weight: 400;
  font-family: 'Material-Design-Iconic-Font';
}
.owl-custom-arrows.owl-carousel .owl-nav button.owl-prev {
  left: 0;
  right: initial;
}
@media only screen and (min-width: 992px) {
  .owl-custom-arrows.owl-carousel .owl-nav button.owl-prev {
    left: calc(0% + 19.2%);
  }
}
.owl-custom-arrows.owl-carousel .owl-nav button.owl-prev span::before {
  content: '\f2fa';
}
.owl-custom-arrows.owl-carousel .owl-nav button.owl-next {
  right: 0;
}
@media only screen and (min-width: 992px) {
  .owl-custom-arrows.owl-carousel .owl-nav button.owl-next {
    right: calc(0% + 19.2%);
  }
}
.owl-custom-arrows.owl-carousel .owl-nav button.owl-next span::before {
  content: '\f2fb';
}

/*---- News detail  ------*/
.sidebar-block:not(:last-child) {
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 35px;
  padding-bottom: 28px;
}
.sidebar-block .title-block {
  font-weight: 700;
  text-transform: uppercase;
  line-height: 28px;
  font-size: 12px;
  color: #1a1a1a;
}

.categories-sidebar .title-block {
  padding: 0 0 18px;
}
.categories-sidebar ul li:not(:last-child) {
  margin-bottom: 10px;
}

.post-groups {
  padding: 22px 0 12px;
}
.post-groups:not(:last-child) {
  border-bottom: 1px solid #d9d9d9;
  padding: 22px 0;
}
.post-groups .post-image {
  width: 100%;
  -webkit-box-flex: 0 0 37.04%;
  -moz-box-flex: 0 0 37.04%;
  -webkit-flex: 0 0 37.04%;
  -ms-flex: 0 0 37.04%;
  flex: 0 0 37.04%;
  margin-right: 17px;
}
.post-groups .post-title {
  margin-bottom: 5px;
}
.post-groups .post-title a {
  font-weight: 600;
  font-size: 12px;
  color: #000;
  line-height: 20px;
}
.post-groups .post-title a:hover {
  text-decoration-line: underline;
  text-decoration-color: #000;
}

.img-single-post {
  margin-bottom: 15px;
}

.title-entry {
  font-weight: 600;
  font-size: 18px;
  color: #222;
  margin: 24px 0 27px;
}

.single-post-content {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #ccc;
}

.forms .form-control {
  min-height: 40px;
}
.forms textarea.form-control {
  height: 120px;
  overflow-x: hidden;
  overflow-y: auto;
}

.section-cart {
  padding: 45px 0;
}
@media only screen and (min-width: 768px) {
  .section-cart {
    padding: 90px 0;
  }
}

.header-cart h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.header-cart h2 span {
  color: #8d90a6;
  font-size: 14px;
  font-weight: 400;
}
.header-cart h1 {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-top: 0px;
}
.header-cart h1 span {
  color: #8d90a6;
  font-size: 14px;
  font-weight: 400;
}

.totals .inner {
  padding: 15px 20px 30px;
  background: #fff;
  border-radius: 3px;
}
.totals ul {
  list-style: none;
  margin: 0 0 25px;
  padding: 0;
}
.totals ul li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  border-bottom: 1px solid #ebebeb;
}
.totals ul li .txt-left, .totals ul li .txt-right {
  line-height: 50px;
}
.totals ul li .txt-right {
  font-weight: 700;
}

.cart-list-products {
  background-color: #fff;
}
.cart-list-products .table-borderless thead {
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .cart-list-products .table-borderless thead {
    display: none;
  }
}
.cart-list-products .table-borderless thead th {
  border-bottom: 1px solid #eaebf3;
  text-align: center;
}
.cart-list-products .table-borderless tbody td {
  vertical-align: middle;
}
@media only screen and (min-width: 768px) {
  .cart-list-products .table-borderless tbody td:first-child {
    width: 43%;
  }
}
.cart-list-products .table-borderless tbody tr:not(:last-child) td {
  border-bottom: 1px solid #eaebf3;
}

.mw-200 {
  min-width: 200px;
}

.box-product {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.box-product .img {
  -ms-flex: 0 0 95px;
  flex: 0 0 95px;
  max-width: 95px;
  padding-right: 15px;
  height: 80px;
}
@media only screen and (min-width: 768px) {
  .box-product .img {
    -ms-flex: 0 0 115px;
    flex: 0 0 115px;
    max-width: 115px;
    height: 100px;
  }
}
.box-product .img a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: 1px solid #ebebeb;
  border-radius: 0;
  background: #fff;
}
@media only screen and (min-width: 768px) {
  .box-product .img a {
    width: 100px;
    height: 100px;
  }
}
.box-product .img a img {
  width: 100%;
  height: auto;
}
.box-product .text {
  -ms-flex: 0 0 calc(100% - 95px);
  flex: 0 0 calc(100% - 95px);
  max-width: calc(100% - 95px);
}
@media only screen and (min-width: 768px) {
  .box-product .text {
    -ms-flex: 0 0 calc(100% - 115px);
    flex: 0 0 calc(100% - 115px);
    max-width: calc(100% - 115px);
  }
}
.box-product .text h3 {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  margin-bottom: 5px;
}
@media only screen and (min-width: 768px) {
  .box-product .text h3 {
    margin-bottom: 14px;
  }
}
.box-product .delete-product a {
  color: #222;
}
.box-product .delete-product a i {
  vertical-align: 1px;
  margin-right: 5px;
}

.number-product {
  border: 1px solid #ebebeb;
  width: 100px;
  margin: 0 0 10px;
}
@media only screen and (min-width: 768px) {
  .number-product {
    margin: auto;
  }
}
.number-product .func {
  width: 27px;
}
.number-product .func input {
  border: none;
  background-color: transparent;
  text-align: center;
  width: 100%;
  cursor: pointer;
  height: 30px;
}
.number-product .func input:focus {
  outline: none;
}
.number-product .input {
  width: 45px;
  border-left: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
}
.number-product .input input {
  width: 100%;
  border: none;
  height: 30px;
  text-align: center;
}
.number-product .input input:focus {
  outline: none;
}

.cart.page_cart form {
  margin-bottom: 30px;
}
.cart.page_cart .bg-scroll {
  overflow: hidden;
  border-top: none;
  border-bottom: none;
  background-color: #fff;
  padding: 25px 15px;
}
.cart.page_cart .bg-scroll:before, .cart.page_cart .bg-scroll:after {
  content: " ";
  display: table;
}
.cart.page_cart .bg-scroll:after {
  clear: both;
}
.cart.page_cart .bg-scroll .cart-thead {
  font-weight: bold;
  font-size: 13px;
  clear: both;
  width: 100%;
  float: left;
  border-bottom: solid 1px #eaebf3;
  min-width: 600px;
}
.cart.page_cart .bg-scroll .cart-thead div {
  float: left;
  padding: 10px 0px 10px;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.cart.page_cart .bg-scroll .cart-thead div .nobr {
  white-space: nowrap;
}
.cart.page_cart .bg-scroll .cart-tbody {
  width: 100%;
  float: left;
}
.cart.page_cart .bg-scroll .cart-tbody:before, .cart.page_cart .bg-scroll .cart-tbody:after {
  content: " ";
  display: table;
}
.cart.page_cart .bg-scroll .cart-tbody:after {
  clear: both;
}
.cart.page_cart .bg-scroll .cart-tbody .item-cart {
  border-bottom: 1px solid #eaebf3;
  width: 100%;
  float: left;
  padding: 30px 0px;
}
.cart.page_cart .bg-scroll .cart-tbody .item-cart div {
  float: left;
  padding: 0px 15px 0px;
  line-height: 20px;
  vertical-align: top;
  height: 100px;
  padding-left: 0px;
}
.cart.page_cart .bg-scroll .cart-tbody .item-cart div.content_, .cart.page_cart .bg-scroll .cart-tbody .item-cart div.remove_ {
  display: -webkit-flex;
  -webkit-align-items: center;
  display: -ms-flexbox;
  display: -webkit-box !important;
  display: flex !important;
}
.cart.page_cart .bg-scroll .cart-tbody .item-cart div.content_s {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  justify-content: unset;
}
.cart.page_cart .bg-scroll .cart-tbody .item-cart div .product-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  border: 1px solid #ebebeb;
  border-radius: 0;
  background: #fff;
}
.cart.page_cart .bg-scroll .cart-tbody .item-cart div .product-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.cart.page_cart .bg-scroll .cart-tbody .item-cart div .item-price {
  font-weight: bold;
}
.cart.page_cart .bg-scroll .cart-tbody .item-cart div .item-price .price {
  font-weight: bold;
  font-size: 14px;
  line-height: 7;
  color: red;
}
.cart.page_cart .bg-scroll .cart-tbody .item-cart div .product-name {
  margin: 0px;
  padding-bottom: 0px;
  font-size: 14px;
  line-height: 21px;
  color: #000;
  font-weight: 400;
  text-transform: none;
  float: left;
  width: 100%;
  text-align: left;
}
.cart.page_cart .bg-scroll .cart-tbody .item-cart div .product-name a {
  color: #000;
  text-decoration: none;
}
.cart.page_cart .bg-scroll .cart-tbody .item-cart div .variant-title {
  font-weight: 400;
  display: block;
  margin-left: 0px;
  width: 100%;
  float: left;
  text-align: left;
}
.cart.page_cart .bg-scroll .cart-tbody .item-cart div .remove-item-cart {
  color: red;
  display: block;
  font-size: 13px;
  margin-top: 14px;
  font-weight: 400;
  float: left;
  width: 100%;
}
.cart.page_cart .bg-scroll .cart-tbody .item-cart div .input_qty_pr {
  float: left;
  padding: 0px 15px 0px;
  line-height: 20px;
  vertical-align: top;
  height: 100px;
  padding-left: 0px;
  height: auto;
  border-right: none;
  margin-top: 20%;
  padding: 5px 0px;
  width: 100%;
}
.cart.page_cart .bg-scroll .cart-tbody .item-cart div .input_qty_pr .items-count {
  border: 1px solid #eaebf3;
  outline: none;
  background: transparent;
  height: 30px;
  margin-top: 5px;
  width: 27px !important;
  text-align: center;
  vertical-align: top;
  padding: 0;
  color: #000;
  font-size: 13px;
  line-height: 22px;
}
.cart.page_cart .bg-scroll .cart-tbody .item-cart div .input_qty_pr .btn-minus, .cart.page_cart .bg-scroll .cart-tbody .item-cart div .input_qty_pr .btn-plus {
  border-radius: 0;
  float: left;
}
.cart.page_cart .bg-scroll .cart-tbody .item-cart div .input_qty_pr .number-sidebar {
  border: 1px solid #eaebf3;
  height: 30px;
  font-size: 12px;
  margin-left: -1px;
  text-align: center;
  width: 45px;
  vertical-align: top;
  margin-right: -1px;
  margin-top: 5px;
  min-height: 30px;
  padding: 0;
  float: left;
}
.cart.page_cart .bg-scroll .cart-tbody .item-cart .product-item-info {
  height: unset;
  padding: 0;
  float: none;
  width: 100%;
  margin-top: 5px;
  font-size: 14px;
}
.cart.page_cart .btn_bottom {
  margin-top: 20px;
  border: 1px solid transparent;
  padding-top: 20px;
  overflow: hidden;
}

.a-center {
  text-align: center !important;
}

.cart-collaterals {
  flex-direction: column;
}
.cart-collaterals .wrap_checkprice {
  overflow: hidden;
  padding: 0;
}
.cart-collaterals .li_table {
  border-bottom: solid 1px #ebebeb;
  height: 50px;
  line-height: 50px;
  overflow: hidden;
}
.cart-collaterals .li_table .li-left {
  float: left;
  font-size: 14px;
  color: #000;
  line-height: 50px;
}
.cart-collaterals .li_table .li-left.li_text {
  font-weight: bold;
}
.cart-collaterals .li_table .li-right {
  float: right;
}
.cart-collaterals .li_table .totals_price {
  font-weight: bold;
  font-size: 18px;
  color: red;
  font-weight: bold;
  line-height: 50px;
}
.cart-collaterals .li_table .totals_price.pink {
  color: #000;
  font-weight: bold;
  font-size: 14px;
}
.cart-collaterals .wrap_btn {
  margin-top: 25px;
}

.cart-mobile .header-cart {
  padding: 0px 15px;
  margin-top: 0px;
  float: left;
  width: 100%;
}
.cart-mobile .header-cart .title-cart {
  line-height: 10px;
}
.cart-mobile .title-cart h3 {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
}
.cart-mobile .title-cart a {
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  color: red;
}
.cart-mobile .header-cart-content {
  margin-top: 10px;
}
.cart-mobile .content-product-list {
  min-height: 110px;
}
.cart-mobile .item-product {
  padding: 15px 15px;
  min-height: 110px;
  border: none;
  border-bottom: solid 1px #ebebeb;
  overflow: hidden;
}
.cart-mobile .item-product-cart-mobile, .cart-mobile .select-item-qty-mobile, .cart-mobile .title-product-cart-mobile {
  float: left;
}
.cart-mobile .item-product-cart-mobile {
  max-width: 115px;
  margin-right: 10px;
}
.cart-mobile .item-product-cart-mobile img {
  max-width: 115px;
  margin-right: 10px;
}
.cart-mobile .title-product-cart-mobile {
  width: calc(100% - 180px);
  padding-right: 10px;
}
.cart-mobile .title-product-cart-mobile h3 {
  font-size: 24px;
  margin-bottom: 0;
}
.cart-mobile .title-product-cart-mobile a {
  word-break: break-word;
  line-height: 21px;
  font-size: 14px;
  color: #2f1b10;
}
.cart-mobile .title-product-cart-mobile p {
  line-height: 2;
  font-size: 14px;
  color: #898989;
  margin-bottom: 0;
}
.cart-mobile .title-product-cart-mobile span {
  color: red;
}
.cart-mobile .title-product-cart-mobile .product-item-info {
  font-size: 14px;
  color: #2d2d2d;
}
.cart-mobile .title-product-cart-mobile .product-item-info span {
  color: #2d2d2d;
}
.cart-mobile .title-product-cart-mobile .product-item-info strong {
  font-weight: normal;
}
.cart-mobile .select-item-qty-mobile {
  float: right;
  text-align: center;
}
.cart-mobile .select-item-qty-mobile > div {
  position: relative;
  width: 76px;
  height: 25px;
}
.cart-mobile .select-item-qty-mobile .txt_center input {
  height: 25px;
  width: 30px;
  text-align: center;
  margin: 0px;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  position: absolute;
  left: 23px;
  min-height: 0;
  font-size: 14px;
  border: 1px solid #ebebeb;
}
.cart-mobile .select-item-qty-mobile .txt_center .btn-minus {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  margin: 0;
  line-height: 1;
  height: 25px;
  width: 23px;
  border-style: hidden;
  background: none !important;
  color: #000;
  border: solid 1px #ebebeb;
  border-right: 0px;
  text-align: center;
  padding: 0px;
}
.cart-mobile .select-item-qty-mobile .txt_center .btn-plus {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  height: 25px;
  width: 23px;
  display: inline-block;
  line-height: 1;
  border-style: hidden;
  color: #fff;
  background: none !important;
  color: #000;
  border: solid 1px #ebebeb;
  border-left: 0px;
  text-align: center;
  padding: 0px;
}
.cart-mobile .select-item-qty-mobile .txt_center a {
  line-height: 3;
  color: #363636;
}
.cart-mobile .header-cart-price {
  padding: 18px 15px;
}
.cart-mobile .checkout .btn {
  margin-top: 15px;
}
.cart-mobile .title_cart_mobile {
  display: none;
}
.cart-mobile .remove-item-cart {
  color: red;
  margin-top: 10px;
  font-weight: 600;
  display: inline-block;
}

@media (max-width: 767px) {
  .payment .table {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .payment .table thead {
    display: none;
  }
}
.payment .table .img img {
  max-width: 80px;
}
@media only screen and (min-width: 768px) {
  .payment .table .img img {
    max-width: 100px;
  }
}
.payment .table td, .payment .table th {
  vertical-align: middle;
}
@media only screen and (min-width: 768px) {
  .payment .table td, .payment .table th {
    text-align: center;
  }
}
.payment .table td:fisrt-child, .payment .table th:fisrt-child {
  text-align: center;
}
.payment .table th {
  font-weight: normal;
}
.payment .table .info-mobile {
  margin-top: 5px;
}
.payment .table .info-mobile p {
  margin-bottom: 0;
}

.total-payment {
  background-color: #fff;
  margin-top: 20px;
  padding: 20px 15px;
}
@media only screen and (min-width: 768px) {
  .total-payment {
    padding: 0;
  }
}
@media only screen and (min-width: 768px) {
  .total-payment .total-table {
    min-width: 450px;
  }
}
@media (max-width: 767px) {
  .total-payment .total-table tr {
    width: 100%;
    display: block;
  }
  .total-payment .total-table tr th, .total-payment .total-table tr td {
    display: inline-block;
    padding: 0 0 5px;
    border: none;
    text-align: left !important;
  }
}
.total-payment .form-control {
  height: 40px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.total-payment textarea.form-control {
  height: 120px;
  overflow-x: hidden;
  overflow-y: auto;
}

.order-summary .summary-section .form-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (min-width: 576px) {
  .order-summary .summary-section .form-group {
    -ms-flex-pack: flex-end;
    justify-content: flex-end;
  }
}
.order-summary .field-input-wrapper {
  width: 100%;
  margin-bottom: 8px;
}
@media only screen and (min-width: 768px) {
  .order-summary .field-input-wrapper {
    width: 250px;
    margin-right: 15px;
    margin-bottom: 0;
    display: inline-block;
  }
}
.order-summary .btn {
  float: left;
  min-width: 95px;
}
.order-summary .error {
  font-size: 13px;
  color: #222;
  margin-top: 10px;
  text-align: left;
}
@media only screen and (min-width: 576px) {
  .order-summary .error {
    text-align: right;
  }
}

.customer-information {
  background-color: #fff;
  margin-top: 20px;
  padding: 10px 15px 25px;
}
.customer-information h4 {
  letter-spacing: .01em;
  font-weight: normal;
  font-size: 18px;
  margin-bottom: 15px;
}
.customer-information .form-group {
  margin-bottom: 15px;
}
.customer-information label {
  font-weight: normal;
}
.customer-information .form-control {
  height: 40px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.customer-information textarea.form-control {
  height: 120px;
  overflow-x: hidden;
  overflow-y: auto;
}

.required {
  color: red;
}

.btn-checkout {
  padding-left: 25px;
  padding-right: 25px;
}

/*------------------------------------------------------------------
[Footer]
*/
.footer-top {
  border-top: 1px solid #ebe8e2;
  padding: 27px 0 22px;
}

.content-policy {
  font-size: 14px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .content-policy {
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  .content-policy {
    display: -ms-flexbox;
    display: flex;
  }
}
.content-policy .policy-icon {
  min-width: 42px;
}
@media only screen and (min-width: 768px) {
  .content-policy .policy-icon {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .content-policy .policy-icon {
    margin-bottom: 0;
  }
}
.content-policy .policy-icon img, .content-policy .policy-icon i {
  margin-right: 28px;
}

.footer-center {
  padding: 126px 0 104px;
  background-color: #f5f3ee;
  color: #222;
  font-size: 14px;
}

.title-footer {
  font-size: 16px;
  font-weight: 800;
  color: #000;
  margin-bottom: 19px;
}

.about-footer .desc {
  max-width: 56%;
}
.about-footer .desc p:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 1200px) {
  .footer-menu {
    padding-left: 42px;
  }
}

.site-footer-linklist li a {
  font-weight: 400;
  line-height: 40px;
}
.site-footer-linklist li a:hover {
  color: #1a1a1a;
  text-decoration-line: underline;
  text-decoration-color: #000;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -ms-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

@media only screen and (min-width: 1200px) {
  .footer-newsletter {
    padding-left: 86px;
  }
}
.footer-newsletter .desc {
  font-weight: 400;
  line-height: 24px;
  margin: 27px 0 29px;
}

.newsletter-form {
  margin-bottom: 36px;
  position: relative;
}

.input-group-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 9;
}
.input-group-btn .btn {
  padding: 0;
  height: 44px;
  min-height: 44px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0;
  -ms-border-radius: 0px;
  -o-border-radius: 0;
  border-radius: 0;
  border: none;
  background: 0 0;
}
.input-group-btn .btn .newsletter-submit-text-large {
  margin: 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0;
  -ms-border-radius: 0px;
  -o-border-radius: 0;
  border-radius: 0;
  border: none;
  height: 44px;
  min-height: 44px;
  width: 86px;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -ms-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}
.input-group-btn .btn .newsletter-submit-text-large i {
  color: #b7b7b7;
  font-size: 30px;
}
.input-group-btn .btn:hover .newsletter-submit-text-large i {
  color: #000;
}

.input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}
.input-group input {
  height: 44px;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #000;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  font-size: 13px;
  font-weight: 500;
  color: #000;
  padding: 2px 0 0;
  padding-right: 50px;
}
.input-group input:focus {
  box-shadow: none;
  background-color: transparent;
  border-bottom-color: #000;
}

@media only screen and (min-width: 1200px) {
  .social-footer {
    padding-left: 86px;
  }
}
.social-footer ul li:not(:last-child) {
  margin-right: 14px;
}
.social-footer ul li a i {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  transform: scale(1);
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -ms-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}
.social-footer ul li a i:hover {
  transform: scale(1.2);
}

.footer-bottom {
  padding: 38px 0;
  border-top: 1px solid #ebe8e2;
  background-color: #f5f3ee;
}
.footer-bottom .site-footer-linklist {
  overflow-x: auto;
  overflow-y: hidden;
}
.footer-bottom .site-footer-linklist li {
  white-space: nowrap;
}
.footer-bottom .site-footer-linklist li:not(:last-child) {
  position: relative;
  padding-right: 22px;
  margin-right: 22px;
}
.footer-bottom .site-footer-linklist li:not(:last-child):after {
  content: '';
  display: block;
  width: 1px;
  height: 10px;
  background: #343434;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}
.footer-bottom .site-footer-linklist li a {
  font-size: 13px;
  font-weight: 500;
  color: #222;
  line-height: normal;
}

.currency-footer {
  display: none;
}
@media only screen and (min-width: 768px) {
  .currency-footer {
    display: block;
  }
}
.currency-footer button {
  background-color: #fff;
  border-color: #fff;
  padding: 8px 12.5px;
  font-weight: 700;
  color: #222;
  font-size: 13px;
}
.currency-footer .dropdown-menu {
  min-width: 75px;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  padding: 0;
}
.currency-footer .dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid #ececec;
}
.currency-footer .dropdown-menu .dropdown-item {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #666;
  padding: 11.3px 15px;
  cursor: pointer;
  -webkit-transition: all .35s linear;
  -moz-transition: all .35s linear;
  -ms-transition: all .35s linear;
  -o-transition: all .35s linear;
  transition: all .35s linear;
  text-transform: uppercase;
  text-align: center;
}
.currency-footer .dropdown-menu .dropdown-item:hover, .currency-footer .dropdown-menu .dropdown-item:focus {
  background-color: transparent;
  text-decoration: underline;
}

.copyright {
  font-size: 13px;
  color: #222;
  font-weight: 400;
}

.back-to-top {
  cursor: pointer;
  position: fixed;
  bottom: 100px;
  right: 15px;
  z-index: 999;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: none;
}
@media only screen and (min-width: 768px) {
  .back-to-top.show {
    display: block;
  }
}
.back-to-top span {
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #1a1a1a;
  background-color: #fff;
  color: #1a1a1a;
  font-size: 2rem;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.back-to-top:hover span {
  border-width: 2px;
  line-height: 35px;
  color: #fff;
  background: #1a1a1a;
  -webkit-box-shadow: inset 0 0 0 3px #fff;
  -moz-box-shadow: inset 0 0 0 3px #fff;
  -ms-box-shadow: inset 0 0 0 3px #fff;
  -o-box-shadow: inset 0 0 0 3px #fff;
  box-shadow: inset 0 0 0 3px #fff;
}

/* toolbar for mobile */
.stickymenu-bottom-mobile {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 9;
  left: 0;
  padding: 9px 15px 3px;
  background: #fff;
  -webkit-box-shadow: 0 -2px 5px -2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 -2px 5px -2px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 -2px 5px -2px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 -2px 5px -2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 -2px 5px -2px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .stickymenu-bottom-mobile {
    display: none;
  }
}

.stickymenu-item {
  width: 70px;
}
.stickymenu-item a {
  display: inline-block;
  position: relative;
}
.stickymenu-item i {
  font-size: 20px;
  color: #000;
  background: 0 0;
  width: auto;
  height: auto;
  margin: 0;
  vertical-align: top;
  margin-bottom: 2px;
}
.stickymenu-item span, .stickymenu-item .on-top {
  display: block;
  font-weight: 600;
  font-size: 8px;
  line-height: 20px;
  text-transform: uppercase;
  color: #909090;
}
.stickymenu-item .cart-products-count {
  position: absolute;
  top: -4px;
  right: -10px;
  bottom: inherit;
  background: #ffe8a2;
  padding-top: 2px;
  width: 16px;
  height: 16px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}
.stickymenu-item .cart-products-count span {
  color: #000;
}

@keyframes phone-icon {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  2% {
    -webkit-transform: translate3d(0.05em, 0, 0);
    transform: translate3d(0.05em, 0, 0);
  }
  4% {
    -webkit-transform: translate3d(-0.05em, 0, 0);
    transform: translate3d(-0.05em, 0, 0);
  }
  6% {
    -webkit-transform: translate3d(0.05em, 0, 0);
    transform: translate3d(0.05em, 0, 0);
  }
  8% {
    -webkit-transform: translate3d(-0.05em, 0, 0);
    transform: translate3d(-0.05em, 0, 0);
  }
  10% {
    -webkit-transform: translate3d(0.05em, 0, 0);
    transform: translate3d(0.05em, 0, 0);
  }
  12% {
    -webkit-transform: translate3d(-0.05em, 0, 0);
    transform: translate3d(-0.05em, 0, 0);
  }
  14% {
    -webkit-transform: translate3d(0.05em, 0, 0);
    transform: translate3d(0.05em, 0, 0);
  }
  16% {
    -webkit-transform: translate3d(-0.05em, 0, 0);
    transform: translate3d(-0.05em, 0, 0);
  }
  18% {
    -webkit-transform: translate3d(0.05em, 0, 0);
    transform: translate3d(0.05em, 0, 0);
  }
  20% {
    -webkit-transform: translate3d(-0.05em, 0, 0);
    transform: translate3d(-0.05em, 0, 0);
  }
  22% {
    -webkit-transform: translate3d(0.05em, 0, 0);
    transform: translate3d(0.05em, 0, 0);
  }
  24% {
    -webkit-transform: translate3d(-0.05em, 0, 0);
    transform: translate3d(-0.05em, 0, 0);
  }
  26% {
    -webkit-transform: translate3d(0.05em, 0, 0);
    transform: translate3d(0.05em, 0, 0);
  }
  28% {
    -webkit-transform: translate3d(-0.05em, 0, 0);
    transform: translate3d(-0.05em, 0, 0);
  }
  30% {
    -webkit-transform: translate3d(0.05em, 0, 0);
    transform: translate3d(0.05em, 0, 0);
  }
  32% {
    -webkit-transform: translate3d(-0.05em, 0, 0);
    transform: translate3d(-0.05em, 0, 0);
  }
  34% {
    -webkit-transform: translate3d(0.05em, 0, 0);
    transform: translate3d(0.05em, 0, 0);
  }
  36% {
    -webkit-transform: translate3d(-0.05em, 0, 0);
    transform: translate3d(-0.05em, 0, 0);
  }
  38% {
    -webkit-transform: translate3d(0.05em, 0, 0);
    transform: translate3d(0.05em, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(-0.05em, 0, 0);
    transform: translate3d(-0.05em, 0, 0);
  }
  42% {
    -webkit-transform: translate3d(0.05em, 0, 0);
    transform: translate3d(0.05em, 0, 0);
  }
  44% {
    -webkit-transform: translate3d(-0.05em, 0, 0);
    transform: translate3d(-0.05em, 0, 0);
  }
  46% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes phone-inner {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translate3d(0, 0, 0) scale(0);
    transform: translate3d(0, 0, 0) scale(0);
  }
  33.3333% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translate3d(0, 0, 0) scale(0.9);
    transform: translate3d(0, 0, 0) scale(0.9);
  }
  66.6666% {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translate3d(0, 0, 0) scale(0);
    transform: translate3d(0, 0, 0) scale(0);
  }
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translate3d(0, 0, 0) scale(0);
    transform: translate3d(0, 0, 0) scale(0);
  }
}
@keyframes phone-outer {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
  }
  33.3333% {
    transform: translate3d(0, 0, 0) scale(1.1);
    box-shadow: 0 0 0 0em rgba(52, 152, 219, 0.1), 0em 0.05em 0.1em rgba(0, 0, 0, 0.5);
  }
  66.6666% {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow: 0 0 0 0.5em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
  }
}
.hotline-fixed {
  position: fixed;
  bottom: 60px;
  z-index: 99;
  left: 15px;
}
@media only screen and (min-width: 768px) {
  .hotline-fixed {
    bottom: 30px;
  }
}
.hotline-fixed a.icon {
  display: block;
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #FF3C20;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .hotline-fixed a.icon {
    position: absolute;
    left: 0;
    top: -6px;
  }
}
.hotline-fixed a.icon i {
  background-color: rgba(255, 60, 32, 0.8);
  width: 44px;
  height: 44px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  margin: 2px 0 0 2px;
  font-size: 0;
  line-height: 44px;
  text-align: center;
  position: relative;
  animation: phone-outer 3000ms infinite;
  transform: translate3d(0, 0, 0) scale(1);
  -webkit-transform: translate3d(0, 0, 0) scale(1);
}
.hotline-fixed a.icon i:after {
  background-color: #ff3c20;
  content: "";
  width: 38px;
  height: 38px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transform: translate3d(0, 0, 0) scale(0);
  -webkit-transform: translate3d(0, 0, 0) scale(0);
  animation: phone-inner 3000ms infinite;
}
.hotline-fixed a.icon i:before {
  position: relative;
  z-index: 2;
  animation: phone-icon 3000ms infinite;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  font-size: 18px;
}
.hotline-fixed .txt {
  background-color: rgba(255, 60, 32, 0.8);
  color: #fff;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  border-radius: 40px;
  padding: 8px 15px 8px 45px;
  margin-left: 10px;
}

.chat-with-us {
  position: fixed;
  right: 15px;
  bottom: 60px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
  -ms-box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
  -o-box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
  text-align: center;
  line-height: 50px;
  padding: 0;
  border: none;
  cursor: pointer;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 15;
}
@media only screen and (min-width: 768px) {
  .chat-with-us {
    bottom: 30px;
  }
}
.chat-with-us i {
  vertical-align: middle;
}
