/* Less Variables */
/* Font */
/*Color */
/*Background */
/*Font-weight*/
/*Footer */
@charset "UTF-8";
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 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);
  }
  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);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@keyframes fadeInShortLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-40%, 0, 0);
    transform: translate3d(-40%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInShortLeft;
  animation-name: fadeInShortLeft;
}
@-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);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  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);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  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;
}
/* Reset ================================================================================= */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: top;
}
.fa {
  vertical-align: middle;
}
/* HTML5 display-role reset for older browsers */
article,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul,
li {
  list-style: none;
  margin: 0;
}
ul > li,
ol > li {
  margin: 0;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
}
a {
  color: #666666;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-decoration: none;
}
a:visited,
.alink:visited,
a:hover,
a:focus,
a:active {
  color: #ce2129;
  text-decoration: none;
}
p {
  line-height: 22px;
}
a:focus {
  outline: none;
  text-decoration: none;
}
:focus {
  outline: none;
  text-decoration: none;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 12px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'dinpro-bold';
  font-weight: 400;
  line-height: 1;
}
input:not([type]),
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="color"],
textarea {
  border: 1px solid #e6e6e6;
  background: #ffffff;
  font-family: 'dinpro-light';
  height: 40px;
}
button,
input,
select,
textarea {
  margin: 0;
  max-width: 100%;
  font-size: 13px;
}
table {
  border-collapse: separate;
  border-color: #e6e6e6;
  border-spacing: 0;
  border-style: solid;
  border-width: 1px 0 0 1px;
  margin-bottom: 24px;
  width: 100%;
}
table th,
table td {
  border-bottom: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  padding: 10px;
}
caption {
  padding: 10px;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
ul ul,
ol ol,
ul ol,
ol ul {
  padding-left: 15px;
}
blockquote {
  border-width: 3px;
  background-color: transparent;
  font-family: 'dinpro-light';
  font-size: 14px;
  font-style: italic;
  color: #333;
}
input[type="text"],
input[type="email"],
textarea,
input[type="password"],
input[type="tel"],
select {
  border: 1px solid #e6e6e6;
  padding: 7px 25px;
  height: auto;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
input[type="password"]:focus,
a:focus,
button:focus,
select:focus {
  outline: none !important;
}
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
:-moz-placeholder {
  /* Firefox 18- */
  color: inherit;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: inherit;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
:-ms-input-placeholder {
  color: inherit;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 10px;
}
table,
th,
td {
  border: 1px solid #ececec;
}
th,
td {
  padding: 10px;
}
.fontawersome {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.btn {
  box-shadow: none;
}
.btn.active {
  box-shadow: none;
}
.button,
input[type="submit"],
button {
  background: #ce2129 none repeat scroll 0 0;
  color: #ffffff;
  box-shadow: none;
  display: inline-block;
  font-family: 'dinpro-bold';
  border-radius: 3px;
  text-transform: none;
  font-size: 14px;
  height: 40px;
  font-weight: normal;
  position: relative;
  border: 1px solid transparent;
  text-shadow: none;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.button:hover,
input[type="submit"]:hover,
button:hover {
  background: #ce2129;
  color: #ffffff;
  border: 1px solid #ce2129;
}
.button:before,
input[type="submit"]:before,
button:before {
  -webkit-transition: all 0.5 ease;
  -moz-transition: all 0.5 ease;
  -ms-transition: all 0.5 ease;
  -o-transition: all 0.5 ease;
}
.button:hover:before,
input[type="submit"]:hover:before,
button:hover:before {
  width: 100%;
}
.button:hover,
input[type="submit"]:hover,
button {
  color: #ffffff;
}
.input-control {
  width: 100%;
}
.switcher-dropdown {
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.label {
  font-size: 13px;
  padding: 0;
  text-align: left;
  font-weight: 400;
}
.fieldset > .field:not(.choice) > .label {
  text-align: left;
}
._keyfocus *:focus,
input:not([disabled]):focus,
textarea:not([disabled]):focus,
select:not([disabled]):focus {
  box-shadow: none;
}
div.mage-error[generated] {
  font-size: 0.75em;
}
.message.info > *:first-child:before,
.message.success > *:first-child:before {
  font-size: 24px;
}
.message.info,
.message.error,
.page.messages {
  font-size: 13px;
}
.login-container .block .block-title {
  font-size: 1rem;
  text-transform: uppercase;
  color: #222222;
}
.bg-parallax {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}
/**
 * Copyright © 2015 Magento. All rights reserved.
 * See COPYING.txt for license details.
 */
body {
  background: #ffffff;
  font-family: 'dinpro-light';
  color: #666666;
  font-size: 14px;
  margin: 0 auto;
  overflow-x: hidden;
}
body.cms-homepage_ayo_default {
  background: #f5f5f5;
}
.page.messages {
  margin: 0 auto;
  width: 100%;
}
.page.messages .message.success {
  font-size: 13px;
  margin-bottom: 35px;
}
.container .page.messages {
  padding: 0;
}
.page-wrapper {
  min-height: 1px;
}
.review-control-vote label:before {
  color: #ffae00;
}
select {
  padding: 0 25px 0 10px;
  background: url(images/icon-down.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) 50%;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.bundle-actions .action.primary,
.review-form .action.submit.primary,
.block-cart-failed .action.continue,
.cart-container .form-cart .action.continue,
button,
.cart.table-wrapper .actions-toolbar > .action,
.cart.table-wrapper .action-gift,
.action.primary {
  font-family: 'dinpro-light';
  font-size: 12px;
  font-weight: 500;
  background-color: #f4f4f4;
  line-height: 38px;
  padding: 0 50px;
  color: #222222;
  border-radius: 3px;
  height: 40px;
  z-index: 1;
  border: 1px solid #e6e6e6;
  text-transform: uppercase;
  -webkit-transition: all .3 ease;
  -moz-transition: all .3 ease;
  -ms-transition: all .3 ease;
  -o-transition: all .3 ease;
  text-transform: capitalize;
}
.bundle-actions .action.primary:hover,
.review-form .action.submit.primary:hover,
.block-cart-failed .action.continue:hover,
.cart-container .form-cart .action.continue:hover,
button:hover,
.cart.table-wrapper .actions-toolbar > .action:hover,
.cart.table-wrapper .action-gift:hover,
.action.primary:hover {
  background: #ce2129;
  color: #ffffff;
  border-color: #ce2129;
}
.abs-shopping-cart-items .action.continue:before,
.block-cart-failed .action.continue:before,
.cart-container .form-cart .action.continue:before {
  display: none;
}
.cart-summary .block > .title:after,
.paypal-review-discount .block > .title:after {
  top: 0;
}
.cart-totals .amount,
.opc-block-summary .table-totals .amount,
.cart-totals .mark,
.opc-block-summary .table-totals .mark {
  border-top: 0;
}
.price-box .price-label {
  display: none;
}
.label {
  color: #555;
}
.rating-summary .rating-result {
  margin-left: 5px;
  width: 85px;
}
.rating-summary .rating-result:before {
  font-family: 'simple-line-icons';
  content: '\e09b' '\e09b' '\e09b' '\e09b' '\e09b';
  font-size: 14px;
  font-weight: 400;
  height: 15px;
  letter-spacing: 2px;
  line-height: 1;
  top: 0;
  color: #ff9300;
}
.rating-summary .rating-result span:before {
  font-family: 'simple-line-icons';
  content: '\e09b' '\e09b' '\e09b' '\e09b' '\e09b';
  font-size: 14px;
  font-weight: 400;
  height: 15px;
  line-height: 1;
  letter-spacing: 2px;
  color: #ffae00;
}
.rating-summary .rating-result span span {
  display: none;
}
.product-reviews-summary .reviews-actions {
  font-family: 'dinpro-light';
  font-weight: 400;
  font-size: 14px;
  margin-left: 10px;
  padding-left: 10px;
}
.product-reviews-summary .reviews-actions a {
  color: #989898;
}
.product-reviews-summary .reviews-actions a:hover {
  color: #ce2129;
}
.product-reviews-summary.empty .reviews-actions {
  margin-left: 0;
  padding-left: 0;
}
.block-authentication .block-title,
.opc-wrapper .step-title,
.opc-block-shipping-information .shipping-information-title,
.opc-block-summary > .title,
.checkout-agreements-items .checkout-agreements-item-title,
.column.main .cart-summary .block > .title strong,
.column.main .paypal-review-discount .block > .title strong {
  font-size: 14px;
  text-transform: uppercase;
  font-family: 'dinpro-bold';
}
.modal-header,
.modal-content {
  box-shadow: none;
  border: 0;
}
.abs-margin-for-forms-desktop,
.fieldset .legend,
.column:not(.sidebar-main) form .actions-toolbar,
.column:not(.sidebar-additional) form .actions-toolbar,
.login-container .fieldset:after {
  margin-left: 0;
  font-size: 13px;
  text-transform: uppercase;
}
.fieldset > .field > .label,
.fieldset > .fields > .field > .label {
  font-weight: normal;
}
.block-collapsible-nav .item.current a,
.block-collapsible-nav .item.current strong {
  border-color: #222222;
}
.abs-account-blocks .block-title > strong,
.block-compare .block-title > strong,
.block-giftregistry-results .block-title > strong,
.block-giftregistry-shared-items .block-title > strong,
.block-wishlist-search-results .block-title > strong,
.block-reorder .block-title > strong,
.widget .block-title > strong,
.block-wishlist .block-title > strong,
.account .column.main .block:not(.widget) .block-title > strong,
.multicheckout .block-title > strong,
.paypal-review .block .block-title > strong,
.magento-rma-guest-returns .column.main .block:not(.widget) .block-title > strong,
[class^="sales-guest-"] .column.main .block:not(.widget) .block-title > strong,
.sales-guest-view .column.main .block:not(.widget) .block-title > strong {
  font-size: 18px;
  text-transform: uppercase;
  font-family: 'dinpro-bold';
}
.block-reorder .product-item,
.block-reorder .product-list-item {
  padding-left: 0;
}
.block-addresses-list .items.addresses .item.actions .action:after,
.account .data.table .col.actions .action:after,
[class^="sales-guest-"] .data.table .col.actions .action:after,
.sales-guest-view .data.table .col.actions .action:after,
.block .box-actions .action:after {
  content: "";
  display: inline-block;
  height: 12px;
  margin: 0 10px;
  border-left: 1px solid #e6e6e6;
  vertical-align: -1px;
}
.block-addresses-list .items.addresses .item.actions .action:last-child:after,
.account .data.table .col.actions .action:last-child:after,
[class^="sales-guest-"] .data.table .col.actions .action:last-child:after,
.sales-guest-view .data.table .col.actions .action:last-child:after,
.block .box-actions .action:last-child:after {
  display: none;
}
.message.success {
  color: #666666;
  background: #f1f1f1;
}
.message.success > *:first-child:before {
  color: #333;
}
.minicart-items .product-item-name a {
  color: #222222;
  line-height: 18px;
}
.minicart-items .product-item-name a:hover {
  color: #ce2129;
  text-decoration: none;
}
.page-title-wrapper {
  text-align: left;
}
.customer-account-login .page-title-wrapper,
.customer-account-create .page-title-wrapper {
  text-align: center;
}
.account .block-collapsible-nav {
  display: none;
}
.form.password.reset,
.form.send.confirmation,
.form.password.forget,
.form.create.account {
  margin: auto;
  border: 1px solid #e6e6e6;
  padding: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.fieldset .field .checkbox {
  float: left;
  margin: 0 10px 0 0;
}
.login-container .fieldset:after {
  display: none;
}
.login-container .fieldset .label {
  display: none;
}
.login-container .block.block-customer-login {
  float: none;
  margin: auto;
  border: 1px solid #e6e6e6;
  padding: 25px;
  margin-bottom: 50px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.login-container .block.block-customer-login .block-title strong {
  font-family: 'dinpro-bold';
}
.login-container .block.block-customer-login .actions-toolbar {
  text-align: center;
}
.login-container .block.block-customer-login .actions-toolbar .primary {
  float: none;
}
.login-container .block.block-customer-login .actions-toolbar .secondary {
  display: block;
  text-align: center;
  float: none;
}
.login-container .block.block-customer-login .actions-toolbar .secondary a {
  color: #aaa;
  text-transform: capitalize;
}
.login-container .block.block-customer-login .actions-toolbar .secondary a:hover {
  color: #222222;
}
.login-container .block.block-customer-login .control {
  width: 100%;
}
.login-container .block.block-new-customer {
  text-align: center;
  float: none;
  margin: auto;
}
.login-container .block.block-new-customer .block-title {
  border-bottom: 0;
  padding: 0;
}
.login-container .block.block-new-customer .block-title strong {
  text-transform: capitalize;
  font-weight: 500;
  font-size: 30px;
  font-family: 'dinpro-bold';
}
.login-container .block.block-new-customer .actions-toolbar .primary {
  float: none;
  margin: 0;
}
.login-container .block.block-new-customer .actions-toolbar .primary a {
  background: #ce2129 none repeat scroll 0 0;
  color: #ffffff;
  box-shadow: none;
  display: inline-block;
  font-family: 'dinpro-bold';
  border-radius: 3px;
  text-transform: none;
  font-size: 14px;
  height: 40px;
  font-weight: normal;
  position: relative;
  border: 1px solid transparent;
  text-shadow: none;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.login-container .block.block-new-customer .actions-toolbar .primary a:hover {
  background: #ce2129;
  color: #ffffff;
  border: 1px solid #ce2129;
}
.password.forget {
  text-align: center;
}
.password.forget .fieldset .control {
  width: 100%;
}
.password.forget .actions-toolbar .primary {
  float: none;
}
.password.forget .actions-toolbar .primary button {
  margin: 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.password.forget .actions-toolbar .secondary {
  float: none;
  display: block;
}
.password.forget .actions-toolbar .secondary a {
  text-transform: capitalize;
  color: #aaa;
}
.password.forget .actions-toolbar .secondary a:hover {
  color: #222222;
}
.block-dashboard-info {
  padding: 20px;
  border: 1px solid #e6e6e6;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.block-dashboard-info .block-title {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.block-dashboard-info .block-title strong {
  color: #222222;
  font-family: 'dinpro-light';
  font-size: 18px;
}
.block-dashboard-info .box-information {
  float: left;
  clear: left;
  width: 48%;
}
.block-dashboard-info .box-information .box-title {
  font-size: 16px;
  font-family: 'dinpro-bold';
  padding-bottom: 10px;
  display: block;
}
.block-dashboard-info .box-information a {
  color: #aaa;
}
.block-dashboard-info .box-information a:hover {
  color: #222222;
}
.block-dashboard-info .box-newsletter {
  float: right;
  clear: right;
  width: 48%;
}
.block-dashboard-info .box-newsletter .box-title {
  font-size: 16px;
  font-family: 'dinpro-bold';
  padding-bottom: 10px;
  display: block;
}
.block-dashboard-info .box-newsletter a {
  color: #aaa;
}
.block-dashboard-info .box-newsletter a:hover {
  color: #222222;
}
.block-dashboard-addresses {
  padding: 20px;
  border: 1px solid #e6e6e6;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.block-dashboard-addresses .block-title {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.block-dashboard-addresses .block-title strong {
  color: #222;
  font-family: 'dinpro-bold';
  font-size: 18px;
}
.block-dashboard-addresses .block-title a {
  font-family: 'dinpro-bold';
  color: #aaa;
  float: right;
}
.block-dashboard-addresses .box-billing-address {
  float: left;
  clear: left;
  width: 48%;
}
.block-dashboard-addresses .box-billing-address .box-title {
  font-size: 16px;
  font-family: 'dinpro-bold';
  padding-bottom: 10px;
  display: block;
}
.block-dashboard-addresses .box-billing-address a {
  color: #aaa;
}
.block-dashboard-addresses .box-billing-address a:hover {
  color: #222222;
}
.block-dashboard-addresses .box-shipping-address {
  float: right;
  clear: right;
  width: 48%;
}
.block-dashboard-addresses .box-shipping-address .box-title {
  font-size: 16px;
  font-family: 'dinpro-bold';
  padding-bottom: 10px;
  display: block;
}
.block-dashboard-addresses .box-shipping-address a {
  color: #aaa;
}
.block-dashboard-addresses .box-shipping-address a:hover {
  color: #222222;
}
.account-nav {
  margin-bottom: 0;
}
.account-nav .title {
  margin: 0;
}
.account-nav .title strong {
  padding: 12px 15px;
  display: block;
  background: #e6e6e6;
  font-family: 'dinpro-bold';
  margin: 0;
  font-size: 18px;
}
.account-nav .nav {
  padding: 15px;
}
.account-nav .nav li {
  line-height: 30px;
  padding: 0;
  border-top: 1px solid #e6e6e6;
  margin-top: 5px;
  padding-top: 5px;
}
.account-nav .nav li:first-child {
  border: 0;
  padding: 0;
  margin: 0;
}
.account-nav .nav li a {
  display: block;
  color: #999;
  background: none;
  padding: 0;
  padding-left: 10px;
}
.account-nav .nav li a:hover {
  color: #222222;
}
.catalog-product-compare-index .table {
  border: 1px solid #e6e6e6 !important;
}
.catalog-product-compare-index .table th {
  display: table-cell;
  border-radius: 0 !important;
  border-bottom: 1px solid #e6e6e6 !important;
}
.catalog-product-compare-index .table th span {
  font-size: 16px;
  font-weight: 500;
}
.catalog-product-compare-index .table td {
  background: none !important;
  border-left: 1px solid #e6e6e6 !important;
  border-bottom: 1px solid #e6e6e6 !important;
}
.catalog-product-compare-index .table td.remove {
  text-align: center;
}
.catalog-product-compare-index .table td .product-item-photo {
  text-align: center;
}
.catalog-product-compare-index .table td .product-item-actions .secondary-addto-links {
  display: none;
}
.catalog-product-compare-index .table td .product-item-name {
  margin: 0 0 7px;
}
.catalog-product-compare-index .table td .product-reviews-summary {
  margin: 0;
}
.catalog-product-compare-index .table td .product-reviews-summary .action {
  display: none;
}
.catalog-product-compare-index .table td .price-box {
  margin: 10px 0;
}
.catalog-product-compare-index .table td .attibute.value {
  font-size: 14px;
}
.cookie-notification {
  bottom: 1rem;
  color: #ffffff;
  display: none;
  position: fixed;
  text-align: center;
  width: 100%;
  z-index: 9;
}
.cookie-notification .cookie-notification--bar {
  background-color: rgba(17, 17, 17, 0.7);
  border-radius: 3px;
  display: inline-block;
  line-height: 2.2rem;
  padding: 1rem 2rem;
}
.cookie-notification .cookie-notification--bar .content a {
  color: #222222;
}
.cookie-notification .cookie-notification--close {
  display: inline-block;
  margin-left: .9rem;
}
.cookie-notification .cookie-notification--close .button {
  background: #ce2129 none repeat scroll 0 0;
  color: #ffffff;
  box-shadow: none;
  display: inline-block;
  font-family: 'dinpro-bold';
  border-radius: 3px;
  text-transform: none;
  font-size: 14px;
  height: 40px;
  font-weight: normal;
  position: relative;
  border: 1px solid transparent;
  text-shadow: none;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  margin-top: 10px;
  padding: 5px 20px;
}
.cookie-notification .cookie-notification--close .button:hover {
  background: #ce2129;
  color: #ffffff;
  border: 1px solid #ce2129;
}
.item-adv-simple a {
  display: block;
  position: relative;
  overflow: hidden;
}
.item-adv-simple a img {
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.item-adv-simple a::before {
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  bottom: 20px;
  content: "";
  left: 20px;
  position: absolute;
  right: 20px;
  top: 20px;
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  z-index: 9;
}
.item-adv-simple a::after {
  border-left: 1px solid rgba(255, 255, 255, 0.8);
  border-right: 1px solid rgba(255, 255, 255, 0.8);
  bottom: 20px;
  content: "";
  left: 20px;
  position: absolute;
  right: 20px;
  top: 20px;
  transform: scale(1, 0);
  -webkit-transform: scale(1, 0);
  z-index: 9;
}
.item-adv-simple a:hover::before,
.item-adv-simple a:hover::after {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.item-adv-simple:hover img,
.item-adv-simple:hover img {
  transform: scale(1.03);
  -webkit-transform: scale(1.03);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
#back-top {
  width: auto;
  height: auto;
  position: fixed;
  z-index: 9999;
  right: 10px;
  bottom: 15px;
  color: #ffffff;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  border-radius: 100%;
  padding: 3px;
}
#back-top i {
  display: block;
  width: 100%;
  height: 100%;
  background: #00B0FF;
  line-height: 54px;
  font-size: 20px;
  border-radius: 100%;
}
#back-top i:before {
  content: "\e931";
  font-family: icomoon;
}
.block-minicart .block-content > .actions .viewcart {
  display: block;
  padding: 10px 15px;
  background: #f4f4f4;
  font-weight: 400;
  font-size: 14px;
  border-radius: 3px;
  height: 40px;
  line-height: 20px;
  border: 1px solid #e6e6e6;
  color: #222222;
  font-family: 'dinpro-light';
  text-transform: capitalize;
}
.block-minicart .block-content > .actions .viewcart:hover {
  background: #ce2129;
  color: #ffffff;
  border-color: #ce2129;
}
.breadcrumbs ul li a:hover {
  text-decoration: none;
}
.filter-content .filter-options .filter-options-title:before {
  display: none;
}
.filter-content .filter-options .filter-options-title {
  color: #ce2129;
}
#maincontent .page-title-wrapper {
  margin-bottom: 30px;
  padding: 0;
}
.title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.attr-product {
  margin-bottom: 10px;
  overflow: hidden;
  display: inline-block;
}
.block-new-customer .block-title strong,
.block-customer-login .block-title strong {
  font-size: 16px;
}
.block-new-customer .form-login,
.block-customer-login .form-login {
  text-align: left;
}
.block-new-customer .actions-toolbar .action.action-register,
.block-customer-login .actions-toolbar .action.action-register,
.block-new-customer .actions-toolbar .action-login,
.block-customer-login .actions-toolbar .action-login {
  background: #ce2129 none repeat scroll 0 0;
  color: #ffffff;
  box-shadow: none;
  display: inline-block;
  font-family: 'dinpro-bold';
  border-radius: 3px;
  text-transform: none;
  font-size: 14px;
  height: 40px;
  font-weight: normal;
  position: relative;
  border: 1px solid transparent;
  text-shadow: none;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  padding: 0 10px;
  line-height: 40px;
}
.block-new-customer .actions-toolbar .action.action-register:hover,
.block-customer-login .actions-toolbar .action.action-register:hover,
.block-new-customer .actions-toolbar .action-login:hover,
.block-customer-login .actions-toolbar .action-login:hover {
  background: #ce2129;
  color: #ffffff;
  border: 1px solid #ce2129;
}
.block-authentication .block-title strong {
  font-weight: 700;
  color: #222;
}
.login-container .block-new-customer .actions-toolbar {
  margin-bottom: 80px;
}
.catalog-product_compare-index table.comparison.headings {
  display: none;
}
.catalog-product_compare-index .table-comparison .cell {
  width: 240px;
}
#one-step-checkout-form label {
  position: static;
  width: auto;
  height: auto;
  float: right;
}
div[name="shippingAddress.street.0"] label:first-child {
  display: none;
}
.checkout-container {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .checkout-index-index .nav-sections,
  .checkout-index-index .nav-toggle {
    display: block;
  }
  .checkout-container {
    margin-bottom: 50px;
  }
}
body .one-step-checkout .field-tooltip {
  right: 0;
}
/*global*/
.searchsuite-autocomplete {
  background-color: #fff;
  border: 1px solid #c2c2c2;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
  left: 175px;
  width: calc(100% - 305px);
  position: absolute;
  z-index: 9999999;
  border: 0;
  border-radius: 0 0 3px 3px;
}
.searchsuite-autocomplete .suggest,
.searchsuite-autocomplete .product {
  margin: 0;
}
.searchsuite-autocomplete.active,
.searchsuite-autocomplete .suggest.active,
.searchsuite-autocomplete .product.active {
  display: block;
}
.searchsuite-autocomplete .suggest {
  color: #3C3C3C;
  display: none;
}
.searchsuite-autocomplete .title {
  padding: 10px;
  margin-bottom: 5px;
  background: #ce2129;
  color: #fff;
}
.searchsuite-autocomplete .title span {
  font-size: 14px;
  font-weight: 400;
}
.searchsuite-autocomplete .title .see-all {
  display: inline-block;
  float: right;
  color: #fff;
  cursor: pointer;
  text-transform: capitalize;
}
.searchsuite-autocomplete .no-result {
  padding: 10px;
  background: #fff;
  color: #222;
  text-align: center;
}
.block-search .control {
  padding: 0;
  margin: 0;
  border: 0;
}
.searchsuite-autocomplete ul {
  padding: 0 10px;
  margin-bottom: 0;
  list-style-type: none;
}
.searchsuite-autocomplete ul li {
  color: #000;
  cursor: unset;
  padding: 0;
}
.searchsuite-autocomplete .suggest ul li {
  color: #3C3C3C;
  display: none;
}
.searchsuite-autocomplete .product ul li {
  border-bottom: 1px solid #D4D2D2;
}
.searchsuite-autocomplete .product ul li:last-child {
  border-bottom: none;
}
.searchsuite-autocomplete ul li:hover,
.searchsuite-autocomplete ul li.selected {
  background-color: #fff;
}
.searchsuite-autocomplete ul li:after {
  clear: both;
  content: '';
  display: block;
}
.searchsuite-autocomplete ul li.action {
  padding: 0;
}
.searchsuite-autocomplete ul li.action .action.close {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 0 none;
  box-shadow: none;
  box-sizing: content-box;
  cursor: pointer;
  display: inline-block;
  float: right;
  font-weight: 400;
  height: 30px;
  line-height: inherit;
  margin: 0;
  padding: 0;
  right: 0;
  text-decoration: none;
  text-shadow: none;
  top: 0;
  width: 40px;
}
.searchsuite-autocomplete ul li.action .action.close:before {
  color: #8f8f8f;
  content: '\e616';
  display: inline-block;
  font-family: 'luma-icons';
  font-size: 16px;
  font-weight: normal;
  margin: 0;
  overflow: hidden;
  text-align: center;
  vertical-align: top;
}
.searchsuite-autocomplete ul li.gray-row {
  text-align: center;
}
.searchsuite-autocomplete ul li.gray-row,
.searchsuite-autocomplete ul li.gray-row:hover,
.searchsuite-autocomplete ul li.gray-row.selected {
  background-color: #e8e8e8;
}
.searchsuite-autocomplete ul li.gray-row a {
  color: #7B7B7B;
  text-decoration: blink;
}
.searchsuite-autocomplete ul li a {
  cursor: pointer;
}
.searchsuite-autocomplete ul li .qs-option-image {
  float: left;
  max-width: 82px;
  width: 25%;
}
.searchsuite-autocomplete ul li .qs-option-info {
  color: #000;
  display: inline-block;
  float: left;
  padding-left: 5%;
  text-align: left;
  width: 70%;
  margin-bottom: 10px;
}
.searchsuite-autocomplete ul li .qs-option-info.noimage {
  padding-left: 0;
  width: 100%;
}
.searchsuite-autocomplete ul li:last-child .qs-option-info {
  margin-bottom: 0;
}
.searchsuite-autocomplete ul li .qs-option-info .qs-option-title {
  display: inline-block;
  margin: 0;
  width: 100%;
  line-height: 1.3;
  margin-bottom: 3px;
}
.searchsuite-autocomplete ul li .qs-option-info .qs-option-reviews {
  display: inline-block;
  text-transform: lowercase;
  width: 100%;
  line-height: 1;
  margin-top: 3px;
}
.searchsuite-autocomplete ul li .qs-option-info .qs-option-reviews .product-reviews-summary {
  margin-bottom: 4px;
}
.searchsuite-autocomplete ul li .qs-option-info .qs-option-reviews .reviews-actions {
  font-size: 12px;
}
.searchsuite-autocomplete ul li .qs-option-info .qs-option-sku {
  display: block;
  width: 100%;
  color: #004875;
  font-size: 12px;
}
.searchsuite-autocomplete ul li .qs-option-info .qs-option-shortdescription,
.searchsuite-autocomplete ul li .qs-option-info .qs-option-description {
  color: #3C3C3C;
  font-size: 13px;
}
.searchsuite-autocomplete ul li .qs-option-info .qs-option-price {
  display: inline-block;
  font-weight: 400;
  margin-top: 5px;
}
.searchsuite-autocomplete ul li .qs-option-info .qs-option-addtocart {
  display: inline-block;
  float: right;
  margin-top: 10px;
}
.block-search {
  float: right;
  width: 60%;
  margin-right: 50px;
  position: relative;
  z-index: 9;
  height: 50px;
}
.block-search .block-content {
  background: #fff;
  border-radius: 30px;
}
.block-search .block-content .field-by-cat-search {
  position: absolute;
  max-width: 160px;
  z-index: 2;
}
.block-search .block-content .field-by-cat-search select {
  line-height: 50px;
}
.block-search .block-content .chosen-container {
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.block-search .block-content .chosen-container ::-webkit-scrollbar {
  width: 4px;
}
.block-search .block-content .chosen-container ::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.block-search .block-content .chosen-container ::-webkit-scrollbar-thumb {
  background: #ccc;
}
.block-search .block-content .chosen-container ::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.block-search .block-content .chosen-container .chosen-results {
  margin: 0;
}
.block-search .block-content .chosen-container-single .chosen-single {
  background: none;
  border: 0;
  padding: 0 15px 0 25px;
  height: 50px;
  line-height: 50px;
  position: relative;
}
.block-search .block-content .chosen-container-single .chosen-single:after {
  content: "";
  width: 1px;
  height: 50%;
  background: #e1e1e1;
  position: absolute;
  top: 25%;
  right: 0;
}
.block-search .block-content .chosen-container-single .chosen-single div {
  right: 13px;
}
.block-search .block-content .label {
  display: none;
}
.block-search .block-content .reviews-actions {
  display: none;
}
.block-search .block-content input {
  width: 100%;
  background-color: transparent;
  padding: 10px 100px 10px 175px;
  border: none;
  font-family: 'dinpro-light';
  font-size: 12px;
  font-style: italic;
  line-height: 50px;
  height: 50px;
  color: #444;
  position: static;
  margin: 0;
}
.block-search .block-content button.action {
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  border: none;
  height: 50px;
  color: #fff;
  display: block;
  line-height: 50px;
  min-width: 130px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 400;
  background: #ce2129;
  border-radius: 0 30px 30px 0;
  opacity: 1 !important;
  pointer-events: all !important;
  cursor: pointer;
}
.block-search .block-content button.action > span {
  height: auto;
  width: auto;
  position: relative;
}
.block-search .block-content button.action:hover {
  background: #ce2129;
}
.block-search .block-content button.action:before {
  display: none;
}
.block-search .block-content .price-container .price {
  font-size: 14px;
}
.search-content.loading button.action:before {
  content: "" !important;
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 8px;
  margin-top: -8px;
  border: 1px solid;
  color: transparent;
  width: 14px;
  height: 14px;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-radius: 50px;
  border-color: #b1aeae #ffffff #ffffff #ffffff;
  line-height: 1;
  animation: spin 0.2s infinite linear;
}
.searchsuite-autocomplete .product ul {
  padding: 0 10px;
  margin-bottom: 0;
  list-style-type: none;
}
.searchsuite-autocomplete .product ul li {
  border-bottom: 1px solid #e1e1e1;
  padding: 10px 0;
}
.searchsuite-autocomplete .qs-option-title {
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.searchsuite-autocomplete .qs-option-reviews .product-reviews-summary {
  margin: 0;
}
.searchsuite-autocomplete .reviews-actions {
  display: none;
}
.searchsuite-autocomplete .qs-option-price p {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .searchsuite-autocomplete {
    border-top: 0;
    left: 15px;
    margin-top: 0;
    right: 15px;
    width: auto;
  }
  .block-search .block-content .field-by-cat-search {
    display: none;
  }
  .block-search .block-content input {
    padding: 10px 100px 10px 20px;
  }
}
/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
.owl-carousel:hover .owl-theme .owl-buttons {
  opacity: 1;
}
.owl-carousel .owl-item {
  float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}
.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* mouse grab icon */
.grabbing {
  cursor: url(images/grabbing.png) 8 8, move;
}
/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
/****************************************/
/*
	* 	Owl Carousel Owl Demo Theme 
	*	v1.3.3
	*/
.owl-theme .owl-pagination {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 15px;
  text-align: center;
}
.owl-theme .owl-buttons {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
}
.owl-theme:hover .owl-buttons {
  opacity: 1;
  visibility: visible;
  filter: alpha(opacity=100);
}
.owl-theme .owl-controls .owl-buttons {
  position: static;
}
.owl-theme .owl-controls .owl-buttons > div {
  height: 70px;
  width: 30px;
  background-color: #ebebeb;
  padding: 0;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 50%;
  margin-top: -35px;
  overflow: hidden;
  border: 0;
}
.owl-theme .owl-controls .owl-buttons > div:before {
  content: "\e605" !important;
  font-family: 'simple-line-icons';
  font-size: 14px;
  color: #222;
  display: block;
  line-height: 70px;
}
.owl-theme .owl-controls .owl-buttons .owl-prev {
  left: -15px;
}
.owl-theme .owl-controls .owl-buttons .owl-next {
  right: -15px;
}
.owl-theme .owl-controls .owl-buttons .owl-next:before {
  content: "\e606" !important;
}
.owl-theme .owl-controls .owl-buttons > div:hover {
  color: #ffffff;
  background: #ce2129;
  border-color: #ce2129;
}
.owl-theme .owl-controls .owl-buttons > div:hover:before {
  color: #ffffff;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
/* Styling Pagination*/
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 7px;
  height: 7px;
  margin: 5px 4px;
  background: #e1e1e1;
  border: 2px solid #e1e1e1;
  border-radius: 10px;
  opacity: 0.4;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  background: #222222;
  width: 35px;
  background: #fff;
  border: 2px solid #fff;
  opacity: 1;
}
/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #ffffff;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
/* preloading images */
.owl-item.loading {
  min-height: 150px;
  background: url(images/AjaxLoader.gif) no-repeat center center;
}
.cms-homepage_ayo_default .footer-container {
  border-top: 1px solid #e1e1e1;
}
.cms-index-index .border-top-container {
  display: none;
}
.border-top-container {
  height: 1px;
  background: #e1e1e1;
}
.page-footer .footer-container .footer-box h2 {
  font-size: 18px;
  margin: 0 0 20px;
  color: #222222;
}
.page-footer .footer-container .footer-box li {
  margin-bottom: 12px;
  line-height: 20px;
}
.page-footer .footer-container .footer-box li a {
  color: #666666;
  font-size: 14px;
  position: relative;
}
.page-footer .footer-container .footer-box li a:hover {
  color: #ce2129;
}
.page-footer .footer-container .footer-box li p {
  margin-bottom: 0;
}
.page-footer .footer-container .list-footer-box {
  margin-top: 25px;
}
.page-footer .footer-container .footer-box-contact {
  position: relative;
}
.page-footer .footer-container .footer-box-contact li {
  padding-left: 30px;
}
.page-footer .footer-container .footer-box-contact .fa {
  color: #585e6a;
  font-size: 18px;
  width: 25px;
  position: absolute;
  left: 0;
  margin-top: 10px;
}
.page-footer .footer-container .social-footer-box {
  border-bottom: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
  margin-top: 20px;
  padding: 35px 0;
}
.newsletter-footer {
  text-align: center;
  margin: 40px 0 45px;
  position: relative;
}
.newsletter-footer:before {
  content: "";
  background: #e1e1e1;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -7px;
}
.newsletter-footer label {
  display: none;
}
.newsletter-footer > form {
  display: inline-block;
  position: relative;
}
.newsletter-footer .control {
  float: left;
}
.newsletter-footer .actions {
  float: left;
  margin-left: -2px;
}
.newsletter-footer input[type="email"] {
  border: 2px solid #e6e6e6;
  color: #888888;
  font-family: 'dinpro-light';
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 14px;
  height: 50px;
  padding-left: 30px;
  width: 395px;
  background: #fff;
  border-radius: 30px 0 0 30px;
}
@media (max-width: 1500px) {
  .newsletter-footer input[type="email"] {
    width: 300px;
  }
}
.newsletter-footer input[type="email"]::placeholder {
  color: #888888;
  font-family: 'dinpro-light';
  font-size: 14px;
  font-weight: 400;
}
.newsletter-footer button.action i {
  display: none;
}
.newsletter-footer button.action,
.newsletter-footer button.action:hover {
  background: #ce2129;
  color: #ffffff;
  border: medium none;
  height: 50px;
  margin: 0px;
  padding: 0 50px;
  border-radius: 0 30px 30px 0;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
}
.social-footer {
  margin-top: 40px;
}
.social-footer ul {
  display: inline-block;
  font-size: 0;
  margin: 0;
}
.social-footer ul li {
  display: inline-block;
  font-size: 14px;
}
.social-footer ul li a {
  margin-right: 10px;
}
.copyright p {
  color: #222222;
  margin: 0;
}
.copyright a {
  color: #ce2129;
}
.copyright a:hover {
  color: #ce2129;
}
.payment-method {
  text-align: right;
}
.footer-bottom {
  padding: 28px 0 25px;
  background: #00352f;
  color: #71908c;
}
.footer-bottom .copyright {
  line-height: 33px;
  margin: 0;
}
.payment-method .opcheckout-payment-methods li {
  display: block;
}
.payment-method li {
  display: inline-block;
  margin-left: 2px;
}
.d-flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.rowFlex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer-container .container > .rowFlex.rowFlexMargin {
  padding-bottom: 45px;
  position: relative;
}
.rowFlexMargin {
  margin-left: -10px;
  margin-right: -10px;
}
.rowFlexMargin .velaBlock {
  margin-bottom: 30px;
  color: #222222;
}
.rowFlexMargin .velaBlock .contacinfo-logo {
  margin-bottom: 35px;
}
.rowFlexMargin .velaBlock .contacinfo-logo img {
  display: block;
  max-width: 100%;
  height: auto;
}
.rowFlexMargin .velaBlock .intro-footer {
  line-height: 23px;
}
.rowFlexMargin .velaBlock .velaFooterTitle {
  color: #222222;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 30px;
  padding: 25px 0 0 0;
}
.rowFlexMargin .velaBlock .velaFooterLinks {
  margin: 0px;
  padding: 0;
  line-height: 18px;
}
.rowFlexMargin .velaBlock .velaFooterLinks li {
  display: block;
  padding: 7px 0;
}
.rowFlexMargin .velaBlock .velaFooterLinks li a {
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  display: block;
  -webkit-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
}
.rowFlexMargin .velaBlock .velaFooterLinks li a:hover,
.rowFlexMargin .velaBlock .velaFooterLinks li a:focus {
  color: #ce2129;
  text-decoration: none;
  text-indent: 10px;
}
.rowFlexMargin .vela-contactinfo .contacinfo-phone.contactinfo-item {
  font-weight: 500;
  font-size: 24px;
  color: #222;
  margin: 20px 0 20px;
}
.rowFlexMargin .vela-contactinfo .contacinfo-phone.contactinfo-item .image_hotline {
  display: block;
  max-width: 100%;
  height: 60px;
  width: 60px;
  background-color: #ce2129;
  -webkit-mask: url(images/hotline_icon.svg) no-repeat 100% 100%;
  mask: url(images/hotline_icon.svg);
}
.rowFlexMargin .vela-contactinfo .contacinfo-phone.contactinfo-item .wrap {
  margin-left: 10px;
}
.rowFlexMargin .vela-contactinfo .contacinfo-phone.contactinfo-item label {
  color: #a7a7a7;
  font-size: 14px;
  font-weight: 400;
  margin: 10px 0;
}
.rowFlexMargin .vela-contactinfo .contactinfo-item {
  margin-bottom: 12px;
}
.rowFlexMargin .vela-contactinfo .contactinfo-item label {
  display: block;
  margin-right: 2px;
  margin-bottom: 6px;
}
.velaNewsletterFooter {
  justify-content: center;
  text-align: center;
}
.velaNewsletterFooter .newsletterDescription {
  line-height: 31px;
  color: #666666;
}
.velaNewsletterFooter .newsletterDescription span {
  color: #ce2129;
  font-size: 14px;
  font-weight: 500;
}
.form-group {
  margin-bottom: 15px;
}
.velaNewsletterFooter .form-control {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 10px 0;
  box-shadow: none;
}
.velaNewsletterFooter .btnNewsletter {
  background-color: #303c4b;
  color: #ffffff;
  border: 0;
  font-size: 13px;
  padding: 10px 40px;
  line-height: 22px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 500;
}
.velaNewsletterFooter .btnNewsletter:hover {
  background-color: #ce2129;
}
.velaFooterTitle {
  color: #222222;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 34px;
  padding: 10px 0px;
}
.footer-container.footer {
  padding: 60px 0 0;
}
.page_footer {
  color: #222222;
  overflow: hidden;
  background: #ffffff;
}
/* style footer */
.text_footer > div > ul > li > a {
  color: #71737a;
}
.text_footer > div > ul > li:hover a {
  color: #ce2129;
}
.footer-static-title {
  font-size: 16px;
  font-weight: 700;
  color: #2f3034;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
}
.text_footer span:hover:before {
  color: #ce2129;
}
.logo_footer {
  float: right;
}
.footer_text {
  line-height: 30px;
  font-size: 14px;
  font-weight: 400;
  color: #71737a;
  font-family: 'Lato', sans-serif;
}
.creative {
  font-weight: bold;
  color: #2f3034;
}
.text_footer div ul li:hover {
  -webkit-transform: translate(1em, 0);
  -moz-transform: translate(1em, 0);
  -o-transform: translate(1em, 0);
  -ms-transform: translate(1em, 0);
  transform: translate(1em, 0);
}
.text_footer div ul li {
  padding-bottom: 15px;
  font-size: 14px;
  font-weight: 400;
  color: #71737a;
  /* list-style: disc; */
  font-family: 'Lato', sans-serif;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.form-newletter {
  position: relative;
}
.text_footer {
  font-size: 14px;
  font-weight: 400;
  color: #71737a;
  list-style: disc;
  font-family: 'Lato', sans-serif;
}
.text_footer > div > div {
  line-height: 26px;
}
.velaNewsletterFooter .velaFooterTitle {
  padding: 20px 0 0 0;
  font-size: 30px;
  text-transform: capitalize;
  letter-spacing: -1px;
  margin: 0 0 25px;
}
/*Grid Style*/
.item-product {
  position: relative;
  padding: 0 15px;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.item-product .product-thumb {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.item-product .product-thumb .product-image-photo {
  bottom: 0;
  display: block;
  height: auto;
  left: 0;
  margin: auto;
  max-width: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.item-product .product-thumb .second-thumb {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}
.item-product .product-thumb .second-thumb .product-image-photo {
  opacity: 0;
}
.item-product .product-info-cart {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10;
  text-align: center;
  font-weight: 500;
  bottom: -100%;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.item-product .product-info-cart button {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 400;
  background-color: #ce2129;
  line-height: 40px;
  width: 100%;
  color: #fff;
  border-radius: 0;
  padding: 0;
  text-align: center;
  text-transform: initial;
  z-index: 1;
  text-transform: none;
  border-color: #ce2129;
}
.item-product .actions-secondary {
  margin: auto;
  list-style: none;
  text-align: center;
  z-index: 9;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  padding: 0;
  -webkit-transform: translateX(110%);
  -o-transform: translateX(110%);
  -moz-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.item-product .product-extra-link {
  padding: 0;
}
.item-product .product-extra-link a {
  margin-top: 5px;
  border: 1px solid #ebebeb;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  background: #fff;
  display: inline-block;
  border-radius: 100%;
  color: #222;
}
.item-product .product-extra-link a:before {
  font-family: 'simple-line-icons';
  font-size: 14px;
}
.item-product .product-extra-link a.wishlist-link:before {
  content: "\e08a";
}
.item-product .product-extra-link a.quickview-link:before {
  content: "\e087";
}
.item-product .product-extra-link a.compare-link:before {
  content: "\e034";
}
.item-product .product-extra-link a:hover {
  color: #fff;
  background: #ce2129;
  border-color: #ce2129;
}
.item-product .product-info {
  text-align: left;
}
.item-product .product-info .product-name {
  margin-top: 15px;
  font-size: 14px;
  display: inline-block;
  line-height: 1.3;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.item-product .product-info .product-name a {
  color: #0066c0;
}
.item-product .product-info .product-name a:hover {
  color: #ce2129;
}
.item-product .product-info .product-rating {
  margin-top: 11px;
}
.item-product .product-info .product-rating .product-reviews-summary {
  display: block;
  margin: 0;
}
.item-product .product-info .product-rating .product-reviews-summary .rating-summary {
  display: inline-block;
  text-align: unset;
  margin: 0 4px 0 0;
}
.item-product .product-info .product-rating .product-reviews-summary .rating-result {
  margin-left: 5px;
  width: 85px;
}
.item-product .product-info .product-rating .reviews-actions {
  display: none;
}
.item-product .product-info .sold-by {
  margin-top: 7px;
  color: #222;
  font-size: 14px;
}
.item-product .product-info .sold-by span {
  color: #999;
  margin-right: 5px;
}
.item-product .product-info .info-price {
  margin: 15px 0 0;
  min-height: 20px;
}
.item-product .product-info .info-price .price-label {
  display: none;
}
.item-product .product-info .info-price .special-price {
  display: inline-block;
}
.item-product .product-info .info-price .special-price .price-wrapper {
  display: inline-block;
}
.item-product .product-info .info-price .special-price .price-wrapper .price {
  font-family: 'dinpro-light';
  font-size: 16px;
  font-weight: 500;
  color: #222;
}
.item-product .product-info .info-price .old-price {
  text-decoration: line-through;
  color: #b5b5b5;
}
.item-product .product-info .info-price .old-price .price {
  font-family: 'dinpro-light';
  font-size: 14px;
  font-weight: 400;
  color: #b5b5b5;
  margin-left: 5px;
  line-height: 1.3;
}
.item-product .product-info .info-price .price {
  font-size: 16px;
  color: #222;
  font-weight: 500;
}
.item-product .desc {
  display: none;
}
.item-product:hover .product-thumb .second-thumb .product-image-photo {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.item-product:hover .actions-secondary {
  -webkit-transform: translateX(0);
  -o-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  right: 5px;
}
.item-product:hover .product-info-cart {
  opacity: 1;
  bottom: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
/*List style*/
.item-product.listview {
  display: inline-block;
  width: 100%;
}
.item-product.listview .product-thumb {
  float: left;
  width: 40%;
  overflow: hidden;
}
.item-product.listview .product-info {
  overflow: hidden;
  text-align: left;
  margin-top: 12px;
  float: left;
  width: 60%;
  padding-left: 10px;
}
.item-product.listview .product-info .product-name {
  margin-bottom: 0;
  font-size: 14px;
  margin-top: 0;
}
/*Button cart loading*/
.action.tocart span {
  position: relative;
}
.action.tocart span:before {
  content: '';
  position: absolute;
  display: inline-block;
  top: 0;
  left: -20px;
}
.action.tocart.disabled {
  opacity: 1;
}
.action.tocart.disabled span:before {
  border: 1px solid;
  color: transparent;
  width: 14px;
  height: 14px;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-radius: 50px;
  border-color: #b1aeae #ffffff #ffffff #ffffff;
  line-height: 1;
  animation: spin 0.2s infinite linear;
}
.action.tocart.item_added span:before {
  content: "";
  color: #fff;
  line-height: 16px;
  width: 16px;
  height: 16px;
  background-color: white;
  -webkit-mask-image: url(images/check.svg);
  mask-image: url(images/check.svg);
  top: -1px;
}
.action.tocart.item_added.disabled span:before {
  display: none;
}
.quickview-link.loading:before {
  content: "";
  display: inline-block;
  z-index: 9;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -5px;
  margin-left: -7px;
  border: 1px solid;
  color: transparent;
  width: 14px;
  height: 14px;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-radius: 50px;
  border-color: #5f5f5f #797979 #cccccc #ffffff;
  line-height: 1;
  animation: spin 0.2s infinite linear;
}
/*View mode list*/
.products-grid .item-product {
  padding: 0 0 45px;
}
.products-list .item-product {
  padding: 0 0 30px;
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
  border-bottom: 1px solid #e1e1e1;
}
.products-list .item-product .product-thumb {
  float: left;
  width: 25%;
  overflow: hidden;
}
.products-list .item-product .product-info {
  overflow: hidden;
  text-align: left;
  margin-top: 0;
  float: left;
  width: 75%;
  padding-left: 30px;
}
.products-list .item-product .product-info .product-name {
  margin-bottom: 0;
  font-size: 20px;
  margin-top: 0;
  font-weight: 500;
}
@media (max-width: 480px) {
  .products-list .item-product .product-thumb {
    width: 100%;
    text-align: left;
  }
  .products-list .item-product .product-info {
    width: 100%;
    padding-left: 0;
  }
}
.products-list .item-product .product-rating .reviews-actions {
  display: inline-block;
}
.products-list .item-product .product-image-wrapper {
  padding-bottom: 100% !important;
}
.products-list .item-product .product-info-cart {
  position: static;
  left: 0;
  width: 100%;
  opacity: 1;
  display: inline-block;
  margin-top: 20px;
  text-align: left;
}
.products-list .item-product .product-info-cart button {
  width: auto;
  border-radius: 30px;
  padding: 0 50px;
}
.products-list .item-product .product-info-cart .actions-primary {
  display: inline-block;
}
.products-list .item-product .product-info-cart .product-extra-link {
  display: inline-block;
}
.products-list .item-product .product-info-cart .product-extra-link a {
  margin: 0 0 0 10px;
}
.products-list .item-product .product-desc {
  margin-top: 20px;
  line-height: 1.5;
}
.products-list .item-product .product-desc ul li {
  list-style-type: disc;
}
.products-list li:last-child .item-product {
  border: 0;
  margin: 0;
}
.product-rating .rating-summary .rating-result:before,
.product-rating .rating-summary .rating-result span:before {
  font-size: 13px;
  letter-spacing: 3px;
}
.toprateslider-item .item-product.listview {
  padding: 0 0 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ebebeb;
}
.toprateslider-item .item-product.listview .product-thumb {
  width: 30%;
}
.toprateslider-item .item-product.listview .product-info {
  width: 70%;
  margin-top: 5px;
}
.toprateslider-item .item-product.listview .product-info .product-name {
  -webkit-line-clamp: 1;
}
.toprateslider-item .item-product.listview .product-rating .product-reviews-summary {
  margin: 0;
}
.newlabel {
  display: none;
}
.hot-onsale {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  max-width: 50px;
}
.hot-onsale .onsale {
  background-color: #d11418;
  font-family: 'dinpro-light';
  display: inline-block;
  text-align: center;
  font-size: 12px;
  color: white;
  min-width: 49px;
  line-height: 24px;
  border-radius: 2px;
  font-weight: 400;
  z-index: 2;
  margin-bottom: 5px;
}
.hot-onsale .onsale.new-lable {
  top: 39px;
  background: #ce2129;
}
/*Layout*/
input[type="text"],
input[type="password"],
input[type="url"],
input[type="tel"],
input[type="search"],
input[type="number"],
input[type="datetime"],
input[type="email"] {
  font-size: 13px;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
body .fancybox-skin {
  background: #ffffff;
}
body .action_button .button:hover,
body button:hover,
body input[type=submit]:hover {
  background: #ce2129;
  color: #ffffff;
}
body .primary #top-cart-btn-checkout,
body .action_button .button.btn-continue {
  background: #ce2129;
  color: #ffffff;
  border-color: #ce2129;
  font-size: 14px;
  font-weight: 400;
}
.block-minicart .block-content > .actions > .primary .action.primary {
  font-size: 12px;
  padding: 0;
  font-weight: 500;
  font-family: 'dinpro-light';
  line-height: 40px;
}
body .action_button .button,
body input[type=submit],
body button {
  background: #f4f4f4;
  color: #222222;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  padding: 0 15px;
}
.cms-homepage_ayo_default .banner-slider-top {
  margin-right: -10px;
  margin-left: -10px;
}
.mini-cart-wrapper.enable-sticky .content-cart {
  display: none;
}
.container {
  padding: 0 15px;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.page-wrapper {
  overflow: hidden;
}
.opc-wrapper .step-title,
.opc-block-shipping-information .shipping-information-title,
.opc-block-summary > .title,
.checkout-agreements-items .checkout-agreements-item-title {
  border: 0;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.cart-totals .amount,
.opc-block-summary .table-totals .amount,
.cart-totals .mark,
.opc-block-summary .table-totals .mark {
  background: transparent;
}
.page-title-wrapper .page-title .base,
.block.filter .page-title .base,
.block-compare .page-title .base,
.block-wishlist .page-title .base,
.page-title-wrapper .filter-title .base,
.block.filter .filter-title .base,
.block-compare .filter-title .base,
.block-wishlist .filter-title .base,
.page-title-wrapper .block-title .base,
.block.filter .block-title .base,
.block-compare .block-title .base,
.block-wishlist .block-title .base,
.page-title-wrapper .page-title strong,
.block.filter .page-title strong,
.block-compare .page-title strong,
.block-wishlist .page-title strong,
.page-title-wrapper .filter-title strong,
.block.filter .filter-title strong,
.block-compare .filter-title strong,
.block-wishlist .filter-title strong,
.page-title-wrapper .block-title strong,
.block.filter .block-title strong,
.block-compare .block-title strong,
.block-wishlist .block-title strong {
  font-size: 18px;
  color: #222;
  position: relative;
  text-transform: capitalize;
  font-family: 'dinpro-bold';
  display: block;
  font-weight: 500;
}
.page-title-wrapper .page-title .base {
  font-size: 30px;
}
.wrapper-bestseller.cat h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'dinpro-light';
  width: 25%;
  line-height: 26px;
  padding: 10px 27px;
  margin-bottom: 0;
  border-radius: 3px 3px 0 0;
  text-transform: uppercase;
  background: #ce2129;
}
.wrapper-bestseller.cat h4:before {
  content: "\f030";
  font-family: FontAwesome;
  font-size: 16px;
  color: #ffffff;
  padding-right: 10px;
}
.wrapper-bestseller.cat h4:hover {
  opacity: 0.7;
}
.section-bestseller .cat .tab_container .item-product:last-child {
  margin-top: 0;
}
.section-bestseller .wrapper-bestseller.cat .categorytab-container .content-item-product .product-thumb {
  width: auto;
  float: none;
}
.top-header {
  min-height: 45px;
  background-color: #134e47;
  line-height: 45px;
}
.top-header .top-info {
  float: right;
  margin: 0;
}
.top-header .top-info > li {
  border-left: 1px solid #e6e6e6;
  float: left;
  position: relative;
}
.top-header .top-info > li > a {
  font-size: 12px;
  color: #666666;
  display: block;
  line-height: 50px;
}
.top-header .top-info > li:hover > a {
  color: #ce2129;
}
.top-header .top-info > li:first-child {
  border: medium none;
}
.top-header .switcher {
  float: right;
}
.top-header .switcher .label {
  display: none;
}
.top-header .switcher .switcher-options {
  position: relative;
  cursor: pointer;
}
.top-header .switcher .switcher-options img {
  display: none;
}
.top-header .switcher .switcher-options .view-en img {
  padding-bottom: 4px;
  margin-right: 2px;
}
.top-header .switcher .switcher-options .view-fr img {
  padding-bottom: 4px;
  margin-right: 2px;
}
.top-header .switcher .switcher-options .language-USD {
  padding: 0 20px;
}
.top-header .switcher .switcher-options .view-en:hover,
.top-header .switcher .switcher-options .language-USD:hover {
  color: #ce2129;
}
.top-header .switcher .switcher-options strong {
  font-family: 'dinpro-light';
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
  padding-left: 20px;
  line-height: 55px;
}
.top-header .switcher .switcher-options strong.language-USD {
  padding: 0;
}
.top-header .switcher .switcher-options:hover .switcher-dropdown {
  display: block;
}
.top-header .switcher .switcher-options:hover strong {
  color: #ce2129;
}
.top-header .switcher .switcher-options .fa {
  margin-left: 5px;
  vertical-align: baseline;
}
.top-header .switcher .switcher-options .switcher-dropdown {
  position: absolute;
  top: 100%;
  right: 0px;
  z-index: 9;
  display: none;
  padding: 0px 15px;
  min-width: 120px;
  background-color: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 0 0 3px 3px;
}
.top-header .switcher .switcher-options .switcher-dropdown li {
  margin-bottom: 0;
}
.top-header .switcher .switcher-options .switcher-dropdown li a {
  width: 100%;
  padding: 15px 0;
  line-height: 1;
  display: inline-block;
  text-transform: capitalize;
  border-bottom: 1px solid #e6e6e6;
  color: #333333;
}
.top-header .switcher .switcher-options .switcher-dropdown li a:hover {
  color: #ce2129;
}
.top-header .switcher .switcher-options .switcher-dropdown li:last-child a {
  border-bottom: 0;
}
.top-bar-left .sub-menu-top {
  left: 0;
}
.top-info .has-child:hover .sub-menu-top {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.language-selected img {
  margin-right: 5px;
}
.sub-menu-top {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 0;
  padding: 0;
  min-width: 170px;
  background: #ffffff;
  z-index: 1;
  padding: 5px 15px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #e6e6e6;
  z-index: 2;
}
.sub-menu-top .label {
  display: none;
}
.sub-menu-top li {
  border-bottom: 1px solid #ffffff;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  cursor: pointer;
}
.sub-menu-top li:hover a {
  color: #222222;
}
.sub-menu-top li:last-child {
  border: none;
}
.sub-menu-top a {
  color: #666666;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-bottom: 1px solid #e6e6e6;
  width: 100%;
  display: block;
  font-size: 12px;
  line-height: 30px;
}
.sub-menu-top a i {
  display: inline-block;
  width: 22px;
  font-size: 14px;
}
.sub-menu-top a:hover {
  color: #e62e04;
}
.top-currency .sub-menu-top span {
  margin: 0 16px 0 6px;
}
.top-left-static {
  float: left;
}
.top-left-static:before {
  content: "";
  width: 1px;
  height: 9px;
  background: #e3e3e3;
  display: inline-block;
  margin-top: 16px;
  margin-right: 15px;
}
.top-left-static li {
  display: inline-block;
  margin-right: 5px;
  position: relative;
}
.top-left-static li:first-child {
  padding-right: 10px;
}
.top-left-static li:first-child:after {
  content: "";
  width: 1px;
  height: 9px;
  background: #e3e3e3;
  display: inline-block;
  margin-left: 17px;
}
.top-left-static li a {
  font-size: 12px;
  line-height: 42px;
  color: #707070;
}
.top-left-static li a:hover {
  color: #222222;
}
.top-left-static li a .fa {
  line-height: 42px;
  margin-right: 3px;
}
.top-contact {
  float: right;
  font-size: 12px;
  color: #666666;
  line-height: 42px;
  margin-right: 12px;
}
.top-contact:after {
  content: "";
  width: 1px;
  height: 9px;
  background: #e3e3e3;
  display: inline-block;
  margin-left: 10px;
}
.top-contact .phone {
  margin-right: 8px;
}
.top-contact .phone:before {
  content: "\f095";
  display: inline-block;
  margin-right: 6px;
  font-family: "fontawesome";
  color: #ce2129;
}
.top-contact .email {
  margin-left: 15px;
}
.top-account ul li {
  line-height: 45px;
  list-style: none;
  display: inline-block;
}
.top-account ul li a {
  padding: 0 20px;
  color: #ffffff;
  border-right: 1px solid #2b605a;
  font-size: 13px;
}
.top-account ul li a .compare_Products:before {
  content: "\e9d8";
  font-family: 'simple-line-icons';
  font-size: 18px;
}
.top-account ul li a i {
  padding-right: 5px;
  display: none;
}
.top-account ul li:last-child a {
  border-right: 0;
  padding-right: 0;
}
.top-account ul li:first-child a {
  border-left: transparent;
}
.top-account ul li:hover a {
  color: #ce2129;
}
.top-contact .email:before {
  content: "\f0e0";
  display: inline-block;
  margin-right: 6px;
  font-family: "fontawesome";
  color: #ce2129;
}
.has-child > a::after {
  content: "\e604";
  font-family: 'simple-line-icons';
  margin-left: 5px;
}
.hoteline_header {
  float: left;
  margin-top: 3px;
  margin-left: 20px;
}
.hoteline_header .image_hotline {
  float: left;
  width: 44px;
  height: 44px;
  background-color: #ce2129;
  -webkit-mask-image: url(images/hotline_icon.svg);
  mask-image: url(images/hotline_icon.svg);
}
.hoteline_header .wrap {
  float: left;
  color: #fff;
  font-weight: 500;
  width: 170px;
  margin-left: 10px;
  margin-top: 6px;
}
.hoteline_header .wrap label {
  display: inline-block;
  width: 100%;
  color: #fff;
  font-weight: 400;
  margin-bottom: 7px;
}
.smart-search {
  position: relative;
  width: 65%;
  float: right;
  margin-right: 50px;
  z-index: 99;
}
.smart-search #choose_category {
  border: none;
  height: 48px;
  border-radius: 30px 0 0 30px;
}
.select-category {
  height: 48px;
  position: absolute;
  top: 2px;
  left: 2px;
  width: 145px;
  z-index: 1;
  line-height: 40px;
}
.smart-search-form {
  position: relative;
  overflow: hidden;
}
.smart-search-form input[type="text"] {
  color: #888888;
  font-size: 13px;
  height: 52px;
  width: 100%;
  padding-left: 167px;
  border: 0;
  background: #fff;
  border-radius: 30px;
}
.smart-search-form button[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  background: transparent;
  display: inline-block;
  width: 126px;
  height: 52px;
  line-height: 52px;
  padding: 0 40px;
  color: #ffffff;
  background: #ce2129;
  border-radius: 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
  border-radius: 0 30px 30px 0;
}
.smart-search-form button[type="submit"]:hover {
  color: #ffffff;
  background: #ce2129;
}
.smart-search-form button[type="submit"] {
  opacity: 1;
  cursor: pointer;
}
.select-category .category-toggle-link {
  display: block;
  height: 44px;
  line-height: 44px;
  padding: 0 20px;
  text-transform: uppercase;
  position: relative;
  color: #333;
}
.select-category .category-toggle-link::after {
  position: absolute;
  right: 13px;
  top: 0;
  font-family: 'simple-line-icons';
  content: "\e604";
}
.list-category-toggle {
  left: 0;
  position: absolute;
  top: 100%;
}
.list-category-toggle.sub-menu-top {
  margin-top: 1px;
  width: 100%;
  opacity: 1;
  visibility: visible;
  display: none;
}
.mini-cart-wrapper {
  float: right;
}
.mini-cart-wrapper .mini-carts {
  display: inline-block;
}
.header-mini-cart {
  position: relative;
  text-transform: uppercase;
  float: right;
}
.header-mini-cart .loading-mask {
  display: none;
}
.header-mini-cart .counter .total-mini-cart-item span {
  display: none;
}
.mini-cart {
  position: relative;
  float: right;
}
.header-mini-cart::before {
  content: "\e035";
  font-family: 'simple-line-icons';
  font-size: 30px;
  color: #ffffff;
  line-height: 46px;
  right: 12px;
}
.header-mini-cart .counter.qty {
  position: absolute;
  top: 0;
  right: -10px;
  min-width: 1px;
  height: auto;
  width: 18px;
  background: #ce2129;
  border-radius: 50%;
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 10px;
  color: #fff;
  display: inline-block;
  margin: -3px 0 0 -11px;
  line-height: 18px;
  font-weight: 400;
}
.total-mini-cart-price {
  color: #888888;
  font-weight: 400;
  font-size: 13px;
  margin-top: 10px;
  display: inline-block;
}
.content-mini-cart {
  background: #ffffff none repeat scroll 0 0;
  box-shadow: 0 3px 4px -1px rgba(0, 0, 0, 0.2);
  margin-top: 30px;
  opacity: 0;
  padding: 20px;
  position: absolute;
  right: 0;
  top: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  visibility: hidden;
  width: 300px;
  z-index: 99;
}
.mini-cart:hover .content-mini-cart {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}
.content-mini-cart h2 {
  font-size: 14px;
  margin: 0;
}
.list-mini-cart-item li {
  border-bottom: 1px solid #e6e6e6;
  display: table;
  padding: 20px 0;
}
.mini-cart-edit {
  display: table-cell;
}
.mini-cart-edit a {
  color: #999;
  display: block;
  margin-right: 5px;
}
.mini-cart-thumb {
  display: table-cell;
  vertical-align: top;
}
.mini-cart-thumb img {
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
  width: 70px;
}
.mini-cart-info {
  display: table-cell;
  padding-left: 20px;
  vertical-align: top;
}
.mini-cart-info .details-qty .cart-item-qty {
  height: 26px;
  max-width: 50px;
  text-align: center;
}
.mini-cart-info .details-qty button {
  background: transparent;
  padding: 0 0 0 5px;
  font-size: 16px;
  color: #666666;
  border-radius: 0;
}
.mini-cart-info h3 {
  font-size: 14px;
  margin: 0 0 5px;
}
.mini-cart-info h3 a {
  color: #666666;
}
.mini-cart-info .price-excluding-tax {
  font-size: inherit;
}
.mini-cart-info span.price {
  font-size: 14px;
  font-weight: normal;
}
.counter.qty .counter_zero {
  display: none;
}
.counter.qty.empty .counter_zero {
  display: inline-block;
}
.info-price del {
  color: #999;
  text-decoration: none;
  position: relative;
}
.info-price del::after {
  position: absolute;
  top: 10px;
  height: 1px;
  content: "";
  background: #999;
  width: 100%;
  left: 0;
  top: ;
}
.qty-product {
  border: 1px solid #e6e6e6;
  font-size: 0;
  margin-top: 10px;
  max-width: 100px;
}
.qty-product .qty-num {
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  cursor: auto;
  width: 58px;
}
.qty-product span {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  height: 30px;
  line-height: 30px;
  padding: 0;
  text-align: center;
  width: 20px;
}
.qty-product span:hover {
  color: #333;
}
.mini-cart-total {
  display: table;
  font-size: 18px;
  text-transform: uppercase;
  width: 100%;
}
.mini-cart-total label {
  color: #999;
  display: table-cell;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}
.mini-cart-total span {
  text-align: right;
}
.mini-cart-total .price-container {
  text-align: right;
}
.mini-cart-button {
  display: table;
  margin-top: 15px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
.mini-cart-view {
  background: #222222 none repeat scroll 0 0;
}
.mini-cart-button a {
  color: #ffffff;
  display: table-cell;
  height: 40px;
  line-height: 40px;
  position: relative;
  overflow: hidden;
}
.mini-cart-button a::before {
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 9;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
  opacity: 0;
}
.mini-cart-button a:hover::before {
  opacity: 1;
}
.mini-cart-checkout {
  background: #ce2129 none repeat scroll 0 0;
}
.list-mini-cart-item {
  margin: 0 0 5px;
}
.mini-cart-info h3 a:hover {
  color: #333;
}
.mini-cart-thumb a {
  display: block;
  overflow: hidden;
}
.mini-cart-thumb a:hover img {
  transform: scale(1.15);
  -webkit-transform: scale(1.15);
}
.title-category-dropdown {
  border-right: 1px solid #2b605a;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font-family: 'dinpro-light';
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  height: 55px;
  line-height: 55px;
  margin: 0;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
}
.title-category-dropdown span {
  padding-left: 22px;
}
.title-category-dropdown:after {
  content: "\e601";
  font-family: 'simple-line-icons';
  color: #ffffff;
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 18px;
}
.menu_left_home1 {
  padding: 0 15px !important;
}
.container-header-sticky .logo-sticky {
  display: none;
}
.logo {
  margin: auto;
}
.cms_home_1 .header-wrapper-sticky.enable-sticky {
  border-bottom: 1px solid #e6e6e6;
}
.header-wrapper-sticky.enable-sticky {
  background: #134e47 none repeat scroll 0 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  -webkit-animation-name: fadeInDown;
  -webkit-animation-duration: 5.0s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
  -webkit-animation-play-state: running;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-name: anim_titles;
  -moz-animation-duration: 5.0s;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: infinite;
  -moz-animation-direction: normal;
  -moz-animation-play-state: running;
  -moz-animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -webkit-animation-duration: 0.7s;
  -moz-animation-duration: 0.7s;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -webkit-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
}
.header-wrapper-sticky.enable-sticky .container-header-sticky {
  display: table;
  height: 80px;
}
.header-wrapper-sticky.enable-sticky .logo-sticky {
  display: table-cell;
  vertical-align: middle;
  float: none;
  width: 25%;
}
.header-wrapper-sticky.enable-sticky .top-menu-sticky {
  float: none;
  display: table-cell;
  vertical-align: middle;
}
.header-wrapper-sticky.enable-sticky .top-menu-sticky .custommenu.navigation li.level0 > .level-top {
  background: transparent;
  color: #222222;
}
.header-wrapper-sticky.enable-sticky .top-menu-sticky .custommenu.navigation li.level0 > .level-top:hover {
  color: #ce2129;
}
.header-wrapper-sticky.enable-sticky .main-nav {
  background: transparent !important;
}
.mini-cart-wrapper.enable-sticky {
  position: fixed;
  top: 12px;
  right: 0;
  z-index: 999999 !important;
  -webkit-animation-name: fadeInDown;
  -webkit-animation-duration: 5.0s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
  -webkit-animation-play-state: running;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-name: anim_titles;
  -moz-animation-duration: 5.0s;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: infinite;
  -moz-animation-direction: normal;
  -moz-animation-play-state: running;
  -moz-animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -webkit-animation-duration: 0.7s;
  -moz-animation-duration: 0.7s;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -webkit-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
}
.mini-cart-wrapper.enable-sticky .header-mini-cart span.total-mini-cart-item-sticky {
  display: block;
}
.mini-cart-wrapper.enable-sticky .header-mini-cart {
  border: 0;
  height: 40px;
  line-height: inherit;
}
.mini-cart-wrapper .total-mini-cart-item-sticky {
  display: none;
  background: #ffffff none repeat scroll 0 0;
  border-radius: 50%;
  color: #333;
  font-size: 10px;
  height: 20px;
  line-height: 20px;
  position: absolute;
  right: 25px;
  text-align: center;
  top: 3px;
  width: 20px;
}
.wp-header {
  display: table;
  height: 100px;
  width: 100%;
}
.wp-header > div {
  display: table-cell;
  vertical-align: middle;
  float: none;
}
.wrap-category-dropdown {
  background: #ffffff none repeat scroll 0 0;
  left: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 99;
}
.list-category-dropdown {
  margin: 0;
  position: relative;
}
.verticalmenu.navigation.side-verticalmenu li.expand-category-link {
  color: #666666;
  display: block;
  font-weight: 500;
  position: relative;
  z-index: 9;
  font-size: 14px;
}
.list-category-dropdown > li.expand-category-link a {
  border: none;
  padding: 13px 0;
}
.list-category-dropdown > li.expand-category-link:hover > a::before {
  position: static;
  background: none;
  width: auto;
  content: "+";
  font-weight: 700;
}
.expand-category-link a:before {
  content: "+";
  font-weight: 700;
  display: inline-block;
  margin-right: 8px;
  font-family: 'FontAwesome';
  font-size: 18px;
}
.list-category-dropdown > li.expand-category-link.expanding a:before,
.list-category-dropdown > li.expand-category-link.expanding:hover a:before {
  content: "+";
  font-weight: 700;
}
.cat-mega-menu {
  background: #ffffff none repeat scroll 0 0;
  left: 100%;
  position: absolute;
  top: 0;
  border: 1px solid #e6e6e6;
  padding: 20px 30px;
  margin-left: 100px;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
  opacity: 0;
  visibility: hidden;
}
.list-category-dropdown > li.has-cat-mega:hover > .cat-mega-menu {
  opacity: 1;
  visibility: visible;
  margin-left: 0;
}
.cat-mega-menu.cat-mega-style1 {
  width: 900px;
}
.cat-mega-menu.cat-mega-style2 {
  width: 750px;
}
.cat-mega-menu.cat-mega-style2 .title-cat-mega-menu {
  margin-bottom: 20px;
}
.cat-mega-menu.cat-mega-style2 .item-category-featured-product {
  margin: 0 -15px;
}
.cat-mega-menu.cat-mega-style2 .item-category-featured-product.first-item {
  border: none;
}
.title-cat-mega-menu {
  border-bottom: 1px solid #e6e6e6;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 10px;
  padding-bottom: 12px;
  padding-left: 15px;
  text-transform: uppercase;
}
.list-cat-mega-menu a {
  color: #666666;
}
.category-dropdown9 .list-cat-mega-menu a:hover {
  color: #3EBB51;
}
.list-cat-mega-menu a:hover {
  color: #ce2129;
}
.list-cat-mega-menu li {
  color: #ccc;
  list-style: circle;
  margin-bottom: 7px;
  padding-left: 5px;
}
.list-cat-mega-menu > ul {
  padding-left: 12px;
}
.category-dropdown {
  position: relative;
}
.list-category-dropdown > li {
  padding: 0 20px;
}
.list-category-dropdown a:hover {
  color: #ce2129;
}
.list-category-dropdown > li > a {
  border-top: 1px solid #e6e6e6;
  display: block;
  padding: 9px 20px 10px 0;
  line-height: 20px;
  position: relative;
}
.list-category-dropdown8 > li > a {
  position: relative;
}
.list-category-dropdown > li > a img {
  bottom: 0;
  margin: auto;
  position: absolute;
  left: 20px;
  top: 0;
}
.list-category-dropdown8 > li > a img {
  bottom: 0;
  margin: auto;
  position: absolute;
  left: 0;
  top: 0;
}
.list-category-dropdown > li:first-child > a {
  border-top: 1px solid #ffffff;
}
.main-nav {
  background: none;
}
.custommenu.navigation li.level0 > .level-top {
  text-decoration: none;
  color: #ffffff;
  display: block;
  font-weight: 500;
  padding: 0 12px;
  line-height: 55px;
  font-size: 14px;
  font-family: 'dinpro-light';
  background: transparent;
}
.custommenu.navigation li.level0 > .level-top:hover {
  color: #ce2129;
}
.toggle-mobile-menu {
  display: none;
  position: relative;
}
.toggle-mobile-menu::after {
  background: #ce2129 none repeat scroll 0 0;
  content: "";
  position: absolute;
  font-family: fontawesome;
  color: #ffffff;
  width: 50px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  top: 0;
  right: 0;
}
.main-nav > ul {
  font-size: 0;
  margin: 0;
  position: relative;
}
.main-nav > ul > li {
  display: inline-block;
  font-size: 14px;
}
.main-nav > ul > li.menu-item-has-children,
.main-nav ul li .subchildmenu > li {
  position: relative;
}
.main-nav > ul li > .sub-menu,
.main-nav > ul li .submenu,
.main-nav ul li .subchildmenu,
.main-nav ul li .subchildmenu li .subchildmenu {
  z-index: 9999;
  background: #ffffff none repeat scroll 0 0;
  border: 1px solid #e6e6e6;
  left: 0;
  margin-top: 30px;
  opacity: 0;
  padding: 0;
  position: absolute;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  visibility: hidden;
  width: 200px;
  border-radius: 3px;
}
.main-nav > ul > li > .sub-menu {
  border-radius: 0 0 3px 3px;
}
.main-nav > ul li:hover > .sub-menu,
.main-nav > ul li:hover .submenu,
.main-nav ul li:hover .subchildmenu,
.main-nav ul li .subchildmenu li:hover .subchildmenu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.main-nav > ul > li .sub-menu > li,
.main-nav > ul li:hover .submenu > li,
.main-nav ul li:hover .subchildmenu > li {
  padding: 0 20px;
}
.main-nav > ul > li .sub-menu > li:first-child > a {
  border: none;
}
.main-nav > ul > li .sub-menu .ui-menu-item > a,
.main-nav > ul > li .sub-menu .menu-item-has-children > a,
.main-nav ul li .subchildmenu > li > a {
  border-top: 1px solid #e6e6e6;
  color: #222222;
  font-family: 'dinpro-light';
  font-weight: 500;
  font-size: 14px;
  display: block;
  padding: 16px 0px;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.main-nav > ul > li .sub-menu > li > a,
.main-nav ul li .subchildmenu li .subchildmenu > li > a {
  border-top: 1px solid #e6e6e6;
  color: #333333;
  font-family: 'dinpro-light';
  font-weight: 400;
  font-size: 14px;
  display: block;
  padding: 16px 0px;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.main-nav ul li .subchildmenu li .subchildmenu > li > a:hover {
  color: #ce2129;
}
.main-nav > ul > li > a {
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  display: block;
  font-weight: 700;
  background: #222222;
  line-height: 60px;
  font-size: 14px;
  font-family: 'dinpro-light';
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.main-nav > ul > li > a:hover {
  background: #ce2129;
}
.main-nav > ul > li:hover > a,
.main-nav > ul li.current-menu-ancestor > a,
.main-nav > ul li.current-menu-item > a {
  color: #ffffff;
}
.main-nav > ul > li .sub-menu > li:hover > a,
.main-nav ul li .subchildmenu > li:hover > a {
  color: #ce2129;
}
.main-nav > ul > li.menu-item-has-children > a::after {
  content: "\e604";
  font-family: 'simple-line-icons';
  margin-left: 5px;
  line-height: 1;
}
.main-nav > ul > li.menu-item-has-children li.menu-item-has-children > a,
.main-nav ul li .subchildmenu > li > a {
  position: relative;
  padding-right: 15px;
}
.main-nav > ul > li.menu-item-has-children li.menu-item-has-children,
.main-nav ul li .subchildmenu > li .subchildmenu > li {
  position: relative;
}
.main-nav > ul > li.menu-item-has-children li.menu-item-has-children > .sub-menu,
.main-nav ul li .subchildmenu > li .subchildmenu {
  left: 100%;
  top: 20px;
}
.main-nav > ul > li.menu-item-has-children li.menu-item-has-children > a::after,
.main-nav ul li .subchildmenu > li > a:after {
  content: "\e606";
  font-family: 'simple-line-icons';
  right: 0px;
  top: 15px;
  position: absolute;
  font-size: 14px;
}
.main-nav ul li .subchildmenu .subchildmenu > li > a:after {
  content: "";
}
.header-container .header-content {
  background: #134e47;
  position: relative;
  z-index: 100;
}
.header-container .header-content .top-bar {
  -webkit-box-shadow: 1px 5px 5px 0px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 1px 5px 5px 0px rgba(0, 0, 0, 0.09);
  box-shadow: 1px 5px 5px 0px rgba(0, 0, 0, 0.09);
  position: relative;
  z-index: 9999;
  background-color: #134e47;
}
.header-container .header-content .top-bar-left {
  float: left;
}
.header-container .header-content .top-bar-left .top-text-left {
  font-family: 'dinpro-bold';
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
}
.header-container .header-content .top-bar-left .top-text-left:before {
  content: "\e096";
  font-family: 'simple-line-icons';
  margin-right: 5px;
}
.header-container .header-content .main-header {
  padding-top: 60px;
  padding-bottom: 50px;
  background-color: #fcfcfc;
  -webkit-box-shadow: 1px 5px 5px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 1px 5px 5px 0px rgba(0, 0, 0, 0);
  box-shadow: 1px 5px 5px 0px rgba(0, 0, 0, 0);
  z-index: 1;
}
.header-container .header-content .main-header .logo {
  display: inline-block;
  float: left;
  margin: 0;
}
.header-container .header-content .main-header .top-menu {
  table-layout: inherit;
  padding-left: 80px;
  display: inline-block;
  float: left;
  width: auto;
}
.header-container .header-content .top-bar-right {
  display: inline-block;
  float: right;
}
.header-container .header-content .top-bar-right .top-bar-menu {
  padding: 0;
  margin: 0;
  display: table;
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #e6e6e6;
  float: left;
}
.header-container .header-content .top-bar-right .top-bar-menu > li {
  display: inline-block;
  float: left;
  list-style: none;
  position: relative;
}
.header-container .header-content .top-bar-right .top-bar-menu > li .minicart-wrapper,
.header-container .header-content .top-bar-right .top-bar-menu > li > a {
  display: inline-block;
  padding: 15px 30px;
  border-color: #e6e6e6;
  color: #666666;
  border-left-width: 1px;
  font-size: 13px;
  font-family: 'dinpro-bold';
}
.header-container .header-content .top-bar-right .top-bar-menu > li .minicart-wrapper .menu-icon,
.header-container .header-content .top-bar-right .top-bar-menu > li > a .menu-icon {
  font-size: 15px;
  color: #444;
  margin-right: 5px;
}
.header-container .header-content .top-bar-right .top-bar-menu > li .minicart-wrapper {
  padding: 59px 40px;
}
.header-container .header-content .top-bar-right .top-bar-menu .sub-menu {
  position: absolute;
  right: 0;
  top: 100%;
  background-color: #ffffff;
  min-width: 225px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  padding: 0;
  margin: 0;
  z-index: 10;
}
.header-container .header-content .top-bar-right .top-bar-menu .sub-menu li {
  list-style: none;
  position: relative;
  padding: 0 20px;
}
.header-container .header-content .top-bar-right .top-bar-menu .sub-menu li a {
  display: inline-block;
  border-bottom: 1px solid #e8e8e8;
  padding: 13px 0px;
  width: 100%;
  font-size: 14px;
  color: #666666;
  text-align: left;
}
.header-container .header-content .top-bar-right .top-bar-menu .sub-menu li a:hover {
  color: #222222;
}
.header-container .header-content .top-bar-right .top-bar-menu .sub-menu li:last-child a {
  border-bottom: 0;
}
.header-container .header-content .top-bar-right .top-bar-menu .sub-menu .switcher .switcher-label {
  font-size: 12px;
  font-family: 'dinpro-bold';
  color: #666666;
  font-style: italic;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 20px;
  margin: 0;
  display: block;
}
.header-container .header-content .top-bar-right .top-bar-menu .sub-menu .switcher .switcher-options {
  padding: 30px 0;
  overflow: hidden;
}
.header-container .header-content .top-bar-right .top-bar-menu .sub-menu .switcher .switcher-options .switcher-trigger {
  display: inline-block;
  margin-right: 20px;
  float: left;
}
.header-container .header-content .top-bar-right .top-bar-menu .sub-menu .switcher .switcher-options .switcher-trigger a:hover .language-EUR:before,
.header-container .header-content .top-bar-right .top-bar-menu .sub-menu .switcher .switcher-options .switcher-trigger a:hover .language-USD:before,
.header-container .header-content .top-bar-right .top-bar-menu .sub-menu .switcher .switcher-options .switcher-trigger a:hover .language-GBP:before {
  background: #222222;
}
.header-container .header-content .top-bar-right .top-bar-menu .sub-menu .switcher .switcher-options .switcher-trigger a .language-EUR:before,
.header-container .header-content .top-bar-right .top-bar-menu .sub-menu .switcher .switcher-options .switcher-trigger a .language-USD:before,
.header-container .header-content .top-bar-right .top-bar-menu .sub-menu .switcher .switcher-options .switcher-trigger a .language-GBP:before {
  content: "\f154";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 39px;
  height: 39px;
  background-color: #aaa;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  line-height: 39px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.header-container .header-content .top-bar-right .top-bar-menu .sub-menu .switcher .switcher-options .switcher-trigger a .language-EUR:before {
  content: "\f153";
}
.header-container .header-content .top-bar-right .top-bar-menu .sub-menu .switcher .switcher-options .switcher-trigger a .language-USD:before {
  content: "\f155";
}
.header-container .header-content .top-bar-right .top-bar-menu .sub-menu .switcher .switcher-options .switcher-trigger a span {
  display: none;
}
.header-container .header-content .top-bar-right .top-bar-menu .sub-menu.box-setting-content {
  min-width: 285px;
  padding: 40px 30px 30px 30px;
}
.header-container .header-content .minicart-items-wrapper {
  margin: 0;
  padding: 0;
  padding-top: 15px;
}
.header-container .header-content .minicart-wrapper {
  width: 50px;
  height: 50px;
  margin-right: 11px;
}
.header-container .header-content .minicart-wrapper:hover .header-mini-cart::before {
  color: #ce2129;
}
.header-container .header-content .minicart-wrapper .block-minicart {
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  border: 0;
  margin-top: 0;
  border-top: 2px solid #ce2129;
  border-radius: 0 0 3px 3px;
}
.header-container .header-content .minicart-wrapper .block-minicart:after,
.header-container .header-content .minicart-wrapper .block-minicart:before {
  display: none;
}
.header-container .header-content .minicart-wrapper .block-minicart .items-total {
  float: none;
  margin: 0 0 20px;
}
.header-container .header-content .minicart-wrapper .block-minicart .items-total .title_mycart {
  font-family: 'dinpro-light';
  font-weight: 500;
  font-size: 18px;
  color: #222222;
}
.header-container .header-content .minicart-wrapper .block-minicart .items-total span {
  font-size: 12px;
  font-weight: 400;
  color: #222222;
  vertical-align: middle;
}
.header-container .header-content .minicart-wrapper .block-minicart .subtotal {
  clear: both;
  margin: 25px 0;
  margin-left: 0;
  margin-right: 0;
}
.header-container .header-content .minicart-wrapper .block-minicart .subtotal .label:after {
  display: none;
}
.header-container .header-content .minicart-wrapper .block-minicart .subtotal .label span {
  float: left;
  line-height: 18px;
  font-family: 'dinpro-light';
  font-weight: 500;
  font-size: 14px;
  color: #222222;
}
.header-container .header-content .minicart-wrapper .block-minicart .subtotal .price-container .price {
  font-family: 'dinpro-light';
  font-size: 14px;
  color: #ce2129;
  font-weight: 500;
  line-height: 18px;
}
.header-container .header-content .minicart-wrapper .block-minicart .block-content > .actions > .primary {
  margin: 0;
}
.header-container .header-content .minicart-wrapper .block-minicart .block-content > .actions > .primary span {
  text-transform: uppercase;
}
.header-container .header-content .minicart-wrapper .product {
  position: relative;
}
.header-container .header-content .minicart-wrapper .product .actions {
  margin: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  right: 0;
}
.header-container .header-content .minicart-wrapper .minicart-items .product-item-name {
  max-width: 210px;
}
.header-container .header-content .minicart-wrapper .minicart-items .item-qty {
  height: 32px;
  border: none;
}
.header-container .header-content .minicart-wrapper .minicart-items .block-content > .actions span {
  text-transform: uppercase;
}
.header-container .header-content .minicart-wrapper .minicart-items .price-excluding-tax {
  font-size: 14px;
}
.header-container .header-content .minicart-wrapper .minicart-items .product-item-details {
  position: relative;
}
.header-container .header-content .minicart-wrapper .minicart-items .product-item-details .details-qty {
  line-height: 1;
  margin-top: 10px;
}
.header-container .header-content .minicart-wrapper .minicart-items .product-item-details .price {
  font-family: 'dinpro-light';
  font-size: 14px;
  color: #ce2129;
  font-weight: 400;
}
.header-container .header-content .minicart-wrapper .minicart-items .product-item-details .content {
  padding: 0;
}
.header-container .header-content .minicart-wrapper .minicart-items .product-item-pricing label {
  width: auto;
}
.header-container .header-content .minicart-wrapper .icon-cart-header .icon {
  font-size: 18px;
  color: #f0f0f0;
  line-height: 60px;
}
.header-container .header-content .minicart-wrapper .action.showcart:before {
  display: none;
}
.header-container .header-content .minicart-wrapper .action.showcart .counter.qty {
  position: absolute;
  min-width: 18px;
  height: 18px;
  border-radius: 100%;
  background: #222222;
  line-height: 18px;
  padding: 0;
  margin: 0;
  text-align: center;
  top: 25px;
  right: -8px;
  font-size: 10px;
  color: #ffffff;
  display: block;
}
.header-container .content {
  padding: 30px 0;
  min-height: 50px;
  position: relative;
}
.minicart-wrapper .product .actions > .primary,
.minicart-wrapper .product .actions > .secondary {
  display: block;
}
.header-container .header-content .mini-cart-wrapper.enable-sticky .minicart-wrapper .block-minicart {
  right: 0;
}
.header-container .header-content .header {
  background: #134e47;
}
/************************************************Popup*********************************************************/
#mask {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9000;
  background-color: #000;
  display: none;
}
#boxes .window {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  z-index: 9999;
}
.window-popup {
  background: #f4f4f4 none repeat scroll 0 0;
  border: 10px solid #ffffff;
  padding: 30px;
  width: 700px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
}
.window-popup .close-popup {
  background: #ce2129 none repeat scroll 0 0;
  color: #ffffff;
  display: block;
  height: 30px;
  line-height: 30px;
  position: absolute;
  right: 15px;
  text-align: center;
  top: 15px;
  width: 30px;
  z-index: 999;
}
.image-popup {
  bottom: 5px;
  position: absolute;
  right: 30px;
}
/*******************************************************************************************************/
.cms-index-index .header-control {
  margin-bottom: 0;
}
.header-control {
  background: #134e47;
  min-height: 55px;
}
.breadcrumbs {
  padding: 0 0 12px 0;
  margin-top: 30px;
  max-width: 1920px;
  overflow: hidden;
}
div.logo {
  max-width: 100%;
  margin: 0;
}
.logo img {
  padding-bottom: 0;
  max-height: 62px;
}
.search-by-cateogry .chosen-container-single .chosen-single {
  border: 0;
  border-right: 0;
  padding: 4px 20px;
  border-radius: 30px 0 0 30px;
}
.search-by-cateogry .chosen-container-single .chosen-single:before {
  content: "";
  background: #d8dadc;
  height: 20px;
  width: 1px;
  font-size: 1.2rem;
  position: absolute;
  right: -5px;
  top: 14px;
}
.search-by-cateogry .chosen-container-single .chosen-single span {
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 400;
  color: #222222;
}
body .chosen-container-single .chosen-single div b:before {
  content: "\e604";
  font-family: 'simple-line-icons';
  font-size: 13px;
}
.banner-top-home .fadeInUp {
  margin-left: 3px;
  margin-right: -10px;
  padding-right: 8px;
}
.banner-top-home .fadeInRight {
  padding-left: 13px;
  padding-right: 10px;
}
.banner-top-home .block-banner-text {
  display: inline-block;
}
.section-special-look {
  text-align: center;
}
.bs-banner.block-banner-text {
  position: relative;
  overflow: hidden;
}
.bs-banner.block-banner-text:hover .banner-hover:before {
  right: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.bs-banner.block-banner-text:hover .banner-hover:after {
  top: 50%;
  bottom: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.bs-banner.block-banner-text .banner-hover:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-transition: all .5s linear;
  -moz-transition: all .5s linear;
  -ms-transition: all .5s linear;
  -o-transition: all .5s linear;
  transition: all .5s linear;
}
.bs-banner.block-banner-text .banner-hover:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-transition: all .5s linear;
  -moz-transition: all .5s linear;
  -ms-transition: all .5s linear;
  -o-transition: all .5s linear;
  transition: all .5s linear;
}
.bs-banner.block-banner-text.style4 .content {
  padding: 0 45px;
}
.bs-banner.block-banner-text.style4 .content .title {
  font-size: 24px;
  color: #ffffff;
  font-family: inherit;
  font-style: normal;
  font-family: 'dinpro-bold';
  font-weight: normal;
  position: relative;
}
.bs-banner.block-banner-text.style4 .content .title:after {
  display: block;
  line-height: 31px;
  font-family: 'FontAwesome';
  content: "\f106\f106\f106\f106\f106\f106\f106\f106";
  margin-top: 3px;
  font-size: 12px;
}
.bs-banner.block-banner-text.style4 .content .subtitle {
  font-size: 12px;
  color: #ffffff;
  font-family: 'dinpro-bold';
  font-style: italic;
  text-transform: none;
  line-height: 24px;
  font-weight: normal;
}
.bs-banner.block-banner-text.style4 .content .link-more {
  width: auto;
  height: auto;
  border: 2px solid #ffffff;
  font-size: 10px;
  padding: 13px 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  color: #ffffff;
  text-transform: uppercase;
  line-height: normal;
  margin-top: 85px;
  display: inline-block;
}
.bs-banner.block-banner-text.style5 .content {
  right: 110px;
  transform: translateY(-50%);
  top: 50%;
  left: auto;
}
.bs-banner.block-banner-text.style5 .content .link-more {
  width: auto;
  height: auto;
  border: none;
  line-height: normal;
  font-family: 'dinpro-bold';
  font-style: italic;
  font-size: 14px;
  text-decoration: underline;
  color: #aaa;
  margin-top: 35px;
}
.bs-banner.block-banner-text.style5 .content.left-algin {
  right: auto;
  left: 60px;
}
.bs-banner.block-banner-text.style2 .content .title {
  font-size: 14px;
  color: #b6b6b6;
  text-transform: uppercase;
  font-style: normal;
  margin-bottom: 5px;
  margin-top: 10px;
}
.bs-banner.block-banner-text.style2 .content .subtitle {
  font-size: 12px;
  color: #888888;
  font-style: italic;
  font-family: 'dinpro-bold';
  font-weight: 300;
  text-transform: none;
}
.bs-banner.block-banner-text.style2 .content .flash {
  font-size: 10px;
  text-transform: uppercase;
  padding: 0 15px;
  display: inline-block;
  background-color: #e9c77b;
  color: #ffffff;
  margin-top: 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.bs-banner.block-banner-text.style3 .content {
  right: 40px;
  transform: translateY(-50%);
  top: 50%;
}
.bs-banner.block-banner-text.style3 .content .title {
  color: #ffffff;
  font-family: inherit;
  font-style: normal;
}
.bs-banner.block-banner-text.style3 .content .subtitle {
  color: #ffffff;
}
.bs-banner.block-banner-text.style3 .content .link-more {
  border: none;
  width: auto;
  height: auto;
  font-size: 14px;
  color: #ffffff;
  text-decoration: underline;
  font-family: 'dinpro-bold';
  font-style: italic;
  font-weight: normal;
  margin-top: 55px;
}
.bs-banner.block-banner-text.bottom .content {
  left: 0px;
  right: 0px;
  bottom: 100px;
  top: auto;
}
.bs-banner.block-banner-text.right .content {
  left: 50%;
  transform: translateY(-50%);
  top: 50%;
}
.bs-banner.block-banner-text.left .content {
  right: 50%;
  transform: translateY(-50%);
  top: 50%;
  left: auto;
}
.bs-banner.block-banner-text .content {
  position: absolute;
  left: 20px;
  top: 34px;
}
.bs-banner.block-banner-text .content .title {
  font-size: 20px;
  color: #222222;
  font-weight: 700;
  margin: 0;
}
.bs-banner.block-banner-text .content .subtitle {
  margin: 0;
  font-size: 13px;
  margin-top: 11px;
  max-width: 180px;
  line-height: 16px;
}
.bs-banner.block-banner-text .content .link-more {
  display: inline-block;
  margin-top: 36px;
  color: #5d8ebd;
}
.bs-banner.block-banner-text .content .link-more em {
  margin-left: 5px;
}
.bs-banner.block-banner-text.white .content .title,
.bs-banner.block-banner-text.white .content .subtitle,
.bs-banner.block-banner-text.white .content .link-more {
  color: #ffffff;
}
.bs-banner.block-banner-text.white .content .link-more {
  border-color: #ffffff;
}
.section-bestseller .tab_container {
  float: left;
  width: 100%;
}
.section-bestseller .tab_container .owl-item.first-active .item-product {
  border-left: 1px solid #e6e6e6;
}
.section-bestseller .tab_container .item-product {
  border: 1px solid #e6e6e6;
  border-left: 1px solid transparent;
  padding: 0;
}
.section-bestseller .tab_container .item-product:last-child {
  margin-top: -1px;
}
.section-bestseller .tab_container .item-product .content-item-product .product-info {
  padding-left: 11px;
  padding-bottom: 15px;
}
.section-bestseller .tab_container .item-product .product-reviews-summary {
  margin: 0 0 10px;
}
.section-bestseller .tab_container .item-product:hover .content-item-product {
  width: 100%;
  background: #ffffff;
}
.section-bestseller .list-tab-product .box-title .title-tab-product h2 {
  display: none;
}
.section-bestseller .list-tab-product .box-title .tabs li {
  display: inline-block;
  padding: 17px 30px;
  font-size: 16px;
  font-weight: 700;
  color: #222222;
  font-family: 'dinpro-light';
  background: #f4f4f4;
  margin-right: 3px;
  border-radius: 3px 3px 0 0;
}
.section-bestseller .list-tab-product .box-title .tabs li.active {
  background: #ce2129;
  color: #ffffff;
}
.section-bestseller .list-tab-product .box-title .tabs li:hover {
  background: #ce2129;
  color: #ffffff;
}
.product-media .gallery-placeholder._block-content-loading .bxslider .owl-controls.clickable .owl-buttons {
  display: none;
}
.upsell .owl-theme .owl-controls .owl-page span,
.related .owl-theme .owl-controls .owl-page span {
  display: none;
}
.the_blog .product-item {
  margin: 0;
}
.list-tab-product {
  margin-top: 86px;
}
.columns .column.main {
  padding-bottom: 0;
}
.hot-deal {
  margin-bottom: 60px;
}
.hot-deal canvas {
  display: none;
}
.hot-deal .title-product {
  margin-bottom: 6px;
}
.hot-deal .countdown_block {
  position: absolute;
  top: -60px;
  right: 0;
}
.hot-deal .countdown_block .title_countdown {
  display: inline-block;
  line-height: 50px;
  margin-right: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #222;
}
.hot-deal .countdown_block .super-deal-countdown {
  display: inline-block;
  padding: 13px 20px;
  background: #ce2129;
  border-radius: 4px;
}
.hot-deal .countdown_block .super-deal-countdown .time_circles > div {
  display: inline-block;
  width: auto !important;
  padding: 5px;
  min-width: 63px;
  text-align: center;
  color: #fff;
}
.hot-deal .countdown_block .super-deal-countdown .time_circles > div:after {
  content: ":";
  display: inline-block;
  margin-left: 12px;
}
.hot-deal .countdown_block .super-deal-countdown .time_circles > div:last-child:after {
  content: "";
  margin: 0;
}
.hot-deal .countdown_block .super-deal-countdown .time_circles > div span.number {
  margin-right: 6px;
  min-width: 20px;
  display: inline-block;
  font-weight: 500;
}
.hot-deal .countdown_block .super-deal-countdown .time_circles > div span.text {
  text-transform: uppercase;
  font-size: 10px;
  line-height: 14px;
  color: #ffe8c9;
}
.hot-deal .hot-deal-tab-slider.hot-deal-tab-slider-customcss {
  padding: 30px 15px;
  position: relative;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
}
.box-cat {
  margin-top: 75px;
}
.box-cat .rokan-product-heading {
  display: none;
}
.box-cat ul.tabs {
  display: none;
}
.group-product .rokan-product-heading h2 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'dinpro-light';
  width: 20%;
  line-height: 26px;
  padding: 10px 27px;
  margin-bottom: 0;
  border-radius: 3px 3px 0 0;
  text-transform: uppercase;
  background: #ce2129;
}
.group-product .rokan-product-heading h2:before {
  content: "\f030";
  font-family: FontAwesome;
  font-size: 16px;
  color: #ffffff;
  padding-right: 18px;
}
.list-service .box-icon .icon {
  display: inline-block;
  margin-right: 20px;
}
.list-service .box-icon .icon .fa {
  font-size: 27px;
  margin-top: 6px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.list-service .box-icon .box-content {
  display: inline-block;
}
.list-service .box-icon .box-content h3 {
  font-size: 17px;
  color: #222222;
  margin-bottom: 7px;
  text-transform: capitalize;
  font-weight: normal;
}
.list-service .box-icon:hover .icon .fa {
  color: #222222;
}
.section-services {
  padding: 132px 0 0 0;
  background: url(../images/bkg_services.jpg);
  margin-top: 60px;
}
.block-social {
  background: url(../images/bkg_social.jpg);
  min-height: 320px;
  position: relative;
  background-position: center;
}
.block-social:before {
  content: '';
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}
.block-social label {
  padding: 10px 0;
  padding-right: 25px;
  font-family: 'dinpro-bold';
  margin: 0;
  letter-spacing: 2px;
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
}
.section-featured-categories .wrap-category .owl-item .wp-item .item {
  margin-top: 15px;
}
.section-featured-categories .wrap-category .owl-item .wp-item .item .popcat-box .category-info h3 {
  font-family: 'dinpro-light';
  font-weight: 700;
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 24px;
}
.section-featured-categories .wrap-category .owl-item .wp-item .item .popcat-box .category-info h3 a {
  color: #222222;
  font-weight: 500;
  font-size: 16px;
}
.section-featured-categories .wrap-category .owl-item .wp-item .item .popcat-box .category-info h3 a:hover {
  color: #ce2129;
}
.section-featured-categories .wrap-category .owl-item .wp-item .item .popcat-box .category-info .sub-categories {
  padding-left: 0;
}
.section-featured-categories .wrap-category .owl-item .wp-item .item .popcat-box .category-info .sub-categories li {
  margin-bottom: 10px;
}
.section-featured-categories .wrap-category .owl-item .wp-item .item .popcat-box .category-info .sub-categories li a {
  font-size: 14px;
  font-weight: 400;
  color: #222222;
  font-family: 'dinpro-light';
}
.section-featured-categories .wrap-category .owl-item .wp-item .item .popcat-box .category-info .sub-categories li a:hover {
  color: #ce2129;
}
.section-featured-categories .wrap-category .owl-item .wp-item .item .popcat-box .category-info .link-all a {
  font-size: 16px;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 400;
  color: #71737a;
  font-family: 'dinpro-light';
}
.section-featured-categories .wrap-category .owl-item:last-child .item {
  border-right: none;
}
.section-brands .container .row {
  margin: 0;
}
.section-brands .block-title {
  display: none;
}
.section-brands .owl-pagination {
  display: none;
}
.section-brands .owl-right,
.section-brands .owl-left {
  display: none;
}
.section-brands .brandowl-play {
  position: relative;
  text-align: center;
}
.section-brands .brandowl-play img {
  opacity: 0.7;
  -webkit-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
.section-brands .brandowl-play img:hover {
  opacity: 1;
}
.product_row {
  position: relative;
}
.first-active .item-product:before {
  display: none;
}
.content-tab-product {
  overflow: hidden;
  margin-top: -6px;
}
.content-tab-product .tab-pane {
  display: none;
}
.content-tab-product .tab-pane.active {
  display: block;
}
.title-product a {
  font-size: 14px;
  font-weight: 400;
  color: #222222;
  font-family: 'dinpro-light';
  line-height: 18px;
  -webkit-transition: all .35s ease;
  -o-transition: all .35s ease;
  transition: all .35s ease;
}
.title-product a:hover {
  color: #ce2129;
}
.owl-carousel .item-product {
  padding: 0 15px;
}
.addcart-link button,
.addcart-link action.tocart.primary {
  font-family: 'dinpro-light';
  font-size: 12px;
  font-weight: 500;
  background-color: #ce2129;
  line-height: 38px;
  width: 100%;
  color: #ffffff;
  border-radius: 0;
  text-transform: initial;
  z-index: 1;
  text-transform: uppercase;
  border-color: #e9edf0;
}
.addcart-link button:hover,
.addcart-link action.tocart.primary:hover {
  background: #ce2129;
  color: #ffffff;
}
.product-image-photo {
  width: 100%;
}
.price-box .minimal-price {
  margin-bottom: 0;
  line-height: 1;
}
.price-box .minimal-price .price-label {
  display: none;
}
.percent-saleoff {
  background: #ed321e none repeat scroll 0 0;
  color: #ffffff;
  height: 30px;
  left: 10px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: -7px;
  width: 46px;
  z-index: 3;
}
.percent-saleoff label {
  display: block;
  font-size: 14px;
  margin: 2px 0 -4px;
  font-weight: bold;
}
.percent-saleoff span {
  display: block;
  font-size: 12px;
  position: relative;
  z-index: 99;
}
.percent-saleoff::before {
  background: rgba(0, 0, 0, 0) url("../images/home1/shape.png") no-repeat scroll center top;
  content: "";
  display: block;
  height: 10px;
  left: -4px;
  position: absolute;
  top: 0px;
  width: 54px;
  z-index: 999;
}
.percent-saleoff::after {
  width: 0;
  height: 0;
  border-left: 23px solid transparent;
  border-right: 23px solid transparent;
  border-top: 12px solid #e6e6e6;
  position: absolute;
  bottom: -12px;
  content: "";
  left: 0;
}
.product-sold .ruler-sold {
  width: 100%;
  height: 7px;
  background: #ebebeb;
  border-radius: 3px;
  margin-top: 25px;
}
.product-sold .ruler-sold-count {
  background: #cc1414;
  height: 7px;
  border-radius: 3px;
}
.product-sold .count-sold {
  margin-top: 15px;
}
.amz-testimonial-container .persion .avatar {
  float: left;
}
.amz-testimonial-container .persion .name-position {
  vertical-align: middle;
  padding-left: 20px;
  display: inline-block;
  margin-top: 20px;
}
.amz-testimonial-container .persion .name-position .name {
  color: #ddd;
  font-size: 15px;
  font-family: 'dinpro-bold';
}
.amz-testimonial-container .persion .name-position .time {
  font-size: 11px;
  font-style: italic;
  color: #888;
  position: relative;
  margin-top: 3px;
}
.amz-testimonial-container .persion .name-position .time:before {
  content: "\f073";
  font-family: FontAwesome;
  color: #888888;
  font-size: 11px;
  margin-right: 6px;
  display: inline-block;
  font-style: normal;
}
.amz-testimonial-container .quote {
  position: relative;
  margin-top: 30px;
  display: inline-block;
  clear: both;
}
.amz-testimonial-container .quote p {
  font-size: 12.5px;
  line-height: 1.5;
  position: relative;
  color: #aaaaaa;
  margin: 0;
  text-indent: 25px;
}
.amz-testimonial-container .quote p:before,
.amz-testimonial-container .quote p:after {
  content: "";
  display: inline-block;
  font-size: 30px;
  color: #dddddd;
  font-family: 'dinpro-bold';
  position: absolute;
  line-height: 1;
}
.amz-testimonial-container .quote p:before {
  content: "“";
  left: -25px;
  top: -10px;
}
.amz-testimonial-container .quote p:after {
  content: "”";
  right: 0px;
  bottom: -12px;
}
.section-bestseller .wrapper-bestseller .rokan-bestseller .rokan-bestseller-heading {
  margin: 0;
  padding: 0;
  background: #585e6a;
  display: inline-block;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.section-bestseller .wrapper-bestseller .rokan-bestseller .rokan-bestseller-heading h2 {
  font-size: 18px;
  color: #ffffff;
  margin: 0;
  padding: 19px 25px;
}
.section-bestseller .wrapper-bestseller .rokan-bestseller .rokan-bestseller-heading:before {
  display: none;
}
.section-bestseller .wrapper-bestseller .rokan-bestseller .content-bestseller {
  padding: 20px 20px 38px;
  border: 1px solid #f1f1f1;
}
.section-bestseller .categorytab-container {
  position: relative;
}
.section-bestseller .categorytab-container .computer-laptop {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'dinpro-light';
  width: 25%;
  line-height: 26px;
  padding: 10px 27px;
  margin-bottom: 0;
  border-radius: 3px 3px 0 0;
  text-transform: uppercase;
  background: #ce2129;
}
.section-bestseller .categorytab-container .computer-laptop:before {
  content: "\f109";
  font-family: FontAwesome;
  font-size: 16px;
  color: #ffffff;
  padding-right: 10px;
}
.section-bestseller .categorytab-container .computer-laptop:hover {
  opacity: 0.7;
}
.section-bestseller .categorytab-container .rokan-product-heading {
  display: none;
}
.section-bestseller .categorytab-container .vc_tta-tabs-container {
  position: absolute;
  top: 0;
  left: 42%;
}
.section-bestseller .categorytab-container .vc_tta-tabs-container .tabs li {
  display: inline-block;
  list-style-type: none;
  margin-top: 10px;
  margin-left: 38px;
  font-size: 16px;
  font-weight: 400;
  color: #2f3034;
  font-family: 'dinpro-light';
}
.section-bestseller .categorytab-container .vc_tta-tabs-container .tabs li:hover {
  color: #ce2129;
}
.section-bestseller .categorytab-container .item-product .info-price .price-box p.price-from,
.section-bestseller .categorytab-container .item-product .info-price .price-box p.price-to {
  line-height: 12px;
}
.section-bestseller .categorytab-container .item-product .info-price .price-box p.price-from .price,
.section-bestseller .categorytab-container .item-product .info-price .price-box p.price-to .price {
  font-size: 12px;
}
.section-bestseller .categorytab-container .info-price .minimal-price {
  margin: 0;
  line-height: unset;
}
.box-blog {
  margin-bottom: 100px;
  position: relative;
}
.box-blog:before {
  content: "";
  height: 6px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.box-blog .item-blog {
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.12);
  margin: 2px;
}
.box-blog .item-blog .blog-info {
  padding: 0 20px;
}
.box-blog .item-blog .blog-button {
  border-top: 1px solid #f1f1f1;
  color: #666666;
  font-size: 12px;
  padding: 13px 20px;
  overflow: hidden;
  margin-top: 25px;
}
.box-blog .item-blog .blog-button .in_category {
  line-height: 34px;
}
.box-blog .item-blog .blog-button .readmore {
  border: 1px solid #e6e6e6;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  background: #ffffff;
  display: inline-block;
  border-radius: 100%;
  float: right;
  padding: 6px 25px;
  position: relative;
}
.box-blog .item-blog .blog-button .readmore:hover {
  background: #222222;
  color: #ffffff;
}
.box-blog .blog-image {
  position: relative;
}
.box-blog .blog-image a:hover:before {
  opacity: 0.68;
  filter: alpha(opacity=10);
  visibility: visible;
  z-index: 99;
}
.box-blog .blog-image a:hover:after {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 999;
}
.box-blog .blog-image a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  transition: all 0.2s;
}
.box-blog .blog-image a:after {
  content: '+';
  position: absolute;
  top: 50%;
  left: 50%;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
  font-size: 30px;
  font-weight: 100;
  z-index: 1;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.box-blog .block-content .blog-title {
  margin: 12px 0 5px;
}
.box-blog .block-content .blog-title a {
  color: #444444;
  font-size: 14px;
  line-height: 1.5;
  display: inline-block;
}
.box-blog .block-content .blog-title a:hover {
  color: #222222;
}
.box-blog .block-content .time-conment .fa {
  color: #888;
  font-size: 15px;
  margin-right: 5px;
  display: none;
}
.box-blog .block-content .time-conment .date-time {
  color: #aaa;
  font-size: 12px;
  margin-bottom: 10px;
  position: relative;
}
.box-blog .block-content .short-des {
  margin-top: 15px;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}
.product.attribute.sku .value {
  display: inline-block;
  color: #222222;
}
.sidebar .block.block-recent-posts .block-content .item {
  margin-bottom: 10px;
  line-height: 24px;
}
.post-view blockquote,
.post-list blockquote {
  border-color: #e6e6e6;
  border-width: 3px;
  margin: 20px 0;
}
.post-view .post-holder,
.post-list .post-holder {
  margin-bottom: 30px;
}
.post-view .post-header,
.post-list .post-header {
  margin-top: 10px;
  margin-bottom: -15px;
}
.post-view .post-info,
.post-list .post-info,
.post-view .post-content,
.post-list .post-content {
  margin-top: 20px;
}
.post-view .post-info .post-posed-date,
.post-list .post-info .post-posed-date,
.post-view .post-content .post-posed-date,
.post-list .post-content .post-posed-date {
  display: inline-block;
  color: #2b2b2b;
  text-transform: uppercase;
  font-size: 12px;
}
.post-view .post-info .dash,
.post-list .post-info .dash,
.post-view .post-content .dash,
.post-list .post-content .dash {
  display: inline-block;
}
.post-view .post-info .post-categories,
.post-list .post-info .post-categories,
.post-view .post-content .post-categories,
.post-list .post-content .post-categories {
  text-transform: uppercase;
  display: inline-block;
}
.post-view .post-info .post-categories .label,
.post-list .post-info .post-categories .label,
.post-view .post-content .post-categories .label,
.post-list .post-content .post-categories .label {
  color: #2b2b2b;
  font-size: 12px;
  font-weight: normal;
}
.post-view .post-info .post-categories a,
.post-list .post-info .post-categories a,
.post-view .post-content .post-categories a,
.post-list .post-content .post-categories a {
  color: #222222;
  font-size: 12px;
  display: inline-block;
  margin-top: 2px;
}
.post-view .post-info .post-title,
.post-list .post-info .post-title,
.post-view .post-content .post-title,
.post-list .post-content .post-title {
  margin-top: 10px;
}
.post-view .post-info .post-title a,
.post-list .post-info .post-title a,
.post-view .post-content .post-title a,
.post-list .post-content .post-title a {
  color: #222222;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  display: inline-block;
  font-family: 'dinpro-light';
}
.post-view .post-info .post-title a:hover,
.post-list .post-info .post-title a:hover,
.post-view .post-content .post-title a:hover,
.post-list .post-content .post-title a:hover {
  color: #ce2129;
}
.post-view .post-info .post-description,
.post-list .post-info .post-description,
.post-view .post-content .post-description,
.post-list .post-content .post-description {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}
.post-view .post-info .post-description p,
.post-list .post-info .post-description p,
.post-view .post-content .post-description p,
.post-list .post-content .post-description p {
  line-height: 24px;
  margin-bottom: 22px;
}
.widget.block-search {
  float: left;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0 !important;
}
.widget .block-title strong {
  font-size: 16px;
  color: #222222;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  padding-bottom: 18px;
  margin-bottom: 25px;
  font-family: 'dinpro-bold';
  display: block;
}
.widget .block-title strong:after {
  content: "";
  width: 25px;
  border-top: 3px solid #222222;
  position: absolute;
  left: 0;
  bottom: 0;
}
.category-view .category-image {
  max-height: 405px;
  overflow: hidden;
  margin-top: -30px;
}
.breadcrumbs .item:not(:last-child):after {
  vertical-align: bottom;
}
.page-products .page-title-wrapper {
  display: none;
}
.slider_left-slider {
  margin-bottom: 40px;
}
.block-compare .counter,
.block-wishlist .counter {
  font-size: 14px;
}
.block.filter {
  margin-top: 10px;
}
.block-compare .action.compare {
  border: 1px solid #e6e6e6;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  background: #ffffff;
  display: inline-block;
  border-radius: 100%;
  text-transform: none;
  border: 0;
  line-height: 21px;
  position: relative;
}
.block-compare .action.compare:hover {
  border: 0;
  background: #222222;
}
.block-compare .action.compare:hover:before {
  width: 100%;
}
.breadcrumbs ul {
  line-height: 19px;
}
.breadcrumbs ul li {
  font-size: 13px;
}
.breadcrumbs ul li:after {
  color: #ce2129;
}
.breadcrumbs ul li a {
  color: #999;
}
.breadcrumbs ul li a:hover {
  color: #ce2129;
}
.breadcrumbs ul li strong {
  color: #ce2129;
}
.abs-shopping-cart-items .action.update:before,
.block-cart-failed .action.update:before,
.cart-container .form-cart .action.update:before {
  width: auto;
}
button:active,
.cart.table-wrapper .actions-toolbar > .action:active,
.cart.table-wrapper .action-gift:active {
  box-shadow: none;
}
.cart.table-wrapper {
  font-size: 16px;
}
.cart.table-wrapper .product-item-details {
  text-align: left;
}
.cart.table-wrapper .cart.items .col {
  border-bottom: 0px solid #e6e6e6;
  text-align: center;
  padding: 12px 0;
  border-top: 0;
}
.cart.table-wrapper .cart.items .col span {
  color: #222222;
  font-family: 'dinpro-light';
  font-weight: 400;
  vertical-align: middle;
}
.cart.table-wrapper .cart.items .col .cart-price {
  font-size: 15px;
}
.cart.table-wrapper .cart.items .col .product-item-photo {
  padding-left: 20px;
}
.cart.table-wrapper .cart.items .col .product-item-name {
  margin-top: 10px;
  font-family: 'dinpro-bold';
}
.cart.table-wrapper #shopping-cart-table {
  width: 100%;
}
.cart-summary .title {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: 'dinpro-bold';
  margin-top: 0;
  color: #222222;
}
.checkout-cart-index .page-title-wrapper {
  margin: 0 auto;
}
.checkout-container .opc-progress-bar {
  margin-bottom: 30px;
}
.checkout-container .opc-progress-bar .opc-progress-bar-item.active span {
  font-size: 20px;
}
.checkout-container .opc-progress-bar .opc-progress-bar-item span {
  font-size: 18px;
}
.checkout-container .opc-progress-bar .opc-progress-bar-item span:after {
  font-size: 20px;
  line-height: 26px;
}
.checkout-container .table-checkout-shipping-method input[type="radio"] {
  margin-left: 10px;
}
.opc-block-summary {
  background: #fafafa;
}
.account .fieldset .legend {
  margin-left: 0;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 500;
}
.authentication-wrapper {
  margin-top: 10px;
}
.authentication-wrapper a {
  color: #222222;
}
.form-newsletter-manage .fieldset > .field:before {
  display: none;
}
.block.upsell {
  margin-bottom: 0;
}
.block.upsell:before {
  display: table;
  content: " ";
}
.block.upsell:after {
  display: table;
  content: " ";
  clear: both;
}
.block.related:before {
  display: table;
  content: " ";
}
.block.related:after {
  display: table;
  content: " ";
  clear: both;
}
.block.related .rokan-product-heading {
  margin-top: 0;
}
.block.related .rokan-product-heading h2 {
  text-align: left;
}
.block.related .rokan-product-heading:after {
  background-position: left center;
}
.sidebar .product-items .product-item {
  padding: 0;
  margin-bottom: 30px;
}
/*style footer-tags */
.form_search {
  background-color: #222222;
}
.form-newletter {
  position: relative;
}
.form-newletter .search_input {
  line-height: 100px;
  width: 100%;
  height: 50px !important;
  margin: 25px 0;
  padding-left: 25px;
  border-radius: 4px !important;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #71737a;
}
.form-newletter .subscribe {
  position: absolute;
  top: 25px;
  right: 0;
  padding: 7px 45px;
  line-height: 36px;
  background: #ce2129;
  text-transform: uppercase;
  border: none;
  font-family: 'dinpro-light';
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}
.form-newletter .subscribe:hover {
  opacity: 0.7;
}
.text_form {
  text-transform: uppercase;
  line-height: 100px;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'dinpro-light';
}
/* end style form-search */
.map_marker {
  padding-left: 30px;
  position: relative;
}
.map_marker:before {
  position: absolute;
  top: 0;
  left: 6px;
  content: "\f041";
  font-family: FontAwesome;
  font-size: 20px;
  color: #71737a;
  padding-right: 10px;
}
.fax:before {
  content: "\f1ac";
  font-family: FontAwesome;
  font-size: 20px;
  color: #71737a;
  padding-right: 10px;
}
.envelope:before {
  content: "\f0e0";
  font-family: FontAwesome;
  font-size: 20px;
  color: #71737a;
  padding-right: 10px;
}
.youtube:before {
  content: "\f167";
  font-family: FontAwesome;
  font-size: 20px;
  color: #71737a;
  padding-right: 15px;
}
.vine:before {
  content: "\f1ca";
  font-family: FontAwesome;
  font-size: 20px;
  color: #71737a;
  padding-right: 15px;
}
.dribbble:before {
  content: "\f17d";
  font-family: FontAwesome;
  font-size: 20px;
  color: #71737a;
  padding-right: 15px;
}
.twitter:before {
  content: "\f099";
  font-family: FontAwesome;
  font-size: 20px;
  color: #71737a;
  padding-right: 15px;
}
.facebook:before {
  content: "\f09a";
  font-family: FontAwesome;
  font-size: 20px;
  color: #71737a;
  padding-right: 15px;
}
/* end style footer */
.fixed-right {
  position: fixed;
  top: 50%;
  right: 10px;
  background: #fff;
  z-index: 999;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #e1e1e1;
  border-radius: 3px;
}
.fixed-right ul li a {
  border-bottom: 1px solid #e1e1e1;
  font-size: 0;
  display: inline-block;
  text-align: center;
}
.fixed-right ul li a:before {
  content: "";
  font-family: 'simple-line-icons';
  font-size: 14px;
  color: #222;
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 40px;
}
.fixed-right ul li a:hover:before {
  color: #fff;
  background: #ce2129;
}
.fixed-right ul li:last-child a {
  border-bottom: 0;
}
.fixed-right ul li.fixed_account a:before {
  content: "\e002";
}
.fixed-right ul li.fixed_wishlist a:before {
  content: "\e09b";
}
.fixed-right ul li.fixed_contact a:before {
  content: "\e01e";
}
.social-network a {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: block;
  position: relative;
}
.social-network a:hover::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.1);
}
.item-tags-category {
  padding: 10px 0;
}
.item-tags-category h2 {
  color: #ffffff;
  display: table-cell;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}
.item-tags-category span {
  display: block;
  color: #222222;
  text-transform: none;
  white-space: nowrap;
}
.item-tags-category ul {
  display: table-cell;
  font-size: 0;
  margin: 0;
  padding-left: 8px;
}
.item-tags-category ul li {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 10px;
}
.item-tags-category ul li:last-child a {
  border: none;
}
.item-tags-category ul li a {
  border-right: 1px solid #e6e6e6;
  color: #999999;
  display: block;
  height: 13px;
  line-height: 13px;
  padding: 0 5px;
}
.item-tags-category ul li a:hover {
  color: #222222;
}
.item-tags-category ul li a.active {
  text-transform: uppercase;
  font-weight: 700;
}
.list-tags-category {
  padding: 35px 0;
  margin-top: 50px;
  border-top: 1px solid #e6e6e6;
}
.newsletter div.mage-error[generated] {
  position: absolute;
  font-size: 12px;
  bottom: -15px;
  left: 15px;
}
.title-tab-product {
  float: none;
}
.title-tab-product li {
  cursor: pointer;
}
.clr {
  clear: both;
}
.banner_item_bg {
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 30px;
}
.search .shop-tab-title {
  margin-top: 0;
  min-height: 41px;
}
.post-date {
  font-family: 'dinpro-light';
  font-size: 13.2px;
  font-weight: 400;
  color: #ce2129;
  margin-bottom: 17px;
  display: inline-block;
}
.post-date > strong {
  margin-right: 5px;
}
.blog-post-info .desc {
  font-family: 'dinpro-light';
  font-size: 14px;
  line-height: 22px;
  color: #666666;
  font-weight: 400;
}
.post-paginav li.item {
  color: #222222;
  display: inline-block;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  width: 40px;
  border-radius: 100%;
  margin-right: 8px;
  padding: 0 10px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-align: center;
  font-weight: normal;
}
.pages strong.page {
  line-height: 42px;
}
.post-paginav li:hover,
.post-paginav li.current {
  background: #ce2129 none repeat scroll 0 0;
  border-color: #ce2129;
  color: #ffffff;
}
.post-paginav li:hover strong.page,
.post-paginav li.current strong.page {
  color: #ffffff;
}
.post-paginav li:hover span,
.post-paginav li.current span {
  color: #ffffff;
}
.post-paginav .pages a.page {
  color: #666666;
}
.post-paginav .pages a.page:visited {
  color: #222222;
  text-decoration: none;
}
.post-paginav .pages {
  font-weight: normal;
}
.post-paginav .pages .action.next:before,
.post-paginav .pages .action.previous:before {
  content: '';
}
.post-paginav .pages .action {
  width: auto;
  border: 0;
}
.post-paginav .pages .action.next,
.post-paginav .pages .action.previous {
  margin: 0;
}
.post-paginav .pages .action.next > span,
.post-paginav .pages .action.previous > span {
  position: inherit;
  font-weight: normal;
}
.post-paginav .pages .action.next > span.label,
.post-paginav .pages .action.previous > span.label {
  display: none;
}
.desc blockquote {
  border-left: 5px solid #e6e6e6;
}
.widget-related-product .product-reviews-summary.empty .reviews-actions,
.widget-related-product .product-reviews-summary .reviews-actions {
  display: none;
}
.widget-related-product .price-container .price {
  font-size: 14px;
  color: #ED321E;
}
.widget-related-product .title-product {
  margin: 15px 0 0;
}
.widget-related-product .product-reviews-summary {
  margin: 0;
}
.widget-related-product .old-price .price-container .price {
  color: #999;
}
.widget-related-product span {
  color: #999;
}
.page-product-grouped .product-view .product-item-name {
  margin-top: 0;
}
.page-product-grouped .product-view .attr-info {
  margin: 0;
}
.page-product-grouped .product-view .attr-info .price-box {
  border: none;
  margin: 0;
}
.page-product-grouped .product-view .detail-info-product-view .box-inner1 .price-box {
  display: none;
}
.page-product-grouped .product-view .detail-info-product-view .box-inner1 .product-info-price {
  margin-bottom: 10px;
}
.page-product-grouped .product-view .detail-info-product-view .box-inner1 .product.attribute {
  margin-bottom: 10px;
}
#super-product-table th {
  font-weight: bold;
  text-transform: uppercase;
}
#super-product-table .price-container .price {
  font-size: 14px !important;
}
#super-product-table .old-price {
  margin: 4px 12px 0 !important;
}
#super-product-table .old-price .price-container .price {
  font-size: 14px !important;
}
.catalog-product-view .bundle-options-container .product-options-wrapper {
  width: 100%;
}
.catalog-product-view fieldset {
  margin: 0 0 10px;
}
.catalog-product-view .product-add-form {
  width: 100%;
  clear: both;
  float: left;
  border: 1px solid #e8e8e8;
  padding: 0 0 0 20px;
  margin: 20px 0;
}
.catalog-product-view .bundle-options-container {
  margin: 0;
}
.catalog-product-view .bundle-options-container .legend.title {
  margin: 20px 0 10px 0;
  font-size: 20px;
}
.catalog-product-view .bundle-options-container .field.option > label.label span {
  font-weight: bold;
}
.catalog-product-view .bundle-options-container .control .field {
  display: inline-block;
  width: 100%;
  margin: 0;
}
.catalog-product-view .bundle-options-container .control .field input {
  float: left;
}
.catalog-product-view .bundle-options-container .control .field label {
  float: left;
  margin: 3px 0 0 10px;
}
.catalog-product-view .bundle-options-container .control .field label span.price {
  font-size: 14px;
}
.catalog-product-view .bundle-options-container .qty-holder label {
  margin: 3px 10px 0 0 !important;
}
.catalog-product-view #bundleSummary .title > strong {
  font-size: 20px;
  font-weight: 300;
}
.catalog-product-view #bundleSummary .product-details {
  padding: 10px 0;
}
.catalog-product-view #bundleSummary .product-details .price-box .price {
  font-size: 30px;
  color: #ED321E;
}
.catalog-product-view #bundleSummary .product-details .attr-product .info-qty input {
  border: 0;
  text: center;
  width: 100%;
}
.catalog-product-view #bundleSummary .product-details .attr-product .label {
  display: none;
}
.catalog-product-view #bundleSummary .product-details .towishlist,
.catalog-product-view #bundleSummary .product-details .tocompare {
  display: none;
}
.catalog-product-view #bundleSummary .product-details .actions button {
  width: 238px;
  margin-bottom: 10px;
}
.page-product-bundle .detail-info-product-view,
.wrapper_quickview_item .detail-info-product-view {
  position: relative;
}
.page-product-bundle .detail-info-product-view .bundle-actions,
.wrapper_quickview_item .detail-info-product-view .bundle-actions {
  position: absolute;
  left: 81px;
  bottom: 65px;
  z-index: 10;
}
.page-product-bundle .detail-info-product-view .price-box p,
.wrapper_quickview_item .detail-info-product-view .price-box p {
  display: inline-block;
  width: 100%;
}
.page-product-bundle .detail-info-product-view .price-box p .price-final_price,
.wrapper_quickview_item .detail-info-product-view .price-box p .price-final_price {
  float: left;
}
.page-product-bundle .detail-info-product-view .price-box p .old-price,
.wrapper_quickview_item .detail-info-product-view .price-box p .old-price {
  margin: 0 0 0 10px;
}
.page-product-bundle .detail-info-product-view .price-box p .old-price .price,
.wrapper_quickview_item .detail-info-product-view .price-box p .old-price .price {
  text-decoration: line-through;
}
.wrapper_quickview_item .bundle-actions {
  left: 80px !important;
}
.wrapper_quickview_item .detail-info-product-view .product.attribute.overview .value p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wrapper_quickview_item .detail-info-product-view .product-add-form form .actions button {
  min-height: 45px;
}
.product-info-downloadable-custom .product-options-wrapper,
.product-info-downloadable-custom .product-options-bottom {
  width: 100% !important;
}
.product-info-downloadable-custom .price-box {
  display: none !important;
}
.product-info-downloadable-custom .product-add-form {
  margin: 0 !important;
}
.product-info-downloadable-custom #downloadable-links-list input {
  margin: 0;
}
.product-info-downloadable-custom .field.downloads .price-container .price-wrapper {
  padding-left: 10px;
}
.product-info-downloadable-custom .field.downloads .price-container:before {
  position: absolute;
}
.product-view .main-detail .items.samples {
  margin-top: 20px;
}
.item-product .info-price .price-box p.price-from,
.item-product .info-price .price-box p.price-to {
  display: inline-block;
  margin: 0;
  line-height: unset;
}
.item-product:hover .quickview-product {
  opacity: 1;
}
.checkout-onepage-success #maincontent {
  text-align: center;
}
.checkout-onepage-success #maincontent .actions-toolbar > .primary {
  float: none;
}
.cms-no-route #maincontent {
  text-align: center;
  padding-top: 50px;
}
.cms-no-route #maincontent ul > li {
  margin-bottom: 10px;
}
.cms-no-route #maincontent .page-title-wrapper {
  text-align: center;
}
.cms-page-view #maincontent {
  line-height: 22px;
}
.cms-page-view #maincontent h2 {
  font-size: 24px;
}
.store-item iframe {
  max-width: 100%;
}
/* style introduct-service */
.introduct-service {
  display: inline-block;
  width: 100%;
}
.introduct_service div {
  float: left;
  width: 25%;
  text-align: center;
}
.introduct_service div:hover {
  color: #ffffff;
}
.introduct_service div:hover:before {
  color: #ffffff;
}
.introduct_service {
  text-transform: uppercase;
}
.delivery {
  border-left: 1px solid #222222;
  padding: 41px 0px;
  background-color: #222222;
  color: #8d8f98;
  font-size: 14px;
  font-weight: 700;
  font-family: 'dinpro-light';
}
.delivery:first-child {
  border-left: 0;
}
.ship:before,
.shield:before,
.medkit:before,
.support:before {
  content: "";
  font-family: FontAwesome;
  font-size: 36px;
  color: #8d8f98;
}
.ship:before {
  content: "\f21a";
}
.shield:before {
  content: "\f0fa";
}
.medkit:before {
  content: "\f132";
}
.support:before {
  content: "\f1cd";
}
/* end style introduct-service */
.popup_avaiable {
  text-align: center;
}
.popup_avaiable .action_button ul li {
  margin-top: 10px;
}
.select-category .chosen-drop {
  top: 104% !important;
  width: 160% !important;
}
.select-category .chosen-results li {
  padding: 5px 12px !important;
}
.verticalmenu.navigation.side-verticalmenu li.level0 > a > span.cat-label {
  padding: 4px;
}
.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  top: 50%;
  left: 50%;
  background: #ffffff;
  z-index: 99999999;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.header_main {
  border-top: 1px solid #2b605a;
  border-bottom: 1px solid #2b605a;
}
.header_main .contacinfo-phone {
  float: left;
}
.header_main .contacinfo-phone .wrap {
  color: #fff;
  font-weight: 500;
  padding-left: 10px;
  padding-top: 7px;
  font-size: 16px;
}
.header_main .contacinfo-phone label {
  color: #fff;
  width: 100%;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 400;
}
.list-ads1 {
  margin-top: 30px;
}
.list-ads1 .item-ads4 {
  margin-bottom: 20px;
  text-align: center;
}
.list-ads1 .row > div:last-child .item-ads4 {
  margin-bottom: 0;
}
.banner-slider-top .block_slider {
  width: 73.58%;
  padding: 0 10px;
}
.banner-slider-top .block_banner {
  width: 26.42%;
  padding: 0 10px;
}
.velaServicesInner {
  border: 1px solid #e6e6e6;
  padding-right: 10px;
  padding-left: 10px;
  border-radius: 3px;
  margin-top: 30px;
  margin-bottom: 50px;
  background: #fff;
}
.velaServicesInner .rowFlexMargin {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin-left: -15px;
  margin-right: -15px;
}
.velaServicesInner .flexJustifyCenter {
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.velaServicesInner .d-flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.velaServicesInner .boxService:hover > .boxServiceImage {
  -webkit-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.velaServicesInner .boxServiceImage {
  margin-right: 15px;
  width: 48px;
  height: 48px;
  background-color: #ce2129;
}
.velaServicesInner .boxServiceImage.boxServiceImage1 {
  -webkit-mask: url(images/introduct1.svg) no-repeat center center;
  mask: url(images/introduct1.svg) no-repeat center center;
}
.velaServicesInner .boxServiceImage.boxServiceImage2 {
  -webkit-mask: url(images/introduct2.svg) no-repeat center center;
  mask: url(images/introduct2.svg) no-repeat center center;
}
.velaServicesInner .boxServiceImage.boxServiceImage3 {
  -webkit-mask: url(images/introduct3.svg) no-repeat center center;
  mask: url(images/introduct3.svg) no-repeat center center;
}
.velaServicesInner .boxServiceImage.boxServiceImage4 {
  -webkit-mask: url(images/introduct4.svg) no-repeat center 6px;
  mask: url(images/introduct4.svg) no-repeat center 6px;
  width: 53px;
  height: 53px;
}
.velaServicesInner .boxServiceImage.boxServiceImage5 {
  -webkit-mask: url(images/introduct5.svg) no-repeat center center;
  mask: url(images/introduct5.svg) no-repeat center center;
}
.velaServicesInner .boxServiceContent {
  padding-top: 9px;
}
.velaServicesInner .boxServiceTitle {
  font-weight: 500;
  margin: 0 0 5px;
  font-size: 14px;
  color: #222222;
}
.velaServicesInner .boxServiceDesc {
  font-family: 'dinpro-light';
  font-size: 13px;
  color: #333333;
  font-weight: 400;
}
.velaServicesInner .rowFlex > div:not(:last-child):before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 30px;
  margin-top: -15px;
  background: #e1e1e1;
}
.velaServicesInner .rowFlex > div {
  margin: 25px 0;
  position: relative;
}
.velaServicesInner .lnr {
  font-size: 0;
  color: #222222;
}
.velaServicesInner .lnr:before {
  font-size: 40px;
}
.velaServicesInner .lnr:hover {
  color: #ce2129;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0 .level0.submenu .subchildmenu > li.level2 a:hover {
  text-indent: 10px;
}
.banner_left_1 {
  margin-top: 60px;
  margin-bottom: 50px;
}
.rokan-product-heading {
  padding: 6px 0 25px 0;
  position: relative;
}
.rokan-product-heading.category-tab {
  margin-bottom: 25px;
}
.rokan-product-heading .group-title1 {
  display: block;
}
.rokan-product-heading .group-title1 h2 {
  text-align: center;
  font-size: 30px;
}
.rokan-product-heading .group-title1 h2 .sup-title {
  font-size: 30px;
}
.rokan-product-heading .vc_tta-tabs-container .tabs-categorytab {
  text-align: center;
}
.rokan-product-heading .vc_tta-tabs-container .tabs-categorytab li {
  float: none;
  display: inline-block;
}
.rokan-product-heading.category-tab:before {
  display: none;
}
.rokan-product-heading h2 {
  font-family: 'dinpro-light';
  font-size: 24px;
  display: block;
  position: relative;
  font-weight: 500;
  line-height: 26px;
  color: #222222;
}
.rokan-product-heading h2 .sup-title {
  font-size: 24px;
  font-family: 'dinpro-light';
  font-weight: 300;
  color: #222222;
  text-transform: capitalize;
}
.rokan-product-heading .short-dec {
  letter-spacing: 0;
  margin-top: 19px;
  margin-bottom: 14px;
}
@media (max-width: 991px) {
  .rokan-product-heading .short-dec br {
    display: none;
  }
}
.bs-banner {
  position: relative;
  overflow: hidden;
}
.bs-banner .banner-hover:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-transition: all .5s linear;
  -moz-transition: all .5s linear;
  -ms-transition: all .5s linear;
  -o-transition: all .5s linear;
  transition: all .5s linear;
}
.bs-banner .banner-hover:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-transition: all .5s linear;
  -moz-transition: all .5s linear;
  -ms-transition: all .5s linear;
  -o-transition: all .5s linear;
  transition: all .5s linear;
}
.bs-banner:hover .banner-hover:before {
  right: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.bs-banner:hover .banner-hover:after {
  top: 50%;
  bottom: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.the_blog {
  margin-bottom: 60px;
}
.the_blog .block-content {
  padding: 30px 15px;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
}
.the_blog .blog-content .blog-info .blog-title a {
  margin: 15px 0 0;
}
.the_blog .blog-info .time-conment {
  padding: 15px 0 0;
}
.top_rate,
.new_product {
  margin-bottom: 50px;
}
.rokan-newproduct .block-content-new {
  padding: 30px 15px;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
}
.rokan-newproduct .product-item {
  overflow: hidden;
  padding: 0 15px;
}
.rokan-newproduct .product-item .product-photo {
  float: left;
  width: 37%;
  margin-right: 10px;
  overflow: hidden;
}
.rokan-newproduct .product-reviews-summary {
  margin: 7px 0 12px;
}
body .icon-eye {
  font-family: 'simple-line-icons';
}
.menu_left_home1 {
  padding-right: 15px;
}
.sidebar_left_home1 {
  padding-right: 20px;
}
.shadow_bkg_show,
.shadow_bkg {
  z-index: 9997;
  position: fixed;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -moz-transition: opacity 0.8s ease, visibility 0.9s ease, -moz-transform 0.4s eas;
  -o-transition: opacity 0.8s ease, visibility 0.9s ease, -o-transform 0.4s eas;
  -webkit-transition: opacity 0.8s ease, visibility 0.9s ease, -webkit-transform 0.4s eas;
  transition: opacity 0.8s ease, visibility 0.9s ease,transform .4s ease;
}
.background_shadow_show .shadow_bkg_show,
.background_shadow .shadow_bkg {
  opacity: 1;
  visibility: visible;
}
#header {
  position: relative;
  z-index: 9998;
}
.blog-content .blog-info .blog-title a {
  font-size: 16px;
  font-family: 'dinpro-light';
  font-weight: 500;
  color: #222222;
  margin: 22px 0 0px 0;
  display: inline-block;
  line-height: 22px;
}
.blog-content .blog-info .blog-title a:hover {
  color: #ce2129;
}
.testi_monial {
  margin-bottom: 30px;
  border: 1px solid #e6e6e6;
  border-radius: 3px;
}
.testi_monial .owl-theme .owl-controls.clickable .owl-page:hover span {
  background-color: #ffffff;
}
.testi_monial .owl-theme .owl-pagination {
  position: unset;
  margin: 20px 0;
}
.testi_monial .owl-theme .owl-pagination .owl-page {
  display: inline-block;
  vertical-align: middle;
}
.testi_monial .owl-theme .owl-pagination .owl-page span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin: 0 3px;
  background: #ededed;
}
.testi_monial .owl-theme .owl-pagination .owl-page.active span,
.testi_monial .owl-theme .owl-pagination .owl-page:hover span {
  background-color: #ffffff;
  border-color: #ce2129;
}
.item-testimo {
  text-align: center;
}
.item-testimo .author-test-link {
  display: inline-block;
  width: 80px;
  height: 80px;
  margin-top: -40px;
  position: relative;
}
.item-testimo .author-test-link img {
  border-radius: 50%;
}
.item-testimo .author-test-info h3 {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
  color: #ce2129;
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 10px;
}
.item-testimo .author-test-info span {
  font-size: 13px;
  color: #222222;
}
.testimonialContent {
  background-color: #f2f6f8;
  padding: 85px 10px 60px;
  color: #222222;
  position: relative;
}
.testimonialContent:before {
  width: 30px;
  height: 30px;
  content: "";
  background: url("../images/home1/quocte.png") center center no-repeat;
  position: absolute;
  top: 40px;
  display: block;
  left: 0;
  right: 0;
  margin: auto;
}
.blog-info .time-conment {
  padding: 3px 0 15px;
  line-height: 20px;
  position: relative;
  margin-right: 5px;
  display: inline-block;
  color: #888888;
  font-size: 13px;
}
.blog-info .time-conment .date-time {
  color: #ce2129;
}
.blog-info .short-des {
  position: relative;
  display: inline-block;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rokan-product-heading h2.pull-left {
  padding: 0;
}
.category-tab .vc_tta-tabs-container {
  margin-right: 0;
}
.categorytab-container.cat_1 .vc_tta-tabs-container .tabs li.active a {
  color: #ce2129;
}
.categorytab-container.cat_1 .vc_tta-tabs-container .tabs li a {
  color: #888888;
}
.vc_tta-tabs-container {
  margin: 0;
  padding: 0px;
  position: relative;
  line-height: 26px;
  letter-spacing: 0;
}
.vc_tta-tabs-container .tabs li {
  float: left;
  position: relative;
}
.vc_tta-tabs-container .tabs li a {
  color: #222222;
  position: relative;
  font-size: 14px;
  padding: 0;
}
.vc_tta-tabs-container .tabs li.active a {
  color: #ce2129;
}
.vc_tta-tabs-container .tabs li:not(:last-child) {
  margin-right: 35px;
}
.fa-angle-down:before {
  content: "\e604";
  font-family: 'simple-line-icons';
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0 > .open-children-toggle:before {
  content: "\e606";
  font-family: 'simple-line-icons';
  right: 20px;
  top: 16px;
  position: absolute;
  font-size: 14px;
  color: #222222;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0:hover > .open-children-toggle:before {
  color: #ce2129;
}
.payment-method li .dis {
  display: none;
}
.payment-method li:hover .en {
  display: none;
}
.payment-method li:hover .dis {
  display: block;
}
.section-featured-categories .rows {
  margin: 0 -19px;
}
.section-featured-categories .wrap-category .owl-item .wp-item {
  padding: 0 20px;
}
.section-featured-categories .wrap-category .owl-item .wp-item {
  border-left: 1px solid #f5f5f5;
}
.section-featured-categories .wrap-category .owl-item.first-active .wp-item {
  border-left: 0;
}
.product-reviews-summary {
  display: block;
}
.product-reviews-summary .rating-summary {
  display: inline-block;
  text-align: unset;
}
.product-reviews-summary .reviews-actions {
  display: inline-block;
}
.product-rating .product-reviews-summary .reviews-actions {
  display: inline-block;
}
.section-brands {
  margin-bottom: 60px;
}
.section-brands .block-widget-rokanthemes-brand {
  border: 1px solid #e6e6e6;
  padding: 30px;
  background: #fff;
  border-radius: 3px;
}
.section-brands .brand-item a img {
  border: none;
  opacity: 0.2;
  -webkit-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
.section-brands .brand-item a img:hover {
  opacity: 1;
}
.section-brands .item {
  margin: 15px 0;
}
.section-brands .item .brand-item {
  margin: 0;
  margin-right: 30px;
}
.product-options-wrapper .swatch-attribute-label {
  margin-bottom: 10px;
}
body .swatch-option.image:not(.disabled):hover,
body .swatch-option.color:not(.disabled):hover {
  outline: none;
}
body .product-options-wrapper .swatch-option.text,
body .swatch-option {
  border-radius: 100%;
}
body .filter-content .swatch-option,
body .filter-content .swatch-attribute.color .swatch-attribute-options a .swatch-option {
  padding: 1px 2px;
  min-width: 30px;
  max-width: 90px;
  height: 30px;
  border-radius: 3px;
}
.item-post-full .post-title a {
  font-family: 'dinpro-light';
  font-size: 18px;
  font-weight: 500;
  color: #222222;
}
.item-post-full .post-title a:hover {
  color: #ce2129;
}
.post-list-wrapper {
  overflow: hidden;
}
.blog-list-post > div:nth-child(5n) {
  clear: both;
}
.widget-post-tab .post-tab-info h3 a {
  font-family: 'dinpro-light';
  font-size: 14px;
  font-weight: 400;
  color: #222222;
}
.widget-post-tab .post-tab-info h3 a:hover {
  color: #ce2129;
}
.minicart-wrapper .action.close {
  color: #222222;
  position: absolute;
  top: 11px;
  right: 5px;
  width: 40px;
  line-height: 40px;
  height: 40px;
  text-align: center;
  background-color: transparent;
  box-sizing: border-box;
  z-index: 2222;
  font: 300 24px/40px Arial, "Helvetica Neue", Helvetica, sans-serif;
  border-radius: 50%;
  border-width: 0;
  transition: background-color 0.25s ease 0s;
  opacity: 1;
}
.minicart-wrapper .action.close:before {
  line-height: 38px;
}
.product.attribute.sku {
  line-height: 22px;
  font-size: 14px;
  display: inline-block;
  margin-left: 20px;
}
body .one-step-checkout h1.checkout_header:before {
  border-top: 2px solid #ce2129;
}
body #shipping_method_step_header,
body .one-step-checkout h3 {
  background: #ce2129;
}
body .opcheckout-place span {
  color: #222222;
}
body .opcheckout-place:hover span {
  color: #ffffff;
}
.abs-shopping-cart-items .action.update:before,
.block-cart-failed .action.update:before,
.cart-container .form-cart .action.update:before {
  line-height: 35px;
}
.cart-container .checkout-methods-items .action.primary span {
  font-size: 14px;
  line-height: inherit;
  font-weight: 400;
  text-transform: capitalize;
}
body .cart.table-wrapper .cart.items .col .product-item-name a {
  color: #222222;
}
.cart.table-wrapper .cart.items .col {
  vertical-align: middle;
}
body table td,
body table th,
body table,
body td,
body th,
body .table > tbody + tbody {
  border: 0;
  border-right: 0;
}
.cart.table-wrapper .actions-toolbar > .action:last-child,
.action-gift:last-child {
  margin-right: 0;
  margin: 15px 0;
}
.cart.table-wrapper .actions-toolbar > .action,
.action-gift {
  margin-bottom: 0;
}
.cms-no-route #maincontent ul > li {
  line-height: 22px;
}
.cms-no-route #maincontent ul > li a {
  margin-top: 20px;
}
.post-view .post-content .post-description {
  margin-bottom: 20px;
}
.smart-search #choose_category {
  padding: 4px 15px;
}
._491z ._33ki {
  padding: 8px;
}
.hot-deal .hot-deal-tab {
  text-align: center;
}
.hot-deal .first-active .hot-deal-tab {
  border-left: none;
}
.cms-index-index .verticalmenu.navigation.side-verticalmenu > ul {
  border-radius: 0 0 3px 3px;
}
.hot-deal .title-product a {
  font-size: 16px;
  font-weight: 500;
}
.product-reviews-summary .reviews-actions a {
  font-size: 13px;
}
.content-cart {
  position: absolute;
  top: 5px;
  right: -80px;
  color: #222222;
  font-family: 'dinpro-light';
  font-size: 14px;
  font-weight: 400;
}
.content-cart > span {
  display: block;
  text-transform: capitalize;
}
.head-contact {
  font-family: 'dinpro-light';
  color: #222222;
  font-weight: 400;
  font-size: 14px;
  float: right;
  line-height: 60px;
  border-left: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
}
.head-contact:before {
  content: "\e91f";
  font-family: icomoon;
  font-size: 20px;
  padding: 0 13px 0 23px;
}
.product .value ul {
  padding-left: 18px;
  margin-bottom: 12px;
}
.product .value ul li {
  list-style-type: disc;
}
.product.info.detailed .product.data.items #product-review-container .review-list .block-content .review-item .review-content,
.product.info.detailed .product.data.items #product-review-container .review-list .block-content .review-item .review-details {
  line-height: 22px;
}
.fotorama__nav-wrap.fotorama__nav-wrap--horizontal {
  text-align: center;
}
.product-reviews-summary .reviews-actions a.action.view {
  border-right: 1px solid #e6e6e6;
  padding-right: 5px;
  margin-right: 0;
}
.the_blog .product-item {
  padding: 0 15px;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0 .level0.submenu {
  border: 1px solid #e6e6e6;
  border-left: 0;
}
.verticalmenu.navigation.side-verticalmenu > ul {
  background: #ffffff;
  position: relative;
  border-radius: 0 0 3px 3px;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0:hover > a {
  color: #ce2129;
}
body .swatch-attribute.size .swatch-option,
body .swatch-attribute.manufacturer .swatch-option {
  background: #ffffff;
  color: #222222;
  outline: none;
}
body .swatch-attribute.size .swatch-option:hover,
body .swatch-attribute.manufacturer .swatch-option:hover {
  background: #ce2129;
  color: #ffffff;
  outline: none;
}
body .swatch-option:not(.disabled):hover {
  background: #ce2129;
  color: #ffffff;
}
.filter-current .filter-label {
  margin-bottom: 5px;
}
body .chosen-container .chosen-results li.highlighted {
  background-color: #ce2129;
  color: #ffffff;
}
.review-item,
body .minicart-items-wrapper {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}
.product-view .detail-info-product-view .price-box .old-price,
.wrapper_quickview_item .detail-info-product-view .price-box .old-price,
.product-view .detail-info-product-view .price-box .old.price,
.wrapper_quickview_item .detail-info-product-view .price-box .old.price {
  color: #222222;
}
.detail-info-product-view {
  padding-left: 25px;
  margin-bottom: 50px;
}
.pages .items {
  font-weight: 400;
}
.sort-pagi-bar-bottom .toolbar-products {
  margin-bottom: 63px;
  margin-top: 30px;
  text-align: left;
  display: block;
  padding-top: 30px;
  border-top: 1px solid #e6e6e6;
}
.product-list li:last-child .item-product {
  border: 0;
}
.products-list .item-product:after {
  height: 100%;
}
.product-options-wrapper .swatch-attribute.manufacturer {
  width: 55%;
}
body .swatch-attribute.size .swatch-option.text {
  width: 32px;
  text-align: center;
  height: 32px;
  font-size: 12px;
  line-height: 30px;
  padding: 0;
  font-weight: 400;
  vertical-align: middle;
  display: inline-block;
}
.quick-view-content .wrapper_quickview_item .detail-info-product-view .attr-info .product-options-bottom .actions {
  display: inline-block;
}
.quick-view-content .wrapper_quickview_item .detail-info-product-view .attr-info .addcart-link {
  margin: 0;
}
.cart-container .checkout-methods-items .action.primary {
  background: #ce2129;
  color: #ffffff;
  padding: 0 15px;
  height: 50px;
  line-height: 48px;
  border-color: transparent;
}
.page-title-wrapper {
  margin-top: 30px;
}
.block {
  margin-bottom: 0;
}
.header-container .header-content .mini-cart-wrapper.enable-sticky {
  margin-right: 0;
}
.header-container .header-content .minicart-items-wrapper {
  max-height: 246px;
  overflow: auto;
}
.limiter .control {
  height: 40px;
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  padding: 0 20px 0 10px;
}
.limiter .control .limiter-options {
  border: none;
  margin: 0;
}
.zoom-image-thumb img,
.post-images img,
.blog-post-thumb img {
  border-radius: 3px;
}
/* 404 */
.cms-no-route .page-title-wrapper {
  display: none;
}
.cms-no-route .column.main .container h1 {
  font-size: 250px;
  color: #e6e6e6;
  line-height: 250px;
  font-weight: 500;
}
.cms-no-route .column.main .container h4 {
  text-transform: uppercase;
  font-weight: 700;
  color: #7b7b7b;
  margin-top: 30px;
  font-size: 14px;
  margin-bottom: 0;
}
.cms-no-route .column.main .container h2 {
  color: #222222;
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: normal;
  margin-top: 12px;
}
.cms-no-route .column.main .container p {
  display: block;
  max-width: 80%;
  margin: auto;
  line-height: 30px;
}
.cms-no-route .column.main .container ul.disc {
  margin: 50px 0 100px;
}
.cms-no-route .column.main .container ul.disc li a {
  display: block;
  background: #222222;
  border: none;
  border-radius: 3px;
  box-shadow: none;
  color: #ffffff;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 18.5px 30px;
  line-height: 1.1;
  text-shadow: none;
  white-space: nowrap;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  min-width: 190px;
}
.cms-no-route .column.main .container ul.disc li a:hover {
  background: #ce2129;
}
.detail-info-product-view .product-add-form form .actions {
  display: inline-block;
}
.detail-info-product-view .product-add-form form .actions button {
  margin: 0;
}
.product.info.detailed .product.data.items .item.content {
  border-top: 2px solid #e6e6e6;
}
.product.info.detailed {
  margin-top: 80px;
}
.product-view .product.info.detailed {
  margin-bottom: 50px;
}
.product-view .rokan-product-heading,
.wrapper_quickview_item .rokan-product-heading {
  margin-top: 50px;
}
.product.info.detailed .product.data.items .item.title a {
  height: 52px;
  line-height: 52px;
}
.product.info.detailed .product.data.items .item.title.active a {
  position: relative;
}
.header-container .header-content .minicart-wrapper .minicart-items .product-item-details {
  text-align: left;
}
.toolbar-products .pages .pages-items .item a,
.toolbar-products .pages .pages-items .item strong {
  height: 40px;
  width: 40px;
  line-height: 38px;
}
.block-minicart .block-content > .actions > .primary .action.primary {
  margin: 0;
}
body .checkbox-group {
  position: relative;
  display: inline-block;
  margin-top: 9px;
}
body .osc-ok-button {
  color: #555;
}
body .osc-ok-button:hover {
  color: #ffffff;
}
body .order-review-info .opcheckout-discount .messages {
  margin-top: 30px;
}
body .opcheckout-place {
  margin-top: 12px !important;
}
body #billing-new-address-form .field {
  padding: 5px 17px;
}
#one-step-checkout-form .checkout-review-load .data-table .totals {
  color: #000;
}
.wrap-payment-content .billing-address-details {
  display: inline-block;
  text-align: left;
  line-height: 22px;
}
.wrap-payment-content .billing-address-details .action-edit-address {
  margin: 10px 0;
}
.modal-slide._inner-scroll .modal-header {
  padding: 30px 0;
  text-align: center;
}
.modal-popup._inner-scroll .modal-content {
  padding-bottom: 30px;
  text-align: center;
}
.modal-popup.modal-slide .modal-footer {
  padding: 30px;
}
.checkout-success,
#registration {
  text-align: left;
}
.brand-view {
  text-align: center;
  padding-top: 25px;
}
input[type="text"],
input[type="email"],
textarea,
input[type="password"],
input[type="tel"] {
  padding: 15px 25px;
  background: #f4f4f4;
  border-radius: 3px;
}
.popup_avaiable {
  line-height: 22px;
}
.cart-summary {
  border-radius: 3px;
}
.cart-summary .block > .title {
  padding-top: 20px;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
}
.cart-totals {
  border-top: none;
}
.cart-summary .block > .title:after,
.paypal-review-discount .block > .title:after {
  top: 12px;
}
.cart-summary #co-shipping-method-form .item-options .radio {
  float: left;
  margin: 0 15px 0 0;
}
.items.methods .item-title {
  margin-bottom: 10px;
  color: #222222;
}
.cart.table-wrapper .product-item-details {
  text-align: left;
  padding-left: 30px;
}
.form-address-edit .actions-toolbar .action.primary span {
  font-size: 14px;
}
.form-address-edit .actions-toolbar .action.primary {
  padding: 0 26px;
}
.fieldset > .field.choice:before,
.fieldset > .field.no-label:before {
  display: none;
}
.wishlist .product-item .price-box .price {
  font-size: 14px;
  color: #222222;
}
.wishlist-index-index .products-grid .product-item .product-item-info,
.wishlist-index-index .product-item-info .product-item-info {
  width: 100%;
}
.wishlist-index-index .products-grid .product-item .limiter-options,
.wishlist-index-index .product-item-info .limiter-options {
  border: 0;
}
.wishlist-index-index .product-item-info button {
  background: #ce2129;
  color: #ffffff;
}
.products-grid.wishlist .product-item-comment {
  line-height: 26px;
}
div.register-login {
  float: left;
}
.page-product-bundle .product-view .detail-info-product-view .price-box .price-container .price,
.page-product-bundle .wrapper_quickview_item .detail-info-product-view .price-box .price-container .price {
  font-size: 18px;
}
.page-product-bundle .product-social-extra {
  margin: 0 0 30px 0;
}
#bundleSummary .product-details .attr-product .info-qty input {
  display: -webkit-box;
  height: auto;
}
.catalog-product-view #bundleSummary .product-details .price-box .price {
  font-size: 18px;
  color: #ce2129;
}
.bundle-options-wrapper .nested {
  margin-top: 10px;
}
.page-product-bundle .detail-info-product-view .bundle-actions,
.wrapper_quickview_item .detail-info-product-view .bundle-actions {
  position: unset;
}
.product-options-wrapper .swatch-attribute input[type="text"] {
  margin-top: 10px;
}
.product-reviews-summary .reviews-actions a.action.view {
  border-right: 1px solid #e6e6e6;
  padding-right: 10px;
  margin-right: 7px;
}
.post-paginav li.pages-item-previous:before,
.post-paginav li.item.pages-item-next:before {
  display: none;
}
.post-paginav .pages .action.previous:before,
.post-paginav li.pages-item-previous a:before {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f100";
  color: #222222;
  line-height: 38px;
}
.post-paginav .pages .pages-item-previous:hover .action.previous:before {
  color: #ffffff;
}
.post-paginav .pages .action.next:before,
.post-paginav li.item.pages-item-next a:before {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f101";
  color: #222222;
  line-height: 38px;
  margin-right: -4px;
}
.modal-content {
  margin-bottom: 15px;
  line-height: 22px;
}
.post-paginav .pages .action.next:before,
.post-paginav li.item.pages-item-next a:hover:before {
  color: #ffffff;
}
.nav-open .nav-sections.category-dropdown-item-content {
  position: fixed;
}
.cms-homepage_ayo_default .banner-slider-top {
  margin-left: -10px;
  margin-right: -10px;
}
div.logo {
  display: inline;
}
.brand-item {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  text-align: left;
}
.brand-item a {
  display: block;
  font-size: 11px;
  text-align: center;
}
.brand-item a img {
  max-width: 100px;
  border: 1px solid #eee;
}
.block-content .brand-item a img {
  max-width: 100%;
}
.fancybox-opened .fancybox-skin {
  padding: 30px !important;
}
.fancybox-wrap .action_button {
  margin-top: 30px;
}
.action_button .button.btn-viewcart {
  background: #ce2129 none repeat scroll 0 0;
  color: #ffffff;
  box-shadow: none;
  display: inline-block;
  font-family: 'dinpro-bold';
  border-radius: 3px;
  text-transform: none;
  font-size: 14px;
  height: 40px;
  font-weight: normal;
  position: relative;
  border: 1px solid transparent;
  text-shadow: none;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  line-height: 40px;
}
.action_button .button.btn-viewcart:hover {
  background: #ce2129;
  color: #ffffff;
  border: 1px solid #ce2129;
}
.popup_avaiable .action_button ul li {
  margin-top: 20px;
}
.action_button .button,
input[type=submit],
button {
  background: #30bbef;
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  padding: 0 50px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.message.info.empty {
  margin: 20px 0;
}
.customer-account-login .page-title-wrapper {
  margin-top: 100px;
}
.customer-account-login .page-main .columns {
  margin-bottom: 20px;
}
#billing-new-address-form .street legend span {
  display: block !important;
  color: #2f2f2f;
}
body #billing-new-address-form .field {
  overflow: hidden;
}
.post-paginav .pages .action.next:before {
  color: #222222;
}
.post-paginav .pages li:hover .action.next:before {
  color: #fff;
}
#quick-window .quick-view-content .detail-info-product-view .title-product-quickview {
  font-size: 24px;
  font-weight: 500;
  color: #222222;
  text-transform: none;
  padding: 0;
  margin: 0;
  padding-right: 35px;
}
.catalog-product_compare-index .action.print {
  float: right;
  margin: 15px 0;
}
.catalog-product_compare-index .table th {
  display: table-cell;
  border-radius: 0 !important;
  border-bottom: 1px solid #e6e6e6 !important;
}
.table:not(.cart):not(.totals) > thead > tr > th,
.table:not(.cart):not(.totals) > tbody > tr > th,
.table:not(.cart):not(.totals) > tfoot > tr > th,
.table:not(.cart):not(.totals) > thead > tr > td,
.table:not(.cart):not(.totals) > tbody > tr > td,
.table:not(.cart):not(.totals) > tfoot > tr > td {
  border: 1px solid #e6e6e6;
}
.table-comparison .cell.remove {
  text-align: center;
}
.contact-index-index .page-main .container,
.contact-index-index .page-main div[class*="col-"] {
  padding: 0 15px;
}
.contact-index-index .page-main .row {
  margin-right: -15px;
  margin-left: -15px;
}
.contact-index-index .col-main {
  float: right;
}
.contact-index-index .page-title-wrapper {
  display: none;
}
.contact-index-index .fieldset {
  margin: 0 0 10px;
}
.contact-index-index .columns h3 {
  font-weight: 500;
  color: #222222;
  font-size: 20px;
  margin-top: 48px;
  margin-bottom: 35px;
  padding-bottom: 13px;
  border-bottom: 1px solid #e6e6e6;
  position: relative;
}
.contact-index-index .columns .short-des {
  margin: -4px 0 30px;
  line-height: 26px;
}
.contact-index-index .columns .media-body {
  padding-left: 15px;
  vertical-align: middle;
  padding-top: 0;
  font-weight: 500;
  font-size: 20px;
  color: #ce2129;
}
.contact-index-index .columns .media-body p {
  margin: 0;
  font-weight: 400;
  margin-bottom: 5px;
  color: #999;
  font-size: 14px;
}
.contact-index-index .columns .media-body span {
  font-weight: 500;
  color: #ce2129;
  background: #ffffff;
}
.contact-index-index .columns .contact-info ul {
  margin-top: 30px;
}
.contact-index-index .columns .contact-info ul li {
  position: relative;
  padding-bottom: 10px;
}
.contact-index-index .columns .contact-info ul li p {
  margin: 0 0 5px;
}
.contact-index-index .columns .contact-info ul li p strong {
  font-weight: 500;
  color: #222;
}
.contact-index-index .columns .social-link {
  text-align: left;
  margin-top: 10px;
}
.contact-index-index .columns .social-link > p {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}
.contact-index-index .columns .social-link .widget {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}
.contact-index-index .columns .social-link .widget ul {
  margin-top: 0;
  padding-left: 10px;
}
.contact-index-index .columns .social-link .widget ul li {
  display: inline-block;
  padding-bottom: 0;
}
.contact-index-index .columns .social-link .widget ul li a {
  display: block;
}
.contact-index-index .columns .social-link .widget ul li a span {
  font-size: 0;
  text-align: center;
  transition: all .4s ease;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  -ms-transition: all .4s ease;
  color: #888888;
  width: 40px;
  height: 40px;
  line-height: 38px;
  border: 2px solid #e6e6e6;
  border-radius: 50%;
  margin-right: 10px;
  border-width: 1px;
}
.contact-index-index .columns .social-link .widget ul li a span:before {
  font-size: 14px;
}
.contact-index-index .columns .social-link .widget ul li a:hover span {
  border-color: #ce2129;
  color: #ce2129;
}
.contact-index-index .columns #contact-form .field {
  margin-bottom: 15px;
}
.contact-index-index .columns #contact-form .field .control {
  width: 100%;
}
.contact-index-index .columns #contact-form .fieldset .field.required .label:after,
.contact-index-index .columns #contact-form .fieldset .fields .field.required .label:after,
.contact-index-index .columns #contact-form .fieldset .field._required .label:after,
.contact-index-index .columns #contact-form .fieldset .fields .field._required .label:after {
  content: '*';
  color: #ce2129;
  font-size: 1.2rem;
  margin: 0 0 0 5px;
}
.contact-index-index .columns #contact-form label {
  width: 100%;
  margin-bottom: 10px;
  font-weight: 400;
  display: inline-block;
}
.contact-index-index .columns #contact-form .control textarea#comment {
  min-height: 150px;
}
.contact-index-index .columns .form.contact .action.primary {
  background: #ce2129 none repeat scroll 0 0;
  color: #ffffff;
  box-shadow: none;
  display: inline-block;
  font-family: 'dinpro-bold';
  border-radius: 3px;
  text-transform: none;
  font-size: 14px;
  height: 40px;
  font-weight: normal;
  position: relative;
  border: 1px solid transparent;
  text-shadow: none;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  height: 45px;
  text-transform: capitalize;
}
.contact-index-index .columns .form.contact .action.primary:hover {
  background: #ce2129;
  color: #ffffff;
  border: 1px solid #ce2129;
}
.category-image .image {
  width: 100%;
}
.banner-slider .banner_item_bg img {
  border-radius: 3px;
}
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--left,
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--right {
  display: none !important;
}
.rokan-onsaleproduct {
  margin-top: 10px;
}
.rokan-onsaleproduct .rokan-product-heading h2 {
  z-index: -1;
}
.rokan-onsaleproduct .col-onsale-left {
  width: 18%;
  margin-top: 30px;
}
.rokan-onsaleproduct .col-onsale-right {
  width: 82%;
  margin-top: 15px;
}
.rokan-onsaleproduct .first-active .product-item {
  border-left: 0;
}
.product-page-brand-common-view {
  display: none;
}
.fotorama__caption__wrap {
  display: none !important;
}
.fotorama__thumb-border {
  border: 1px solid #ce2129 !important;
  margin-top: 0 !important;
  top: 1px !important;
}
.fa-heart:before {
  content: "\e08a";
  font-family: 'simple-line-icons';
}
.modals-wrapper {
  position: relative;
  z-index: 99999999;
}
.filter-content .filter-options .filter-options-item .filter-options-title:after {
  margin-right: 0;
  content: "\e92e";
  font-family: 'icomoon';
  display: block;
  position: absolute;
  top: 4px;
  right: 0;
  cursor: pointer;
}
.filter-content .filter-options .filter-options-item.active .filter-options-title:after {
  content: "\e931";
  font-family: 'icomoon';
}
.catalog-product_compare-index .action.print {
  float: right;
  margin: 15px 0;
}
.shop-tab-title .shop-tab-select .block {
  display: none;
}
.page-products .sort-pagi-bar-bottom .toolbar .limiter {
  display: none;
}
body .filter-content .swatch-attribute.color .swatch-attribute-options a .swatch-option {
  width: 18px;
  min-width: auto;
  height: 18px;
  border: none;
  border-radius: 100%;
  position: relative;
  overflow: visible;
}
body .filter-content .swatch-attribute.color .swatch-attribute-options a .swatch-option:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: -3px;
  right: -3px;
  left: -3px;
  bottom: -3px;
  border: 1px solid #e6e6e6;
  border-radius: 100%;
  z-index: 1;
  display: block;
}
.banner_mid_2 {
  margin-bottom: 50px;
  position: relative;
  text-align: center;
}
.tab_container {
  position: relative;
  z-index: 99;
}
.banner_mid_1 {
  margin-bottom: 50px;
  text-align: center;
}
.feature_category {
  margin-bottom: 50px;
}
.feature_category .wrap-category .owl-carousel .owl-wrapper-outer {
  padding: 0;
  margin-bottom: 0;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  background: #fff;
}
.feature_category .wrap-category .popcat-box {
  border: 1px solid #e1e1e1;
  padding: 15px;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  height: 100%;
}
.feature_category .wrap-category .popcat-box .category-info {
  flex: 1 0 auto;
  max-width: 70%;
}
.feature_category .wrap-category .popcat-box .category-info h3 {
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feature_category .wrap-category .popcat-box .category-info h3 a {
  color: #222;
  font-size: 14px;
}
.feature_category .wrap-category .popcat-box .category-info h3 a:hover {
  color: #ce2129;
}
.feature_category .wrap-category .popcat-box .category-info p {
  font-size: 12px;
  color: #999;
  margin: 0;
}
.feature_category .wrap-category .product_row .wp-item:first-child .popcat-box {
  border-top: 0;
  border-left: 0;
}
.feature_category .wrap-category .product_row .wp-item:last-child .popcat-box {
  border-top: 0;
  border-left: 0;
  border-bottom: 0;
}
.cat {
  margin-bottom: 50px;
}
.cat .block_cat {
  padding: 30px;
  background: #fff;
  border-radius: 3px;
  border: 1px solid #e1e1e1;
}
.cat .vc_tta-tabs-container .tabs li {
  margin: 0;
  padding: 7px 0;
  float: none;
  border-bottom: 1px solid #e1e1e1;
}
.cat .vc_tta-tabs-container .tabs li:last-child {
  border: 0;
}
.cat .owl-theme .owl-controls .owl-buttons .owl-next,
.hot-deal .owl-theme .owl-controls .owl-buttons .owl-next {
  right: -15px;
}
.cat .owl-theme .owl-controls .owl-buttons .owl-prev,
.hot-deal .owl-theme .owl-controls .owl-buttons .owl-prev {
  left: -15px;
}
.cat_1 {
  margin-bottom: 60px;
}
.cat_1 .tab_container {
  padding: 30px 30px 0;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
}
.cat_1 .product_row {
  margin: 0;
}
.cat_1 .product_row:nth-child(1) .item-product:before,
.cat_1 .product_row:nth-child(6) .item-product:before {
  display: none;
}
.cat_special {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.cat_special .product_row:nth-child(6) {
  grid-column: unset;
  grid-row: unset;
  grid-column-start: unset;
  grid-column-end: unset;
  grid-row-start: unset;
  grid-row-end: unset;
}
.cat_special .product_row:nth-child(6) .desc {
  display: none;
}
.cat_special .product_row:nth-child(6) .product-thumb {
  padding-top: 0;
}
.cat_special .product-image-container {
  width: 100% !important;
}
.cat_special .item-product .product-info-cart {
  bottom: 0;
}
.product-item,
.product-list-item,
.product-item-actions > * {
  font-size: 14px;
}
@media (min-width: 1024px) {
  .page-products .products-grid .product-item:nth-child(3n + 1) {
    margin-left: 0;
  }
}
.products-grid .product-item {
  padding: 0 15px;
  margin-left: 0;
}
.filter-options-item .items .item a input[type="checkbox"] {
  margin: 0;
  top: 0;
  box-shadow: none;
}
.filter-options-item .items .item a .count {
  display: inline-block;
}
.block-reorder .product-item .field.item {
  margin-bottom: 25px;
}
.block-reorder .product-item .checkbox {
  top: 0;
  margin: 0;
  box-shadow: none;
}
.sidebar .product-items .product-item-info .product-item-photo {
  float: left;
  margin: 0 10px 10px 0;
  position: static;
}
.sidebar .block-wishlist .product-item-details {
  padding-bottom: 0;
  border-bottom: 0;
}
.sidebar .block-reorder .actions-toolbar {
  max-width: 100%;
}
.search.results dl.block {
  display: none;
}
.bundle-options-container .block-bundle-summary .product-addto-links > .action,
.product-info-main .action.tocompare,
.product-options-bottom .action.tocompare,
.product-info-main .action.towishlist,
.product-options-bottom .action.towishlist,
.block-bundle-summary .action.towishlist {
  line-height: 31px;
}
.contact-index-index .column:not(.sidebar-additional) .form.contact {
  width: 100%;
  margin-bottom: 70px;
}
.minicart-items .product-item-name a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-info-main .action.towishlist,
.product-info-main .action.tocompare {
  border-radius: 100%;
  color: #b6b6b6;
}
.product-info-main .action.towishlist:hover,
.product-info-main .action.tocompare:hover {
  color: #ffffff;
  background-color: #ce2129;
  border-color: #ce2129;
}
.product-info-main .rating-summary .rating-result {
  width: 90px;
}
.product-info-main .rating-summary .rating-result:before,
.product-info-main .rating-summary .rating-result span:before {
  letter-spacing: 4px;
}
.load_more {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 60px;
}
.load_more .loadmore {
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  font-weight: 500;
  background-color: #ce2129;
  line-height: 40px;
  padding: 0 60px;
  color: #ffffff;
  border-radius: 3px;
  z-index: 1;
  text-transform: uppercase;
  border-color: #ce2129;
  height: 40px;
  display: inline-block;
}
body .fotorama1557117024382 .fotorama__nav--thumbs .fotorama__nav__frame {
  padding: 1px;
}
body .chosen-container .chosen-drop {
  border: none;
  margin-top: 0;
}
.chosen-container-single .chosen-single div b {
  font-size: 18px;
}
.old-price,
.old.price {
  text-decoration: line-through;
  color: #b5b5b5;
}
.product-info-main .page-title-wrapper .page-title {
  letter-spacing: -1px;
  margin-top: 0;
  line-height: 1;
  margin-bottom: 0;
}
.product.data.items > .item.title,
.filter-content .filter-options .filter-options-title,
.contact-index-index h3,
#pageContent .velaAboutUsTitle,
.title-widget-post,
.title-post-tab,
.item-post-full .post-title,
.rokan-product-heading {
  letter-spacing: -1px;
}
body .fotorama1560143123032 .fotorama__nav--thumbs .fotorama__nav__frame {
  padding: 0;
}
body .main-img-quickview {
  border: none;
}
.product-info-main .product-social-extra .action.tocompare,
.product-info-main .product-social-extra .action.towishlist {
  margin-right: 6px;
}
body .fotorama__thumb-border {
  background: transparent;
}
.product-info-main .stock.available,
.product-info-main .stock.unavailable {
  text-transform: capitalize;
}
.product.attribute.sku,
.product-info-main .product.attribute.sku {
  display: block;
  vertical-align: top;
  color: #666;
  margin: 0;
}
.pages strong.page {
  font-weight: 400;
  font-size: 14px;
}
.pages .action {
  border: 0;
}
#layered-ajax-filter-block .filter-label {
  font-weight: 500;
  margin-bottom: 20px;
}
#layered-ajax-filter-block .action.remove span i:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
  line-height: 20px;
  color: inherit;
  content: '\e616';
  font-family: icons-blank-theme;
  margin: 0;
  vertical-align: top;
  display: inline-block;
  font-weight: 700;
  overflow: hidden;
  speak: none;
  padding-left: 30px;
  text-align: center;
}
body .fa-envelope:before {
  content: "\e98e";
  font-family: icomoon !important;
  font-size: 1.1rem;
}
body .fa-print:before {
  content: "\e9bd";
  font-family: icomoon !important;
  font-size: 1.1rem;
}
body .fa-mail-forward:before,
body .fa-share:before {
  content: "\e9cc";
  font-family: icomoon !important;
  font-size: 1.1rem;
}
.wrapper_slider {
  text-align: center;
}
.sidebar .top_rate .rokan-product-heading h2 .sup-title {
  display: none;
}
@media (min-width: 768px), print {
  .verticalmenu.navigation li.level0.fullwidth .submenu li.level1 > a,
  .verticalmenu.navigation li.level0.staticwidth .submenu li.level1 > a {
    margin-top: 10px;
  }
}
.abs-action-addto-product,
.block-event .slider-panel .slider .item .action.event,
.bundle-options-container .block-bundle-summary .product-addto-links > .action,
.product-info-main .action.tocompare,
.product-options-bottom .action.tocompare,
.product-info-main .action.towishlist,
.product-options-bottom .action.towishlist,
.block-bundle-summary .action.towishlist {
  border: 1px solid #e6e6e6;
}
.product-info-main .product-social-extra .action.tocompare,
.product-info-main .product-social-extra .action.towishlist {
  background: #f6f6f6;
}
.product-info-main .product-social-extra .action.tocompare:hover,
.product-info-main .product-social-extra .action.towishlist:hover {
  background: #ce2129;
}
.cms-index-index .page.messages {
  display: none;
}
.message.notice {
  font-size: 14px;
  line-height: 20px;
}
.message.notice .block .title {
  font-size: 14px;
  margin-bottom: 0;
}
input::placeholder {
  color: #888888;
}
.product-list .item-product:before {
  display: none;
}
.table-wrapper.grouped thead {
  background: #f6f6f6;
}
.table-wrapper.grouped .table:not(.cart):not(.totals) > thead > tr > th,
.table-wrapper.grouped .table:not(.cart):not(.totals) > tbody > tr > th,
.table-wrapper.grouped .table:not(.cart):not(.totals) > tfoot > tr > th,
.table-wrapper.grouped .table:not(.cart):not(.totals) > thead > tr > td,
.table-wrapper.grouped .table:not(.cart):not(.totals) > tbody > tr > td,
.table-wrapper.grouped .table:not(.cart):not(.totals) > tfoot > tr > td {
  border: none;
}
.product-info-main .special-price,
.product-options-bottom .special-price {
  margin: 0 !important;
}
.menu-links-mobile {
  text-align: left;
}
.menu-links-mobile li {
  display: inline-block;
  margin-right: 25px;
}
.menu-links-mobile li a {
  text-decoration: none;
  color: #222222;
  display: block;
  font-weight: 500;
  padding: 0 12px;
  line-height: 60px;
  font-size: 14px;
  font-family: 'Rubik', sans-serif;
  background: transparent;
  text-transform: uppercase;
}
.nav-toggle:before {
  font-family: 'icomoon';
  content: "\e994";
  color: #fff;
}
#purchase-fake-order.purchase-order {
  background-color: #fff;
  position: fixed;
  -webkit-box-shadow: -1px 1px 6px rgba(30, 32, 40, 0.3);
  -moz-box-shadow: -1px 1px 6px rgba(30, 32, 40, 0.3);
  box-shadow: -1px 1px 6px rgba(30, 32, 40, 0.3);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  left: 20px;
  bottom: 20px;
  width: 320px;
  z-index: 999;
  border-radius: 3px;
  padding: 10px;
}
#purchase-fake-order.purchase-order .purchase-close {
  position: absolute;
  right: 10px;
  top: 6px;
  font-size: 18px;
}
#purchase-fake-order.purchase-order .product-purchase:before,
#purchase-fake-order.purchase-order .product-purchase:after {
  content: "";
  display: table;
  clear: both;
}
#purchase-fake-order.purchase-order .product-purchase .purchase-image {
  height: 100%;
  float: left;
  border-radius: 3px;
}
#purchase-fake-order.purchase-order .product-purchase .purchase-image img {
  width: 124px;
}
#purchase-fake-order.purchase-order .product-purchase .purchase-info {
  padding-left: 15px;
  overflow: hidden;
}
#purchase-fake-order.purchase-order .product-purchase .dib,
#purchase-fake-order.purchase-order .product-purchase .minutes-ago {
  display: block;
  font-size: 12px;
  margin-bottom: 15px;
}
#purchase-fake-order.purchase-order .product-purchase .title {
  letter-spacing: .3px;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.5;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
#purchase-fake-order.purchase-order .product-purchase .title a {
  color: #222222;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 18px;
}
#purchase-fake-order.purchase-order .btnProductQuickview {
  font-size: 13px;
  color: #222222;
  text-transform: capitalize;
}
[class^=icon-],
[class*=" icon-"] {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-inner {
  font-size: 0;
}
.checkout-index-index .page-main.container,
.checkout-cart-index .page-main.container {
  margin-top: 40px;
}
.fancybox-wrap .action_button .btn-continue,
.action_button .button.btn-viewcart {
  width: 300px;
  display: inline-block;
}
.cart.table-wrapper #shopping-cart-table {
  border-bottom: 1px solid #ebebeb;
}
.cart.table-wrapper .cart.items .col {
  border-bottom: 0;
  text-align: center;
  padding: 30px 10px;
}
.cart.table-wrapper .cart.items .col span {
  color: #222222;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  font-size: 14px;
}
.cart.table-wrapper .cart.items .col .action span {
  font-size: 0px;
}
.cart.table-wrapper .cart.items .col span.price {
  color: #ce2129;
}
.cart.table-wrapper .cart.items .col .product-item-photo {
  padding-left: 20px;
}
.cart.table-wrapper .cart.items .col .actions-toolbar a {
  font-size: 0;
  padding: 0;
  background: 0 0;
  min-width: 1px;
  height: unset;
  line-height: 1;
  border: 0;
  background-color: transparent !important;
}
.cart.table-wrapper .cart.items .col .actions-toolbar a.action-edit:before {
  content: "\f040";
  font-family: Fontawesome;
  font-size: 13px;
  color: #222222;
}
.cart.table-wrapper .cart.items .col .actions-toolbar a.action-delete:before {
  content: "\e953";
  font-family: 'icomoon';
  color: #222222;
  font-size: 16px;
}
.cart.table-wrapper .control.qty {
  position: relative;
  border: 1px solid #e6e6e6;
}
.cart.table-wrapper .qty-down-fixed-onclick-page-cart:after {
  position: absolute;
  right: 10px;
  bottom: 8px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  line-height: 10px;
  color: inherit;
  content: "\e92e";
  font-family: 'icomoon';
  vertical-align: middle;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
  width: 25px;
  height: 10px;
}
.cart.table-wrapper .qty-up-fixed-onclick-page-cart:after {
  position: absolute;
  top: 8px;
  right: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  line-height: 10px;
  color: inherit;
  content: "\e931";
  font-family: 'icomoon';
  vertical-align: middle;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
  width: 25px;
  height: 10px;
}
.cart.table-wrapper .col.qty .input-text {
  width: 80px;
  padding-right: 30px;
  margin-top: 0;
  border: 0;
}
body table#shopping-cart-table td,
body table#shopping-cart-table th,
body table#shopping-cart-table,
body td,
body th,
body .table > tbody + tbody {
  border: 1px solid #e6e6e6;
  border-bottom: 0;
}
body table#shopping-cart-table .item-info td:first-child {
  border: 0;
}
body .opcheckout-shipping-method-section .sp-methods .radioparent label .col-price {
  font-weight: 400;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: transparent;
}
.field-error,
div.mage-error[generated] {
  margin-bottom: 7px;
}
.page.messages {
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
}
.page.messages .message.success {
  margin-bottom: 0;
  margin-top: 45px;
}
.customer-account-index .page.messages .message.success {
  margin-bottom: 35px;
}
.catalog-product-view .page.messages {
  max-width: 100%;
  margin: 0 auto;
  width: auto;
}
.catalog-product-view .page.messages .message.success {
  margin-top: 0;
  margin-bottom: 35px;
}
.brand-view {
  margin-bottom: 0;
  padding-bottom: 0;
}
.rokanthemesbrand-brand-view .toolbar-products {
  margin-top: 18px;
}
.box-tocarts #product-updatecart-button {
  font-family: 'dinpro-light';
  font-weight: 500;
  font-size: 12px;
  color: #222222;
  background: #f6f6f6;
  padding: 0 75px;
  height: 45px;
  text-transform: uppercase;
  border: 1px solid #e6e6e6;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.block-cart-failed .action.continue,
.cart-container .form-cart .action.continue {
  border: 1px solid #e6e6e6;
  background: #f4f4f4;
}
.cart-summary {
  background: #f6f6f6;
  padding: 30px 30px 40px 30px;
  border: 1px solid #e6e6e6;
}
.cart-container {
  margin-bottom: 60px;
}
body .one-step-checkout h3 {
  font-weight: 500;
  text-transform: capitalize;
  font-size: 14px;
}
body #discount-code {
  border-radius: 3px;
  padding: 20px;
  height: 50px !important;
  line-height: 48px;
}
body input[type="checkbox"] {
  margin: 0 6px 4px 0;
}
body .wrap-col-last-3 .opcheckout-place {
  background: #ce2129;
  border-color: #ce2129;
}
body .wrap-col-last-3 .opcheckout-place span {
  color: white;
}
@media (min-width: 1200px) {
  .row.grid[data-desktop="3"] > div,
  .row.vertical[data-desktop="3"] > div,
  .display-products:not(.products-list) .row[data-desktop="3"] > div {
    -webkit-box-flex: 25%;
    -moz-box-flex: 25%;
    -webkit-flex: 25%;
    -ms-flex: 25%;
    flex: 25%;
    max-width: 25%;
  }
}
@media (max-width: 1199px) {
  .row.grid[data-desktop="3"] > div,
  .row.vertical[data-desktop="3"] > div,
  .display-products:not(.products-list) .row[data-desktop="3"] > div {
    -webkit-box-flex: 50%;
    -moz-box-flex: 50%;
    -webkit-flex: 50%;
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}
@media (max-width: 480px) {
  .row.grid[data-desktop="3"] > div,
  .row.vertical[data-desktop="3"] > div,
  .display-products:not(.products-list) .row[data-desktop="3"] > div {
    -webkit-box-flex: 100%;
    -moz-box-flex: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}
.tbay-addon-features.style-2 .feature-box .inner {
  display: flex;
  flex-direction: column;
  padding: 26px 10px 27px;
  background: #f9f9f9;
  border: 1px solid #e5e5e5;
  justify-content: center;
  width: 100%;
}
.tbay-addon-features.style-2 .feature-box .inner > div {
  display: block;
}
.tbay-addon-features.style-2 .fbox-image i,
.tbay-addon-features.style-2 .fbox-icon i {
  font-size: 0;
}
.tbay-addon-features.style-2 .fbox-image i:before,
.tbay-addon-features.style-2 .fbox-icon i:before {
  font-size: 35px;
}
[class^="linear-icon-"],
[class*="linear-icon-"] {
  font-family: 'icomoon';
  color: #ce2129;
}
.tbay-addon-features .fbox-icon i {
  -webkit-transition: .35s;
  -o-transition: .35s;
  transition: .35s;
}
.linear-icon-camera2:before {
  content: "";
  background: url(../images/icon_camera.png) no-repeat;
  width: 50px;
  vertical-align: middle;
  height: 35px;
  display: inline-block;
}
.linear-icon-vector:before {
  content: "";
  background: url(../images/icon_lllustration.png) no-repeat;
  width: 50px;
  vertical-align: middle;
  height: 35px;
  display: inline-block;
}
.linear-icon-palette:before {
  content: "\e929";
  content: "";
  background: url(../images/icon_graphic.png) no-repeat;
  width: 50px;
  vertical-align: middle;
  height: 35px;
  display: inline-block;
}
.linear-icon-pencil-ruler:before {
  content: "";
  background: url(../images/icon_lllustration.png) no-repeat;
  width: 50px;
  vertical-align: middle;
  height: 35px;
  display: inline-block;
}
.linear-icon-shirt:before {
  content: "";
  background: url(../images/icon_lllustration.png) no-repeat;
  width: 50px;
  vertical-align: middle;
  height: 35px;
  display: inline-block;
}
.linear-icon-laptop-phone:before {
  content: "";
  background: url(../images/icon_lllustration.png) no-repeat;
  width: 50px;
  vertical-align: middle;
  height: 35px;
  display: inline-block;
}
.tbay-addon-features.style-2 .fbox-content {
  padding: 4px 0 0;
  border: 0;
  text-align: center;
}
.tbay-addon-features.style-2 .feature-box .inner > div {
  display: block;
  text-align: center;
}
.tbay-addon-features .ourservice-heading {
  font-size: 14px;
  line-height: 23px;
  font-weight: 500;
  margin: 0;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
.row.grid > div,
.row.vertical > div,
.display-products:not(.products-list) .row > div {
  padding: 0 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.tbay-addon-features .feature-box {
  position: relative;
  margin-bottom: 30px;
  display: block !important;
}
.tbay-addon {
  margin-bottom: 40px;
  position: relative;
  padding: 0;
  background: transparent;
  clear: both;
  z-index: 1;
}
.tbay-addon:last-child {
  margin-bottom: 0 !important;
}
.tbay-addon.tbay-addon-text-heading {
  margin-bottom: 30px;
}
.content-about .tbay-addon.tbay-addon-text-heading {
  padding-top: 9px;
}
.content-about .tbay-addon.tbay-addon-video {
  padding-bottom: 35px;
}
.tbay-addon-video .tbay-addon-content {
  position: relative;
}
.tbay-addon-video .tbay-addon-content .main-content {
  float: left;
  width: 100%;
}
.tbay-addon-video .tbay-addon-content .tbay-modalButton {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  width: 100%;
  height: 100%;
  background: transparent;
  color: #000;
  font-size: 25px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: 0;
  -webkit-transition: .35s;
  -o-transition: .35s;
  transition: .35s;
}
.zmdi {
  display: inline-block;
  font: normal normal normal 14px/1 'Material-Design-Iconic-Font';
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.tbay-addon-video .tbay-addon-content .tbay-modalButton i {
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #fff;
  position: relative;
}
.tbay-addon-video .tbay-addon-content .tbay-modalButton i:before {
  display: block;
  position: relative;
  z-index: 11;
}
.zmdi-play:before {
  content: '\f3aa';
}
.tbay-addon-video .tbay-addon-content .tbay-modalButton i:after {
  content: '';
  background: rgba(255, 255, 255, 0.4);
  position: absolute;
  left: -12px;
  right: -12px;
  top: -12px;
  bottom: -12px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: .35s;
  -o-transition: .35s;
  transition: .35s;
  z-index: 0;
}
.tbay-addon-ourteam {
  margin-bottom: 25px;
}
.ourteam-inner {
  text-align: center;
  margin: 0;
  flex-direction: column;
}
.ourteam-inner .avatar {
  overflow: hidden;
  position: relative;
}
.ourteam-inner .avatar img {
  width: 100%;
}
.ourteam-inner .avatar:before {
  background: rgba(0, 0, 0, 0.7);
  content: "";
  height: 100%;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  width: 100%;
  z-index: 1;
}
.ourteam-inner .social-link {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  visibility: hidden;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}
.ourteam-inner .social-link {
  margin: 0;
  padding: 0;
}
.ourteam-inner .social-link li {
  list-style: none;
  display: inline-block;
  margin-right: 25px;
  margin-left: 0;
}
.ourteam-inner .social-link a {
  color: #fff;
}
.icon-social-facebook:before {
  content: "\e00b";
}
.icon-social-twitter:before {
  content: "\e009";
}
.icon-social-google:before {
  content: "\e60d";
}
.icon-social-linkedin:before {
  content: "\e60a";
}
.ourteam-inner .info {
  margin-top: 10px;
  width: 100%;
  color: #222222;
}
.ourteam-inner .name-team {
  margin: 0;
  font-size: 14px;
  line-height: 23px;
  font-weight: 500;
}
.ourteam-inner .job {
  line-height: 23px;
  margin: 0;
}
.content-about .tbay-addon .tbay-addon-title .subtitle,
.content-about .tbay-addon .tbay-addon-heading .subtitle {
  margin: 0;
}
.cms-about-us blockquote {
  margin: 38px 0 40px 0;
  padding: 0;
  padding-left: 25px;
  padding-right: 0;
  color: #000;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: #ce2129;
}
.cms-about-us blockquote .color {
  color: #ce2129;
}
.bundle-actions .action.primary {
  background: #ce2129;
  color: white;
  border: 0;
}
body .action_button .button.btn-continue,
body .action_button .button.btn-viewcart {
  font-size: 14px;
}
.checkout-payment-method .step-title {
  display: none;
}
body #one-step-checkout-form .checkout-review-load .data-table tbody th,
body #one-step-checkout-form .checkout-review-load .data-table tbody th label,
body #one-step-checkout-form .checkout-review-load .data-table thead th,
body #one-step-checkout-form .order-information ol li .opcheckout-shipping-method-section .sp-methods dt {
  font-size: 13px;
  color: #2f2f2f;
  font-weight: 500;
}
body #one-step-checkout-form .checkout-review-load .data-table tbody th .label,
body #one-step-checkout-form .checkout-review-load .data-table tbody th label .label,
body #one-step-checkout-form .checkout-review-load .data-table thead th .label,
body #one-step-checkout-form .order-information ol li .opcheckout-shipping-method-section .sp-methods dt .label {
  font-weight: 500;
  color: #2f2f2f;
}
body .opcheckout-login-link {
  text-align: left;
}
body button#add_coupon_code_button {
  margin-top: 24px;
  height: 50px;
  line-height: 48px;
}
.minicart-items .product-item:not(:first-child) {
  border-top: 1px solid #e6e6e6;
}
body .opcheckout-index-index button:hover {
  opacity: 1 !important;
  filter: alpha(opacity=100) !important;
}
body #review_step_header,
body .one-step-checkout h3.step_1,
body .one-step-checkout h3.step_2,
body .one-step-checkout h3.step_3,
body .one-step-checkout h3.step_4,
body .one-step-checkout h3.step_5 {
  border: none;
}
.ourteam-inner .blog-post-info {
  text-align: left;
}
.ourteam-inner .blog-post-info h3.post-title {
  font-family: 'dinpro-light';
  font-size: 18px;
  font-weight: 500;
  color: #222222;
  margin: 30px 0 11px;
}
.banner_left_sidebar {
  margin-bottom: 38px;
}
.cart-totals .grand .amount strong,
.opc-block-summary .table-totals .grand .amount strong {
  font-weight: 500;
  color: #222222;
}
.page-title-wrapper .container {
  padding: 0;
}
.cart.table-wrapper .items > .item {
  border-bottom: 0;
}
.cart.table-wrapper .items thead + .item {
  border-top: 1px solid #e6e6e6;
}
.cart.main.actions .action.continue,
.cart.main.actions .action.clear,
.cart.main.actions .action.update {
  height: 50px;
  line-height: 48px;
}
.block-cart-failed .action.update,
.cart-container .form-cart .action.update {
  padding: 0 50px;
}
.block-cart-failed .action.update:before,
.cart-container .form-cart .action.update:before {
  display: none;
}
#coupon_code {
  border-radius: 3px;
  background: white;
  margin-top: 10px;
}
#discount-coupon-form .primary {
  width: 100%;
}
#discount-coupon-form .action.apply.primary {
  background: #222222;
  border-color: #222222;
  height: 50px;
  line-height: 50px;
  color: white;
  width: 100%;
}
#discount-coupon-form .action.apply.primary:hover {
  background: #ce2129;
  border-color: #ce2129;
}
#one-step-checkout-form .checkout-review-load .data-table td .box-qty {
  border: 1px solid #e6e6e6;
}
.swatch-attribute.size .swatch-option.selected,
.swatch-attribute.manufacturer .swatch-option.selected {
  background: #ce2129;
  border-color: #ce2129;
  color: white !important;
}
.catalog-product_compare-index .secondary-addto-links.actions-secondary {
  display: none;
}
.the_blog .blog-image {
  position: relative;
  overflow: hidden;
}
.the_blog .blog-image a:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-transition: all .5s linear;
  -moz-transition: all .5s linear;
  -ms-transition: all .5s linear;
  -o-transition: all .5s linear;
  transition: all .5s linear;
}
.the_blog .blog-image a:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-transition: all .5s linear;
  -moz-transition: all .5s linear;
  -ms-transition: all .5s linear;
  -o-transition: all .5s linear;
  transition: all .5s linear;
}
.the_blog .blog-image img {
  width: 100%;
}
.col-onsale-left {
  position: relative;
  overflow: hidden;
}
.col-onsale-left:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-transition: all .5s linear;
  -moz-transition: all .5s linear;
  -ms-transition: all .5s linear;
  -o-transition: all .5s linear;
  transition: all .5s linear;
}
.col-onsale-left:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-transition: all .5s linear;
  -moz-transition: all .5s linear;
  -ms-transition: all .5s linear;
  -o-transition: all .5s linear;
  transition: all .5s linear;
}
.payment-method a {
  display: inline-block;
  margin-left: 12px;
}
.detailed h3 {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  margin-bottom: 17px;
}
.detailed p {
  text-align: justify;
}
.countdown-page-product-custom .product-sold {
  margin-bottom: 40px;
}
.countdown-page-product-custom .product-sold .count-sold {
  font-size: 20px;
  color: #222;
}
.countdown-page-product-custom .product-sold span {
  font-weight: 500;
}
.countdown-page-product-custom .product-sold span:last-child {
  color: #ce2129;
}
.countdown-page-product-custom .product-sold .ruler-sold {
  height: 12px;
}
.countdown-page-product-custom .product-sold .ruler-sold-count {
  height: 12px;
  position: relative;
}
.countdown-page-product-custom .des-countdown-p-p-c {
  font-size: 20px;
  color: #222;
}
.countdown-page-product-custom .des-countdown-p-p-c .price-countdown-highlight {
  font-weight: 500;
  color: #222;
  font-size: 20px;
}
.countdown-page-product-custom .des-countdown-p-p-c .price-countdown-stock {
  color: #0066c0;
  font-weight: 500;
}
.countdown-page-product-custom .progressbar-countdown-p-p-c {
  margin-top: 20px;
  height: 10px;
  background-color: #e6e6e6;
  margin-bottom: 40px;
  border-radius: 20px;
}
.countdown-page-product-custom .progressbar-countdown-p-p-c > div {
  height: 10px;
  background-color: #666666;
  display: block;
  height: 100%;
  -webkit-border-top-right-radius: 20px;
  -webkit-border-bottom-right-radius: 20px;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-bottomright: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  -webkit-border-top-left-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-bottomleft: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #ce2129;
  background-image: -moz-linear-gradient(center bottom, #ce2129 37%, #ce2129 69%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ce2129), color-stop(1, #ce2129));
  position: relative;
  overflow: hidden;
}
.countdown-page-product-custom .progressbar-countdown-p-p-c > div:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0.25, rgba(255, 255, 255, 0.2)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.2)), color-stop(0.75, rgba(255, 255, 255, 0.2)), color-stop(0.75, transparent), to(transparent));
  z-index: 1;
  -webkit-background-size: 50px 50px;
  -moz-background-size: 50px 50px;
  -webkit-animation: move 2s linear infinite;
  -webkit-border-top-right-radius: 20px;
  -webkit-border-bottom-right-radius: 20px;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-bottomright: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  -webkit-border-top-left-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-bottomleft: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
}
.countdown-page-product-custom #countbox-p-p-c-container {
  -js-display: flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  margin-bottom: 30px;
}
.countdown-page-product-custom #countbox-p-p-c-container .countdown-p-p-c-section {
  margin-right: 15px;
  border-radius: 3px;
  border: 2px solid #e6e6e6;
  text-align: center;
  padding: 7px 10px 6px;
  min-width: 70px;
  display: flex;
  flex-direction: column;
}
.countdown-page-product-custom #countbox-p-p-c-container .countdown-p-p-c-section .countdown-amount-p-p-c {
  font-size: 20px;
  padding: 5px 0;
  color: #222222;
  font-weight: 500;
}
.countdown-page-product-custom #countbox-p-p-c-container .countdown-p-p-c-section .countdown-label-p-p-c {
  text-transform: capitalize;
  color: #999;
  font-size: 14px;
  padding-top: 6px;
  padding-bottom: 6px;
  margin-top: 6px;
  border-top: 1px solid #e6e6e6;
  font-weight: 400;
  display: block;
  text-align: center;
}
@media (min-width: 768px) {
  .catalog-product-view .view-product .product.media {
    width: 100% !important;
  }
}
.product-view .box-tocart .fieldset .info-qty,
.product-options-bottom .box-tocart .fieldset .info-qty {
  padding: 14px 20px;
}
.product-view .box-tocart .fieldset .info-qty .input-text.qty,
.product-options-bottom .box-tocart .fieldset .info-qty .input-text.qty {
  border: 0;
  text-align: center;
  vertical-align: top;
  height: auto;
  width: 100%;
  line-height: 1;
}
.swatch-attribute.size .swatch-option.selected,
.swatch-attribute.manufacturer .swatch-option.selected {
  background: #ce2129 !important;
}
.block-reorder .product-item .field.item {
  margin-right: 5px;
}
.block-order-details-view .block-title {
  margin-bottom: 10px;
}
.block-content {
  line-height: 24px;
}
.price-including-tax .price,
.price-excluding-tax .price {
  font-size: 14px;
  font-weight: 500;
}
.items-qty .title {
  font-size: 14px;
  font-weight: 500;
}
.account .page-title-wrapper .page-title {
  margin-left: 10px;
  margin-bottom: 20px;
}
.wishlist-index-index .page-title-wrapper .page-title {
  text-align: center;
}
.block-title.order {
  margin: 20px 0 10px 0;
}
.page-title-wrapper .order-date {
  margin-top: 0;
  margin-left: 10px;
}
.return-status,
.order-status {
  display: inline-block;
  margin-bottom: 20px;
  margin: 20px 0 20px 10px;
  color: #888;
}
.actions-toolbar.order-actions-toolbar {
  margin-left: 10px;
  margin-right: 10px;
}
.order-links .item.current {
  margin-bottom: 8px;
  font-weight: 500;
}
.layout-2-col .col-main .post-list-wrapper .blog-list-post {
  margin: 0 -15px;
}
.layout-2-col .col-main .post-list-wrapper .blog-list-post:after,
.layout-2-col .col-main .post-list-wrapper .blog-list-post:before {
  content: '';
  display: table;
  clear: both;
}
@media (max-width: 1500px) and (min-width: 1399px) {
  .velaNewsletterFooter .velaContentForm {
    width: 40%;
  }
  .velaNewsletterFooter .velaContentSupport {
    width: 21%;
  }
}
.modal-popup.confirm .modal-inner-wrap {
  max-width: 500px;
  border-radius: 3px;
  text-align: center;
}
.modal-popup .modal-footer {
  text-align: center;
  border-top: 0;
  border: 0;
  padding-top: 20px;
}
.modal-popup .modal-header {
  padding-top: 20px;
}
.fancybox-close {
  background: transparent;
  top: 0;
  right: 0;
}
.fancybox-close:after,
.modal-custom .action-close:before,
.modal-popup .action-close:before,
.modal-slide .action-close:before {
  color: #ce2129;
  font-size: 21px;
  line-height: 1.1;
  display: block;
  font-weight: 400;
  content: "\e082";
  font-family: 'simple-line-icons';
  text-align: center;
}
.modal-popup.confirm .modal-inner-wrap .modal-content {
  padding: 0 3rem;
}
.fancybox-close:after {
  color: #ce2129 !important;
}
button.action-primary.action-accept {
  background: #CE2129;
  border: 1px solid #CE2129;
}
button.action-primary.action-accept:hover {
  background: #ce2129;
}
.verticalmenu.navigation.side-verticalmenu > ul:after {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  border: none;
  z-index: 2;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -moz-transition: opacity 0.8s ease, visibility 0.9s ease, -moz-transform 0.4s eas;
  -o-transition: opacity 0.8s ease, visibility 0.9s ease, -o-transform 0.4s eas;
  -webkit-transition: opacity 0.8s ease, visibility 0.9s ease, -webkit-transform 0.4s eas;
  transition: opacity .8s ease,visibility .9s ease,transform .4s ease;
}
.background_shadow .verticalmenu.navigation.side-verticalmenu > ul:after {
  opacity: 1;
  visibility: visible;
}
.contact-index-index .column:not(.sidebar-additional) .form.contact {
  min-width: 100%;
}
.page-layout-1column .product-info-main .product-add-form #product-options-wrapper label {
  font-size: 14px;
}
.page-layout-1column .product-info-main .product-add-form #product-options-wrapper .field .price-container {
  font-size: 14px;
  vertical-align: middle;
}
/* col-header-action */
.flex {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
}
.compare-wishlist-icon .top-info ul {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  flex-direction: row-reverse;
}
.compare-wishlist-icon .top-info ul li a {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  border: 0;
  position: relative;
  padding: 0 25px;
}
.compare-wishlist-icon .top-info ul li a .qty {
  position: absolute;
  top: 6px;
  right: 20px;
  background: #ce2129;
  color: #ffffff;
}
@media (max-width: 767px) {
  .compare-wishlist-icon .top-info ul li a .qty {
    top: 2px;
  }
}
@media (max-width: 1199px) {
  .compare-wishlist-icon .top-info ul li a {
    font-size: 0;
  }
  .compare-wishlist-icon .top-info ul li a .qty {
    right: 15px !important;
  }
}
@media (max-width: 1024px) {
  .compare-wishlist-icon .top-info ul li a .qty {
    right: 0px !important;
  }
}
.compare-wishlist-icon .top-info ul li a:before {
  font-family: 'simple-line-icons';
  font-size: 30px;
  display: block;
  text-align: center;
}
.compare-wishlist-icon .top-info ul li.wishlist a:before {
  content: "\e09b";
}
.compare-wishlist-icon .top-info ul li.wishlist a .qty {
  right: 30px;
}
.compare-wishlist-icon .top-info ul li.compare a:before {
  content: "\e034";
}
.compare-wishlist-icon .top-info ul li.compare a .qty {
  right: 20px;
}
.compare-wishlist-icon .top-info ul li:last-child a {
  padding-right: 25px;
}
.compare-wishlist-icon .top-info ul li a .qty,
.compare-wishlist-icon .mini-carts .header-mini-cart .qty {
  position: absolute;
  display: block;
  min-width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 10px;
}
@media (max-width: 767px) {
  .compare-wishlist-icon .top-info ul li a:before,
  .compare-wishlist-icon .mini-carts .header-mini-cart:before {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .compare-wishlist-icon .top-info ul li:last-child a,
  .compare-wishlist-icon .top-account ul li a {
    padding: 0 10px !important;
  }
  .compare-wishlist-icon .minicart-wrapper {
    padding-left: 12px;
  }
}
@media (max-width: 480px) {
  .compare-wishlist-icon .top-info ul li:last-child a,
  .compare-wishlist-icon .top-account ul li a {
    padding: 0 12px !important;
  }
  .compare-wishlist-icon .mini-cart-wrapper {
    padding-left: 12px;
  }
  .compare-wishlist-icon .header-content .minicart-wrapper {
    padding-left: 0;
  }
}
/* Slider text animation */
.wrapper_slider .banner_item {
  position: relative;
}
.wrapper_slider .banner_item .text-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: auto;
}
.wrapper_slider .banner_item .text-banner * {
  animation-delay: 0.5s;
}
.wrapper_slider .banner_item .text-banner h2 {
  font-size: 48px;
  letter-spacing: -1px;
}
.wrapper_slider .banner_item .text-banner p {
  font-size: 18px;
}
.wrapper_slider .banner_item .text-banner p.des {
  margin-top: 21px;
}
.wrapper_slider .banner_item .text-banner .btn {
  background: #ce2129 none repeat scroll 0 0;
  color: #ffffff;
  box-shadow: none;
  display: inline-block;
  font-family: 'dinpro-bold';
  border-radius: 3px;
  margin-top: 59px;
  padding: 15px 45px;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .wrapper_slider .banner_item .text-banner h2 {
    font-size: 3.3vw;
  }
  .wrapper_slider .banner_item .text-banner p {
    font-size: 1.6vw;
  }
  .wrapper_slider .banner_item .text-banner p.des {
    margin-top: 1vw;
  }
  .wrapper_slider .banner_item .text-banner .btn {
    text-transform: none;
    margin-top: 1vw;
    padding: 1vw 2vw;
    font-size: 1.4vw;
  }
}
@media (max-width: 480px) {
  .wrapper_slider .banner_item .text-banner h2 {
    font-size: 5.3vw;
  }
  .wrapper_slider .banner_item .text-banner p {
    font-size: 3.2vw;
  }
  .wrapper_slider .banner_item .text-banner .btn {
    text-transform: none;
    margin-top: 1.5vw;
    font-size: 3vw;
  }
}
/* ajaxsuite-buttons */
body .modal-popup .ajaxsuite-buttons button {
  background: #ce2129 none repeat scroll 0 0;
  color: #ffffff;
  box-shadow: none;
  display: inline-block;
  font-family: 'dinpro-bold';
  border-radius: 3px;
  text-transform: none;
  font-size: 14px;
  height: 40px;
  font-weight: normal;
  position: relative;
  border: 1px solid transparent;
  text-shadow: none;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  height: auto;
  padding: 13.5px 10px;
  line-height: 1.2;
}
body .modal-popup .ajaxsuite-buttons button:hover {
  background: #ce2129;
  color: #ffffff;
  border: 1px solid #ce2129;
}
.ajaxsuite-popup-wrapper .modal-popup._inner-scroll .modal-inner-wrap .modal-header .action-close:before {
  color: #ffffff;
}
.ajaxsuite-popup-wrapper .modal-popup._inner-scroll .modal-inner-wrap .modal-header .action-close:hover:before {
  color: #ce2129;
}
.wishlist-index-index .limiter-options {
  border: 0;
  padding: 0;
}
.page.messages .message {
  margin-bottom: 20px;
}
.banner-slider .banner_item_bg img {
  width: 100%;
}
/* style pop up login */
.ajaxsuite-popup-wrapper .wave {
  background-color: #ce2129 !important;
}
/* loading restyle */
.modals-overlay {
  background: rgba(0, 0, 0, 0.8);
}
.loading-mask .loader {
  background: rgba(255, 255, 255, 0.8);
}
.loading-mask .loader img,
.loading-mask .loader p {
  display: none;
}
.loading-mask .loader:before {
  content: '';
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: inline-block;
  color: transparent;
  border: 3px solid;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-color: #616161 #E0E0E0 #E0E0E0 #E0E0E0;
  line-height: 1;
  -webkit-animation: spin 0.3s infinite linear;
  -moz-animation: spin 0.3s infinite linear;
  -o-animation: spin 0.3s infinite linear;
  animation: spin 0.3s infinite linear;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
/* ajaxsuite-buttons */
body .modal-popup .ajaxsuite-buttons button {
  background: #ce2129 none repeat scroll 0 0;
  color: #ffffff;
  box-shadow: none;
  display: inline-block;
  font-family: 'dinpro-bold';
  border-radius: 3px;
  text-transform: none;
  font-size: 14px;
  height: 40px;
  font-weight: normal;
  position: relative;
  border: 1px solid transparent;
  text-shadow: none;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  height: auto;
  padding: 13.5px 10px;
  line-height: 1.2;
}
body .modal-popup .ajaxsuite-buttons button:hover {
  background: #ce2129;
  color: #ffffff;
  border: 1px solid #ce2129;
}
.ajaxsuite-popup-wrapper .modal-popup._inner-scroll .modal-inner-wrap .modal-header .action-close:before {
  color: #ffffff;
}
.ajaxsuite-popup-wrapper .modal-popup._inner-scroll .modal-inner-wrap .modal-header .action-close:hover:before {
  color: #ce2129;
}
.animation-hover-effect .bs-banner {
  position: relative;
}
.animation-hover-effect .bs-banner:hover .banner-img img {
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.animation-hover-effect .bs-banner:hover .banner-text h4,
.animation-hover-effect .bs-banner:hover .banner-text p,
.animation-hover-effect .bs-banner:hover .banner-text .btn {
  -webkit-animation: fadeInShortLeft 500ms ease-in-out;
  -moz-animation: fadeInShortLeft 500ms ease-in-out;
  -ms-animation: fadeInShortLeft 500ms ease-in-out;
  animation: fadeInShortLeft 500ms ease-in-out;
}
.animation-hover-effect .bs-banner:hover .banner-text p {
  animation-duration: 700ms;
}
.animation-hover-effect .bs-banner:hover .banner-text .btn {
  animation-duration: 900ms;
}
.animation-hover-effect .banner-img {
  position: relative;
  display: block;
  overflow: hidden;
}
.animation-hover-effect .banner-img img {
  transition: 0.8s;
}
.animation-hover-effect .banner-img:after {
  content: '';
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
  background-color: #000000;
  opacity: 0.4;
}
.animation-hover-effect .banner-text {
  color: #ffffff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}
.animation-hover-effect .banner-text h4 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 30px;
}
.animation-hover-effect .banner-text h4.last {
  margin-bottom: 20px;
}
.animation-hover-effect .banner-text p {
  line-height: 1.75;
  margin-bottom: 0;
}
.animation-hover-effect .banner-text .btn {
  background: #ce2129 none repeat scroll 0 0;
  box-shadow: none;
  display: inline-block;
  font-family: 'dinpro-bold';
  border-radius: 3px;
  text-transform: none;
  font-size: 14px;
  height: 40px;
  font-weight: normal;
  position: relative;
  border: 1px solid transparent;
  text-shadow: none;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  margin-top: 55px;
  padding: 14px 55px;
  max-width: 200px;
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
  height: auto;
  border-radius: 0;
}
.animation-hover-effect .banner-text .btn:hover {
  background: #ce2129;
  color: #ffffff;
  border: 1px solid #ce2129;
}
.animation-hover-effect .banner-text .btn:hover {
  background-color: #ffffff;
  color: #222222;
  border-color: #ffffff;
}
@media (max-width: 991px) {
  .animation-hover-effect .banner-text .btn {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .animation-hover-effect .banner-text .btn {
    margin-top: 30px;
    padding: 14px 12%;
  }
}
.banner_background {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  padding: 170px 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .banner_background {
    padding: 100px 0;
  }
}
.banner_background:after {
  content: '';
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
  background-color: #000000;
  opacity: 0.4;
  z-index: 1;
}
.banner_background .text-banner {
  position: relative;
  z-index: 2;
}
.banner_background .text-banner h4 {
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.banner_background .text-banner h2 {
  font-size: 60px;
  margin-bottom: 25px;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .banner_background .text-banner h2 {
    font-size: 10vw;
  }
}
.banner_background .text-banner .btn {
  background: #ce2129 none repeat scroll 0 0;
  box-shadow: none;
  display: inline-block;
  font-family: 'dinpro-bold';
  border-radius: 3px;
  text-transform: none;
  font-size: 14px;
  height: 40px;
  font-weight: normal;
  position: relative;
  border: 1px solid transparent;
  text-shadow: none;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  margin-top: 73px;
  padding: 14px 70px;
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
  height: auto;
  border-radius: 0;
}
.banner_background .text-banner .btn:hover {
  background: #ce2129;
  color: #ffffff;
  border: 1px solid #ce2129;
}
.banner_background .text-banner .btn:hover {
  background-color: #ffffff;
  color: #222222;
  border-color: #ffffff;
}
@media (max-width: 480px) {
  .banner_background .text-banner .btn {
    margin-top: 30px;
    padding: 14px 12%;
  }
}
.rokanthemes-brandlist .page-title-wrapper {
  display: none;
}
.sidebar .rokan-featured-heading {
  font-size: 18px;
  color: #222222;
  display: block;
  padding: 0 0 13px 0;
  margin: 0 0 20px;
  position: relative;
  border-bottom: 1px solid #e6e6e6;
  text-align: left;
}
.sidebar .rokan-featured-heading h2 {
  font-size: 18px;
}
.new_product.home1 .item-product .product-info .sold-by {
  display: none;
}
.product.info.detailed .product.data.items .item.content .additional-attributes-wrapper table th,
.product.info.detailed .product.data.items .item.content .additional-attributes-wrapper table td {
  line-height: 1.4;
  text-transform: capitalize;
  border: 0;
  font-size: 14px;
  padding: 8px;
  vertical-align: baseline;
}
.product.info.detailed .product.data.items .item.content .additional-attributes-wrapper table td {
  padding-left: 10px;
}
.main-nav > ul > li.fullwidth .sub-menu:after,
.main-nav > ul > li.fullwidth .subchildmenu:after {
  display: none;
}
.main-nav > ul > li.menu-item-has-children.fullwidth li.menu-item-has-children > a::after,
.main-nav > ul .main-nav ul li.fullwidth .subchildmenu > li > a:after {
  display: none;
}
.custommenu.navigation li.level0.fullwidth > .submenu {
  padding: 0;
}
.custommenu.navigation li.level0.fullwidth > .submenu .subchildmenu {
  width: 100%;
  opacity: 1;
  visibility: visible;
  margin: 0;
}
.custommenu.navigation li.level0.fullwidth > .submenu .subchildmenu li {
  padding: 0;
}
.custommenu.navigation li.level0.fullwidth .subchildmenu.mega-columns.columns4 > li {
  float: left;
  width: 25%;
}
.custommenu.navigation li.level0.fullwidth .subchildmenu.mega-columns.columns4 > li a {
  border: none;
}
.custommenu.navigation li.level0.fullwidth .subchildmenu.mega-columns.columns4 > li > a {
  font-weight: 500;
}
.main-nav ul li.fullwidth .subchildmenu li .subchildmenu {
  position: unset;
  opacity: 1;
  visibility: visible;
  border: none;
}
.main-nav ul li.fullwidth .subchildmenu li .subchildmenu > li > a {
  border: none;
}
@media (min-width: 768px) {
  .custommenu.navigation > ul {
    position: relative;
  }
  .custommenu.navigation > ul:after {
    disaply: table;
    content: '';
    clear: both;
  }
  .custommenu.navigation .open-children-toggle {
    display: none;
  }
  .custommenu.navigation span.cat-label {
    position: absolute;
    text-transform: uppercase;
    font: inherit;
    font-size: 9px;
    padding: 2px;
    border-radius: 2px;
    line-height: 1;
    color: #ffffff;
  }
  .custommenu.navigation span.cat-label:before {
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    border: 3px solid transparent;
  }
  .custommenu.navigation span.cat-label.cat-label-label1 {
    background-color: #0cc485;
  }
  .custommenu.navigation span.cat-label.cat-label-label2 {
    background-color: #eb2771;
  }
  .custommenu.navigation span.cat-label.cat-label-label3 {
    background-color: #0ae3eb;
  }
  .custommenu.navigation a:hover > span > span.cat-label {
    text-decoration: none;
  }
  .custommenu.navigation li > a > span {
    position: relative;
  }
  .custommenu.navigation li.level0 > .level-top {
    transition-delay: 0s !important;
  }
  .custommenu.navigation li.level0 > a > span.cat-label {
    top: -18px;
    right: 14px;
  }
  .custommenu.navigation li.level0 > a > span.cat-label:before {
    left: 3px;
    bottom: -6px;
  }
  .custommenu.navigation li.level0 > a > span.cat-label.cat-label-label1:before {
    border-top-color: #0cc485;
  }
  .custommenu.navigation li.level0 > a > span.cat-label.cat-label-label2:before {
    border-top-color: #eb2771;
  }
  .custommenu.navigation li.level0 > a > span.cat-label.cat-label-label3:before {
    border-top-color: #0ae3eb;
  }
  .custommenu.navigation li .subchildmenu li > a > span > span.cat-label {
    top: 3px;
    right: -35px;
  }
  .custommenu.navigation li .subchildmenu li > a > span > span.cat-label:before {
    left: -6px;
    bottom: 3px;
  }
  .custommenu.navigation li .subchildmenu li > a > span > span.cat-label.cat-label-label1:before {
    border-right-color: #0cc485;
  }
  .custommenu.navigation li .subchildmenu li > a > span > span.cat-label.cat-label-label2:before {
    border-right-color: #eb2771;
  }
  .custommenu.navigation li .subchildmenu li > a > span > span.cat-label.cat-label-label3:before {
    border-right-color: #0ae3eb;
  }
  .custommenu.navigation .subchildmenu.mega-columns > li {
    float: none;
    padding: 0 5px;
  }
  .custommenu.navigation .subchildmenu.mega-columns.columns1 > li {
    float: none;
  }
  .custommenu.navigation .subchildmenu.mega-columns.columns2 > li {
    width: 50%;
  }
  .custommenu.navigation .subchildmenu.mega-columns.columns2 > li:nth-child(2n+1) {
    clear: both;
  }
  .custommenu.navigation .subchildmenu.mega-columns.columns3 > li {
    width: 33.33%;
  }
  .custommenu.navigation .subchildmenu.mega-columns.columns3 > li:nth-child(3n+1) {
    clear: both;
  }
  .custommenu.navigation .subchildmenu.mega-columns.columns4 > li {
    width: 100%;
  }
  .custommenu.navigation .subchildmenu.mega-columns.columns5 > li {
    width: 20%;
  }
  .custommenu.navigation .subchildmenu.mega-columns.columns5 > li:nth-child(5n+1) {
    clear: both;
  }
  .custommenu.navigation .subchildmenu.mega-columns.columns6 > li {
    width: 16.66%;
  }
  .custommenu.navigation .subchildmenu.mega-columns.columns6 > li:nth-child(6n+1) {
    clear: both;
  }
  .custommenu.navigation li.level0 {
    transition-delay: 0s;
    transition: .2s opacity;
  }
  .custommenu.navigation li.level0.fl-left {
    float: left;
  }
  .custommenu.navigation li.level0.fl-right {
    float: right;
  }
  .custommenu.navigation li.level0.fl-right.staticwidth .submenu {
    left: auto;
    right: 0;
    border-radius: 6px 0 6px 6px;
  }
  .custommenu.navigation li.level0 .submenu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: .2s opacity;
    color: #777;
  }
  .custommenu.navigation li.level0 .submenu > ul {
    margin-top: 0;
  }
  .custommenu.navigation li.level0 .submenu > ul:before,
  .custommenu.navigation li.level0 .submenu > ul:after {
    display: none;
  }
  .custommenu.navigation li.level0.parent > .submenu.popup-left {
    left: auto;
    right: 0;
    border-radius: 6px 0 6px 6px;
  }
  .custommenu.navigation li.level0 .row {
    margin-left: -5px;
    margin-right: -5px;
  }
  .custommenu.navigation li.level0 .col-sm-1,
  .custommenu.navigation li.level0 .col-sm-2,
  .custommenu.navigation li.level0 .col-sm-3,
  .custommenu.navigation li.level0 .col-sm-4,
  .custommenu.navigation li.level0 .col-sm-5,
  .custommenu.navigation li.level0 .col-sm-6,
  .custommenu.navigation li.level0 .col-sm-7,
  .custommenu.navigation li.level0 .col-sm-8,
  .custommenu.navigation li.level0 .col-sm-9,
  .custommenu.navigation li.level0 .col-sm-10,
  .custommenu.navigation li.level0 .col-sm-11,
  .custommenu.navigation li.level0 .col-sm-12 {
    padding-left: 5px;
    padding-right: 5px;
  }
  .custommenu.navigation li.level0.fullwidth {
    position: static;
  }
  .custommenu.navigation li.level0.fullwidth > .submenu {
    width: 100%;
    border-radius: 0 0 6px 6px;
  }
  .custommenu.navigation li.level0.fullwidth > .submenu,
  .custommenu.navigation li.level0.staticwidth > .submenu {
    padding: 5px 8px 15px;
    left: 0;
  }
  .custommenu.navigation li.level0.fullwidth:hover > .submenu,
  .custommenu.navigation li.level0.staticwidth:hover > .submenu {
    visibility: visible;
    opacity: 1;
  }
  .custommenu.navigation li.level0.fullwidth .submenu li.parent > a:after,
  .custommenu.navigation li.level0.staticwidth .submenu li.parent > a:after {
    display: none;
  }
  .custommenu.navigation li.level0.fullwidth .submenu li.level1 > a,
  .custommenu.navigation li.level0.staticwidth .submenu li.level1 > a {
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    margin-top: 10px;
  }
  .custommenu.navigation li.level0.fullwidth .submenu li.level1 .subchildmenu .subchildmenu,
  .custommenu.navigation li.level0.staticwidth .submenu li.level1 .subchildmenu .subchildmenu {
    padding-left: 10px;
  }
  .custommenu.navigation li.level0.fullwidth .submenu li.level1 > .menu-thumb-img,
  .custommenu.navigation li.level0.staticwidth .submenu li.level1 > .menu-thumb-img {
    margin: 10px 0 -5px;
  }
  .custommenu.navigation li.level0.fullwidth .submenu .subchildmenu .subchildmenu,
  .custommenu.navigation li.level0.staticwidth .submenu .subchildmenu .subchildmenu {
    padding: 5px 0;
  }
  .custommenu.navigation li.level0.fullwidth .submenu a,
  .custommenu.navigation li.level0.staticwidth .submenu a {
    padding: 5px;
    line-height: 1;
    font-size: 13px;
  }
  .custommenu.navigation li.level0.fullwidth .submenu a:hover,
  .custommenu.navigation li.level0.staticwidth .submenu a:hover {
    background: none;
  }
  .custommenu.navigation li.level0.fullwidth .submenu a:hover > span,
  .custommenu.navigation li.level0.staticwidth .submenu a:hover > span {
    text-decoration: none;
  }
  .custommenu.navigation li.level0.fullwidth .submenu .menu-top-block a,
  .custommenu.navigation li.level0.staticwidth .submenu .menu-top-block a,
  .custommenu.navigation li.level0.fullwidth .submenu .menu-left-block a,
  .custommenu.navigation li.level0.staticwidth .submenu .menu-left-block a,
  .custommenu.navigation li.level0.fullwidth .submenu .menu-right-block a,
  .custommenu.navigation li.level0.staticwidth .submenu .menu-right-block a,
  .custommenu.navigation li.level0.fullwidth .submenu .menu-bottom-block a,
  .custommenu.navigation li.level0.staticwidth .submenu .menu-bottom-block a {
    display: inline;
  }
  .custommenu.navigation li.level0.fullwidth .submenu .menu-top-block a:hover,
  .custommenu.navigation li.level0.staticwidth .submenu .menu-top-block a:hover,
  .custommenu.navigation li.level0.fullwidth .submenu .menu-left-block a:hover,
  .custommenu.navigation li.level0.staticwidth .submenu .menu-left-block a:hover,
  .custommenu.navigation li.level0.fullwidth .submenu .menu-right-block a:hover,
  .custommenu.navigation li.level0.staticwidth .submenu .menu-right-block a:hover,
  .custommenu.navigation li.level0.fullwidth .submenu .menu-bottom-block a:hover,
  .custommenu.navigation li.level0.staticwidth .submenu .menu-bottom-block a:hover {
    text-decoration: none;
  }
  .custommenu.navigation li.level0.fullwidth .submenu .menu-top-block a.btn-default,
  .custommenu.navigation li.level0.staticwidth .submenu .menu-top-block a.btn-default,
  .custommenu.navigation li.level0.fullwidth .submenu .menu-left-block a.btn-default,
  .custommenu.navigation li.level0.staticwidth .submenu .menu-left-block a.btn-default,
  .custommenu.navigation li.level0.fullwidth .submenu .menu-right-block a.btn-default,
  .custommenu.navigation li.level0.staticwidth .submenu .menu-right-block a.btn-default,
  .custommenu.navigation li.level0.fullwidth .submenu .menu-bottom-block a.btn-default,
  .custommenu.navigation li.level0.staticwidth .submenu .menu-bottom-block a.btn-default {
    background-color: #08c;
    color: #ffffff;
  }
  .custommenu.navigation li.level0.fullwidth .submenu .menu-top-block a.btn-default:hover,
  .custommenu.navigation li.level0.staticwidth .submenu .menu-top-block a.btn-default:hover,
  .custommenu.navigation li.level0.fullwidth .submenu .menu-left-block a.btn-default:hover,
  .custommenu.navigation li.level0.staticwidth .submenu .menu-left-block a.btn-default:hover,
  .custommenu.navigation li.level0.fullwidth .submenu .menu-right-block a.btn-default:hover,
  .custommenu.navigation li.level0.staticwidth .submenu .menu-right-block a.btn-default:hover,
  .custommenu.navigation li.level0.fullwidth .submenu .menu-bottom-block a.btn-default:hover,
  .custommenu.navigation li.level0.staticwidth .submenu .menu-bottom-block a.btn-default:hover,
  .custommenu.navigation li.level0.fullwidth .submenu .menu-top-block a.btn-default:focus,
  .custommenu.navigation li.level0.staticwidth .submenu .menu-top-block a.btn-default:focus,
  .custommenu.navigation li.level0.fullwidth .submenu .menu-left-block a.btn-default:focus,
  .custommenu.navigation li.level0.staticwidth .submenu .menu-left-block a.btn-default:focus,
  .custommenu.navigation li.level0.fullwidth .submenu .menu-right-block a.btn-default:focus,
  .custommenu.navigation li.level0.staticwidth .submenu .menu-right-block a.btn-default:focus,
  .custommenu.navigation li.level0.fullwidth .submenu .menu-bottom-block a.btn-default:focus,
  .custommenu.navigation li.level0.staticwidth .submenu .menu-bottom-block a.btn-default:focus {
    background-color: #08c;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
  }
  .custommenu.navigation li.level0.classic .submenu > .row {
    margin: 0;
  }
  .custommenu.navigation li.level0.classic .subchildmenu {
    min-width: 230px;
  }
  .custommenu.navigation li.level0.classic li.parent > .subchildmenu.popup-left {
    left: auto;
    right: 100%;
    border-radius: 6px 0 6px 6px;
  }
  .custommenu.navigation li.level0.classic .subchildmenu.popup-left .subchildmenu {
    left: auto;
    right: 100%;
    border-radius: 6px 0 6px 6px;
  }
  .custommenu.navigation li.level0.classic:hover > .submenu {
    visibility: visible;
    opacity: 1;
  }
  .custommenu.navigation li.level0.classic li:hover > .submenu {
    visibility: visible;
    opacity: 1;
  }
  .custommenu.navigation li.level0.classic .submenu,
  .custommenu.navigation li.level0.classic .subchildmenu .subchildmenu {
    left: 0;
  }
  .custommenu.navigation li.level0.staticwidth .submenu {
    left: 0;
  }
  .custommenu.navigation.side-custommenu li {
    margin: 0;
    position: relative;
  }
  .custommenu.navigation.side-custommenu li.level0 {
    display: block;
    position: relative;
    border-radius: 0;
    margin: 0;
  }
  .custommenu.navigation.side-custommenu li.level0.parent > a:after {
    content: '\f801';
    display: inline-block;
    vertical-align: top;
    margin-left: 6px;
    line-height: 41px;
    float: right;
  }
  .custommenu.navigation.side-custommenu li.level0.classic .submenu li.parent > a:after {
    content: '\f801';
    display: inline-block;
    vertical-align: top;
    margin-left: 6px;
    margin-right: 5px;
    line-height: 15px;
    float: right;
  }
  .custommenu.navigation.side-custommenu li.level0.fullwidth > .submenu,
  .custommenu.navigation.side-custommenu li.level0.staticwidth > .submenu {
    left: 100% !important;
    top: 0;
    padding-bottom: 15px;
  }
  .custommenu.navigation.side-custommenu li.level0.classic > .submenu {
    left: 100% !important;
    top: 0;
  }
  .custommenu.navigation.side-custommenu li.level0.fullwidth > .submenu {
    width: 871px;
  }
  .custommenu.navigation.side-custommenu li.level0 > a {
    display: block;
    padding: 0 5px;
    margin: 0 10px;
    border-top: 1px solid #ddd;
    line-height: 41px;
    font-weight: 400;
    font-size: 14px;
  }
  .custommenu.navigation.side-custommenu li.level0 > a > span.cat-label {
    position: relative;
    margin-left: 10px;
    padding: 0 2px;
    top: 0;
    right: 0;
  }
  .custommenu.navigation.side-custommenu li.level0 > a > span.cat-label:before {
    left: -6px;
    top: 3px;
    bottom: auto;
    border-top-color: transparent;
  }
  .custommenu.navigation.side-custommenu li.level0 > a > span.cat-label.cat-label-label1:before {
    border-right-color: #0cc485;
  }
  .custommenu.navigation.side-custommenu li.level0 > a > span.cat-label.cat-label-label2:before {
    border-right-color: #eb2771;
  }
  .custommenu.navigation.side-custommenu li.level0 > a > span.cat-label.cat-label-label3:before {
    border-right-color: #0ae3eb;
  }
  .custommenu.navigation.side-custommenu li.level0:first-child > a {
    border-top: 0;
  }
  .custommenu.navigation.side-custommenu li.level0:hover {
    background-color: #08c;
  }
  .custommenu.navigation.side-custommenu li.level0:hover > a {
    color: #ffffff;
    border-top-color: #08c;
  }
  .custommenu.navigation.side-custommenu li.level0 > .submenu {
    border-left-width: 5px;
    padding: 5px 8px;
    box-shadow: 0 0 3px rgba(158, 228, 161, 0.51);
    border-radius: 0 6px 6px 6px;
  }
  .home-side-menu {
    background-color: #fbfbfb;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-bottom: 20px;
  }
  h2.side-menu-title {
    margin: 0;
    background-color: #f5f5f5;
    color: #a39f9c;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    padding: 14px 15px;
    border-radius: 5px 5px 0 0;
    border-bottom: 1px solid #ddd;
  }
}
@media (max-width: 767px) {
  .nav-open .page-wrapper {
    left: 0;
  }
  .nav-open .menu_primary {
    left: 0;
  }
  .custommenu.navigation li.level0 > .submenu .subchildmenu .subchildmenu {
    position: static;
    border: 0;
    width: 100%;
  }
  .custommenu.navigation li.level0 > .submenu > .subchildmenu > li > a {
    text-transform: uppercase;
    padding-left: 10px !important;
  }
  .custommenu.navigation.side-custommenu {
    display: none;
  }
  .custommenu.navigation .submenu.level0 {
    height: 0;
    visibility: hidden;
  }
  .custommenu.navigation .submenu.level0.opened {
    visibility: visible;
    height: auto;
    opacity: 1;
  }
  .custommenu.navigation .main-nav > ul > li.menu-item-has-children > li > a,
  .custommenu.navigation .main-nav ul li .subchildmenu > li > a {
    position: relative;
    padding-right: 15px;
    font-weight: 500;
    font-size: 13px;
    color: #222;
    text-transform: uppercase;
    padding: 16px 10px;
    border: 0;
  }
  .custommenu.navigation .main-nav > ul > li .sub-menu > li > a,
  .custommenu.navigation .main-nav ul li .subchildmenu li .subchildmenu > li > a {
    padding: 16px 15px;
  }
  .custommenu.navigation .main-nav > ul > li.menu-item-has-children li.menu-item-has-children,
  .custommenu.navigation .main-nav ul li .subchildmenu > li .subchildmenu > li {
    padding: 0;
  }
  .custommenu.navigation .main-nav > ul > li.menu-item-has-children li.menu-item-has-children > a,
  .custommenu.navigation .main-nav ul li .subchildmenu > li .subchildmenu > li > a {
    padding: 0 10px;
  }
  .custommenu.navigation li.level0 .sub-menu {
    position: static;
    visibility: visible;
    border: 0;
    margin-top: 0;
    opacity: 1;
    visibility: visibility;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .custommenu.navigation li.level0.staticwidth > .submenu {
    width: auto !important;
  }
  .custommenu.navigation li.level0.fullwidth .menu-top-block,
  .custommenu.navigation li.level0.staticwidth .menu-top-block,
  .custommenu.navigation li.level0.fullwidth .menu-right-block,
  .custommenu.navigation li.level0.staticwidth .menu-right-block,
  .custommenu.navigation li.level0.fullwidth .menu-left-block,
  .custommenu.navigation li.level0.staticwidth .menu-left-block,
  .custommenu.navigation li.level0.fullwidth .menu-bottom-block,
  .custommenu.navigation li.level0.staticwidth .menu-bottom-block {
    display: none;
  }
  .custommenu.navigation li.level0 .menu-thumb-img {
    display: none;
  }
  .custommenu.navigation li.ui-menu-item {
    position: relative;
  }
  .custommenu.navigation li.ui-menu-item > a {
    position: relative;
  }
  .custommenu.navigation li.ui-menu-item > .open-children-toggle {
    display: block;
    position: absolute;
    width: 42px;
    height: 42px;
    right: 0;
    top: 0;
    z-index: 1;
    cursor: pointer;
  }
  .custommenu.navigation span.cat-label {
    top: 50%;
    right: 36px;
    margin-top: -7px;
    position: absolute;
    text-transform: uppercase;
    font: inherit;
    font-size: 9px;
    padding: 2px;
    border-radius: 2px;
    line-height: 1;
    color: #ffffff;
  }
  .custommenu.navigation span.cat-label:before {
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    border: 3px solid transparent;
    left: -6px;
    bottom: 3px;
  }
  .custommenu.navigation span.cat-label.cat-label-label1 {
    background-color: #0cc485;
  }
  .custommenu.navigation span.cat-label.cat-label-label1:before {
    border-right-color: #0cc485;
  }
  .custommenu.navigation span.cat-label.cat-label-label2 {
    background-color: #eb2771;
  }
  .custommenu.navigation span.cat-label.cat-label-label2:before {
    border-right-color: #eb2771;
  }
  .custommenu.navigation span.cat-label.cat-label-label3 {
    background-color: #0ae3eb;
  }
  .custommenu.navigation span.cat-label.cat-label-label3:before {
    border-right-color: #0ae3eb;
  }
  .custommenu.navigation li.level0 > .level-top {
    color: #222222;
  }
  .custommenu.navigation .submenu.level0 {
    width: auto;
    margin: 0;
  }
  .custommenu.navigation li.level0 > .submenu .subchildmenu {
    opacity: 1;
    visibility: visible;
    margin: 0;
  }
  .header-container .header-content .header-control .container > .row > div {
    width: 80% !important;
  }
  .main-nav > ul > li .sub-menu > li,
  .main-nav > ul li:hover .submenu > li,
  .main-nav ul li:hover .subchildmenu > li {
    padding: 0;
  }
  .custommenu.navigation li.level0 > .submenu .subchildmenu li {
    padding: 0 10px;
  }
  .custommenu.navigation li.level0 > .submenu .subchildmenu li a {
    border: 0;
    padding: 12px 0;
  }
  .custommenu.navigation .submenu.level0 {
    padding: 0;
  }
  .custommenu.navigation li.level0 > .submenu > .subchildmenu > li:first-child > a {
    padding-top: 16px;
  }
  .navigation .parent .level-top:after {
    content: "\e606";
  }
  .custommenu.navigation li.level0 > .submenu .subchildmenu .subchildmenu {
    display: none;
  }
  .navigation .parent .level-top.ui-state-active:after {
    content: "\e604" !important;
    color: #222;
    font-family: 'simple-line-icons';
  }
  .custommenu.navigation .level0 .level0.submenu.opened {
    opacity: 1;
    visibility: visible;
    height: auto;
  }
  .custommenu.navigation .level0 > ul > li > a {
    padding: 16px 0;
  }
  .custommenu.navigation .level0 ul {
    position: static;
    height: auto;
  }
  .custommenu.navigation .level0 ul > li a {
    border: 0;
    padding: 10px 0;
  }
  .custommenu.navigation .level0 ul > li > a {
    color: #222;
    font-weight: 500;
    padding: 16px 0;
    text-transform: uppercase;
    font-size: 13px;
  }
  .custommenu.navigation .level0 ul > li ul {
    padding-left: 10px;
  }
  .custommenu.navigation .level0 ul > li .open-children-toggle {
    position: absolute;
    right: 10px;
    top: 9px;
    min-width: 30px;
  }
  .custommenu.navigation .level0 ul > li .open-children-toggle:after {
    content: "\e606";
    font-family: 'simple-line-icons';
    float: right;
    font-size: 12px;
    line-height: 22px;
    color: #999;
  }
}
.top-menu {
  z-index: 99;
}
.top-menu .navigation {
  background: transparent;
}
.cms-index-index .top-menu {
  box-shadow: none;
  margin-bottom: 0;
}
.nav-sections {
  background: transparent;
  margin-bottom: 0;
}
.navigation {
  z-index: 5;
  background: transparent;
  text-align: left;
  float: left;
}
.navigation .level-0.reverse > .submenu {
  right: 1px;
}
.navigation > ul {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
}
.navigation .level0 > .menu-home.level-top:first-child {
  padding-left: 0;
  margin-left: 0;
}
.cms-index-index .navigation .level0.menu-home > .level-top {
  color: #222222;
}
.navigation .level-0 > .submenu {
  display: none;
  position: absolute;
  top: 100%;
  padding: 19px 13px;
}
.navigation li.level0 {
  margin: 0 50px 0 0;
}
.navigation .level0:first-child > .level-top {
  padding-left: 0;
  border: 0;
}
.navigation .level0 > .level-top {
  display: inline-block;
  width: 100%;
  text-align: center;
  border-left-width: 1px;
  border-left-color: rgba(56, 56, 56, 0.1);
  font-size: 12px;
  text-transform: uppercase;
  color: #333;
  line-height: 16px;
  font-family: 'dinpro-bold';
  font-weight: 400;
}
.navigation .level0.active > .level-top,
.navigation .level0.has-active > .level-top,
.navigation .level0 > .level-top:hover {
  color: #222222;
}
.navigation .level-0 > .submenu a {
  display: block;
  color: #676056;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.385;
  padding: 3px 12px 3px;
  text-decoration: none;
}
.navigation .level-0 > .submenu a:focus,
.navigation .level-0 > .submenu a:hover {
  text-decoration: underline;
}
.navigation .level-0 > .submenu a:hover {
  color: #ffffff;
  background: #989287;
  text-decoration: none;
}
.navigation .level-0 > .submenu li {
  margin-bottom: 1px;
}
.navigation .level-0 > .submenu a[href="#"] {
  cursor: default;
  display: block;
  color: #676056;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin: 7px 0 6px;
  padding: 0 12px;
}
.navigation .level-0 > .submenu a[href="#"]:focus,
.navigation .level-0 > .submenu a[href="#"]:hover {
  color: #676056;
  font-size: 14px;
  font-weight: 700;
  background: none;
  text-decoration: none;
}
.navigation .level-0 {
  display: inline-block;
  float: left;
  text-align: left;
  transition: display 0.15s ease-out;
}
.navigation .level-0 > a {
  background: none;
  display: block;
  padding: 12px 13px 0;
  color: #f2ebde;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s ease-out;
}
.navigation .level-0 > a:after {
  content: "";
  display: block;
  margin-top: 10px;
  height: 3px;
  font-size: 0;
}
.navigation .level-0.active > a {
  font-weight: 700;
}
.navigation .level-0.active > a:after {
  background: #ef672f;
}
.navigation .level-0.hover.recent > a {
  background: #ffffff;
  color: #676056;
  font-size: 13px;
  font-weight: 600;
}
.navigation .level-0.hover.recent > a:after {
  background: none;
}
.navigation .level-0.hover.recent.active > a {
  font-weight: 700;
}
.navigation .level-0 > .submenu {
  opacity: 0;
  visibility: hidden;
}
.navigation .level-0.recent.hover > .submenu {
  opacity: 1;
  visibility: visible;
}
.no-js .navigation .level-0:hover > .submenu,
.no-js .navigation .level-0.hover > .submenu,
.no-js .navigation .level-0 > a:focus + .submenu {
  display: block;
}
.navigation .level-0 > .submenu {
  background: #ffffff;
  box-shadow: 0 3px 3px rgba(50, 50, 50, 0.15);
}
.navigation .level-0 > .submenu li {
  max-width: 200px;
}
.navigation .level-0 > .submenu > ul {
  white-space: nowrap;
}
.navigation .level-0 > .submenu .column {
  display: inline-block;
  margin-left: 40px;
  vertical-align: top;
}
.navigation .level-0 > .submenu .column:first-child {
  margin-left: 0;
}
.navigation .level-0 .submenu .level-1 {
  white-space: normal;
}
.navigation .level-0.parent .submenu .level-1.parent {
  margin: 17px 0 25px;
}
.navigation .level-0.parent .level-1.parent:first-child {
  margin-top: 0;
}
.navigation .level-2 .submenu {
  margin-left: 7px;
}
.navigation .level-0 > .submenu .level-2 > a[href="#"] {
  font-size: 13px;
  margin-top: 10px;
  margin-left: 7px;
}
.navigation .level-2 > .submenu a {
  font-size: 12px;
  line-height: 1.231;
}
.navigation .level-0 > .submenu .level-3 > a[href="#"],
.navigation .level-3 .submenu {
  margin-left: 15px;
}
.navigation .level-0.item-system,
.navigation .level-0.item-stores {
  float: none;
}
.navigation .level-0.item-system > .submenu,
.navigation .level-0.item-stores > .submenu {
  left: auto;
  right: 1px;
}
.navigation .level0 .submenu,
.navigation .level0.submenu {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  padding: 10px;
  border: 0;
  text-align: left;
}
.navigation .level0.parent:hover > .submenu {
  display: block;
}
.navigation .level0 .submenu li {
  position: relative;
}
.navigation .level0 .submenu a {
  font-weight: normal;
  color: #333;
  line-height: 22px;
  display: block;
}
.navigation .level0 .submenu .level1.parent .level2.parent > a:after,
.navigation .level0 .submenu .level1.parent > a:after {
  content: "\e606";
  font-family: 'simple-line-icons';
  display: inline-block;
  margin-top: 0;
  margin-right: -10px;
  float: right;
}
.navigation .level0 .submenu .level1.parent .level2.parent .level3 a:after,
.navigation .level0 .submenu .level1.parent .level2 a:after {
  display: none;
}
.navigation .level0 .submenu a:after .navigation .level0 .submenu a:hover,
.navigation .level0 .submenu a.ui-state-focus {
  color: #222222;
  background: transparent;
}
.custommenu.navigation li.level0.staticwidth .submenu {
  left: -280px !important;
  margin: 0 auto !important;
  border-radius: 0 !important;
  padding: 40px 30px;
  font-weight: 400;
}
.custommenu.navigation li.level0.fullwidth > .submenu {
  padding: 40px 30px;
  font-weight: normal;
}
.top-block-menu {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(186, 147, 62, 0.3);
}
.top-block-menu .pull-left {
  margin-right: 15px;
}
.top-block-menu .pull-left .fa {
  width: 50px;
  height: 50px;
  font-size: 16px;
  text-align: center;
  line-height: 50px;
  color: #ffffff;
  background: #222222;
  padding-left: 5px;
  border-radius: 100%;
}
.top-block-menu h6 {
  text-transform: none;
  color: #333333;
  font-size: 17px;
  margin-bottom: 5px;
}
.top-block-menu p {
  color: #777777;
  font-weight: normal;
}
.bottom-block-menu {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(186, 147, 62, 0.3);
}
.custommenu.navigation li.level0.fullwidth .submenu a,
.custommenu.navigation li.level0.staticwidth .submenu a {
  padding: 8px 5px;
}
.custommenu.navigation li.level0.fullwidth .submenu li.level1 > a,
.custommenu.navigation li.level0.staticwidth .submenu li.level1 > a {
  font-family: 'dinpro-bold';
  position: relative;
  margin-bottom: 10px;
}
.custommenu.navigation li.level0.fullwidth .submenu li.level1 > a:hover,
.custommenu.navigation li.level0.staticwidth .submenu li.level1 > a:hover {
  color: #222222;
}
.menu-top-block {
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .custommenu.navigation li.level0.staticwidth .submenu {
    max-width: 768px !important;
  }
}
@media (max-width: 992px) {
  .custommenu.navigation li.level0.staticwidth .submenu {
    max-width: 690px !important;
  }
  .top-block-menu h6 {
    font-size: 15px;
  }
  .top-block-menu p {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .custommenu.navigation li.level0.staticwidth .submenu {
    left: auto !important;
    padding: 0 !important;
  }
  .custommenu.navigation li.level0.fullwidth .submenu a,
  .custommenu.navigation li.level0.staticwidth .submenu a {
    padding: 8px 30px;
  }
  .navigation .level0:first-child > .level-top {
    padding-left: 14px;
  }
  .custommenu.navigation li.level0 .submenu,
  .custommenu.navigation li.level0 .submenu {
    border-radius: 0 !important;
  }
}
@media (min-width: 768px) {
  .custommenu.navigation li.level0 .submenu {
    transform: scale(0) translateY(10px);
    -webkit-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    top: 120%;
    transition: 0.3s top;
    max-height: 95vh;
    padding: 0;
  }
  .navigation .level0 .submenu a:hover,
  .navigation .level0 .submenu a.ui-state-focus {
    background: transparent !important;
  }
  .custommenu.navigation li.level0 .submenu {
    min-width: 200px;
  }
  .custommenu.navigation li.level0.classic .submenu {
    max-height: 100vh;
  }
  .custommenu.navigation li.level0:hover .submenu {
    transform: scale(1);
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
  .main-nav > ul > li .subchildmenu > li:first-child > a {
    border: 0;
  }
  .navigation .level0 > .submenu > .subchildmenu > li > a {
    padding: 11px 0;
    font-weight: 400;
    background: transparent;
  }
  .navigation .level0 > .submenu > .subchildmenu > li > a:after {
    margin: 0 !important;
    top: 11px;
  }
  .navigation .level0 > .submenu > .subchildmenu li a {
    background: transparent;
  }
  li.ui-menu-item.level1.parent > .subchildmenu > li:first-child a {
    border: 0;
  }
  .main-nav > ul > li .subchildmenu > li:first-child > a {
    border: 0;
  }
  .navigation .level0 > .submenu > .subchildmenu > li > .subchildmenu > li a {
    padding: 11px 0;
  }
}
#ajax-preloader {
  opacity: 0.8;
  text-align: center;
  z-index: 500;
  background: url(../images/ajax_loader.gif) center top no-repeat;
}
#ajax-preloader .loading {
  border: 2px solid #e6e6e6;
  color: #000;
  background: #eee;
  text-align: center;
  width: 120px;
  padding: 15px;
  font-weight: bold;
}
.product-slider-wrapper {
  float: left;
  position: relative;
}
body #quick-window {
  position: absolute;
  z-index: 500;
  background-color: #ffffff;
  max-width: 900px;
  width: 100%;
  display: none;
  border-radius: 3px;
  box-shadow: none;
  /* Opera 10.5, IE9, FF4+, Chrome 6+, iOS 5 */
}
body #quick-window #quickview-close {
  color: #ffffff;
  display: block;
  line-height: 38px;
  position: absolute;
  text-align: center;
  background: none;
  z-index: 999;
  width: 38px;
  height: 38px;
  top: 10px;
  right: 10px;
  border-radius: 100%;
  padding: 0;
  font-size: 0;
  text-indent: 0;
}
body #quick-window #quickview-close:before {
  color: #ce2129;
  font-size: 21px;
  line-height: 38px;
  display: block;
  font-weight: 400;
  content: "\e082";
  font-family: 'simple-line-icons';
}
body #quick-window .gallery-placeholder .row li.active:after {
  display: none !important;
}
body #quick-window .quick-view-content {
  padding: 10px 20px;
}
body #quick-window .quick-view-content .page-title-wrapper {
  margin-top: 0;
}
body #quick-window .quick-view-content .page-title-wrapper .page-title {
  margin-bottom: 30px;
}
body #quick-window .quick-view-content .page-title-wrapper .page-title span {
  font-size: 18px;
}
body #quick-window .quick-view-content .product-info-main .box-tocart .action.tocart {
  background: #ce2129 none repeat scroll 0 0;
  color: #ffffff;
  box-shadow: none;
  display: inline-block;
  font-family: 'dinpro-bold';
  border-radius: 3px;
  text-transform: none;
  font-size: 14px;
  height: 40px;
  font-weight: normal;
  position: relative;
  border: 1px solid transparent;
  text-shadow: none;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
body #quick-window .quick-view-content .product-info-main .box-tocart .action.tocart:hover {
  background: #ce2129;
  color: #ffffff;
  border: 1px solid #ce2129;
}
body #quick-window .quick-view-content .product.media {
  width: 47%;
}
body #quick-window .quick-view-content .product.media .main-img-quickview {
  margin-bottom: 10px;
}
body #quick-window .quick-view-content .detail-info-product-view {
  width: 50%;
  float: right;
  margin-top: 10px;
  margin-bottom: 40px;
}
body #quick-window .quick-view-content .product.info.detailed {
  display: inline-block;
}
body #quick-window .quick-view-content .product.info.detailed .product.attibute.description {
  color: #777;
  font-size: 13px;
  line-height: 1.5;
}
body #quick-window .quick-view-content .bxslider li {
  cursor: pointer;
}
#quickview-content .page-title-wrapper .container {
  max-width: 100%;
  width: auto;
}
.info-qty {
  float: left;
  height: 45px;
  width: 150px;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  color: #222222;
  border-radius: 3px;
  padding: 14px 50px;
  text-align: center;
  line-height: 43px;
  position: relative;
  margin-right: 20px;
}
.info-qty input {
  background: #fff;
}
.fotorama__nav-wrap--vertical .fotorama__nav__shaft {
  background: none !important;
}
.countbox-p-p-c-container span {
  background: #fff !important;
}
.info-qty a {
  color: #333;
}
.info-qty a:hover {
  color: #222222;
}
.info-qty .qty-down {
  width: 45px;
  height: 45px;
  border: 0;
  background-color: transparent;
  color: #e6e6e6;
  position: absolute;
  font-size: 14px;
  left: 0;
  top: 0;
}
.info-qty .qty-up {
  width: 45px;
  height: 45px;
  border: 0;
  background-color: transparent;
  color: #e6e6e6;
  position: absolute;
  font-size: 14px;
  right: 0;
  top: 0;
}
.info-qty a:hover {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.info-qty .qty-val {
  display: block;
  padding: 0 15px;
  width: 100%;
}
.attr-product label {
  margin: 0;
  text-transform: uppercase;
  width: 56px;
}
.attr-color {
  display: inline-block;
  max-width: 240px;
  position: relative;
  width: 100%;
  z-index: 99;
}
.attr-info .addcart-link:hover {
  background: #222222;
}
.attr-info .addcart-link {
  background: #585e6a none repeat scroll 0 0;
  color: #ffffff;
  display: block;
  height: 35px;
  line-height: 35px;
  margin: 10px 0 0 60px;
  max-width: 240px;
  text-align: center;
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.addcart-link i {
  margin-right: 5px;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}
.product-list .addcart-link i:hover {
  margin-right: 5px;
}
.addcart-link:hover i {
  margin-right: 10px;
}
.product-social-extra {
  margin: 30px 0 0 0;
}
.product-social-extra a:hover {
  color: #ce2129;
}
.product-social-extra a {
  background: #ffffff none repeat scroll 0 0;
  border: 1px solid #e6e6e6;
  display: inline-block;
  height: 35px;
  line-height: 35px;
  margin-right: 6px;
  text-align: center;
  transition: all 0.3s ease-out 0s;
  width: 35px;
}
.product-social-extra a:hover {
  color: #222222;
}
.product-social-extra a:last-child {
  margin: 0;
}
.title-tab-detail li {
  display: inline-block;
  margin-right: 3px;
}
.title-tab-detail li a {
  border: 1px solid #e6e6e6;
  color: #666666;
  display: block;
  font-weight: 700;
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.title-tab-detail li:hover a,
.title-tab-detail li.active a {
  background: #ce2129;
  border-color: #ce2129;
  color: #ffffff;
}
.tab-detail {
  margin-top: 30px;
}
.table-content-tab-detail {
  border: 1px solid #e6e6e6;
  display: table;
  margin-top: -1px;
}
.title-table-detail {
  border-right: 1px solid #e6e6e6;
  display: table-cell;
  padding: 30px 15px;
  width: 90px;
}
.icon-table-detail {
  display: table-cell;
  text-align: center;
  width: 60px;
  padding: 30px 15px;
}
.title-table-detail span {
  text-transform: uppercase;
}
.info-table-detail {
  color: #666666;
  display: table-cell;
  padding: 30px 0;
}
.info-table-detail p {
  margin: 0;
  padding: 0 20px 0 0;
}
.info-table-detail h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 5px;
}
.title-tab-detail ul {
  margin: 0 0 6px;
}
.inner-content-tab-detail {
  border: 1px solid #e6e6e6;
  color: #666666;
  padding: 20px;
}
.inner-content-tab-detail h2 {
  margin: 0 0 10px;
}
.title-default {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
}
.b-modal.__b-popup1__ {
  opacity: 0.8 !important;
}
.newsletterpopup {
  height: 100% !important;
  max-height: 603px !important;
  top: 50% !important;
  left: 50% !important;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  position: fixed !important;
  background: #00352f;
  background-image: none !important;
}
.cms-homepage_azone_default #newsletter_pop_up .newletter_popup_close {
  top: 53px;
  right: 11px;
}
#newsletter_pop_up {
  display: none;
  padding: 0;
  background-size: cover;
  text-align: center;
  max-width: 1160px !important;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 100%;
}
#newsletter_pop_up .newletter_popup_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  z-index: 10;
  cursor: pointer;
}
#newsletter_pop_up .newletter_popup_close span:before {
  color: #ce2129;
  content: "\e082";
  font-family: 'simple-line-icons';
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  text-align: center;
  box-sizing: border-box;
  z-index: 2;
  font-size: 30px;
  line-height: 38px;
  border-radius: 50%;
  border-width: 0px;
}
#newsletter_pop_up .content-popup {
  margin-top: 80px;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 0;
  padding-left: 35px;
  padding-right: 35px;
  height: 100%;
  overflow: auto;
}
#newsletter_pop_up .content-popup .logo_popup {
  display: inline-block;
  width: 100%;
  margin-bottom: 50px;
}
#newsletter_pop_up .content-popup .form.subscribe .action.subscribe.primary {
  background-image: none;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  display: inline-block;
  padding: 10px 48px;
  height: 46px;
  color: #ffffff;
  background-color: #ff9300;
  border: 2px solid #ff9300;
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  border-radius: 30px;
  width: 100%;
  max-width: 440px;
  font-family: 'dinpro-light';
}
#newsletter_pop_up .content-popup .form.subscribe .action.subscribe.primary:hover {
  background-color: #ff9300;
  border-color: #ff9300;
  color: #ffffff;
  text-decoration: none;
}
#newsletter_pop_up .content-popup p {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  width: 100%;
}
#newsletter_pop_up .content-popup p span {
  color: #ce2129;
}
#newsletter_pop_up .content-popup h3 {
  color: #ff9300;
  display: block;
  position: relative;
  font-family: 'dinpro-light';
  padding: 0;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 72px;
  line-height: 60px;
  margin: 25px 0 10px;
}
#newsletter_pop_up .content-popup h4 {
  font-family: 'dinpro-light';
  color: #fff;
  font-style: italic;
  display: inline-block;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 23px;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 400;
}
#newsletter_pop_up .content-popup .newsletterDescription {
  margin: 0;
  line-height: 24px;
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  color: #91989f;
  margin-bottom: 20px;
  font-family: 'dinpro-light';
  display: none;
}
#newsletter_pop_up .content-popup input[type="email"] {
  display: block;
  width: 100%;
  height: 46px;
  padding: 9px 20px;
  font-size: 13px;
  line-height: 1.45;
  color: #666666;
  background-color: #013e37;
  background-image: none;
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  margin: 20px 0 10px;
  border-radius: 30px;
  border: 1px solid #055148;
  max-width: 440px;
  text-align: center;
}
#newsletter_pop_up .content-popup .subscribe-bottom {
  line-height: 18px;
  font-style: italic;
  font-size: 13px;
  margin-top: 10px;
}
#newsletter_pop_up .content-popup .subscribe-bottom input {
  display: inline-block;
  margin-top: 1px;
}
#newsletter_pop_up .content-popup .subscribe-bottom label {
  display: inline-block;
  margin-left: 5px;
  cursor: pointer;
  font-family: 'dinpro-light';
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
#newsletter_pop_up .content-popup .field.newsletter {
  position: relative;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .b-modal.__b-popup1__,
  #newsletter_pop_up {
    display: none !important;
  }
}
.cms-index-index .verticalmenu.navigation.side-verticalmenu > ul {
  border: 0;
  background: #ffffff;
  position: relative;
}
.cms-index-index .verticalmenu.navigation.side-verticalmenu > ul .vertical-bg-img {
  position: absolute;
  bottom: 0;
  left: 20px;
}
.cms-index-index .verticalmenu.navigation.side-verticalmenu > ul li a {
  color: #222222;
  font-size: 14px;
  font-weight: 400;
  font-family: 'dinpro-light';
}
.cms-index-index .verticalmenu.navigation.side-verticalmenu > ul li:hover a {
  color: #ce2129;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0:last-child > a {
  border-bottom: 0;
}
.verticalmenu.navigation.side-verticalmenu {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 6px 6px 0 0;
}
.verticalmenu.navigation.side-verticalmenu .our_categories {
  background-color: #4e4e4e;
  color: #ffffff;
  padding: 19px 30px;
  font-size: 18px;
  margin: 0;
  cursor: pointer;
}
.verticalmenu.navigation.side-verticalmenu .menu-bottom-block {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.verticalmenu.navigation.side-verticalmenu .menu-bottom-block p {
  margin: 0;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0 {
  position: static;
  list-style: none;
  padding: 0 20px;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0:last-child > a {
  border-bottom: 0;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0 .level0.submenu {
  padding: 0;
  left: 120% !important;
  border: 1px solid #e6e6e6;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  border-radius: 0 3px 3px 0 !important;
  min-height: 100%;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0 .level0.submenu .subchildmenu > li.level1 > a {
  font-family: 'dinpro-light';
  font-size: 16px;
  font-weight: 500;
  color: #222222;
  margin-bottom: 7px;
  text-decoration: none;
  border-bottom: 0;
  text-transform: capitalize;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0 .level0.submenu .subchildmenu > li.level1 > a:hover {
  color: #ce2129;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0 .level0.submenu .subchildmenu > li.level1 > a:hover span {
  text-decoration: none;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0 .level0.submenu .subchildmenu > li.level2 a {
  font-family: 'dinpro-light';
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  text-decoration: none;
  line-height: 20px;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0 .level0.submenu .subchildmenu > li.level2 a:hover {
  color: #ce2129;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0 .level0.submenu .subchildmenu > li.level2 a:hover span {
  text-decoration: none;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0 > a {
  display: inline-block;
  padding: 8px 10px;
  border: 0;
  font-family: 'dinpro-light';
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  width: 100%;
  color: #222222;
  margin: 0;
  text-transform: capitalize;
  border-bottom: 1px solid #eaebec;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0.parent > a:after {
  content: "\e606";
  font-family: 'simple-line-icons';
  float: right;
  font-size: 12px;
  line-height: 22px;
  color: #999;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0.parent > a:hover:after {
  color: #ce2129;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0:hover {
  background: none;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0:hover .level0.submenu {
  left: 100% !important;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0:last-child a {
  border: 0;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0.classic .level0.submenu .subchildmenu > li.level1 {
  margin-bottom: 10px;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0.classic .level0.submenu .subchildmenu > li.level1 > a {
  font-family: 'dinpro-light';
  font-size: 14px;
  font-weight: 500;
  color: #222222;
  margin: 0;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0.classic .level0.submenu .subchildmenu > li.level1 > a:hover {
  color: #ce2129;
  background: none;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0.classic .level0.submenu .subchildmenu > li.level1 > a:hover span {
  text-decoration: none;
}
.verticalmenu.navigation.side-verticalmenu a.viewall {
  padding: 19px 30px;
  border-top: 1px solid #f0f0f0;
  margin-top: -1px;
  width: 100%;
  font-family: 'dinpro-bold';
  font-size: 13px;
  font-style: italic;
  color: #888;
  text-decoration: underline;
  display: block;
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0 > .open-children-toggle:before {
  display: none;
}
@media (max-width: 767px) {
  .navigation .level0 .submenu .level1.parent .level2.parent a:after,
  .navigation .level0 .submenu .level1.parent a:after,
  .verticalmenu.navigation.side-verticalmenu > ul li.level0 > .open-children-toggle:before,
  .verticalmenu.navigation.side-verticalmenu > ul li.level0 .level0.submenu .subchildmenu li.ui-menu-item .subchildmenu {
    display: none;
  }
}
.verticalmenu.navigation.side-verticalmenu > ul li.level0 .level0.submenu {
  min-height: 100%;
  height: auto;
}
.main-nav ul li .subchildmenu > li > a:after {
  display: none;
}
.main-nav ul li .subchildmenu > li.parent > a:after {
  content: "\e606";
  font-family: 'simple-line-icons';
  right: 0px;
  top: 11px;
  position: absolute;
  font-size: 12px;
}
.custommenu.navigation li.level0 > .submenu > .subchildmenu,
.menu_primary .custommenu.navigation li.level0 > .submenu > .row > .subchildmenu {
  position: static;
  border: 0;
  padding: 0;
  width: 100%;
  min-width: 100%;
}
.navigation .level0.classic .submenu a {
  padding: 8px 0;
}
@media (min-width: 1399px) {
  .menu_left_home1 {
    width: 300px;
  }
  .block-search {
    width: 67%;
  }
  .box_language {
    float: right;
  }
  .products-grid .item-product:after {
    height: 110%;
  }
  .item-product:after {
    height: 112%;
  }
  .product-tab-slider.tab_content {
    margin-right: 1px;
  }
  .cat .rightBlock {
    padding-right: 0;
  }
  .cat_1 .product_row:nth-child(6) .item-product:before {
    display: block;
  }
  .cat_1 .product_row:nth-child(7) .item-product:before,
  .cat_1 .product_row:nth-child(13) .item-product:before,
  .cat_1 .product_row:nth-child(14) .item-product:before {
    display: none;
  }
  .cat_special {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .cat_special .item-product {
    padding-bottom: 25px;
  }
  .cat_special .product_row:nth-child(6) {
    grid-column: 6;
    grid-row: 3;
    grid-column-start: 6;
    grid-column-end: 8;
    grid-row-start: 1;
    grid-row-end: 3;
  }
  .cat_special .product_row:nth-child(6) .item-product:before {
    height: 90%;
  }
  .cat_special .product_row:nth-child(6) .addcart-link button {
    padding: 0 95px;
  }
  .cat_special .product_row:nth-child(6) .desc {
    font-family: 'dinpro-light';
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    display: -webkit-box;
    overflow: hidden;
    line-height: 22px;
    padding: 18px 0 0;
    margin-top: 20px;
    border-top: 1px solid #ddd;
  }
  .cat_special .product_row:nth-child(6) .desc ul {
    padding-left: 18px;
    margin-bottom: 12px;
  }
  .cat_special .product_row:nth-child(6) .desc ul li {
    list-style-type: disc;
    margin-top: 6px;
  }
  .cat_special .product_row:nth-child(6) .product-info-cart {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    bottom: 0;
  }
  .cat_special .product-image-container {
    width: 100% !important;
  }
  .list-tab-product {
    margin-top: 105px;
  }
  .load_more {
    display: none;
  }
  .container {
    width: 100%;
    max-width: 1600px;
  }
  .cms-index-index .page-main.container {
    margin-top: 0;
  }
  .banner-slider-top.slide1 .col-sm-8 {
    width: 72.7%;
  }
  .banner-slider-top.slide1 .col-sm-4 {
    width: 27.3%;
  }
  .select-category {
    width: 160px;
    top: 2px;
    left: 2px;
  }
  .chosen-container {
    width: 160px !important;
  }
  .smart-search-form input[type="text"] {
    padding-left: 180px;
  }
  .product-grid .col-lg-2 {
    width: 20%;
  }
  .product-grid .col-lg-2:nth-child(5n+1) {
    clear: both;
  }
  .product-grid li:nth-child(5n+1) .item-product:before {
    opacity: 0;
    visibility: hidden;
  }
  .product-grid li:nth-child(4n+1) .item-product:before {
    opacity: 1;
    visibility: visible;
  }
  .hot-deal .hot-deal-tab-slider.hot-deal-tab-slider-customcss .woocommerce-hot-deal .super-deal-countdown .time_circles > div {
    min-width: 60px;
    min-height: 60px;
    padding: 10px;
    margin-right: 10px;
  }
  .hot-deal .hot-deal-tab-slider.hot-deal-tab-slider-customcss .woocommerce-hot-deal .super-deal-countdown .time_circles > div .number {
    font-size: 14px;
  }
  .hot-deal .hot-deal-tab-slider.hot-deal-tab-slider-customcss .woocommerce-hot-deal .super-deal-countdown .time_circles > div .text {
    font-size: 12px;
  }
}
@media (max-width: 1399px) and (min-width: 1200px) {
  .smart-search {
    width: 55%;
  }
  .verticalmenu.navigation.side-verticalmenu > ul li.level0:nth-child(11),
  .verticalmenu.navigation.side-verticalmenu > ul li.level0:nth-child(12),
  .verticalmenu.navigation.side-verticalmenu > ul li.level0:nth-child(13),
  .verticalmenu.navigation.side-verticalmenu > ul li.level0:nth-child(14) {
    display: none;
  }
  .verticalmenu.navigation.side-verticalmenu > ul li.level0 > a {
    padding: 10px 0;
  }
  .cat_1 .product_row:nth-child(4) .item-product {
    display: block;
  }
  .cat_1 .product_row:nth-child(8) .item-product,
  .cat_1 .product_row:nth-child(9) .item-product,
  .cat_1 .product_row:nth-child(10) .item-product,
  .cat_1 .product_row:nth-child(11) .item-product {
    display: none;
  }
  .cat_special {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .cat_special .product_row:nth-child(4) {
    grid-column: 4;
    grid-row: 3;
    grid-column-start: 4;
    grid-column-end: 6;
    grid-row-start: 1;
    grid-row-end: 3;
  }
  .cat_special .product_row:nth-child(4) .item-product {
    padding: 3px 15px 25px;
  }
  .cat_special .product_row:nth-child(4) .item-product:before {
    height: 90%;
  }
  .cat_special .product_row:nth-child(4) .addcart-link button {
    padding: 0 95px;
  }
  .cat_special .product_row:nth-child(4) .desc {
    font-family: 'dinpro-light';
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    display: -webkit-box;
    overflow: hidden;
    line-height: 22px;
    padding: 18px 0 0;
    margin-top: 20px;
    border-top: 1px solid #ddd;
  }
  .cat_special .product_row:nth-child(4) .desc ul {
    padding-left: 18px;
    margin-bottom: 12px;
  }
  .cat_special .product_row:nth-child(4) .desc ul li {
    list-style-type: disc;
    margin-top: 6px;
  }
  .cat_special .product_row:nth-child(4) .product-info-cart {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    bottom: 0;
  }
  .cat_special .product-image-container {
    width: 100% !important;
  }
}
@media (max-width: 1650px) {
  .head-contact {
    font-size: 12px;
  }
}
@media (max-width: 1399px) {
  .rowFlexMargin .vela-contactinfo .contacinfo-phone.contactinfo-item {
    margin: 33px 0 13px;
  }
  .rowFlexMargin .vela-contactinfo .contacinfo-address,
  .rowFlexMargin .vela-contactinfo .contacinfo-email,
  .rowFlexMargin .vela-contactinfo .contacinfo-fax {
    line-height: 22px;
  }
  .navigation li.level0 {
    margin: 0 35px 0 0;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .verticalmenu.navigation.side-verticalmenu > ul li.level0:nth-child(10),
  .verticalmenu.navigation.side-verticalmenu > ul li.level0:nth-child(11),
  .verticalmenu.navigation.side-verticalmenu > ul li.level0:nth-child(12),
  .verticalmenu.navigation.side-verticalmenu > ul li.level0:nth-child(13),
  .verticalmenu.navigation.side-verticalmenu > ul li.level0:nth-child(14) {
    display: none;
  }
  .verticalmenu.navigation.side-verticalmenu > ul li.level0 > a {
    padding: 10.25px 0;
  }
  .product-grid .col-lg-2 {
    width: 33.33%;
  }
  .product-grid .col-lg-2:nth-child(3n+1) {
    clear: both;
  }
  .product-grid li:nth-child(3n+1) .item-product:before {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 1399px) and (min-width: 768px) {
  .banner-slider-top.slide1 .col-sm-8 {
    width: 73.2%;
  }
  .banner-slider-top.slide1 .col-sm-4 {
    width: 26.8%;
  }
}
@media (min-width: 1200px) {
  .products-grid ol > li:nth-of-type(3n+1) {
    clear: left;
  }
  .page-footer .col-lg-6 {
    width: 50%;
  }
  .velaServicesInner .col-2 {
    width: 20%;
    padding: 0 5px;
  }
}
@media (max-width: 1600px) {
  .head-contact {
    font-size: 11px;
  }
}
@media (max-width: 1399px) {
  .menu_left_home1 {
    max-width: 250px;
  }
  .menu_primary {
    min-width: 245px;
  }
  .velaServicesInner .boxServiceDesc {
    font-size: 12px;
  }
  .box_language {
    float: right;
  }
  .hidden-md .head-contact {
    display: none;
  }
  .top_rate .product-item,
  .new_product .product-item {
    padding: 10px 0;
  }
  .categorytab-container.cat_1 .product_row:nth-child(n+11) {
    display: none;
  }
}
@media (max-width: 1199px) and (min-width: 991px) {
  .velaServicesInner .flexJustifyCenter .col-2 {
    width: 33.33%;
    border: 0 !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .velaServicesInner .flexJustifyCenter .col-2 {
    width: 50%;
  }
}
@media (max-width: 1199px) and (min-width: 640px) {
  .products-grid ol > li:nth-of-type(3n+1) {
    clear: left;
  }
}
@media (max-width: 639px) and (min-width: 480px) {
  .product-grid .item-inner:nth-child(3n+1) {
    clear: none;
  }
  .products-grid ol > li:nth-of-type(2n+1) {
    clear: left;
  }
  .products-grid ol > li {
    width: 50%;
  }
}
@media (max-width: 479px) and (min-width: 0px) {
  .products-grid ol > li:nth-of-type(1n+1) {
    clear: left;
  }
  .products-grid ol > li {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .menu_left_home1 {
    width: 80px;
  }
  .menu_left_home1 .title-category-dropdown {
    font-size: 0;
  }
  .menu_left_home1 .togge-menu.list-category-dropdown {
    width: 220px;
  }
  .box_language {
    min-width: 190px;
    float: right;
  }
  .rowFlexMargin .vela-contactinfo .contacinfo-phone.contactinfo-item .wrap {
    font-size: 20px;
  }
  .menu_primary {
    width: 70%;
  }
  .block-search {
    width: 89%;
    margin-right: 0;
  }
  .navigation li.level0 {
    margin: 0 28px 0 0;
  }
  .hoteline_header {
    display: none;
  }
  .header_main .contacinfo-phone {
    display: none;
  }
  .smart-search {
    margin-right: 0;
  }
  .velaServicesInner .flexJustifyCenter .col-2:last-child:before,
  .velaServicesInner .flexJustifyCenter .col-2:nth-child(3):before {
    display: none;
  }
  .velaServicesInner .col-2 {
    padding: 0 5px;
  }
  .cat_1 .item-product {
    padding: 0 15px 30px;
  }
  .select-category {
    top: 2px;
    left: 2px;
  }
  .fixed-right {
    display: none;
  }
  .categorytab-container.cat_1 .product_row:nth-child(n+9) {
    display: none;
  }
  .cat_1 .product_row:nth-child(6) .item-product:before {
    display: block;
  }
  .cat_1 .product_row:nth-child(5) .item-product:before {
    display: none;
  }
  .cat_special {
    grid-template-columns: repeat(4, 1fr);
  }
  .owl-buttons {
    display: none;
  }
  .vc_tta-tabs-container {
    margin-right: 0;
  }
  .header-wrapper-sticky.enable-sticky .top-menu-sticky {
    padding-right: 0;
  }
  .mini-cart-wrapper.enable-sticky {
    display: none;
  }
  .section-bestseller .categorytab-container .computer-laptop {
    width: 33.3%;
  }
  .title-catthum {
    width: 36%;
  }
  .section-featured-categories .wrap-category .owl-item .wp-item .item {
    min-height: 235px;
  }
  .bg-image {
    min-height: 330px;
  }
  .footer-container.layout2 .section-footer-top .block-social {
    padding-left: 40px;
  }
  .header-container .header-content .main-header .top-menu {
    padding-left: 50px;
  }
  .list-service .box-icon {
    text-align: center;
  }
  .list-service .box-icon .icon {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .cart-container .form-cart,
  .cart-summary {
    width: 100%;
  }
  .checkout-cart-index .cart-container {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    flex-direction: column-reverse;
  }
  .checkout-cart-index .cart-container .cart-summary {
    top: 0 !important;
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .checkout-cart-index .cart-container .cart.table-wrapper .cart.items .col .product-item-photo {
    position: static;
    max-width: 90px;
    padding-left: 0;
  }
  .checkout-cart-index .cart-container .cart.table-wrapper .product-item-details {
    padding-left: 0;
  }
  .checkout-cart-index .cart-container .cart.table-wrapper .product-item-details {
    padding-left: 10px;
  }
  .checkout-cart-index .cart-container .cart.item .item-info td:first-child {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    border-bottom: 1px solid #e6e6e6 !important;
  }
  .checkout-cart-index table#shopping-cart-table th span {
    font-weight: 500;
  }
  .checkout-cart-index table#shopping-cart-table th.actions {
    display: block;
    border-top: 0;
    border-left: 0;
  }
  .checkout-cart-index table#shopping-cart-table td.price,
  .checkout-cart-index table#shopping-cart-table td.qty,
  .checkout-cart-index table#shopping-cart-table td.subtotal {
    border: 0 !important;
  }
  .cart.table-wrapper .col.qty[data-th]:before,
  .cart.table-wrapper .col.price[data-th]:before,
  .cart.table-wrapper .col.subtotal[data-th]:before,
  .cart.table-wrapper .col.msrp[data-th]:before {
    font-weight: 400;
  }
  .cart-container .form-cart .action.update,
  .cart-container .form-cart .action.clear {
    display: inline-block;
  }
  .contact-index-index .columns .contact-info {
    margin-bottom: 55px;
  }
  .contact-index-index .column:not(.sidebar-additional) .form.contact {
    margin-bottom: 30px;
  }
  .layout-2-col .col-md-3 {
    order: 2;
    margin-bottom: 50px;
  }
  .layout-2-col .col-md-3 .sidebar-additional1 {
    margin-top: 0;
  }
  .layout-2-col .col-sm-9 {
    order: 1;
  }
}
@media (min-width: 992px) {
  .group-product .rokan-product-heading h2 {
    width: 20%;
  }
  .section-bestseller .tab_container .item-product {
    clear: both;
    overflow: hidden;
  }
}
@media (max-width: 991px) {
  .menu_primary {
    width: 80%;
  }
  .cms-index-index .verticalmenu.navigation.side-verticalmenu > ul {
    border: 1px solid #ebebeb;
  }
  .shadow_bkg,
  .shadow_bkg_show {
    display: none;
  }
  .block-search {
    width: 85%;
  }
  .block_cat .leftBlock,
  .block_cat .rightBlock {
    width: 100%;
  }
  .hot-deal .countdown_block {
    position: static;
    margin-bottom: 10px;
    padding: 0 15px;
  }
  .cat .vc_tta-tabs-container .tabs {
    text-align: center;
  }
  .cat .vc_tta-tabs-container .tabs li {
    border: 0;
    margin: 0 5px;
    display: inline-block;
  }
  .vc_tta-tabs-container.pull-right {
    float: none !important;
    width: 100%;
    display: inline-block;
    margin-top: 10px;
  }
  .vc_tta-tabs-container.pull-right li {
    margin: 10px 5px 0;
  }
  .velaServicesInner .flexJustifyCenter .col-2:nth-child(2):before,
  .velaServicesInner .flexJustifyCenter .col-2:nth-child(4):before {
    display: none;
  }
  .velaServicesInner .flexJustifyCenter .col-2:nth-child(1):before,
  .velaServicesInner .flexJustifyCenter .col-2:nth-child(3):before {
    display: inline-block;
  }
  .vc_fluid.container {
    padding: 0;
  }
  .velaServicesInner .rowFlex > div:not(:last-child) {
    border-right: 0;
  }
  .categorytab-container.cat_1 .product_row:nth-child(n+7) {
    display: none;
  }
  .cat_1 .product_row:nth-child(5) .item-product:before {
    display: block;
  }
  .cat_1 .product_row:nth-child(4) .item-product:before {
    display: none;
  }
  .rokan-onsaleproduct .col-onsale-left {
    display: none;
  }
  .rokan-onsaleproduct .col-onsale-right {
    width: 100%;
  }
  .product-grid .col-lg-2:nth-child(4n+1) {
    clear: none;
  }
  .product-grid .col-lg-2:nth-child(2n+1) {
    clear: both;
  }
  .categorytab-container.cat_1 .product_row:nth-child(n+9) {
    display: none;
  }
  .cat_special {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .vc_tta-tabs-container .tabs li:not(:last-child) {
    margin-right: 20px;
  }
  .product-grid li:nth-child(4n+1) .item-product:before {
    opacity: 1;
    visibility: visible;
  }
  .product-grid li:nth-child(2n+1) .item-product:before {
    opacity: 0;
    visibility: hidden;
  }
  .top-header {
    text-align: center;
  }
  .custommenu.navigation > ul {
    padding-left: 0;
  }
  .mini-cart-wrapper.enable-sticky,
  .header-wrapper-sticky.enable-sticky {
    display: none;
  }
  .header-container .header-content .top-bar-right {
    float: none;
  }
  .banner_left_1 img,
  .banner_left_2 img {
    width: 100%;
  }
  body #quick-window {
    width: 90%;
  }
  .banner_item_bg img {
    min-height: 0;
  }
  .top-menu .navigation {
    margin-left: 0;
  }
  .text_form {
    line-height: 50px;
  }
  .banner-top-home .fadeInUp {
    margin-left: 0;
    margin-right: -5px;
  }
  .form-newletter .search_input {
    margin: 0 0 25px;
  }
  .form-newletter .subscribe {
    top: 0;
  }
  .footer-container.layout2.footer .text_footer > div:nth-child(2n+1) {
    clear: both;
  }
  .title-catthum {
    width: 50%;
  }
  .group-product .rokan-product-heading h2 {
    width: 33%;
  }
  .footer-container.layout2.footer .text_footer > div {
    margin-bottom: 30px;
  }
  .list-category-dropdown > li > a img {
    display: none;
  }
  .list-service .box-icon {
    margin-bottom: 30px;
  }
  .footer-box {
    margin-bottom: 20px;
  }
  .page-footer .footer-container .footer-box-contact .fa {
    margin-top: 5px;
  }
  .verticalmenu.navigation.side-verticalmenu .our_categories {
    padding: 19px 10px;
  }
  .verticalmenu.navigation.side-verticalmenu > ul li.level0 {
    padding: 0 10px;
  }
  .verticalmenu.navigation.side-verticalmenu > ul li.level0 > a {
    padding: 10px 0;
  }
  .header-container .header-content .top-bar-left .switcher,
  .header-container .header-content .top-bar-left .top-left-static {
    float: none;
    display: inline-block;
  }
  .header-container .header-content .top-bar-right .top-info,
  .header-container .header-content .top-bar-right .top-contact {
    float: none;
    display: inline-block;
  }
  .header-container .header-content .top-bar-right .top-contact:after {
    display: none;
  }
  .header-container .header-content .main-header {
    text-align: center;
  }
  .header-container .header-content .main-header .logo {
    float: none;
    margin-bottom: 30px;
    max-width: 100%;
    text-align: center;
    display: block;
  }
  .header-container .header-content .main-header .logo img {
    margin: 0 auto;
  }
  .header-container .header-content .main-header .top-menu {
    padding-left: 0;
  }
  .header-container .header-content .top-bar-right .top-bar-menu {
    table-layout: fixed;
    width: 100%;
  }
  .link-follow {
    text-align: left;
  }
  .footer-container.layout2 .section-footer-top .block-social {
    padding-left: 70px;
  }
  .page-footer .footer-container .footer-copyright .payment {
    text-align: center;
  }
  .logo-footer,
  .page-footer .footer-static-container .footer-static .footer-links h2 {
    margin-top: 30px;
  }
  .footer-newletter,
  .footer-copyright {
    text-align: center;
  }
  .page-footer .footer-copyright .copyright {
    float: none;
    margin-bottom: 20px;
    display: block;
  }
  .page-footer .footer-copyright .footer-payment {
    float: none;
    text-align: center;
    margin-top: 20px;
  }
  .page-footer .footer-newletter .footer-payment {
    float: none;
    margin-top: 20px;
    text-align: center;
  }
  .footer-primary-column-3 {
    clear: left;
  }
  .slider_left-slider .owl-theme .owl-pagination {
    left: 40px;
    right: auto;
  }
  .owl-theme .owl-controls .owl-buttons .owl-next {
    right: 15px;
  }
  .owl-theme .owl-controls .owl-buttons .owl-prev {
    left: 15px;
  }
  .hot-deal .bs-banner.block-banner-text {
    text-align: center;
    margin-top: 10px;
  }
  .section-bestseller .categorytab-container .computer-laptop {
    width: 100%;
    margin-bottom: 50px;
  }
  .section-bestseller .categorytab-container .vc_tta-tabs-container {
    top: 55px;
    left: 0;
  }
  .section-bestseller .categorytab-container .vc_tta-tabs-container .tabs li {
    margin-right: 30px;
    margin-left: 0;
  }
  .header-content.sticky .sticky-main {
    display: none;
  }
  .sidebar_left_home1 {
    padding-right: 10px;
  }
  .products-grid .category_page_grid_3 .item-product:nth-child(2n+1),
  .products-grid .category_page_grid_4 .item-product:nth-child(2n+1),
  .products-grid .category_page_grid_5 .item-product:nth-child(2n+1) {
    clear: left;
  }
}
@media (max-width: 840px) {
  .attr-info .addcart-link {
    margin: 0;
  }
  .product-social-extra {
    margin: 10px 0 0 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  #layered_ajax_price_text .to_fixed {
    margin-left: 0 !important;
  }
  #layered_ajax_price_text .from_fixed {
    margin-right: 0 !important;
  }
}
@media (min-width: 768px) {
  .minicart-wrapper .block-minicart {
    right: -11px;
  }
  .main-nav > ul > li > a {
    padding: 0 !important;
  }
  body .verticalmenu.navigation .open-children-toggle {
    display: inline-block;
  }
  .product.data.items > .item.title {
    margin: 0 30px 0 0;
  }
  .cart.table-wrapper .product-item-details {
    vertical-align: middle;
  }
  .actions-toolbar .secondary a.action {
    margin-top: 15px;
  }
  .verticalmenu.navigation .subchildmenu.mega-columns > li {
    padding: 0 15px;
  }
  .verticalmenu.navigation.side-verticalmenu li.level0 > .submenu {
    box-shadow: none;
  }
  .custommenu.navigation li.level0 .submenu {
    box-shadow: none !important;
    border: 1px solid #e6e6e6;
  }
}
@media (max-width: 768px) {
  .footer-container .container > .rowFlexMargin {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .page-wrapper {
    overflow: unset !important;
  }
  .list-ads1 {
    margin-top: 20px;
  }
  .list-ads1 .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  .list-ads1 .row > div {
    padding: 0 10px;
  }
  .navigation .level0:first-child > .level-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .customer-account-login .page-title-wrapper {
    margin-top: 40px;
  }
  .customer-account-login .page-title-wrapper {
    margin-bottom: 40px;
  }
  .banner-slider .banner_item_bg img {
    width: 100%;
  }
  .velaServicesInner .velaContent {
    text-align: left;
  }
  .velaServicesInner .rowFlex > div:nth-child(5) {
    display: none;
  }
  .sidebar .top_rate,
  .sidebar .banner_left_sidebar {
    display: none;
  }
  .velaServicesInner .boxServiceContent {
    text-align: left;
  }
  .bs-banner-last {
    margin: 0 !important;
  }
  .hot-deal .countdown_block {
    position: static;
    margin-bottom: 10px;
  }
  .velaFooterMenu .velaContent {
    display: none;
  }
  .rowFlexMargin .velaBlock .velaFooterTitle,
  .rowFlexMargin .velaBlock {
    margin: 0;
  }
  .rowFlexMargin .velaBlock .velaFooterLinks {
    margin: 20px 0 0;
  }
  .velaFooterTitle {
    position: relative;
  }
  .velaFooterMenu .velaFooterTitle:before {
    content: "+";
    width: 15px;
    height: 15px;
    line-height: 15px;
    position: absolute;
    text-align: center;
    bottom: 0;
    right: 0;
    color: #222;
  }
  .velaFooterMenu .velaFooterTitle.active:before {
    content: "-";
  }
  .banner-slider-top .block_slider {
    width: 100%;
  }
  .banner-slider-top .block_banner {
    width: 100%;
  }
  .block-search {
    width: 85%;
    margin: 15px 0 0;
  }
  .block-search .block-content button.action {
    min-width: 100px;
  }
  .header-container .header-content .minicart-wrapper .block-minicart {
    right: 0;
  }
  .hot-deal .countdown_block {
    position: static;
    margin-bottom: 10px;
  }
  .vc_tta-tabs-container ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    overflow: scroll;
    justify-content: unset !important;
    width: 100%;
    padding-bottom: 0;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
  }
  .vc_tta-tabs-container .tabs li {
    width: 30%;
    flex-shrink: 0;
    text-align: left;
    margin: 0;
  }
  .vc_tta-tabs-container .tabs li a {
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .cat .vc_tta-tabs-container .tabs li {
    margin: 0 10px;
  }
  .verticalmenu.navigation.side-verticalmenu > ul li.level0 {
    position: relative;
  }
  .verticalmenu.navigation.side-verticalmenu > ul li.level0 .level0.submenu {
    height: 0;
  }
  .verticalmenu.navigation.side-verticalmenu > ul li.level0 .level0.submenu.opened {
    height: auto;
  }
  .newsletter-footer input[type="email"] {
    width: auto;
  }
  .popcat-box .category-item > a {
    display: block;
  }
  .popcat-box .category-item > a img {
    width: 100%;
  }
  .verticalmenu.navigation.side-verticalmenu > ul li:nth-of-type(1) > .submenu {
    background: transparent;
  }
  .load_more {
    margin-top: 30px;
  }
  .bs-banner {
    margin-bottom: 20px;
    text-align: center;
  }
  .wrapper_quickview_item {
    display: -webkit-box !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    flex-direction: column;
  }
  .wrapper_quickview_item .detail-info-product-view {
    order: 2;
    width: 100%;
    float: none;
  }
  .wrapper_quickview_item .product.media {
    order: 1;
    width: 100%;
    margin-bottom: 20px;
  }
  .toolbar-products .modes-mode:before {
    font-size: 24px;
  }
  .categorytab-container.cat_1 .product_row:nth-child(n+7) {
    display: none;
  }
  .cat_1 .product_row:nth-child(4) .item-product:before {
    display: block;
  }
  .cat_1 .product_row:nth-child(3) .item-product:before {
    display: none;
  }
  .header-control {
    min-height: 1px;
    border-bottom: none;
  }
  .rokan-product-heading .group-title1 h2 {
    font-size: 24px;
  }
  .rokan-product-heading .group-title1 h2 .sup-title {
    font-size: 24px;
  }
  .rokan-product-heading .vc_tta-tabs-container .tabs-categorytab li a {
    font-size: 14px;
  }
  .rokan-product-heading .vc_tta-tabs-container .tabs-categorytab li {
    margin-top: 10px;
  }
  .categorytab-container.cat_1 .product_row:nth-child(n+7) {
    display: none;
  }
  .cat_special {
    display: grid;
    grid-template-columns: repeat(3, 3fr);
  }
  .banner_mid_2 .col-banner-right,
  .banner_mid_2 .col-banner-left {
    width: 100%;
  }
  .verticalmenu.navigation.side-verticalmenu li.level0 > a > span.cat-label {
    position: relative;
    margin-left: 10px;
    top: 0;
    right: 0;
  }
  .verticalmenu.navigation li.ui-menu-item .submenu .title-cat-mega-menu:before {
    font-family: 'simple-line-icons';
    content: "\e606";
    font-size: 14px;
    color: #222;
    right: 18px;
    position: absolute;
    font-weight: 500;
  }
  .verticalmenu.navigation li.ui-menu-item .submenu .title-cat-mega-menu.ui-state-active:before {
    content: "\e604";
    color: #222;
    font-family: 'simple-line-icons';
    font-size: 14px;
    right: 18px;
    position: absolute;
    font-weight: 500;
  }
  #pageContent .aboutService,
  #pageContent .velaAboutUsTitle {
    margin-top: 20px;
  }
  body #quick-window .quick-view-content .detail-info-product-view {
    width: 100%;
    float: none;
  }
  body #quick-window .quick-view-content .product.media {
    width: 100%;
  }
  .attr-info .addcart-link,
  .product-social-extra {
    margin: 10px 0 0 60px;
  }
  .wrapper-bestseller.cat h4 {
    width: 100%;
  }
  .wp-header > div {
    display: inline-block;
  }
  div.logo {
    float: none;
  }
  div.logo .wrapper-bestseller.cat h4 {
    width: 100%;
  }
  .smart-search {
    margin-top: 20px;
  }
  .header-main {
    margin: 20px 0;
  }
  .header-container .header-content .main-header .top-menu,
  .owl-theme .owl-buttons {
    display: none;
  }
  .header-container {
    text-align: center;
  }
  .header-container .header {
    margin: 0;
  }
  .header-container .header-content {
    position: static;
    z-index: 0;
  }
  .search-by-cateogry .form.minisearch .control .search-text-box {
    padding-left: 0;
  }
  .top-menu {
    position: static;
    z-index: 0;
  }
  .nav-toggle {
    display: table-cell;
    vertical-align: middle;
    top: -62px;
  }
  .header-control {
    position: relative;
  }
  .top-search {
    float: right;
  }
  .smart-search {
    margin-left: 42px;
    width: 94%;
  }
  .header-control.header-nav {
    background: #ffffff;
    position: absolute;
  }
  .block-banner-text {
    display: block;
  }
  .block-banner-text a img {
    width: 100%;
  }
  .banner-top-home .fadeInUp {
    margin-left: 0;
    margin-right: 0;
    padding-right: 15px;
    margin-bottom: 10px;
  }
  .banner-top-home .fadeInRight {
    padding-left: 14px;
    padding-right: 15px;
  }
  .banner-top-home .block-banner-text {
    display: block;
  }
  .header-container .header-content .minicart-wrapper {
    position: absolute;
    top: -47px;
    right: 10px;
  }
  .product-grid > li {
    width: 50%;
  }
  .banner-big-left div {
    margin-bottom: 10px;
  }
  .category-dropdown {
    position: fixed;
  }
  .list-category-dropdown > li:hover > a::before {
    display: none;
  }
  .verticalmenu.navigation.side-verticalmenu > ul li.level0:hover > a {
    background: none;
  }
  .verticalmenu.navigation.side-verticalmenu > ul li.level0.classic .level0.submenu .subchildmenu > li.level1 > a {
    font-size: 14px;
    font-weight: 400;
  }
  .verticalmenu.navigation.side-verticalmenu > ul li.level0 .level0.submenu .subchildmenu > li.level1 > a {
    border-left: none;
    padding: 10px 0;
    line-height: 24px;
    font-size: 14px;
    font-weight: 400;
  }
  .nav-open .verticalmenu.navigation.side-verticalmenu {
    display: block;
    width: 100%;
    position: relative;
  }
  .verticalmenu.navigation.side-verticalmenu > ul {
    display: block !important;
  }
  .verticalmenu.navigation.side-verticalmenu > ul li.level0:hover .level0.submenu {
    left: 0 !important;
  }
  .verticalmenu.navigation.side-verticalmenu > ul li.level0 .level0.submenu {
    left: 0 !important;
  }
  .verticalmenu.navigation.side-verticalmenu > ul li.level0 > a {
    padding: 10px;
  }
  .verticalmenu.navigation.side-verticalmenu > ul li.level0 > a.ui-state-active::after {
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .navigation {
    max-width: 100%;
  }
  .navigation .level0 > .level-top {
    display: block;
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    font-size: 14px;
    text-transform: uppercase;
  }
  .nav-toggle:hover:before {
    color: #ce2129;
  }
  .menu_left_home1 .togge-menu.list-category-dropdown {
    width: 100%;
  }
  .nav-open .title-category-dropdown {
    color: #222;
    font-size: 14px;
  }
  .nav-open .title-category-dropdown:after {
    left: 15px;
    color: #222;
  }
  .navigation .submenu:not(:first-child) ul > li a {
    text-transform: none;
    font-family: 'dinpro-light';
  }
  .navigation .level0.active > .level-top,
  .navigation .level0.has-active > .level-top,
  .navigation .level0 > .level-top:hover {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .navigation li.level0:last-child {
    border: 0;
  }
  .navigation li.level0 {
    margin-right: 0;
    border: 0;
  }
  .navigation {
    padding: 0;
    float: none;
  }
  .navigation .parent .level-top:after {
    font-family: 'simple-line-icons';
    content: "\e604";
    color: #333;
    font-size: 14px;
    float: right;
    position: static;
  }
  .navigation .parent .level-top.ui-state-active:after {
    content: "\f105";
  }
  .navigation .level0 .submenu {
    box-shadow: none;
    padding-top: 0;
  }
  .navigation .level0 .submenu a {
    font-size: 12px;
    text-transform: uppercase;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .custommenu.navigation li.ui-menu-item {
    display: block;
  }
  .custommenu.navigation li.level0.fullwidth > .submenu {
    padding: 0;
  }
  .custommenu.navigation li.ui-menu-item > a {
    text-align: left;
  }
  .verticalmenu.navigation.side-verticalmenu > ul li.level0 {
    display: block;
  }
  .verticalmenu.navigation.side-verticalmenu > ul li.level0 .level0.submenu {
    padding: 0;
  }
  .catalog-product-view .column.main {
    width: 100%;
  }
  .banner_item_bg {
    background-size: cover;
  }
  .static-banner a {
    display: block;
  }
  .product-list .item-product {
    max-width: 400px;
    margin: 0 auto 30px;
  }
  .products-list .item-product .product-info-cart button {
    margin-bottom: 10px;
  }
  .section-bestseller .categorytab-container {
    margin-left: 0;
  }
  .page-footer .footer-static-container .footer-static .footer-links.contacts .title {
    display: block;
  }
  .page-footer .footer-static-container .footer-static .footer-links .title {
    position: relative;
  }
  .page-footer .footer-static-container .footer-static .footer-links .title:before {
    display: none;
  }
  .page-footer .footer-static-container .footer-static .footer-links .title {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .page-footer .footer-static-container .footer-static .footer-links .title.clicked {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  .page-footer .footer-static-container .footer-static .footer-links .title.clicked:before {
    display: block;
  }
  .page-footer .footer-static-container .footer-static .footer-links .title:after {
    content: "\f067";
    font-family: FontAwesome;
    font-size: 12px;
    float: right;
    line-height: 30px;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #333333;
    background: #e6e6e6;
    cursor: pointer;
  }
  .page-footer .footer-static-container .footer-static .footer-links .title:hover:after {
    background: #222222;
    color: #ffffff;
  }
  .page-footer .footer-container .list-footer-box {
    text-align: center;
  }
  .page-footer .footer-container .footer-box-contact li {
    padding-left: 0;
  }
  .page-footer .footer-container .footer-box-contact li i {
    display: none;
  }
  .page-footer .footer-container .footer-box li {
    margin-bottom: 0;
  }
  .list-tags-category {
    margin-top: 20px;
  }
  .item-tags-category h2 {
    display: block;
    margin-bottom: 10px;
  }
  .item-tags-category ul {
    display: block;
    padding: 0;
  }
  .smart-search #choose_category {
    padding: 0;
  }
  .store-item .left-store {
    margin-bottom: 20px;
  }
  .store-item .store-image iframe {
    width: 100%;
  }
  .banner_mid_1 .row > div:first-child > div,
  .banner_mid_2 .row > div:first-child > div {
    margin-bottom: 20px;
  }
  .banner_mid_1 img,
  .banner_mid_2 img {
    width: 100%;
  }
  .breadcrumbs,
  .account .page-title-wrapper .page-title,
  [class^='sales-guest-'] .page-title-wrapper .page-title,
  .sales-guest-view .page-title-wrapper .page-title {
    margin-top: 20px;
  }
  .hidden-sm .head-contact {
    display: none !important;
  }
  .header-container .header-content .minicart-wrapper .product .actions {
    top: auto;
    bottom: 0;
  }
  .product.data.items > .item.title {
    margin: 0;
  }
  .product.info.detailed .product.data.items .item.title a {
    margin-bottom: 0;
  }
  .attr-info .addcart-link,
  .product-social-extra {
    margin: 10px 0 0 0;
  }
  .detail-info-product-view {
    padding-left: 0;
  }
  .verticalmenu.navigation.side-verticalmenu > ul li.level0 .level0.submenu {
    border: none;
    padding-left: 15px;
  }
  .velaServicesInner .rowFlex > div:not(:last-child) {
    border-right: none;
  }
  .sidebar-additional1 {
    margin-top: 40px;
  }
  .item-post-full {
    padding: 0;
  }
  .toolbar-products .modes {
    float: left;
    margin-right: 0;
    display: inline-block;
  }
  .nav-open .page-wrapper {
    position: relative;
  }
  .modes-mode > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .toolbar-products .modes-mode:before {
    line-height: inherit;
    color: #7d7d7d;
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .toolbar-products .toolbar-amount {
    padding: 0 !important;
  }
  .footer-bottom .copyright {
    margin: 0;
  }
  .payment-method {
    line-height: 33px;
  }
  .page-products .toolbar .limiter {
    float: right;
  }
  .verticalmenu.navigation.side-verticalmenu {
    height: 100%;
  }
  .product.info.detailed .product.data.items .item.content {
    margin-top: 0;
  }
  .wrapper_quickview_item .row li.active:after {
    display: none;
  }
  .fieldset > .field:not(.choice) > .label {
    width: auto;
  }
  .fieldset > .field:not(.choice) > .control {
    width: auto !important;
    margin: 0;
  }
  .field .control._with-tooltip {
    margin-top: 10px;
  }
  .address-information .fieldset .fiel.two-fields .last {
    width: 100%;
  }
  body .checkout-index-index .nav-sections,
  body .checkout-index-index .nav-toggle {
    display: table-cell;
  }
  .smart-search #choose_category {
    padding: 4px 15px;
  }
  .title-widget-post {
    margin-top: 50px;
  }
  .breadcrumbs {
    border-bottom: none;
  }
  .cms-index-index .verticalmenu.navigation.side-verticalmenu > ul,
  .verticalmenu.navigation.side-verticalmenu > ul {
    border: 0;
    border-radius: 0;
    background: none;
  }
  .section-item-content.nav-sections.category-dropdown-item-content {
    border-right: 2px solid #ce2129;
    border-radius: 0;
    background: #ffffff;
  }
  .container {
    width: 100%;
  }
  .cms-no-route .column.main .container h1 {
    font-size: 150px;
    line-height: 1.5;
  }
  .customer-account-login .page-title-wrapper {
    margin-top: 40px;
  }
  .customer-account-login .page-main .columns {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 639px) {
  .header-container .header-content .top-bar-right .top-bar-menu > li .minicart-wrapper,
  .header-container .header-content .top-bar-right .top-bar-menu > li > a {
    padding: 20px 50px;
  }
  .search-by-cateogry .form.minisearch .control .chosen-container,
  .search-by-cateogry .form.minisearch .control #choose_category {
    max-width: 130px;
  }
  .rowFlexMargin .vela-contactinfo .contacinfo-phone.contactinfo-item {
    font-size: 18px;
  }
  .block-search {
    margin: 15px 0 0;
  }
  .search-by-cateogry .form.minisearch .control .chosen-container a,
  .search-by-cateogry .form.minisearch .control #choose_category a {
    padding: 6px;
  }
}
@media (max-width: 680px) {
  .footer-bottom > div > div > div {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .payment-method {
    text-align: center;
  }
  .payment-method a {
    margin: 0;
  }
  .top-header .switcher .switcher-options {
    padding-right: 16px;
  }
  .top-account ul li a {
    padding: 0 10px;
  }
  .cat_special {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
  }
  .categorytab-container.cat_1 .product_row:nth-child(n+3) {
    display: none;
  }
  .velaServicesInner .flexJustifyCenter .col-2:before {
    display: none !important;
  }
}
@media (max-width: 640px) {
  .menu-links-mobile li {
    margin-right: 0;
  }
  .menu-links-mobile li a {
    padding: 0 5px;
    font-size: 12px;
  }
  .rokan-product-heading .vc_tta-tabs-container .tabs-categorytab li.active:before {
    display: none;
  }
  .product-grid .product-item {
    max-width: 400px;
    margin: 0 auto 50px;
    clear: both;
    float: none;
    display: block;
    width: 100%;
  }
  .product-grid .product-item img {
    width: 100%;
  }
  .title-catthum {
    width: 55%;
  }
}
@media (max-width: 560px) {
  .top-header .switcher {
    float: none;
    display: inline-block;
  }
  .hot-deal .countdown_block .super-deal-countdown {
    width: 100%;
  }
  .velaServicesInner .velaContent {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .hot-deal .hot-deal-tab-slider.hot-deal-tab-slider-customcss {
    padding: 15px 0 20px;
  }
  .cat .block_cat {
    padding: 30px 0;
  }
  .cat_1 .tab_container {
    padding: 30px 15px 0;
  }
  .owl-carousel .item-product {
    padding: 0 10px;
  }
  .cat_1 .item-product {
    padding: 0 10px 30px;
  }
  .hot-deal .countdown_block {
    padding: 0 10px;
    text-align: center;
  }
  .hot-deal .countdown_block .title_countdown {
    line-height: 20px;
    padding-bottom: 10px;
  }
  .velaServicesInner .rowFlex > div {
    text-align: center;
  }
  .velaServicesInner .d-flex {
    display: inline-block;
    text-align: center;
    min-width: 0;
  }
  .velaServicesInner .boxServiceImage {
    display: inline-block;
    margin: 0;
  }
  .velaServicesInner .boxServiceContent {
    display: inline-block;
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .product-view .detail-info-product-view .page-title-wrapper .page-title span {
    line-height: 28px;
  }
  #relate_product_slider.owl-carousel .item-product,
  #upsell_product_slider.owl-carousel .item-product {
    padding: 0 15px;
  }
  #relate_product_slider.owl-carousel .item-product .product-image-container,
  #upsell_product_slider.owl-carousel .item-product .product-image-container {
    width: 100% !important;
  }
  .velaServicesInner .d-flex,
  .velaServicesInner .boxServiceContent,
  .velaServicesInner .rowFlex > div {
    text-align: center;
  }
  .velaServicesInner .boxServiceImage.boxServiceImage1 {
    margin-right: 0;
  }
  .section-brands .item .brand-item {
    margin: 0;
  }
  .hot-deal .hot-deal-tab-slider.hot-deal-tab-slider-customcss {
    padding-top: 12px;
  }
  .velaNewsletterFooter .newsletterDescription {
    padding: 0 15px;
  }
  .newsletter-footer button.action,
  .newsletter-footer input[type="email"],
  .newsletter-footer button.action:hover {
    padding: 0 15px;
  }
  .smart-search-form input[type=text] {
    padding-left: 25px;
  }
  .list-ads1 .col-xs-4 {
    width: 100%;
    text-align: center;
  }
  #pageContent .aboutBoxText {
    width: 100%;
    padding: 30px;
  }
  .header-container .header-content .top-bar-left,
  .top-bar-right {
    float: none;
  }
  .top-bar-left .switcher.language.switcher-language {
    margin-left: 26px;
  }
  .header-container .header-content .top-bar-right {
    float: none;
    border-top: 1px solid #e6e6e6;
  }
  .smart-search {
    margin-left: 40px;
    width: 91%;
  }
  .title-catthum,
  .group-product .rokan-product-heading h2 {
    width: 100%;
  }
  .product-tab .list-tab-product .box-title .tabs li {
    width: 100%;
    margin-bottom: 5px;
  }
  .section-bestseller .tab_container .item-product {
    clear: both;
    overflow: hidden;
  }
  .introduct_service div {
    width: 50%;
  }
  .footer-container.layout2.footer .text_footer > div {
    width: 100%;
  }
  .hot-deal-tab > div {
    width: 100%;
  }
  .hot-deal .hot-deal-tab-slider.hot-deal-tab-slider-customcss .hot-deal-image {
    padding: 0;
    text-align: center;
  }
  .hot-deal .hot-deal-tab-slider.hot-deal-tab-slider-customcss .woocommerce-hot-deal .onsale {
    top: -252px;
  }
  .main-nav > ul > li > a:first-child {
    padding-left: 0;
  }
  .form-newletter .subscribe {
    padding: 7px 30px;
  }
  .owl-controls {
    display: none;
  }
  .block.newsletter .content {
    padding: 30px;
    padding-top: 80px;
  }
  .block.newsletter .content .actions .action.subscribe {
    float: left;
  }
  .header-container .header-content .top-bar-right .top-bar-menu > li .minicart-wrapper,
  .header-container .header-content .top-bar-right .top-bar-menu > li > a {
    padding: 20px;
  }
  .header-container .header-content .top-bar-left .form-search-wapper,
  .header-container .header-content .top-bar-left .logo {
    width: 100%;
    display: block;
    overflow: hidden;
  }
  .header-container .header-content .minicart-wrapper {
    top: -50px;
  }
  .product-tab .tab_container .item-product {
    width: 100%;
  }
  .smart-search .select-category {
    display: none;
  }
  .smart-search .chosen-container-single .chosen-single span {
    margin-right: 0;
  }
  .smart-search .search-by-cateogry .chosen-container-single .chosen-single {
    padding-right: 0;
    padding-left: 0;
  }
  .smart-search .chosen-container-single .chosen-single div {
    right: -2px;
  }
  .smart-search .chosen-container {
    width: 113px !important;
  }
  .smart-search #choose_category {
    width: 102px;
  }
  .top-header .switcher {
    float: none;
  }
  .top-header .switcher .switcher-options {
    padding-right: 0;
  }
  .block-dashboard-addresses .box-billing-address,
  .block-dashboard-addresses .box-shipping-address,
  .block-dashboard-info .box-information,
  .block-dashboard-info .box-newsletter {
    float: none;
    width: 100%;
  }
  .footer-container.footer {
    padding: 50px 0 0;
  }
  .header-container .header-content .top-bar-right {
    border-top: 0;
  }
  .vc_tta-tabs-container {
    float: none !important;
  }
  .vc_tta-tabs-container .tabs li {
    margin-right: 0;
    display: block;
    margin-top: 10px;
  }
  .modal-popup .modal-content {
    padding: 0 20px;
  }
  .modal-popup .modal-footer {
    padding: 20px;
  }
  .actions-secondary {
    display: none;
  }
}
@media (max-width: 479px) {
  .item.ourteam-inner.col-xs-6.col-sm-4 {
    width: 100%;
  }
  .categorytab-container.cat_1 .item-product:after {
    display: none;
  }
  .cat .vc_tta-tabs-container .tabs li {
    margin: 0 10px;
  }
  .cat_1 .rokan-product-heading {
    padding-bottom: 10px;
  }
}
@media (max-width: 414px) {
  .toolbar-products .toolbar-amount {
    margin-top: 20px;
    padding-left: 0;
  }
}
@media (max-width: 375px) {
  .menu-links-mobile {
    display: none;
  }
  .top-header .switcher .switcher-options strong {
    padding: 0 10px 0 0;
    border: 0;
  }
  .menu-links-mobile li a {
    padding: 0 5px;
    font-size: 11px;
  }
  .modal-popup .modal-footer button {
    margin-bottom: 20px;
    width: 100%;
  }
  .product_row .item-product:before {
    display: none;
  }
  .attr-info .addcart-link,
  .product-social-extra {
    margin: 10px 0 0 0px;
  }
  .text_form {
    font-size: 22px;
  }
  .product-grid .item-product:before {
    opacity: 0;
    visibility: hidden;
  }
  .smart-search-form button[type=submit] {
    width: 100px;
    padding: 0 20px;
  }
  .nav-toggle {
    top: -69px;
  }
  .header-container .header-content .minicart-wrapper {
    top: -45px;
  }
  .rowFlexMargin .vela-contactinfo .contacinfo-phone.contactinfo-item .wrap {
    font-size: 18px;
  }
  .cms-no-route .column.main .container h1 {
    font-size: 130px;
    line-height: 1.3;
  }
}
@media (max-width: 320px) {
  .top-account ul li a {
    padding: 0 5px;
    border-left: 0;
  }
  .top-account ul li a i {
    padding-right: 0;
  }
  .smart-search {
    width: 82%;
    margin-left: 50px;
  }
  .hot-deal .hot-deal-tab-slider.hot-deal-tab-slider-customcss .woocommerce-hot-deal {
    padding: 0 7px 40px;
  }
  .title-catthum {
    padding: 10px 12px;
  }
  .title-catthum:before {
    padding-right: 15px;
  }
  .text_form {
    font-size: 19px;
  }
  .form-newletter .subscribe {
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 400;
  }
  .section-bestseller .categorytab-container .computer-laptop {
    margin-bottom: 100px;
  }
  .section-bestseller .categorytab-container .vc_tta-tabs-container .tabs li {
    width: 100%;
  }
  .product-grid li {
    width: 100%;
  }
  .hot-deal .hot-deal-tab-slider.hot-deal-tab-slider-customcss .woocommerce-hot-deal .super-deal-countdown .time_circles > div {
    margin-right: 8px;
  }
  .post-tags-info {
    float: left;
  }
  .page-products .toolbar .limiter {
    display: block;
    float: none;
    margin-bottom: 20px;
  }
  .sort-pagi-bar-bottom .toolbar-products .pages {
    text-align: center;
    display: block;
  }
  .cart.table-wrapper .product-item-photo {
    position: unset;
  }
  .nav-toggle {
    top: -71px;
  }
  .header-container .header-content .minicart-wrapper {
    top: -43px;
  }
}
/*** Global ***/
.sidebar-shop .widget {
  margin-bottom: 30px;
}
.sidebar-shop .widget .widget-title {
  font-size: 18px;
  font-family: 'dinpro-bold';
  color: #222222;
  font-weight: 500;
  display: block;
  padding: 0 0 13px 0;
  margin: 0 0 15px;
  position: relative;
  border-bottom: 1px solid #e6e6e6;
}
.sidebar-shop .widget .widget-title:before {
  content: "";
  width: 50px;
  height: 2px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-color: #ce2129;
}
body .swatch-attribute-options {
  margin-top: 30px;
}
.filter-content .filter-options .filter-options-title {
  font-size: 18px;
  font-family: 'dinpro-light';
  color: #222222;
  font-weight: 500;
  display: block;
  padding: 0  0 13px 0;
  margin: 0 0 15px;
  position: relative;
  border-bottom: 1px solid #e6e6e6;
}
.filter-content .filter-options .count {
  float: right;
  font-family: 'dinpro-light';
  font-weight: 400;
  font-size: 14px;
  color: #53555a;
}
.filter-content .filter-options .count:hover {
  color: #ce2129;
}
.filter-content .filter-options .filter-options-content {
  margin: 0 0 43px;
}
.filter-content .filter-options .filter-options-content ol li {
  margin: 0;
  padding: 0;
}
.filter-content .filter-options .filter-options-content ol li:last-child {
  margin-bottom: 20px;
}
.filter-content .filter-options .filter-options-content ol li a {
  font-family: 'dinpro-light';
  color: #222222;
  font-size: 14px;
  font-weight: 400;
  padding: 15px 0;
  border-bottom: 1px solid #f5f5f6;
  display: block;
}
.filter-content .filter-options .filter-options-content ol li a:hover {
  color: #ce2129;
}
.filter-content .filter-options .filter-options-content ol li a.ui-slider-handle {
  background: #ffffff;
  top: -6px;
  height: 15px;
  width: 15px;
  border: 5px solid #ce2129;
  border-radius: 100%;
  cursor: ew-resize;
  padding: 0;
}
.filter-content .filter-options .filter-options-content ol li a span {
  font-family: 'dinpro-light';
  font-weight: 400;
  font-size: 14px;
  color: #c4c9cd;
  float: none;
}
.filter-content .filter-options .filter-options-content ol li a span:hover {
  color: #ce2129;
}
.filter-content .filter-options .filter_color ol li a:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 18px;
  float: left;
  margin-top: 5px;
}
.filter-content .filter-options .filter_color ol li.blue a:before {
  background: blue;
}
.filter-content .filter-options .filter_color ol li.blue a:before {
  background: blue;
}
.filter-content .filter-options .filter_color ol li.red a:before {
  background: red;
}
.filter-content .filter-options .filter_color ol li.white a:before {
  background: #c0c0c0;
}
.filter-content .filter-options .filter_color ol li.black a:before {
  background: black;
}
.filter-content .filter-options .filter_color ol li.pink a:before {
  background: pink;
}
.filter-content .filter-options .filter_color ol li.yellow a:before {
  background: yellow;
}
.filter-content .swatch-attribute.color .swatch-attribute-options a {
  display: inline;
  width: 100%;
  clear: both;
  padding: 12px 0 !important;
  margin: 0;
}
.filter-content .swatch-attribute.color .swatch-attribute-options a:last-child {
  margin-bottom: 20px !important;
}
.filter-content .swatch-attribute.color .swatch-attribute-options a .swatch-option {
  min-width: 9px;
  max-width: 9px;
  height: 9px;
  margin-top: 2px;
  border: none;
}
.filter-content .swatch-attribute.color .swatch-attribute-options a .swatch-option.white {
  border: 1px solid #d5d5d5;
}
.filter-content .swatch-attribute.color .swatch-attribute-options a .swatch-option:hover {
  outline: none;
}
.sidebar-shop .owl-theme .owl-controls .owl-buttons {
  display: none !important;
}
.product-options-wrapper .swatch-opt {
  margin: 0;
}
.product-options-wrapper .swatch-opt div.mage-error[generated] {
  margin: 0;
  text-indent: 60px;
}
.product-options-wrapper .swatch-attribute-label {
  font-weight: bold;
  font-size: 14px;
  vertical-align: middle;
  line-height: 14px;
  text-transform: capitalize;
  display: inline-block;
  width: 60px;
  margin-top: 10px;
  color: #222222;
}
.product-options-wrapper label {
  font-size: 13px;
  color: #333;
  margin-bottom: 10px;
  margin-top: 20px;
}
.product-options-wrapper .swatch-attribute-selected-option {
  display: none;
}
.product-options-wrapper .swatch-attribute-options {
  display: inline-block;
  margin: 0;
}
.product-options-wrapper .swatch-option.text,
.product-options-wrapper .swatch-option {
  width: 32px;
  text-align: center;
  height: 32px;
  font-size: 14px;
  line-height: 30px;
  vertical-align: middle;
  display: inline-block;
  margin-right: 7px;
}
.product-options-wrapper .swatch-attribute {
  margin-bottom: 10px;
}
.swatch-option-link-layered .swatch-option.text {
  width: 32px;
  text-align: center;
  height: 32px;
  font-size: 12px;
  line-height: 30px;
  padding: 0;
  font-weight: 400;
  vertical-align: middle;
  display: inline-block;
}
/* Layered ajax */
.ui-slider-horizontal {
  height: 3px;
  background: #ce2129;
  margin-top: 10px;
}
#layered_ajax_price_attribute {
  margin-top: 20px;
  margin-bottom: 50px;
}
#layered_ajax_price_text {
  font-family: 'dinpro-light';
  font-weight: 500;
  font-size: 14px;
  color: #ce2129;
  margin-bottom: 5px;
  padding-bottom: 5px;
  text-align: left;
}
#layered_ajax_price_text .from_fixed {
  margin-right: 10px;
}
#layered_ajax_price_text .to_fixed {
  margin-left: 10px;
}
.layered_ajax_overlay {
  background-color: #ffffff;
  height: 100%;
  left: 0;
  opacity: 0.5;
  filter: alpha(opacity=50);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999999;
  display: none;
}
.layered_ajax_overlay div {
  height: 100%;
  width: 100%;
  position: relative;
}
.layered_ajax_overlay div img {
  top: 50%;
  left: 50%;
  display: block;
  position: absolute;
  margin-top: -15px;
  margin-left: -15px;
}
.ui-slider .ui-slider-handle {
  background: #ce2129;
  top: -5px;
  height: 16px;
  width: 16px;
  border-radius: 100%;
  cursor: ew-resize;
}
.limiter-options {
  border: 1px solid #e6e6e6;
  background: #ffffff;
}
/***** Advertisment left ***/
.adv-widget-thumb img {
  width: 100%;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}
.adv-widget-thumb:hover img {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}
.widget.widget-adv {
  border: medium none;
  padding: 0;
}
.title-widget-adv {
  background: #ce2129 none repeat scroll 0 0;
  color: #ffffff;
  font-weight: 700;
  margin: 0;
  padding: 11px 20px;
  text-transform: uppercase;
}
.title-widget-adv > span {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}
.item-widget-adv {
  position: relative;
}
.adv-widget-info {
  bottom: 110px;
  left: 0;
  padding: 25px;
  position: absolute;
  text-transform: uppercase;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
}
.adv-widget-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #4b505a;
}
.adv-widget-info h2 span {
  vertical-align: middle;
}
.adv-widget-info h2 {
  color: #ED321E;
  font-weight: 700;
  margin: 0;
  font-size: 30px;
}
.adv-widget-info h2 span {
  font-size: 17px;
}
.widget-adv .owl-theme .owl-controls .owl-page span {
  background: #ffffff none repeat scroll 0 0;
  border-radius: 50%;
  box-shadow: 1px 3px 3px -1px rgba(0, 0, 0, 0.2);
  display: block;
  height: 18px;
  margin: 0 4px;
  opacity: 1;
  width: 18px;
  border: none;
}
.widget-adv .owl-theme .owl-controls .owl-page:hover span,
.widget-adv .owl-theme .owl-controls .owl-page.active span {
  background: #222222;
}
.widget-adv .owl-theme .owl-controls {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
}
.sidebar .block.filter {
  margin-top: 0;
}
/*** Panigation ***/
.toolbar-products {
  padding: 0;
  margin-top: 41px;
  margin-bottom: 30px;
}
.toolbar-products .limiter .label,
.toolbar-products .toolbar-sorter .label,
.toolbar-products .limiter .limiter-text,
.toolbar-products .toolbar-sorter .limiter-text,
.toolbar-products .limiter .sorter-label,
.toolbar-products .toolbar-sorter .sorter-label {
  padding: 0;
  font-size: 14px;
  padding-top: 8px;
  display: inline-block;
}
.toolbar-products .toolbar-amount {
  float: left;
  padding: 0 0 0 60px;
  margin-top: 10px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'dinpro-light';
  color: #666666;
}
.toolbar-products .sorter-options {
  margin: 0 0 0 20px;
}
.toolbar-products .limiter .control select {
  border: none;
  margin: 0;
  background: none;
  background-image: url(images/icon-down.png) !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 0px) 50% !important;
  border-radius: 30px;
  line-height: 38px;
  padding: 0 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.toolbar-products .modes {
  float: left;
  margin-right: 0;
}
.toolbar-products .modes .modes-label {
  display: none;
  position: relative;
  float: left;
  height: auto;
  margin-right: 5px;
  width: auto;
  line-height: 30px;
  border: 1px solid #e6e6e6;
  padding: 1px 22px;
  height: 35px;
  font-family: 'dinpro-light';
  font-weight: 400;
  font-size: 14px;
  color: #53555a;
}
.toolbar-products .modes .modes-mode {
  line-height: 38px;
  border-radius: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  margin-right: 10px;
}
.toolbar-products .modes .modes-mode.mode-list:before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  background: #d1d1d1;
  -webkit-mask: url(images/mode_list.svg) no-repeat 100% 100%;
  mask: url(images/mode_list.svg);
}
.toolbar-products .modes .modes-mode.active:before,
.toolbar-products .modes .modes-mode:not(.active):hover:before {
  background: #ce2129;
  border-color: transparent;
}
.toolbar-products .sorter {
  float: right;
  font-family: 'dinpro-light';
  font-weight: 400;
  font-size: 14px;
  padding: 0;
  border: 1px solid #e6e6e6;
  height: 40px;
  line-height: 38px;
  margin-left: 20px;
  width: auto;
  padding: 0 15px;
  font-size: 12px;
  border-color: #e8ecef;
  border-radius: 3px;
  color: #222222;
  display: inline-block;
  vertical-align: middle;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.toolbar-products .sorter select {
  border: none;
  margin: 0;
}
.toolbar-products .modes-mode {
  display: inline-block;
  background-color: #e6e6e6;
  color: #222222;
}
.toolbar-products .modes-mode:before {
  color: #b6b6b6;
  mask-repeat: no-repeat !important;
  mask-position: center !important;
  -webkit-mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
}
.toolbar-products .modes-mode.mode-grid {
  margin-right: 10px;
}
.toolbar-products .modes-mode.mode-grid:before {
  content: "";
  width: 16px;
  height: 24px;
  display: inline-block;
  background: #d1d1d1;
  -webkit-mask: url(images/mode_grid.svg) no-repeat 100% 100%;
  mask: url(images/mode_grid.svg);
}
.toolbar-products .modes-mode.mode-grid:hover:before {
  background: #ce2129;
}
.toolbar-products .modes-mode.active:before {
  color: #ce2129;
}
.toolbar-products .limiter .limiter-text {
  padding-top: 3px;
}
.toolbar-products .pages .pages-items .item {
  font-size: 14px;
  margin: 0;
  padding: 0;
}
.toolbar-products .pages .pages-items .item a,
.toolbar-products .pages .pages-items .item strong {
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #222222;
  margin: 0 3px;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
}
.toolbar-products .pages .pages-items .item .action.next:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f101";
  font-size: 14px;
  color: #666666;
  margin: 0;
  line-height: 36px;
}
.toolbar-products .pages .pages-items .item .action.next:hover:before {
  color: #ffffff;
}
.toolbar-products .pages .pages-items .item .action.previous:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f100";
  font-size: 14px;
  color: #666666;
  margin: 0;
  line-height: 36px;
}
.toolbar-products .pages .pages-items .item .action.previous:hover:before {
  color: #ffffff;
}
.check-view-mode-toolbar-list .grid-mode-show-type-products {
  display: none !important;
}
.sort-pagi-bar-bottom .toolbar-products .pages {
  display: block;
  float: left;
}
.sort-pagi-bar-bottom .toolbar-products .pages .pages-items .item.current strong,
.sort-pagi-bar-bottom .toolbar-products .pages .pages-items .item a:hover {
  border-color: #ce2129;
  background: #ce2129;
  color: #ffffff;
}
.sort-pagi-bar-bottom .toolbar-products .modes {
  display: none;
}
.sort-pagi-bar-bottom .toolbar-products .toolbar-sorter {
  display: none;
}
.sort-pagi-bar-bottom .toolbar-products .toolbar-amount {
  float: right;
}
.sort-pagi-bar-bottom .toolbar-products .grid-mode-show-type-products {
  display: none;
}
.page-products .toolbar .limiter {
  display: inline-block;
  float: right;
}
.grid-mode-show-type-products a {
  font-size: 0;
  content: "";
  width: 30px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  background: #d1d1d1;
  margin: 0 7px;
  mask-repeat: no-repeat !important;
  -webkit-mask-repeat: no-repeat !important;
  mask-position: center !important;
  -webkit-mask-position: center !important;
}
.grid-mode-show-type-products a:hover,
.grid-mode-show-type-products a.actived {
  background: #ce2129;
}
.grid-mode-show-type-products a.grid-mode-2 {
  -webkit-mask: url(images/mode_grid2.svg) no-repeat center center;
  mask: url(images/mode_grid2.svg);
}
.grid-mode-show-type-products a.grid-mode-3 {
  -webkit-mask: url(images/mode_grid3.svg) no-repeat center center;
  mask: url(images/mode_grid3.svg);
}
.grid-mode-show-type-products a.grid-mode-4 {
  -webkit-mask: url(images/mode_grid4.svg) no-repeat center center;
  mask: url(images/mode_grid4.svg);
}
.grid-mode-show-type-products a.grid-mode-5 {
  -webkit-mask: url(images/mode_grid5.svg) no-repeat center center;
  mask: url(images/mode_grid5.svg);
}
.products-grid .item-product {
  float: left;
  padding: 0 15px 35px 15px;
}
.products-grid .category_page_grid_2 .item-product {
  width: 50%;
}
.products-grid .category_page_grid_2 .item-product:nth-child(2n+1) {
  clear: both;
}
.products-grid .category_page_grid_3 .item-product {
  width: 33.33%;
}
.products-grid .category_page_grid_3 .item-product:nth-child(3n+1) {
  clear: both;
}
.products-grid .category_page_grid_4 .item-product {
  width: 25%;
}
.products-grid .category_page_grid_4 .item-product:nth-child(4n+1) {
  clear: both;
}
.products-grid .category_page_grid_5 .item-product {
  width: 20%;
}
.products-grid .category_page_grid_5 .item-product:nth-child(5n+1) {
  clear: both;
}
@media (max-width: 1399px) {
  .grid-mode-5 {
    display: none !important;
  }
  .products-grid .category_page_grid_5 .item-product {
    width: 25%;
  }
  .products-grid .category_page_grid_5 .item-product:nth-child(4n+1) {
    clear: both;
  }
  .products-grid .category_page_grid_5 .item-product:nth-child(5n+1) {
    clear: none;
  }
}
@media (max-width: 1199px) {
  .grid-mode-4 {
    display: none !important;
  }
  .products-grid .category_page_grid_4 .item-product,
  .products-grid .category_page_grid_5 .item-product {
    width: 33.33%;
  }
  .products-grid .category_page_grid_4 .item-product:nth-child(3n+1),
  .products-grid .category_page_grid_5 .item-product:nth-child(3n+1) {
    clear: both;
  }
  .products-grid .category_page_grid_4 .item-product:nth-child(4n+1),
  .products-grid .category_page_grid_5 .item-product:nth-child(4n+1) {
    clear: none;
  }
}
@media (max-width: 991px) {
  .grid-mode-show-type-products {
    display: none !important;
  }
  .products-grid .category_page_grid_3 .item-product,
  .products-grid .category_page_grid_4 .item-product,
  .products-grid .category_page_grid_5 .item-product {
    width: 50%;
  }
  .products-grid .category_page_grid_3 .item-product:nth-child(2n+1),
  .products-grid .category_page_grid_4 .item-product:nth-child(2n+1),
  .products-grid .category_page_grid_5 .item-product:nth-child(2n+1) {
    clear: both;
  }
  .products-grid .category_page_grid_3 .item-product:nth-child(3n+1),
  .products-grid .category_page_grid_4 .item-product:nth-child(3n+1),
  .products-grid .category_page_grid_5 .item-product:nth-child(3n+1) {
    clear: none;
  }
}
@media (max-width: 767px) {
  .products-grid .category_page_grid_2 .item-product,
  .products-grid .category_page_grid_3 .item-product,
  .products-grid .category_page_grid_4 .item-product,
  .products-grid .category_page_grid_5 .item-product {
    width: 50%;
  }
  .products-grid .category_page_grid_2 .item-product:nth-child(2n+1),
  .products-grid .category_page_grid_3 .item-product:nth-child(2n+1),
  .products-grid .category_page_grid_4 .item-product:nth-child(2n+1),
  .products-grid .category_page_grid_5 .item-product:nth-child(2n+1) {
    clear: both;
  }
  .page-products .columns.layout-2-col {
    display: flex;
  }
  .page-products .columns.layout-2-col .col-main {
    order: 1;
  }
  .page-products .columns.layout-2-col .col-sidebar {
    order: 2;
  }
}
@media (min-width: 768px) {
  .page-layout-1column .product.media {
    width: 100%;
  }
}
@media (max-width: 380px) {
  .toolbar-products .sorter {
    padding: 0;
  }
}
.product-view .detail-info-product-view .product.attribute.overview .value p,
.wrapper_quickview_item .detail-info-product-view .product.attribute.overview .value p,
.product-view .detail-info-product-view .product.attribute.description .value p,
.wrapper_quickview_item .detail-info-product-view .product.attribute.description .value p {
  font-family: 'dinpro-light';
  font-size: 14px;
  font-weight: 400;
  color: #666666;
}
.product-view .detail-info-product-view .page-title-wrapper .container,
.wrapper_quickview_item .detail-info-product-view .page-title-wrapper .container {
  padding: 0;
}
.product-view .detail-info-product-view .page-title-wrapper .page-title span,
.wrapper_quickview_item .detail-info-product-view .page-title-wrapper .page-title span {
  font-family: 'dinpro-light';
  font-size: 24px;
  font-weight: 500;
  color: #222222;
  text-transform: none;
  padding: 0;
  margin: 0;
}
.product-view .detail-info-product-view .product-info-stock-sku .stock,
.wrapper_quickview_item .detail-info-product-view .product-info-stock-sku .stock {
  font-family: 'dinpro-light';
  font-weight: 400;
  color: #222222;
  margin: 0;
  font-size: 14px;
  line-height: unset;
  display: inline-block;
  line-height: 22px;
}
.product-view .detail-info-product-view .product-info-stock-sku .stock .attribute,
.wrapper_quickview_item .detail-info-product-view .product-info-stock-sku .stock .attribute {
  display: inline-block;
  margin-left: 10px;
}
.product-view .detail-info-product-view .product-info-stock-sku .stock span,
.wrapper_quickview_item .detail-info-product-view .product-info-stock-sku .stock span,
.product-view .detail-info-product-view .product.attribute.sku .value,
.wrapper_quickview_item .detail-info-product-view .product.attribute.sku .value {
  color: #ce2129;
  font-family: 'dinpro-light';
  font-weight: 400;
  font-size: 14px;
}
.product-view .detail-info-product-view .product-reviews-summary,
.wrapper_quickview_item .detail-info-product-view .product-reviews-summary {
  margin: 12px 0;
}
.product-view .detail-info-product-view .price-box .price,
.wrapper_quickview_item .detail-info-product-view .price-box .price {
  font-family: 'dinpro-light';
  font-weight: 500;
  font-size: 24px;
  color: #222222;
}
.product-view .detail-info-product-view .price-box .price-container .price,
.wrapper_quickview_item .detail-info-product-view .price-box .price-container .price {
  font-family: 'dinpro-light';
  font-weight: 500;
  font-size: 24px;
  color: #ce2129;
  margin-right: 10px;
}
.product-view .detail-info-product-view .price-box .old-price .price-container .price,
.wrapper_quickview_item .detail-info-product-view .price-box .old-price .price-container .price {
  font-family: 'dinpro-light';
  font-weight: 400;
  font-size: 18px;
  color: #555;
}
.product-view .detail-info-product-view .info-price span,
.wrapper_quickview_item .detail-info-product-view .info-price span {
  color: #222222;
}
.product-view .detail-info-product-view .special-price,
.wrapper_quickview_item .detail-info-product-view .special-price {
  float: left;
}
.product-view .detail-info-product-view .old-price,
.wrapper_quickview_item .detail-info-product-view .old-price {
  float: left;
  margin: 0 0 0 10px;
}
.product-view .detail-info-product-view .price-box,
.wrapper_quickview_item .detail-info-product-view .price-box {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  padding-bottom: 0;
  border-bottom: none;
}
.product-view .detail-info-product-view .info-qty input,
.wrapper_quickview_item .detail-info-product-view .info-qty input {
  border: 0;
  text-align: center;
  vertical-align: top;
  height: auto;
}
.product-view .detail-info-product-view .attr-product label,
.wrapper_quickview_item .detail-info-product-view .attr-product label {
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  vertical-align: middle;
  line-height: 14px;
  margin-top: 8px;
  display: none;
}
.product-view .detail-info-product-view .product-add-form,
.wrapper_quickview_item .detail-info-product-view .product-add-form {
  border-top: 1px solid #e6e6e6;
  padding-top: 40px;
  margin-top: 22px;
}
.product-view .detail-info-product-view .attr-info .addcart-link,
.wrapper_quickview_item .detail-info-product-view .attr-info .addcart-link {
  background: #ce2129 none repeat scroll 0 0;
  color: #ffffff;
  box-shadow: none;
  display: inline-block;
  font-family: 'dinpro-bold';
  border-radius: 3px;
  text-transform: none;
  font-size: 14px;
  height: 40px;
  font-weight: normal;
  position: relative;
  border: 1px solid transparent;
  text-shadow: none;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  height: 45px;
  line-height: 45px;
}
.product-view .detail-info-product-view .attr-info .addcart-link:hover,
.wrapper_quickview_item .detail-info-product-view .attr-info .addcart-link:hover {
  background: #ce2129;
  color: #ffffff;
  border: 1px solid #ce2129;
}
.product-view .detail-info-product-view .attr-info .addcart-link:hover,
.wrapper_quickview_item .detail-info-product-view .attr-info .addcart-link:hover {
  background-color: #ce2129;
  border-color: #ce2129;
  color: #ffffff;
}
.product-view .detail-info-product-view .samples .samples-item-title,
.wrapper_quickview_item .detail-info-product-view .samples .samples-item-title,
.product-view .detail-info-product-view .samples .samples-item,
.wrapper_quickview_item .detail-info-product-view .samples .samples-item {
  display: inline-block;
}
.product-view .product-social-extra a,
.wrapper_quickview_item .product-social-extra a {
  color: #b6b6b6;
  line-height: 43px;
  height: 45px;
  width: 45px;
  border-radius: 100%;
  background: #f6f6f6;
}
.product-view .product-social-extra a:hover,
.wrapper_quickview_item .product-social-extra a:hover {
  color: #ffffff;
  background-color: #ce2129;
  border-color: #ce2129;
}
.product-view .mouse-over-to-zoom-in,
.wrapper_quickview_item .mouse-over-to-zoom-in {
  background: #fafafa none repeat scroll 0 0;
  bottom: 0;
  color: #999;
  left: 0;
  margin: 0;
  padding: 4px 0;
  position: absolute;
  text-align: center;
  width: 100%;
  display: none;
}
.product-view .price-box span.old-price,
.wrapper_quickview_item .price-box span.old-price {
  display: inline-block !important;
}
.product-view .detail-info-product-view .product-info-price {
  margin: 20px 0;
}
.action.multicheckout {
  background: #ce2129 none repeat scroll 0 0;
  color: #ffffff;
  box-shadow: none;
  display: inline-block;
  font-family: 'dinpro-bold';
  border-radius: 3px;
  text-transform: none;
  font-size: 14px;
  height: 40px;
  font-weight: normal;
  position: relative;
  border: 1px solid transparent;
  text-shadow: none;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  height: 50px;
  line-height: 48px;
  width: 100%;
}
.action.multicheckout:hover {
  background: #ce2129;
  color: #ffffff;
  border: 1px solid #ce2129;
}
.wrapper_quickview_item .detail-info-product-view .price-box {
  margin-top: 5px;
  margin-bottom: 8px;
}
.wrapper_quickview_item .product-info-stock-sku {
  margin-bottom: 15px;
}
.gallery-placeholder .row {
  margin: 0 -4px;
  clear: both;
}
.gallery-placeholder .row .bxslider {
  margin-top: 5px;
  text-align: center;
}
.gallery-placeholder .row .bxslider.owl-carousel .owl-wrapper-outer {
  padding-bottom: 0;
  margin-bottom: 0;
}
.gallery-placeholder .row li.small_image {
  padding: 5px 4px 0;
  cursor: pointer;
}
.gallery-placeholder .row li.small_image img {
  border: 1px solid #e8e8e8;
}
.gallery-placeholder .row li.active {
  position: relative;
}
.gallery-placeholder .row li.active img {
  border-color: #ce2129;
}
.gallery-placeholder .row li.active:after {
  color: #ce2129;
  content: "\f0d8";
  font-family: fontawesome;
  left: 43%;
  margin-left: -4px;
  position: absolute;
  top: -5px;
}
.gallery-placeholder .owl-theme .owl-buttons {
  width: auto;
  position: static;
  opacity: 1;
  visibility: visible;
}
.gallery-placeholder .owl-theme:hover .owl-buttons {
  opacity: 1;
}
.gallery-placeholder .owl-theme .owl-controls .owl-buttons > div {
  position: absolute;
  top: 50%;
  left: 9px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  font-size: 0;
  text-align: center;
  color: #ffffff;
  background: transparent;
  border: 0;
}
.gallery-placeholder .owl-theme .owl-controls .owl-buttons > div:hover {
  background: transparent;
}
.gallery-placeholder .owl-theme .owl-controls .owl-buttons > div:before {
  color: #cacaca;
}
.gallery-placeholder .owl-theme .owl-controls .owl-buttons > div:hover:before {
  font-size: 36px;
  color: #ce2129;
}
.gallery-placeholder .owl-theme .owl-controls .owl-buttons > div:before {
  content: "\e605";
  font-family: 'simple-line-icons';
  font-size: 24px;
  display: block;
  line-height: 28px;
}
.gallery-placeholder .owl-theme .owl-controls .owl-buttons .owl-next:before {
  content: "\e606";
}
.gallery-placeholder .owl-theme .owl-controls .owl-buttons .owl-next {
  right: 9px;
  left: auto;
}
.product-view .page-title-wrapper .page-title span,
.wrapper_quickview_item .page-title-wrapper .page-title span {
  font-size: 20px;
  font-family: 'dinpro-light';
  text-transform: none;
  color: #888;
  padding-bottom: 0;
  margin-bottom: 20px;
}
.product-view .page-title-wrapper .page-title span:before,
.wrapper_quickview_item .page-title-wrapper .page-title span:before {
  display: none;
}
.product-view .rokan-product-heading,
.wrapper_quickview_item .rokan-product-heading {
  margin-top: 20px;
}
.product-view .product.attibute,
.wrapper_quickview_item .product.attibute {
  color: #777;
  font-size: 13px;
  line-height: 1.5;
}
.product-view .product-info-stock-sku,
.wrapper_quickview_item .product-info-stock-sku {
  margin-top: 10px;
}
.product-view .product-info-stock-sku .stock,
.wrapper_quickview_item .product-info-stock-sku .stock {
  color: #333;
  font-size: 13px;
  margin-bottom: 10px;
}
.product-view .product-info-stock-sku .attibute.sku .type,
.wrapper_quickview_item .product-info-stock-sku .attibute.sku .type {
  color: #333;
}
.product-view .product-info-stock-sku .attibute.sku .value,
.wrapper_quickview_item .product-info-stock-sku .attibute.sku .value {
  display: inline-block;
  color: #222222;
  font-size: 13px;
}
.product-view .price-box,
.wrapper_quickview_item .price-box {
  font-family: 'dinpro-bold';
}
.product-view .box-tocart,
.product-options-bottom .box-tocart {
  margin-top: 30px;
  margin-bottom: 0;
}
.product-view .box-tocart .action.tocart,
.product-options-bottom .box-tocart .action.tocart {
  line-height: 1;
  font-size: 13px;
  padding: 0px 25px;
  line-height: 40px;
}
.product-view .box-tocart .field.qty,
.product-options-bottom .box-tocart .field.qty {
  display: inline-block;
  padding-right: 15px;
}
.product-view .box-tocart .field.qty label,
.product-options-bottom .box-tocart .field.qty label {
  display: inline-block;
  font-size: 13px;
  color: #333;
  line-height: 40px;
  margin-right: 10px;
}
.product-view .box-tocart .field.qty .control,
.product-options-bottom .box-tocart .field.qty .control {
  display: inline-block;
}
.product-view .box-tocart .field.qty .control input,
.product-options-bottom .box-tocart .field.qty .control input {
  height: 40px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  padding: 0;
}
.product-view .box-tocart .actions,
.product-options-bottom .box-tocart .actions {
  padding-top: 0;
  display: inline-block;
  vertical-align: top;
}
.product-view .product.info.detailed {
  margin-bottom: 0;
}
.wrapper_quickview_item .row li.active:after {
  left: 50%;
}
.product-social-links .product-addto-links {
  display: inline-block;
}
.product-social-links .action,
.product-social-links .action.mailto.friend {
  display: inline-block;
  margin-left: 0;
  margin-right: 5px;
}
.product-social-links .action:before,
.product-social-links .action.mailto.friend:before {
  display: none;
}
.product-social-links .action:hover .fa,
.product-social-links .action.mailto.friend:hover .fa {
  background: #222222;
  border-color: #222222;
  color: #ffffff;
}
.product-social-links .action .fa,
.product-social-links .action.mailto.friend .fa {
  display: block;
  font-size: 14px;
  color: #ffffff;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  padding: 0;
  border: none;
  border: 1px solid #e6e6e6;
  color: #666666;
  vertical-align: middle;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.product-social-links .action.mailto.friend {
  position: relative;
}
.product-social-links .action.mailto.friend:before {
  content: "\f003";
  font-family: FontAwesome;
  display: block;
  font-size: 14px;
  color: #ffffff;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  padding: 0;
  border: none;
  border: 1px solid #e6e6e6;
  color: #666666;
  vertical-align: middle;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.product-social-links .action.mailto.friend:hover:before {
  background: #222222;
  border-color: #222222;
  color: #ffffff;
}
.product-social-links .action.mailto.friend span {
  display: none;
}
.product-social-links .action.mailto.friend {
  position: relative;
}
.product-social-links .action.mailto.friend:before {
  content: "\f003";
  font-family: FontAwesome;
  display: block;
  font-size: 14px;
  color: #ffffff;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  padding: 0;
  border: none;
  border: 1px solid #e6e6e6;
  color: #666666;
  vertical-align: middle;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.product-social-links .action.mailto.friend:hover:before {
  background: #222222;
  border-color: #222222;
  color: #ffffff;
}
.product-social-links .action.mailto.friend span {
  display: none;
}
.product.info.detailed {
  margin-top: 40px;
  line-height: initial;
}
.product.info.detailed .product.data.items {
  float: none;
}
.product.info.detailed .product.data.items .item.title a {
  border: 0;
  color: #b6b6b6;
  display: block;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 20px;
  background-color: transparent;
  padding: 0;
}
.product.info.detailed .product.data.items .item.title a:before {
  content: "";
  width: 50px;
  height: 2px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #ce2129;
  opacity: 0;
  visibility: hidden;
}
.product.info.detailed .product.data.items .item.title.active a,
.product.info.detailed .product.data.items .item.title a:hover {
  background: transparent;
  border-color: transparent;
  color: #222222;
}
.product.info.detailed .product.data.items .item.title.active a:before,
.product.info.detailed .product.data.items .item.title a:hover:before {
  opacity: 1;
  visibility: visible;
}
.product.info.detailed .product.data.items .item.content {
  border: 0;
  padding: 20px 0 0;
}
.product.info.detailed .product.data.items #product-review-container {
  float: left;
  width: 48%;
  margin-right: 2%;
}
.product.info.detailed .product.data.items #product-review-container .review-list .block-title strong {
  font-family: 'dinpro-light';
  font-size: 14px;
  font-weight: 500;
  color: #222222;
}
.product.info.detailed .product.data.items #product-review-container .review-list .block-content .review-item {
  padding-top: 15px;
  color: #222222;
}
.product.info.detailed .product.data.items #product-review-container .review-list .block-content .review-item .review-title {
  font-family: 'dinpro-light';
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
.product.info.detailed .product.data.items #product-review-container .review-list .block-content .review-item .review-ratings {
  float: none;
  width: 50%;
}
.product.info.detailed .product.data.items #product-review-container .review-list .block-content .review-item .review-ratings .item {
  margin-bottom: 10px;
}
.product.info.detailed .product.data.items #product-review-container .review-list .block-content .review-item .review-ratings .item .label {
  padding-left: 0;
}
.product.info.detailed .product.data.items #product-review-container .review-list .block-content .review-item .review-ratings .item .rating-result {
  float: right;
}
.product.info.detailed .product.data.items #product-review-container .review-list .block-content .review-item .review-content,
.product.info.detailed .product.data.items #product-review-container .review-list .block-content .review-item .review-details {
  margin-left: 0;
  margin-top: 10px;
}
.product.info.detailed .product.data.items .review-add {
  float: left;
  width: 50%;
}
.product.info.detailed .product.data.items .review-add .review-fieldset .legend {
  font-size: 14px;
  font-family: 'dinpro-bold';
  font-weight: 500;
}
.product.info.detailed .product.data.items .review-add .review-fieldset .legend span {
  padding-bottom: 10px;
  display: block;
}
.product.info.detailed .product.data.items .review-add .review-fieldset .field .label {
  text-align: left;
  font-size: 12px;
}
.bundle-options-container .block-bundle-summary {
  padding: 14px 20px;
}
#maincontent .product-view .page-title-wrapper {
  margin-bottom: 14px;
  margin-top: 0;
}
.product .value {
  line-height: 22px;
  font-family: 'dinpro-light';
  font-size: 14px;
  font-weight: 400;
  color: #222;
}
.product .value h1,
.product .value h2,
.product .value h3,
.product .value h4,
.product .value h5,
.product .value h6 {
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: 30px;
}
.product .value p {
  margin-bottom: 10px;
}
.product .value img {
  margin-top: 15px;
}
.product.attribute.overview {
  overflow: hidden;
}
.opcheckout-review-info {
  background: none !important;
}
.fa.fa-retweet:before {
  font-family: 'simple-line-icons';
  content: "\e034";
}
.fotorama-item.fotorama--fullscreen {
  z-index: 100000 !important;
}
.shop-tab-title .clr {
  display: none !important;
}
.fotorama__stage__frame .fotorama__img {
  width: 100% !important;
}
.fotorama__nav-wrap.fotorama__nav-wrap--horizontal {
  text-align: center;
  margin-top: 10px;
}
.upsell .rokan-product-heading,
.related .rokan-product-heading {
  margin: 0;
}
.upsell .owl-theme .owl-controls .owl-buttons .owl-prev,
.related .owl-theme .owl-controls .owl-buttons .owl-prev {
  left: 15px;
}
.upsell .owl-theme .owl-controls .owl-buttons .owl-next,
.related .owl-theme .owl-controls .owl-buttons .owl-next {
  right: 15px;
}
.block.related,
.block.upsell {
  margin-bottom: 50px !important;
}
/*****************************************************************************************
                                     Contact
******************************************************************************************/
.hidden-category-dropdown .wrap-category-dropdown {
  background: #ffffff none repeat scroll 0 0;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.1);
  display: none;
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 999;
}
.content-page {
  margin-top: 30px;
}
.contact-map {
  border: 1px solid #e6e6e6;
  padding: 10px;
}
.list-contact-info {
  margin-bottom: 45px;
}
.item-contact-info {
  position: relative;
  text-align: center;
}
.item-contact-info::after {
  background: #999 none repeat scroll 0 0;
  content: "";
  height: 2px;
  left: 100%;
  margin-left: -50px;
  position: absolute;
  top: 28px;
  width: 100px;
}
.item-contact-info.last-item::after {
  display: none;
}
.item-contact-info a i {
  color: #999;
  font-size: 60px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.contact-info-page {
  background: #f4f4f4 none repeat scroll 0 0;
  padding: 70px 0;
  text-align: center;
}
.contact-info-page .desc {
  color: #555;
  margin: 0 auto;
  max-width: 890px;
  padding: 0 15px;
}
.item-contact-info > h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 25px 0 0;
}
.item-contact-info a {
  color: #333;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.item-contact-info a:hover {
  color: #f9bc02;
}
.form-contact input[type="text"] {
  border: 1px solid #e6e6e6;
  color: #999;
  height: 42px;
  margin-bottom: 30px;
  padding: 0 20px;
  width: 100%;
}
.form-contact textarea {
  border: 1px solid #e6e6e6;
  margin-bottom: 30px;
  width: 100%;
  padding: 20px;
}
.form-contact input[type="submit"] {
  background: #fb9902 none repeat scroll 0 0;
  border: medium none;
  color: #ffffff;
  height: 40px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  width: 110px;
}
.form-contact input[type="submit"]:hover {
  background: #f9bc02 none repeat scroll 0 0;
}
.contact-form-page > h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 37px;
  text-transform: uppercase;
}
.contact-form-page {
  margin-top: 45px;
}
.item-contact-info .contact-icon {
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.item-contact-info .contact-icon::before {
  color: #999;
  font-family: "fontawesome";
  font-size: 60px;
  left: 100%;
  position: absolute;
  top: -1px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  left: 0;
  -webkit-transform: translateX(-200%);
  transform: translateX(-200%);
  opacity: 0;
}
.item-contact-info .contact-icon.icon-mobile::before {
  content: "\f10b";
}
.item-contact-info .contact-icon.icon-phone::before {
  content: "\f095";
}
.item-contact-info .contact-icon.icon-email::before {
  content: "\f0e0";
}
.item-contact-info .contact-icon:hover::before {
  transform: translateX(0) rotate(0);
  -moz-transform: translateX(0) rotate(0);
  -webkit-transform: translateX(0) rotate(0);
  opacity: 1;
  color: #ce2129;
}
.item-contact-info .contact-icon:hover i {
  -webkit-transform: translateX(200%);
  transform: translateX(200%);
  opacity: 0;
  color: #ce2129;
}
.item-contact-info .contact-icon.icon-quality::before {
  content: "\f219";
}
.item-contact-info .contact-icon.icon-shipment::before {
  content: "\f017";
}
.item-contact-info .contact-icon.icon-payment::before {
  content: "\f155";
}
.contact-info .image_hotline {
  display: block;
  max-width: 100%;
  height: 50px;
  width: 50px;
  background-color: #ce2129;
  -webkit-mask: url(images/hotline_icon.svg) no-repeat 100% 100%;
  mask: url(images/hotline_icon.svg);
}
.about-menu {
  border-bottom: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
  margin: 0;
}
.about-menu > li {
  display: inline-block;
  margin-right: 36px;
}
.about-menu a {
  color: #333;
  display: block;
  padding: 15px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.about-menu a::after {
  background: #ce2129 none repeat scroll 0 0;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  top: -1px;
  width: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.about-menu a:hover::after {
  width: 100%;
  left: 0;
}
.about-menu a:hover {
  color: #ce2129;
}
.about-full-protec h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 40px;
  text-transform: uppercase;
}
.protect-video {
  margin-top: 95px;
}
.about-full-protec span {
  background: #ce2129 none repeat scroll 0 0;
  border-radius: 50%;
  color: #ffffff;
  display: table-cell;
  font-size: 18px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  vertical-align: middle;
  width: 60px;
}
.about-full-protec ul {
  margin: 0;
  max-width: 450px;
  position: relative;
}
.about-full-protec li {
  display: table;
  margin-bottom: 75px;
  position: relative;
  width: 100%;
}
.about-full-protec p {
  display: table-cell;
  padding-left: 25px;
  vertical-align: middle;
}
.about-full-protec li::after {
  background: #e6e6e6 none repeat scroll 0 0;
  content: "";
  height: 50px;
  left: 30px;
  margin-top: 12px;
  position: absolute;
  top: 100%;
  width: 1px;
}
.about-full-protec li:last-child {
  margin: 0;
}
.about-full-protec li:last-child::after {
  display: none;
}
.about-full-protec .new-user-guide {
  color: #3a49b8;
  display: block;
  margin-top: 30px;
}
.about-full-protec .new-user-guide:hover {
  color: #ce2129;
}
.video-about {
  padding-right: 60px;
  padding-top: 20px;
  text-align: right;
}
.about-review {
  border-top: 2px solid #e6e6e6;
  margin-top: 95px;
  padding-top: 95px;
}
.about-review .title-default {
  margin-bottom: 47px;
  text-transform: uppercase;
}
.item-about-review {
  display: table;
  margin-bottom: 50px;
}
.about-review-thumb {
  display: table-cell;
  width: 100px;
}
.about-info {
  display: table-cell;
  padding: 0 30px;
  vertical-align: top;
}
.about-info h3 {
  font-size: 14px;
  margin: 0 0 8px;
}
.about-info h3 a:hover {
  color: #ce2129;
}
.about-info p {
  color: #999;
  margin: 0;
}
.about-review-thumb a {
  border: 1px solid #e6e6e6;
  display: block;
  overflow: hidden;
  padding: 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.about-review-thumb a:hover {
  border-color: #ce2129;
}
.about-review-thumb a:hover img {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}
.about-review-thumb a img {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.cms-about-us .backround_aboutus img {
  width: 100%;
}
.cms-about-us #main-aboutus {
  padding-top: 0 !important;
}
@media (min-width: 1200px) {
  .cms-about-us #main-aboutus {
    margin-top: -110px;
  }
}
.cms-about-us #main-aboutus blockquote {
  margin: 15px 0;
}
.cms-about-us .content-about p {
  margin-bottom: 15px;
}
.cms-about-us .content-about .text-black {
  font-size: 16px;
}
.cms-about-us .wpb_text_column {
  margin-bottom: 60px;
}
.cms-about-us .tbay-addon-tbay-addon-ourteam {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cms-about-us .vc_fluid.container {
    max-width: 100%;
    margin: auto;
    width: 100%;
    padding: 0;
  }
  .cms-about-us .vc_fluid.container .vc_fluid.col-sm-12 {
    padding: 0;
  }
  .cms-about-us .vc_fluid.container .vc_fluid.col-sm-12 .vc_column-inner {
    padding: 0 !important;
  }
}
#pageContent {
  position: relative;
  overflow: hidden;
  padding: 0 0 30px;
}
#pageContent .velaAboutUsTop {
  padding: 50px 0;
}
#pageContent .rowFlexMargin {
  margin-left: -10px;
  margin-right: -10px;
}
#pageContent .img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
#pageContent .velaAboutUsServices {
  padding: 60px 0 120px;
}
#pageContent .velaAboutUsServices.velaAboutUs {
  background-image: url('../images/home1/vela-image2.jpg');
}
#pageContent .velaAboutUsContent {
  max-width: 470px;
}
#pageContent .velaAboutUsTitle {
  position: relative;
  margin: 0 0 51px;
  padding: 0 0 33px;
  font-size: 32px;
  font-weight: 500;
}
#pageContent .velaAboutUsTitle:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 2px;
  background-color: #ce2129;
}
#pageContent .velaAboutUsTitle .velaAboutUsDesc {
  margin-bottom: 36px;
  line-height: 32px;
}
#pageContent .velaAboutUsTitle.text-center {
  margin-bottom: 40px;
}
#pageContent .velaAboutUsTitle.text-center:after {
  left: 50%;
  margin-left: -35px;
}
#pageContent .velaPageSubTitle {
  margin: 0 auto 80px;
  max-width: 600px;
  text-align: center;
}
#pageContent .aboutService {
  padding: 38px 30px 56px;
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
}
#pageContent .aboutServiceCounter {
  color: #ce2129;
  font-size: 21px;
  font-weight: 500;
  line-height: 32px;
}
#pageContent .aboutServiceHeading {
  margin-bottom: 31px;
  color: #222222;
  font-size: 21px;
  font-weight: 500;
  line-height: 32px;
}
#pageContent .velaAboutUsText {
  padding: 120px 0 60px;
  overflow: hidden;
}
#pageContent .velaAboutUsTextHeading {
  position: relative;
  max-width: 560px;
  margin: 0 auto 90px;
  padding: 74px 0 0;
  color: #222222;
  font-size: 21px;
  font-weight: 500;
  line-height: 32px;
}
#pageContent .velaAboutUsTextHeading:before {
  content: '\201C';
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  height: 50px;
  color: #ce2129;
  font-size: 150px;
  line-height: 150px;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
#pageContent .velaAboutUsText .velaContent {
  position: relative;
}
#pageContent .velaAboutUsText .velaContent:before,
#pageContent .velaAboutUsText .velaContent:after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  width: 300%;
  border-top: 1px solid #e6e6e6;
}
#pageContent .aboutBoxText {
  width: 50%;
  padding: 113px 30px 120px;
}
#pageContent .aboutBoxTextHeading {
  margin: 0 0 30px;
  color: #222222;
  font-size: 21px;
  font-weight: 500;
  line-height: 32px;
}
#pageContent .aboutBoxDesc {
  max-width: 475px;
  margin: 0 auto 25px;
}
#pageContent .btnVelaOne {
  display: inline-block;
  padding: 10px 48px;
  color: #ffffff;
  background-color: #ce2129;
  border: 2px solid #ce2129;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  border-radius: 30px;
}
#pageContent .aboutMember {
  margin-bottom: 65px;
  position: relative;
  text-align: center;
}
#pageContent .aboutMember .aboutMember {
  margin-bottom: 65px;
  position: relative;
  text-align: center;
}
#pageContent .aboutMember .aboutMemberName {
  margin-bottom: 6px;
  color: #222222;
  font-size: 21px;
  font-weight: 500;
  line-height: 32px;
}
body #main-container {
  padding-bottom: 60px;
}
.content-about {
  color: #555;
  background-position: top;
  background-repeat: no-repeat;
}
.vc_row[data-vc-full-width] {
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  overflow: hidden;
}
.tbay-breadscrumb.show-title + #main-container .content-about {
  margin-top: -90px;
}
.vc_fluid.container {
  max-width: 1170px;
  margin: auto;
}
.vc_row:before,
.vc_row:after {
  content: " ";
  display: table;
}
.vc_custom_1552883228263 {
  padding-top: 50px !important;
  padding-right: 85px !important;
  padding-left: 85px !important;
  background-color: #ffffff !important;
}
.vc_column-inner::before,
.vc_column-inner::after {
  content: " ";
  display: table;
}
.wpb_alert p:last-child,
#content .wpb_alert p:last-child,
.wpb_text_column p:last-child,
.wpb_text_column *:last-child,
#content .wpb_text_column p:last-child,
#content .wpb_text_column *:last-child {
  margin-bottom: 0;
}
.title-about {
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  margin: 0 0 20px;
  color: #222222;
}
.content-about p {
  line-height: 23px;
  margin-bottom: 25px;
}
.content-about blockquote {
  line-height: 26px;
}
.content-about .tbay-addon-features {
  margin-bottom: 0;
}
.tbay-addon-tbay-addon-text-heading .rokan-product-heading,
.tbay-addon-tbay-addon-features .rokan-product-heading {
  margin-bottom: 30px;
}
.content-about .tbay-addon .tbay-addon-title,
.content-about .tbay-addon .tbay-addon-heading {
  font-size: 20px;
  margin-bottom: 15px;
}
.tbay-addon .tbay-addon-title .subtitle,
.tbay-addon .tbay-addon-heading .subtitle {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  text-transform: none;
  color: #888;
}
.row.grid,
.row.vertical,
.display-products:not(.products-list) .row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.tbay-addon-features.style-2 .feature-box {
  display: flex !important;
}
@media (max-width: 1399px) {
  .cms-about-us #main-aboutus {
    padding-top: 300px;
  }
}
@media (max-width: 1199px) {
  .cms-about-us .backround_aboutus {
    display: none;
  }
  .cms-about-us #main-aboutus {
    padding-top: 0;
  }
}
.storelocator-index-index h1.page-title {
  display: none !important;
}
.storelocator-index-index #locator_filter {
  margin-top: 30px;
  margin-bottom: 60px;
}
.storelocator-index-index .column_left {
  border: 1px solid #e1e1e1;
  border-radius: 3px;
}
.storelocator-index-index #locator_filter .column_left .center #store_list .list .image {
  flex: 0 0 50%;
  max-width: 350px;
}
.storelocator-index-index #locator_filter .column_left .block-content {
  background: none;
  border-bottom: 1px solid #e1e1e1;
  border-radius: 3px;
}
.storelocator-index-index #locator_filter .column_left .center #store_list .list .today_time {
  background: #ce2129;
  color: #fff;
}
.storelocator-index-index #locator_filter .column_left .center {
  height: 72vh;
  max-height: 680px;
}
.storelocator-index-index .location-information h2 {
  font-size: 20px;
  color: #222;
}
.storelocator-index-index .location-information div {
  margin-top: 10px;
  line-height: 14px;
}
.storelocator-index-index .location-information .view-detail a {
  background: #ce2129 none repeat scroll 0 0;
  color: #ffffff;
  box-shadow: none;
  display: inline-block;
  font-family: 'dinpro-bold';
  border-radius: 3px;
  text-transform: none;
  font-size: 14px;
  height: 40px;
  font-weight: normal;
  position: relative;
  border: 1px solid transparent;
  text-shadow: none;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  line-height: 40px;
  padding: 0 20px;
  font-size: 14px !important;
}
.storelocator-index-index .location-information .view-detail a:hover {
  background: #ce2129;
  color: #ffffff;
  border: 1px solid #ce2129;
}
.storelocator-index-index .location-information strong {
  font-weight: 500;
}
.storelocator-store-view h1.page-title {
  display: none !important;
}
.storelocator-store-view #locator_filter-store {
  margin-top: 30px;
  margin-bottom: 60px;
}
.storelocator-store-view .map-directions {
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  background: #ce2129;
}
.storelocator-store-view .map-directions a {
  color: #fff;
}
.storelocator-store-view .map-directions i {
  margin-right: 10px;
}
.storelocator-store-view .location-information h2 {
  color: #222;
}
.storelocator-store-view .location-information div {
  margin-top: 10px;
  line-height: 20px;
}
.storelocator-store-view .location-information strong {
  font-weight: 500;
}
.storelocator-store-view #locator_filter-store .column_left #store_list_view .today_time {
  background: #ce2129;
  color: #fff;
}
.storelocator-store-view .all_today_time {
  background: #f5f5f5;
}
@media (max-width: 1399px) {
  .storelocator-index-index #locator_filter .column_left .center #store_list .list .image {
    flex: 0 0 100%;
    max-width: 350px;
  }
  .storelocator-index-index #locator_filter .column_left .center #store_list .list .location-information {
    margin-left: 15px !important;
  }
}
.store-item {
  border-bottom: 1px solid #ddd;
  padding-bottom: 50px;
  padding-top: 50px;
}
.store-item.first {
  padding-top: 0;
}
.store-item.last {
  border-bottom: none;
}
.store-content h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #222222;
}
.store-content .icons {
  border: 1px solid #ce2129;
  border-radius: 3px;
  color: #666666;
  float: left;
  font-size: 18px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  vertical-align: middle;
  width: 50px;
}
.store-content .right-info-store {
  margin: 0;
  padding-left: 70px;
  vertical-align: middle;
  display: block;
}
.store-content .store_info .store-email {
  display: block;
  font-size: 14px;
  color: #333;
}
.store-content .store-contain a {
  color: #888;
  display: block;
  line-height: normal;
}
.store-content .store_info li {
  padding-bottom: 30px;
  margin: 0;
}
.store-content .store_info li:last-child {
  padding-bottom: 0;
}
/*****************************************************************************************
 
                                        Blog
******************************************************************************************/
.sidebar .block-search .block-content button.action {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 3px;
  background: none;
  padding: 0;
}
.sidebar .block-search .block-content button.action span {
  height: auto;
  width: auto;
  position: relative;
}
.sidebar .block-search .block-content button.action span:before {
  content: "\e090";
  font-family: 'simple-line-icons';
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #a2a2a2;
  position: absolute;
  right: 0;
  text-align: center;
  font-size: 18px;
}
.masonry-list-post .item-post-masonry {
  margin-bottom: 30px;
  padding: 0 15px;
  width: 33.334%;
}
.masonry-list-post {
  margin: 0 -15px;
}
.item-post-masonry .post-info-extra {
  bottom: 0;
  top: auto;
  width: auto;
}
.item-post-masonry .post-info-extra > div {
  float: left;
  height: 40px;
  line-height: 40px;
  padding: 0 17px;
}
.item-post-masonry .post-format {
  color: #ce2129;
  font-size: 13px;
}
.item-post-masonry .post-date > strong {
  display: none;
}
.item-post-masonry .blog-post-thumb {
  margin-bottom: 15px;
}
.item-post-masonry .blog-post-info .post-date-author {
  margin: 0 0 8px;
}
.item-post-masonry .desc {
  margin-bottom: 22px;
}
.sidebar-post .widget {
  margin-bottom: 10px;
  overflow: hidden;
}
.title-widget-post {
  color: #222222;
  margin: 0;
  margin-top: 25px;
  font-size: 20px;
  font-family: 'dinpro-light';
  font-weight: 500;
  display: block;
  padding: 7px 0 13px 0;
  position: relative;
  border-bottom: 1px solid #e6e6e6;
}
.widget-post-cat li {
  padding: 15px 0;
  border-bottom: 1px solid #e6e6e6;
}
.widget-post-cat > ul {
  margin: 15px 0;
  padding: 0;
}
.widget.widget-post-cat a {
  display: block;
  position: relative;
}
.widget.widget-post-cat span {
  color: #999;
  position: absolute;
  right: 0;
  top: 0;
}
.widget.widget-post-cat a:hover {
  color: #ce2129;
}
.title-post-tab {
  color: #222222;
  margin: 0;
  margin-top: 25px;
  font-size: 18px;
  font-family: 'dinpro-light';
  font-weight: 500;
  display: block;
  padding: 7px 0 13px 0;
  position: relative;
  border-bottom: 1px solid #e6e6e6;
}
.title-post-tab > ul {
  margin: 0;
}
.title-post-tab li {
  display: inline-block;
  margin-right: 25px;
}
.title-post-tab a {
  font-size: 20px;
  color: #222222;
  font-weight: 500;
  font-family: 'dinpro-light';
}
.title-post-tab li:last-child {
  margin: 0;
}
.title-post-tab li.active a {
  color: #ce2129;
}
.list-post-tab .zoom-image-thumb {
  display: table-cell;
  width: 80px;
}
.list-post-tab {
  margin: 15px 0 0 0;
  padding: 0;
}
.post-tab-info {
  display: table-cell;
  padding-left: 20px;
  padding-top: 3px;
  vertical-align: top;
}
.list-post-tab > li {
  display: table;
  padding: 10px 0;
  width: 100%;
}
.post-tab-info > h3 {
  font-size: 14px;
  line-height: 20px;
  margin: -5px 0 10px;
}
.post-tab-info > span {
  color: #989898;
  font-size: 12px;
  font-weight: 400;
  font-family: 'dinpro-light';
}
.list-post-tab > li:last-child {
  border: medium none;
}
.list-post-tab .zoom-image-thumb a {
  width: 100px;
}
.list-post-faq {
  margin: 0;
}
.list-post-faq > li {
  border-bottom: 1px solid #e6e6e6;
  padding: 0 20px;
}
.list-post-faq > li:last-child {
  border: medium none;
}
.list-post-faq li h3 {
  cursor: pointer;
  font-size: 14px;
  margin: 0;
  padding: 12px 20px 11px 0;
  position: relative;
  text-transform: uppercase;
}
.list-post-faq li p {
  color: #999;
  margin-bottom: 15px;
  display: none;
}
.list-post-faq h3::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 12px;
}
.list-post-faq li.active h3::after {
  content: "-";
}
.list-post-faq li.active p {
  display: block;
}
.single-post-leading > h2 {
  font-weight: 700;
  margin: 40px 0 20px;
}
.post-date-author {
  margin: 0;
}
.post-date-author > li {
  border-right: 1px solid #e6e6e6;
  color: #999;
  display: inline-block;
  height: 14px;
  line-height: 14px;
  margin-right: 5px;
  padding-right: 10px;
}
.post-date-author > li:last-child {
  border: medium none;
  margin: 0;
  padding: 0;
}
.single-post-leading .post-date-author > li:last-child a {
  color: #ce2129;
}
.single-post-leading {
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.main-single-post .desc {
  color: #555;
  margin-bottom: 45px;
}
.blockquote {
  border: 1px solid #e6e6e6;
  color: #999;
  margin-bottom: 50px;
  padding: 20px 30px 20px 100px;
  position: relative;
}
.blockquote::before {
  background: #f4f4f4 url("../images/blog/quote.png") no-repeat scroll center center;
  border-right: 1px solid #e6e6e6;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 70px;
}
.simple-owl-slider {
  margin-bottom: 40px;
  margin-right: 20px;
  overflow: hidden;
}
.unorder-post a {
  color: #999;
  font-size: 14px;
}
.unorder-post li {
  color: #333;
  font-size: 12px;
  list-style-type: disc;
  margin-bottom: 4px;
  padding-left: 10px;
}
.unorder-post > ul {
  margin: 13px 0 0;
  padding-left: 12px;
}
.unorder-post a:hover {
  color: #333;
}
.unorder-post > label {
  font-weight: normal;
}
.tabs-share {
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 50px;
  padding-bottom: 40px;
}
.sidebar .block-search {
  margin: 0;
  width: 100%;
}
.sidebar .block-search .block-content input {
  padding: 10px 50px 10px 10px;
  border: 1px solid #e1e1e1;
}
.sidebar-post .widget.widget-adv {
  border: medium none;
}
.single-post-tabs > label {
  color: #999;
  font-weight: 400;
  margin: 0;
}
.single-post-share {
  margin-top: -10px;
  text-align: right;
}
.single-post-share > label {
  color: #999;
  font-weight: 400;
  margin: 0 5px;
}
.single-post-share > a:hover {
  background: #fb9902;
  border-color: #fb9902;
  color: #ffffff;
}
.single-post-share > a {
  border: 1px solid #e6e6e6;
  border-radius: 50%;
  color: #999;
  display: inline-block;
  height: 38px;
  line-height: 38px;
  margin-left: 5px;
  text-align: center;
  width: 38px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.post-author-thumb {
  display: table-cell;
  width: 80px;
}
.post-author-info {
  display: table-cell;
  padding-left: 30px;
  vertical-align: top;
}
.single-post-author {
  display: table;
}
.single-post-author .zoom-image-thumb img {
  width: 80px;
}
.post-author-thumb .zoom-image-thumb a {
  border: 1px solid #e6e6e6;
  padding: 10px;
}
.post-author-info > ul {
  margin: 0 0 5px;
}
.post-author-info li {
  border-right: 1px solid #e6e6e6;
  color: #999;
  display: inline-block;
  height: 14px;
  line-height: 14px;
  margin-right: 5px;
  padding-right: 8px;
}
.post-author-info li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}
.title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.single-related-post {
  margin-bottom: 50px;
  margin-top: 65px;
}
.single-related-post .title {
  margin-bottom: 27px;
}
.single-related-post-slider .wrap-item {
  margin: 0 -15px;
  width: auto;
}
.single-related-post-info {
  border: 1px solid #e6e6e6;
  padding: 20px 20px 60px;
  position: relative;
}
.single-related-post-info > h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 10px;
}
.single-related-post-info .post-date-author {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 15px;
}
.single-related-post-info > p {
  border-top: 1px solid #e6e6e6;
  color: #999;
  margin-top: 5px;
  padding-top: 12px;
}
.single-related-post-info .readmore {
  bottom: 30px;
  left: 20px;
  position: absolute;
}
.related-comment {
  bottom: 30px;
  position: absolute;
  right: 20px;
}
.single-related-post-slider .item {
  padding: 0 15px;
}
.single-related-post-slider .wrap-item.owl-theme .owl-controls .owl-buttons div {
  display: inline-block;
  opacity: 1;
  position: static;
  margin-left: 1px;
}
.single-related-post-slider .owl-theme .owl-controls {
  position: absolute;
  right: 15px;
  top: -45px;
}
.single-post-comment-thumb .zoom-image-thumb img {
  width: 80px;
}
.single-post-comment-thumb .zoom-image-thumb a {
  border: 1px solid #e6e6e6;
  display: inline-block;
  padding: 10px;
}
ol.list-post-comment {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.item-single-post-comment {
  display: table;
  margin-bottom: 30px;
  width: 100%;
}
.single-post-comment-thumb {
  display: table-cell;
  padding-bottom: 30px;
  padding-right: 30px;
  width: 110px;
}
.single-post-comment-info {
  border-bottom: 1px solid #e6e6e6;
  display: table-cell;
  vertical-align: top;
}
.header-post-comment {
  margin-bottom: 47px;
  position: relative;
}
.header-post-comment .leave-comment-link {
  color: #333;
  position: absolute;
  right: 0;
  top: 0;
}
.comment-author {
  margin-bottom: 8px;
  position: relative;
}
.reply-comment-link {
  position: absolute;
  right: 0;
  text-transform: uppercase;
  top: 0;
}
.single-post-comment-info > p {
  color: #999;
  margin-bottom: 25px;
}
.leave-comment-link::before {
  border: 1px solid #e6e6e6;
  border-radius: 50%;
  content: "";
  display: inline-block;
  font-family: fontawesome;
  height: 30px;
  line-height: 30px;
  margin-right: 10px;
  text-align: center;
  width: 30px;
}
.single-leave-comment {
  margin-top: 50px;
}
.form-leave-comment.form-contact {
  margin-top: 37px;
}
.form-contact.form-leave-comment input[type="submit"] {
  width: 170px;
}
.single-post-control {
  margin-top: 40px;
}
.blog-post-thumb {
  position: relative;
}
.item-post-full .post-title {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 9px;
}
.blog-index-index .item-post-full .post-date {
  font-size: 14px;
}
.item-post-full .blog-post-thumb {
  margin-bottom: 28px;
}
.item-post-full {
  margin-bottom: 50px;
  padding: 0 15px;
}
.post-info-bottom {
  border-top: 1px solid #e6e6e6;
  margin-top: 23px;
  padding-top: 25px;
}
.post-readmore {
  border: 1px solid #222222;
  color: #222222;
  display: inline-block;
  height: 50px;
  line-height: 48px;
  text-align: center;
  padding: 0 50px;
  border-radius: 3px;
}
.post-readmore:hover {
  border-color: #ce2129;
}
.post-tags-info a {
  color: #999;
}
.post-tags-info a:hover {
  color: #ce2129;
}
.post-tags-info.pull-right > label {
  color: #aaa;
  font-weight: 400;
  margin: 0;
  font-size: 14px;
  font-family: 'dinpro-light';
}
.post-author-link {
  border-right: 1px solid #e6e6e6;
  display: inline-block;
  height: 14px;
  line-height: 14px;
  margin-right: 3px;
  padding-right: 8px;
}
.post-info-extra {
  color: #ce2129;
}
.post-view .post-info-extra {
  color: #ce2129;
}
.post-view .post-info-extra .post-date {
  color: #ce2129;
}
.post-comment-link {
  border-left: 1px solid #e6e6e6;
  display: inline-block;
  height: 14px;
  line-height: 14px;
  margin-left: 3px;
  padding-left: 8px;
}
.post-tags-info {
  margin-top: 18px;
}
.post-paginav > a {
  border: 1px solid #e6e6e6;
  color: #666666;
  display: inline-block;
  font-size: 14px;
  height: 32px;
  line-height: 32px;
  margin-right: -1px;
  min-width: 30px;
  padding: 0 12px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.post-paginav > a:hover,
.post-paginav > a.curent-page {
  background: #ce2129 none repeat scroll 0 0;
  border-color: #ce2129;
  color: #ffffff;
}
.post-paginav.masonry-paginav {
  text-align: center;
}
.item-post-blog .blog-post-thumb {
  padding-right: 90px;
}
.item-post-blog .post-info-extra {
  left: auto;
  right: 0;
}
.post-title {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 11px;
  font-family: 'dinpro-light';
}
.post-images a img {
  margin-bottom: 14px;
  width: 100%;
}
.blog-post-info .post-date-author a {
  color: #999;
}
.blog-post-info .post-date-author a:hover {
  color: #333;
}
.blog-post-info .post-date-author {
  margin: 0 0 18px;
}
.item-post-blog .post-readmore {
  margin-top: 14px;
}
.item-post-blog {
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.item-post-blog.last-item {
  margin-bottom: 50px;
}
blockquote {
  border-left: 5px solid #e6e6e6;
  color: #999;
  font-size: 13px;
  line-height: 22px;
  padding: 0 30px;
}
.post-info-bottom a {
  font-family: 'dinpro-light';
  font-size: 14px;
  font-weight: 400;
  color: #222222;
}
.post-info-bottom a.post-readmore {
  font-size: 12px;
  font-weight: 500;
  background-color: #f6f6f6;
  padding: 0 54px;
  min-width: 200px;
  color: #222222;
  border-radius: 3px;
  z-index: 1;
  text-transform: uppercase;
  border-color: #e6e6e6;
}
.post-info-bottom a:hover {
  background: #ce2129;
  color: #ffffff;
  border-color: #ce2129;
}
.post-info-bottom .post-tags-info a:hover {
  background: transparent;
  color: #ce2129;
}
.post-paginav li.item.pages-item-next {
  line-height: 50px;
  font-size: 0;
}
.post-paginav li.item.pages-item-next:before {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f101";
  color: #222222;
}
.post-paginav li.item.pages-item-next:hover:before {
  color: #ffffff;
}
.post-paginav li.pages-item-previous {
  line-height: 50px;
  font-size: 0;
}
.post-paginav li.pages-item-previous:before {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f100";
  color: #222222;
}
.post-paginav li.pages-item-previous:hover:before {
  color: #ffffff;
}
.widget.widget-post-cat a {
  font-family: 'dinpro-light';
  color: #222222;
  font-size: 14px;
  font-weight: 400;
  display: block;
}
