<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* custom */
/*
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated { -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes headShake { 0% { -webkit-transform: translateX(0); transform: translateX(0); }
  6.5% { -webkit-transform: translateX(-6px) rotateY(-9deg); transform: translateX(-6px) rotateY(-9deg); }
  18.5% { -webkit-transform: translateX(5px) rotateY(7deg); transform: translateX(5px) rotateY(7deg); }
  31.5% { -webkit-transform: translateX(-3px) rotateY(-5deg); transform: translateX(-3px) rotateY(-5deg); }
  43.5% { -webkit-transform: translateX(2px) rotateY(3deg); transform: translateX(2px) rotateY(3deg); }
  50% { -webkit-transform: translateX(0); transform: translateX(0); } }

@keyframes headShake { 0% { -webkit-transform: translateX(0); transform: translateX(0); }
  6.5% { -webkit-transform: translateX(-6px) rotateY(-9deg); transform: translateX(-6px) rotateY(-9deg); }
  18.5% { -webkit-transform: translateX(5px) rotateY(7deg); transform: translateX(5px) rotateY(7deg); }
  31.5% { -webkit-transform: translateX(-3px) rotateY(-5deg); transform: translateX(-3px) rotateY(-5deg); }
  43.5% { -webkit-transform: translateX(2px) rotateY(3deg); transform: translateX(2px) rotateY(3deg); }
  50% { -webkit-transform: translateX(0); transform: translateX(0); } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeInUp { from { opacity: 0; -webkit-transform: translate3d(0, 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; }

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

@keyframes blurFadeIn { 0% { opacity: 0; transform: scale(1.3); }
  50% { opacity: 0.5; }
  100% { opacity: 1; transform: scale(1); } }

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

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

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

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

@-webkit-keyframes passing { 0% { -webkit-transform: translateX(-50%); transform: translateX(-50%); opacity: 0; }
  50% { -webkit-transform: translateX(0%); transform: translateX(0%); opacity: 1; }
  100% { -webkit-transform: translateX(50%); transform: translateX(50%); opacity: 0; } }

@keyframes passing { 0% { -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); opacity: 0; }
  50% { -webkit-transform: translateX(0%); -ms-transform: translateX(0%); transform: translateX(0%); opacity: 1; }
  100% { -webkit-transform: translateX(50%); -ms-transform: translateX(50%); transform: translateX(50%); opacity: 0; } }

@-webkit-keyframes passing-reverse { 0% { -webkit-transform: translateX(50%); transform: translateX(50%); opacity: 0; }
  50% { -webkit-transform: translateX(0%); transform: translateX(0%); opacity: 1; }
  100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); opacity: 0; } }

@keyframes passing-reverse { 0% { -webkit-transform: translateX(50%); -ms-transform: translateX(50%); transform: translateX(50%); opacity: 0; }
  50% { -webkit-transform: translateX(0%); -ms-transform: translateX(0%); transform: translateX(0%); opacity: 1; }
  100% { -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); opacity: 0; } }

/*
 * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa, .fas, .far, .fal, .fab { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; display: inline-block; font-style: normal; font-variant: normal; text-rendering: auto; line-height: 1; }

.fa-lg { font-size: 1.33333em; line-height: 0.75em; vertical-align: -0.0667em; }

.fa-xs { font-size: .75em; }

.fa-sm { font-size: .875em; }

.fa-1x { font-size: 1em; }

.fa-2x { font-size: 2em; }

.fa-3x { font-size: 3em; }

.fa-4x { font-size: 4em; }

.fa-5x { font-size: 5em; }

.fa-6x { font-size: 6em; }

.fa-7x { font-size: 7em; }

.fa-8x { font-size: 8em; }

.fa-9x { font-size: 9em; }

.fa-10x { font-size: 10em; }

.fa-fw { text-align: center; width: 1.25em; }

.fa-ul { list-style-type: none; margin-left: 2.5em; padding-left: 0; }

.fa-ul &gt; li { position: relative; }

.fa-li { left: -2em; position: absolute; text-align: center; width: 2em; line-height: inherit; }

.fa-border { border: solid 0.08em #eee; border-radius: .1em; padding: .2em .25em .15em; }

.fa-pull-left { float: left; }

.fa-pull-right { float: right; }

.fa.fa-pull-left, .fas.fa-pull-left, .far.fa-pull-left, .fal.fa-pull-left, .fab.fa-pull-left { margin-right: .3em; }

.fa.fa-pull-right, .fas.fa-pull-right, .far.fa-pull-right, .fal.fa-pull-right, .fab.fa-pull-right { margin-left: .3em; }

.fa-spin { -webkit-animation: fa-spin 2s infinite linear; animation: fa-spin 2s infinite linear; }

.fa-pulse { -webkit-animation: fa-spin 1s infinite steps(8); animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } }

@keyframes fa-spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } }

.fa-rotate-90 { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; -webkit-transform: rotate(90deg); transform: rotate(90deg); }

.fa-rotate-180 { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; -webkit-transform: rotate(180deg); transform: rotate(180deg); }

.fa-rotate-270 { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; -webkit-transform: rotate(270deg); transform: rotate(270deg); }

.fa-flip-horizontal { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; -webkit-transform: scale(-1, 1); transform: scale(-1, 1); }

.fa-flip-vertical { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; -webkit-transform: scale(1, -1); transform: scale(1, -1); }

.fa-flip-horizontal.fa-flip-vertical { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; -webkit-transform: scale(-1, -1); transform: scale(-1, -1); }

:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical { -webkit-filter: none; filter: none; }

.fa-stack { display: inline-block; height: 2em; line-height: 2em; position: relative; vertical-align: middle; width: 2em; }

.fa-stack-1x, .fa-stack-2x { left: 0; position: absolute; text-align: center; width: 100%; }

.fa-stack-1x { line-height: inherit; }

.fa-stack-2x { font-size: 2em; }

.fa-inverse { color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before { content: "\f26e"; }

.fa-accessible-icon:before { content: "\f368"; }

.fa-accusoft:before { content: "\f369"; }

.fa-ad:before { content: "\f641"; }

.fa-address-book:before { content: "\f2b9"; }

.fa-address-card:before { content: "\f2bb"; }

.fa-adjust:before { content: "\f042"; }

.fa-adn:before { content: "\f170"; }

.fa-adversal:before { content: "\f36a"; }

.fa-affiliatetheme:before { content: "\f36b"; }

.fa-air-freshener:before { content: "\f5d0"; }

.fa-algolia:before { content: "\f36c"; }

.fa-align-center:before { content: "\f037"; }

.fa-align-justify:before { content: "\f039"; }

.fa-align-left:before { content: "\f036"; }

.fa-align-right:before { content: "\f038"; }

.fa-alipay:before { content: "\f642"; }

.fa-allergies:before { content: "\f461"; }

.fa-amazon:before { content: "\f270"; }

.fa-amazon-pay:before { content: "\f42c"; }

.fa-ambulance:before { content: "\f0f9"; }

.fa-american-sign-language-interpreting:before { content: "\f2a3"; }

.fa-amilia:before { content: "\f36d"; }

.fa-anchor:before { content: "\f13d"; }

.fa-android:before { content: "\f17b"; }

.fa-angellist:before { content: "\f209"; }

.fa-angle-double-down:before { content: "\f103"; }

.fa-angle-double-left:before { content: "\f100"; }

.fa-angle-double-right:before { content: "\f101"; }

.fa-angle-double-up:before { content: "\f102"; }

.fa-angle-down:before { content: "\f107"; }

.fa-angle-left:before { content: "\f104"; }

.fa-angle-right:before { content: "\f105"; }

.fa-angle-up:before { content: "\f106"; }

.fa-angry:before { content: "\f556"; }

.fa-angrycreative:before { content: "\f36e"; }

.fa-angular:before { content: "\f420"; }

.fa-ankh:before { content: "\f644"; }

.fa-app-store:before { content: "\f36f"; }

.fa-app-store-ios:before { content: "\f370"; }

.fa-apper:before { content: "\f371"; }

.fa-apple:before { content: "\f179"; }

.fa-apple-alt:before { content: "\f5d1"; }

.fa-apple-pay:before { content: "\f415"; }

.fa-archive:before { content: "\f187"; }

.fa-archway:before { content: "\f557"; }

.fa-arrow-alt-circle-down:before { content: "\f358"; }

.fa-arrow-alt-circle-left:before { content: "\f359"; }

.fa-arrow-alt-circle-right:before { content: "\f35a"; }

.fa-arrow-alt-circle-up:before { content: "\f35b"; }

.fa-arrow-circle-down:before { content: "\f0ab"; }

.fa-arrow-circle-left:before { content: "\f0a8"; }

.fa-arrow-circle-right:before { content: "\f0a9"; }

.fa-arrow-circle-up:before { content: "\f0aa"; }

.fa-arrow-down:before { content: "\f063"; }

.fa-arrow-left:before { content: "\f060"; }

.fa-arrow-right:before { content: "\f061"; }

.fa-arrow-up:before { content: "\f062"; }

.fa-arrows-alt:before { content: "\f0b2"; }

.fa-arrows-alt-h:before { content: "\f337"; }

.fa-arrows-alt-v:before { content: "\f338"; }

.fa-assistive-listening-systems:before { content: "\f2a2"; }

.fa-asterisk:before { content: "\f069"; }

.fa-asymmetrik:before { content: "\f372"; }

.fa-at:before { content: "\f1fa"; }

.fa-atlas:before { content: "\f558"; }

.fa-atom:before { content: "\f5d2"; }

.fa-audible:before { content: "\f373"; }

.fa-audio-description:before { content: "\f29e"; }

.fa-autoprefixer:before { content: "\f41c"; }

.fa-avianex:before { content: "\f374"; }

.fa-aviato:before { content: "\f421"; }

.fa-award:before { content: "\f559"; }

.fa-aws:before { content: "\f375"; }

.fa-backspace:before { content: "\f55a"; }

.fa-backward:before { content: "\f04a"; }

.fa-balance-scale:before { content: "\f24e"; }

.fa-ban:before { content: "\f05e"; }

.fa-band-aid:before { content: "\f462"; }

.fa-bandcamp:before { content: "\f2d5"; }

.fa-barcode:before { content: "\f02a"; }

.fa-bars:before { content: "\f0c9"; }

.fa-baseball-ball:before { content: "\f433"; }

.fa-basketball-ball:before { content: "\f434"; }

.fa-bath:before { content: "\f2cd"; }

.fa-battery-empty:before { content: "\f244"; }

.fa-battery-full:before { content: "\f240"; }

.fa-battery-half:before { content: "\f242"; }

.fa-battery-quarter:before { content: "\f243"; }

.fa-battery-three-quarters:before { content: "\f241"; }

.fa-bed:before { content: "\f236"; }

.fa-beer:before { content: "\f0fc"; }

.fa-behance:before { content: "\f1b4"; }

.fa-behance-square:before { content: "\f1b5"; }

.fa-bell:before { content: "\f0f3"; }

.fa-bell-slash:before { content: "\f1f6"; }

.fa-bezier-curve:before { content: "\f55b"; }

.fa-bible:before { content: "\f647"; }

.fa-bicycle:before { content: "\f206"; }

.fa-bimobject:before { content: "\f378"; }

.fa-binoculars:before { content: "\f1e5"; }

.fa-birthday-cake:before { content: "\f1fd"; }

.fa-bitbucket:before { content: "\f171"; }

.fa-bitcoin:before { content: "\f379"; }

.fa-bity:before { content: "\f37a"; }

.fa-black-tie:before { content: "\f27e"; }

.fa-blackberry:before { content: "\f37b"; }

.fa-blender:before { content: "\f517"; }

.fa-blind:before { content: "\f29d"; }

.fa-blogger:before { content: "\f37c"; }

.fa-blogger-b:before { content: "\f37d"; }

.fa-bluetooth:before { content: "\f293"; }

.fa-bluetooth-b:before { content: "\f294"; }

.fa-bold:before { content: "\f032"; }

.fa-bolt:before { content: "\f0e7"; }

.fa-bomb:before { content: "\f1e2"; }

.fa-bone:before { content: "\f5d7"; }

.fa-bong:before { content: "\f55c"; }

.fa-book:before { content: "\f02d"; }

.fa-book-open:before { content: "\f518"; }

.fa-book-reader:before { content: "\f5da"; }

.fa-bookmark:before { content: "\f02e"; }

.fa-bowling-ball:before { content: "\f436"; }

.fa-box:before { content: "\f466"; }

.fa-box-open:before { content: "\f49e"; }

.fa-boxes:before { content: "\f468"; }

.fa-braille:before { content: "\f2a1"; }

.fa-brain:before { content: "\f5dc"; }

.fa-briefcase:before { content: "\f0b1"; }

.fa-briefcase-medical:before { content: "\f469"; }

.fa-broadcast-tower:before { content: "\f519"; }

.fa-broom:before { content: "\f51a"; }

.fa-brush:before { content: "\f55d"; }

.fa-btc:before { content: "\f15a"; }

.fa-bug:before { content: "\f188"; }

.fa-building:before { content: "\f1ad"; }

.fa-bullhorn:before { content: "\f0a1"; }

.fa-bullseye:before { content: "\f140"; }

.fa-burn:before { content: "\f46a"; }

.fa-buromobelexperte:before { content: "\f37f"; }

.fa-bus:before { content: "\f207"; }

.fa-bus-alt:before { content: "\f55e"; }

.fa-business-time:before { content: "\f64a"; }

.fa-buysellads:before { content: "\f20d"; }

.fa-calculator:before { content: "\f1ec"; }

.fa-calendar:before { content: "\f133"; }

.fa-calendar-alt:before { content: "\f073"; }

.fa-calendar-check:before { content: "\f274"; }

.fa-calendar-minus:before { content: "\f272"; }

.fa-calendar-plus:before { content: "\f271"; }

.fa-calendar-times:before { content: "\f273"; }

.fa-camera:before { content: "\f030"; }

.fa-camera-retro:before { content: "\f083"; }

.fa-cannabis:before { content: "\f55f"; }

.fa-capsules:before { content: "\f46b"; }

.fa-car:before { content: "\f1b9"; }

.fa-car-alt:before { content: "\f5de"; }

.fa-car-battery:before { content: "\f5df"; }

.fa-car-crash:before { content: "\f5e1"; }

.fa-car-side:before { content: "\f5e4"; }

.fa-caret-down:before { content: "\f0d7"; }

.fa-caret-left:before { content: "\f0d9"; }

.fa-caret-right:before { content: "\f0da"; }

.fa-caret-square-down:before { content: "\f150"; }

.fa-caret-square-left:before { content: "\f191"; }

.fa-caret-square-right:before { content: "\f152"; }

.fa-caret-square-up:before { content: "\f151"; }

.fa-caret-up:before { content: "\f0d8"; }

.fa-cart-arrow-down:before { content: "\f218"; }

.fa-cart-plus:before { content: "\f217"; }

.fa-cc-amazon-pay:before { content: "\f42d"; }

.fa-cc-amex:before { content: "\f1f3"; }

.fa-cc-apple-pay:before { content: "\f416"; }

.fa-cc-diners-club:before { content: "\f24c"; }

.fa-cc-discover:before { content: "\f1f2"; }

.fa-cc-jcb:before { content: "\f24b"; }

.fa-cc-mastercard:before { content: "\f1f1"; }

.fa-cc-paypal:before { content: "\f1f4"; }

.fa-cc-stripe:before { content: "\f1f5"; }

.fa-cc-visa:before { content: "\f1f0"; }

.fa-centercode:before { content: "\f380"; }

.fa-certificate:before { content: "\f0a3"; }

.fa-chalkboard:before { content: "\f51b"; }

.fa-chalkboard-teacher:before { content: "\f51c"; }

.fa-charging-station:before { content: "\f5e7"; }

.fa-chart-area:before { content: "\f1fe"; }

.fa-chart-bar:before { content: "\f080"; }

.fa-chart-line:before { content: "\f201"; }

.fa-chart-pie:before { content: "\f200"; }

.fa-check:before { content: "\f00c"; }

.fa-check-circle:before { content: "\f058"; }

.fa-check-double:before { content: "\f560"; }

.fa-check-square:before { content: "\f14a"; }

.fa-chess:before { content: "\f439"; }

.fa-chess-bishop:before { content: "\f43a"; }

.fa-chess-board:before { content: "\f43c"; }

.fa-chess-king:before { content: "\f43f"; }

.fa-chess-knight:before { content: "\f441"; }

.fa-chess-pawn:before { content: "\f443"; }

.fa-chess-queen:before { content: "\f445"; }

.fa-chess-rook:before { content: "\f447"; }

.fa-chevron-circle-down:before { content: "\f13a"; }

.fa-chevron-circle-left:before { content: "\f137"; }

.fa-chevron-circle-right:before { content: "\f138"; }

.fa-chevron-circle-up:before { content: "\f139"; }

.fa-chevron-down:before { content: "\f078"; }

.fa-chevron-left:before { content: "\f053"; }

.fa-chevron-right:before { content: "\f054"; }

.fa-chevron-up:before { content: "\f077"; }

.fa-child:before { content: "\f1ae"; }

.fa-chrome:before { content: "\f268"; }

.fa-church:before { content: "\f51d"; }

.fa-circle:before { content: "\f111"; }

.fa-circle-notch:before { content: "\f1ce"; }

.fa-city:before { content: "\f64f"; }

.fa-clipboard:before { content: "\f328"; }

.fa-clipboard-check:before { content: "\f46c"; }

.fa-clipboard-list:before { content: "\f46d"; }

.fa-clock:before { content: "\f017"; }

.fa-clone:before { content: "\f24d"; }

.fa-closed-captioning:before { content: "\f20a"; }

.fa-cloud:before { content: "\f0c2"; }

.fa-cloud-download-alt:before { content: "\f381"; }

.fa-cloud-upload-alt:before { content: "\f382"; }

.fa-cloudscale:before { content: "\f383"; }

.fa-cloudsmith:before { content: "\f384"; }

.fa-cloudversify:before { content: "\f385"; }

.fa-cocktail:before { content: "\f561"; }

.fa-code:before { content: "\f121"; }

.fa-code-branch:before { content: "\f126"; }

.fa-codepen:before { content: "\f1cb"; }

.fa-codiepie:before { content: "\f284"; }

.fa-coffee:before { content: "\f0f4"; }

.fa-cog:before { content: "\f013"; }

.fa-cogs:before { content: "\f085"; }

.fa-coins:before { content: "\f51e"; }

.fa-columns:before { content: "\f0db"; }

.fa-comment:before { content: "\f075"; }

.fa-comment-alt:before { content: "\f27a"; }

.fa-comment-dollar:before { content: "\f651"; }

.fa-comment-dots:before { content: "\f4ad"; }

.fa-comment-slash:before { content: "\f4b3"; }

.fa-comments:before { content: "\f086"; }

.fa-comments-dollar:before { content: "\f653"; }

.fa-compact-disc:before { content: "\f51f"; }

.fa-compass:before { content: "\f14e"; }

.fa-compress:before { content: "\f066"; }

.fa-concierge-bell:before { content: "\f562"; }

.fa-connectdevelop:before { content: "\f20e"; }

.fa-contao:before { content: "\f26d"; }

.fa-cookie:before { content: "\f563"; }

.fa-cookie-bite:before { content: "\f564"; }

.fa-copy:before { content: "\f0c5"; }

.fa-copyright:before { content: "\f1f9"; }

.fa-couch:before { content: "\f4b8"; }

.fa-cpanel:before { content: "\f388"; }

.fa-creative-commons:before { content: "\f25e"; }

.fa-creative-commons-by:before { content: "\f4e7"; }

.fa-creative-commons-nc:before { content: "\f4e8"; }

.fa-creative-commons-nc-eu:before { content: "\f4e9"; }

.fa-creative-commons-nc-jp:before { content: "\f4ea"; }

.fa-creative-commons-nd:before { content: "\f4eb"; }

.fa-creative-commons-pd:before { content: "\f4ec"; }

.fa-creative-commons-pd-alt:before { content: "\f4ed"; }

.fa-creative-commons-remix:before { content: "\f4ee"; }

.fa-creative-commons-sa:before { content: "\f4ef"; }

.fa-creative-commons-sampling:before { content: "\f4f0"; }

.fa-creative-commons-sampling-plus:before { content: "\f4f1"; }

.fa-creative-commons-share:before { content: "\f4f2"; }

.fa-credit-card:before { content: "\f09d"; }

.fa-crop:before { content: "\f125"; }

.fa-crop-alt:before { content: "\f565"; }

.fa-cross:before { content: "\f654"; }

.fa-crosshairs:before { content: "\f05b"; }

.fa-crow:before { content: "\f520"; }

.fa-crown:before { content: "\f521"; }

.fa-css3:before { content: "\f13c"; }

.fa-css3-alt:before { content: "\f38b"; }

.fa-cube:before { content: "\f1b2"; }

.fa-cubes:before { content: "\f1b3"; }

.fa-cut:before { content: "\f0c4"; }

.fa-cuttlefish:before { content: "\f38c"; }

.fa-d-and-d:before { content: "\f38d"; }

.fa-dashcube:before { content: "\f210"; }

.fa-database:before { content: "\f1c0"; }

.fa-deaf:before { content: "\f2a4"; }

.fa-delicious:before { content: "\f1a5"; }

.fa-deploydog:before { content: "\f38e"; }

.fa-deskpro:before { content: "\f38f"; }

.fa-desktop:before { content: "\f108"; }

.fa-deviantart:before { content: "\f1bd"; }

.fa-dharmachakra:before { content: "\f655"; }

.fa-diagnoses:before { content: "\f470"; }

.fa-dice:before { content: "\f522"; }

.fa-dice-five:before { content: "\f523"; }

.fa-dice-four:before { content: "\f524"; }

.fa-dice-one:before { content: "\f525"; }

.fa-dice-six:before { content: "\f526"; }

.fa-dice-three:before { content: "\f527"; }

.fa-dice-two:before { content: "\f528"; }

.fa-digg:before { content: "\f1a6"; }

.fa-digital-ocean:before { content: "\f391"; }

.fa-digital-tachograph:before { content: "\f566"; }

.fa-directions:before { content: "\f5eb"; }

.fa-discord:before { content: "\f392"; }

.fa-discourse:before { content: "\f393"; }

.fa-divide:before { content: "\f529"; }

.fa-dizzy:before { content: "\f567"; }

.fa-dna:before { content: "\f471"; }

.fa-dochub:before { content: "\f394"; }

.fa-docker:before { content: "\f395"; }

.fa-dollar-sign:before { content: "\f155"; }

.fa-dolly:before { content: "\f472"; }

.fa-dolly-flatbed:before { content: "\f474"; }

.fa-donate:before { content: "\f4b9"; }

.fa-door-closed:before { content: "\f52a"; }

.fa-door-open:before { content: "\f52b"; }

.fa-dot-circle:before { content: "\f192"; }

.fa-dove:before { content: "\f4ba"; }

.fa-download:before { content: "\f019"; }

.fa-draft2digital:before { content: "\f396"; }

.fa-drafting-compass:before { content: "\f568"; }

.fa-draw-polygon:before { content: "\f5ee"; }

.fa-dribbble:before { content: "\f17d"; }

.fa-dribbble-square:before { content: "\f397"; }

.fa-dropbox:before { content: "\f16b"; }

.fa-drum:before { content: "\f569"; }

.fa-drum-steelpan:before { content: "\f56a"; }

.fa-drupal:before { content: "\f1a9"; }

.fa-dumbbell:before { content: "\f44b"; }

.fa-dyalog:before { content: "\f399"; }

.fa-earlybirds:before { content: "\f39a"; }

.fa-ebay:before { content: "\f4f4"; }

.fa-edge:before { content: "\f282"; }

.fa-edit:before { content: "\f044"; }

.fa-eject:before { content: "\f052"; }

.fa-elementor:before { content: "\f430"; }

.fa-ellipsis-h:before { content: "\f141"; }

.fa-ellipsis-v:before { content: "\f142"; }

.fa-ello:before { content: "\f5f1"; }

.fa-ember:before { content: "\f423"; }

.fa-empire:before { content: "\f1d1"; }

.fa-envelope:before { content: "\f0e0"; }

.fa-envelope-open:before { content: "\f2b6"; }

.fa-envelope-open-text:before { content: "\f658"; }

.fa-envelope-square:before { content: "\f199"; }

.fa-envira:before { content: "\f299"; }

.fa-equals:before { content: "\f52c"; }

.fa-eraser:before { content: "\f12d"; }

.fa-erlang:before { content: "\f39d"; }

.fa-ethereum:before { content: "\f42e"; }

.fa-etsy:before { content: "\f2d7"; }

.fa-euro-sign:before { content: "\f153"; }

.fa-exchange-alt:before { content: "\f362"; }

.fa-exclamation:before { content: "\f12a"; }

.fa-exclamation-circle:before { content: "\f06a"; }

.fa-exclamation-triangle:before { content: "\f071"; }

.fa-expand:before { content: "\f065"; }

.fa-expand-arrows-alt:before { content: "\f31e"; }

.fa-expeditedssl:before { content: "\f23e"; }

.fa-external-link-alt:before { content: "\f35d"; }

.fa-external-link-square-alt:before { content: "\f360"; }

.fa-eye:before { content: "\f06e"; }

.fa-eye-dropper:before { content: "\f1fb"; }

.fa-eye-slash:before { content: "\f070"; }

.fa-facebook:before { content: "\f09a"; }

.fa-facebook-f:before { content: "\f39e"; }

.fa-facebook-messenger:before { content: "\f39f"; }

.fa-facebook-square:before { content: "\f082"; }

.fa-fast-backward:before { content: "\f049"; }

.fa-fast-forward:before { content: "\f050"; }

.fa-fax:before { content: "\f1ac"; }

.fa-feather:before { content: "\f52d"; }

.fa-feather-alt:before { content: "\f56b"; }

.fa-female:before { content: "\f182"; }

.fa-fighter-jet:before { content: "\f0fb"; }

.fa-file:before { content: "\f15b"; }

.fa-file-alt:before { content: "\f15c"; }

.fa-file-archive:before { content: "\f1c6"; }

.fa-file-audio:before { content: "\f1c7"; }

.fa-file-code:before { content: "\f1c9"; }

.fa-file-contract:before { content: "\f56c"; }

.fa-file-download:before { content: "\f56d"; }

.fa-file-excel:before { content: "\f1c3"; }

.fa-file-export:before { content: "\f56e"; }

.fa-file-image:before { content: "\f1c5"; }

.fa-file-import:before { content: "\f56f"; }

.fa-file-invoice:before { content: "\f570"; }

.fa-file-invoice-dollar:before { content: "\f571"; }

.fa-file-medical:before { content: "\f477"; }

.fa-file-medical-alt:before { content: "\f478"; }

.fa-file-pdf:before { content: "\f1c1"; }

.fa-file-powerpoint:before { content: "\f1c4"; }

.fa-file-prescription:before { content: "\f572"; }

.fa-file-signature:before { content: "\f573"; }

.fa-file-upload:before { content: "\f574"; }

.fa-file-video:before { content: "\f1c8"; }

.fa-file-word:before { content: "\f1c2"; }

.fa-fill:before { content: "\f575"; }

.fa-fill-drip:before { content: "\f576"; }

.fa-film:before { content: "\f008"; }

.fa-filter:before { content: "\f0b0"; }

.fa-fingerprint:before { content: "\f577"; }

.fa-fire:before { content: "\f06d"; }

.fa-fire-extinguisher:before { content: "\f134"; }

.fa-firefox:before { content: "\f269"; }

.fa-first-aid:before { content: "\f479"; }

.fa-first-order:before { content: "\f2b0"; }

.fa-first-order-alt:before { content: "\f50a"; }

.fa-firstdraft:before { content: "\f3a1"; }

.fa-fish:before { content: "\f578"; }

.fa-flag:before { content: "\f024"; }

.fa-flag-checkered:before { content: "\f11e"; }

.fa-flask:before { content: "\f0c3"; }

.fa-flickr:before { content: "\f16e"; }

.fa-flipboard:before { content: "\f44d"; }

.fa-flushed:before { content: "\f579"; }

.fa-fly:before { content: "\f417"; }

.fa-folder:before { content: "\f07b"; }

.fa-folder-minus:before { content: "\f65d"; }

.fa-folder-open:before { content: "\f07c"; }

.fa-folder-plus:before { content: "\f65e"; }

.fa-font:before { content: "\f031"; }

.fa-font-awesome:before { content: "\f2b4"; }

.fa-font-awesome-alt:before { content: "\f35c"; }

.fa-font-awesome-flag:before { content: "\f425"; }

.fa-font-awesome-logo-full:before { content: "\f4e6"; }

.fa-fonticons:before { content: "\f280"; }

.fa-fonticons-fi:before { content: "\f3a2"; }

.fa-football-ball:before { content: "\f44e"; }

.fa-fort-awesome:before { content: "\f286"; }

.fa-fort-awesome-alt:before { content: "\f3a3"; }

.fa-forumbee:before { content: "\f211"; }

.fa-forward:before { content: "\f04e"; }

.fa-foursquare:before { content: "\f180"; }

.fa-free-code-camp:before { content: "\f2c5"; }

.fa-freebsd:before { content: "\f3a4"; }

.fa-frog:before { content: "\f52e"; }

.fa-frown:before { content: "\f119"; }

.fa-frown-open:before { content: "\f57a"; }

.fa-fulcrum:before { content: "\f50b"; }

.fa-funnel-dollar:before { content: "\f662"; }

.fa-futbol:before { content: "\f1e3"; }

.fa-galactic-republic:before { content: "\f50c"; }

.fa-galactic-senate:before { content: "\f50d"; }

.fa-gamepad:before { content: "\f11b"; }

.fa-gas-pump:before { content: "\f52f"; }

.fa-gavel:before { content: "\f0e3"; }

.fa-gem:before { content: "\f3a5"; }

.fa-genderless:before { content: "\f22d"; }

.fa-get-pocket:before { content: "\f265"; }

.fa-gg:before { content: "\f260"; }

.fa-gg-circle:before { content: "\f261"; }

.fa-gift:before { content: "\f06b"; }

.fa-git:before { content: "\f1d3"; }

.fa-git-square:before { content: "\f1d2"; }

.fa-github:before { content: "\f09b"; }

.fa-github-alt:before { content: "\f113"; }

.fa-github-square:before { content: "\f092"; }

.fa-gitkraken:before { content: "\f3a6"; }

.fa-gitlab:before { content: "\f296"; }

.fa-gitter:before { content: "\f426"; }

.fa-glass-martini:before { content: "\f000"; }

.fa-glass-martini-alt:before { content: "\f57b"; }

.fa-glasses:before { content: "\f530"; }

.fa-glide:before { content: "\f2a5"; }

.fa-glide-g:before { content: "\f2a6"; }

.fa-globe:before { content: "\f0ac"; }

.fa-globe-africa:before { content: "\f57c"; }

.fa-globe-americas:before { content: "\f57d"; }

.fa-globe-asia:before { content: "\f57e"; }

.fa-gofore:before { content: "\f3a7"; }

.fa-golf-ball:before { content: "\f450"; }

.fa-goodreads:before { content: "\f3a8"; }

.fa-goodreads-g:before { content: "\f3a9"; }

.fa-google:before { content: "\f1a0"; }

.fa-google-drive:before { content: "\f3aa"; }

.fa-google-play:before { content: "\f3ab"; }

.fa-google-plus:before { content: "\f2b3"; }

.fa-google-plus-g:before { content: "\f0d5"; }

.fa-google-plus-square:before { content: "\f0d4"; }

.fa-google-wallet:before { content: "\f1ee"; }

.fa-gopuram:before { content: "\f664"; }

.fa-graduation-cap:before { content: "\f19d"; }

.fa-gratipay:before { content: "\f184"; }

.fa-grav:before { content: "\f2d6"; }

.fa-greater-than:before { content: "\f531"; }

.fa-greater-than-equal:before { content: "\f532"; }

.fa-grimace:before { content: "\f57f"; }

.fa-grin:before { content: "\f580"; }

.fa-grin-alt:before { content: "\f581"; }

.fa-grin-beam:before { content: "\f582"; }

.fa-grin-beam-sweat:before { content: "\f583"; }

.fa-grin-hearts:before { content: "\f584"; }

.fa-grin-squint:before { content: "\f585"; }

.fa-grin-squint-tears:before { content: "\f586"; }

.fa-grin-stars:before { content: "\f587"; }

.fa-grin-tears:before { content: "\f588"; }

.fa-grin-tongue:before { content: "\f589"; }

.fa-grin-tongue-squint:before { content: "\f58a"; }

.fa-grin-tongue-wink:before { content: "\f58b"; }

.fa-grin-wink:before { content: "\f58c"; }

.fa-grip-horizontal:before { content: "\f58d"; }

.fa-grip-vertical:before { content: "\f58e"; }

.fa-gripfire:before { content: "\f3ac"; }

.fa-grunt:before { content: "\f3ad"; }

.fa-gulp:before { content: "\f3ae"; }

.fa-h-square:before { content: "\f0fd"; }

.fa-hacker-news:before { content: "\f1d4"; }

.fa-hacker-news-square:before { content: "\f3af"; }

.fa-hackerrank:before { content: "\f5f7"; }

.fa-hamsa:before { content: "\f665"; }

.fa-hand-holding:before { content: "\f4bd"; }

.fa-hand-holding-heart:before { content: "\f4be"; }

.fa-hand-holding-usd:before { content: "\f4c0"; }

.fa-hand-lizard:before { content: "\f258"; }

.fa-hand-paper:before { content: "\f256"; }

.fa-hand-peace:before { content: "\f25b"; }

.fa-hand-point-down:before { content: "\f0a7"; }

.fa-hand-point-left:before { content: "\f0a5"; }

.fa-hand-point-right:before { content: "\f0a4"; }

.fa-hand-point-up:before { content: "\f0a6"; }

.fa-hand-pointer:before { content: "\f25a"; }

.fa-hand-rock:before { content: "\f255"; }

.fa-hand-scissors:before { content: "\f257"; }

.fa-hand-spock:before { content: "\f259"; }

.fa-hands:before { content: "\f4c2"; }

.fa-hands-helping:before { content: "\f4c4"; }

.fa-handshake:before { content: "\f2b5"; }

.fa-hashtag:before { content: "\f292"; }

.fa-haykal:before { content: "\f666"; }

.fa-hdd:before { content: "\f0a0"; }

.fa-heading:before { content: "\f1dc"; }

.fa-headphones:before { content: "\f025"; }

.fa-headphones-alt:before { content: "\f58f"; }

.fa-headset:before { content: "\f590"; }

.fa-heart:before { content: "\f004"; }

.fa-heartbeat:before { content: "\f21e"; }

.fa-helicopter:before { content: "\f533"; }

.fa-highlighter:before { content: "\f591"; }

.fa-hips:before { content: "\f452"; }

.fa-hire-a-helper:before { content: "\f3b0"; }

.fa-history:before { content: "\f1da"; }

.fa-hockey-puck:before { content: "\f453"; }

.fa-home:before { content: "\f015"; }

.fa-hooli:before { content: "\f427"; }

.fa-hornbill:before { content: "\f592"; }

.fa-hospital:before { content: "\f0f8"; }

.fa-hospital-alt:before { content: "\f47d"; }

.fa-hospital-symbol:before { content: "\f47e"; }

.fa-hot-tub:before { content: "\f593"; }

.fa-hotel:before { content: "\f594"; }

.fa-hotjar:before { content: "\f3b1"; }

.fa-hourglass:before { content: "\f254"; }

.fa-hourglass-end:before { content: "\f253"; }

.fa-hourglass-half:before { content: "\f252"; }

.fa-hourglass-start:before { content: "\f251"; }

.fa-houzz:before { content: "\f27c"; }

.fa-html5:before { content: "\f13b"; }

.fa-hubspot:before { content: "\f3b2"; }

.fa-i-cursor:before { content: "\f246"; }

.fa-id-badge:before { content: "\f2c1"; }

.fa-id-card:before { content: "\f2c2"; }

.fa-id-card-alt:before { content: "\f47f"; }

.fa-image:before { content: "\f03e"; }

.fa-images:before { content: "\f302"; }

.fa-imdb:before { content: "\f2d8"; }

.fa-inbox:before { content: "\f01c"; }

.fa-indent:before { content: "\f03c"; }

.fa-industry:before { content: "\f275"; }

.fa-infinity:before { content: "\f534"; }

.fa-info:before { content: "\f129"; }

.fa-info-circle:before { content: "\f05a"; }

.fa-instagram:before { content: "\f16d"; }

.fa-internet-explorer:before { content: "\f26b"; }

.fa-ioxhost:before { content: "\f208"; }

.fa-italic:before { content: "\f033"; }

.fa-itunes:before { content: "\f3b4"; }

.fa-itunes-note:before { content: "\f3b5"; }

.fa-java:before { content: "\f4e4"; }

.fa-jedi:before { content: "\f669"; }

.fa-jedi-order:before { content: "\f50e"; }

.fa-jenkins:before { content: "\f3b6"; }

.fa-joget:before { content: "\f3b7"; }

.fa-joint:before { content: "\f595"; }

.fa-joomla:before { content: "\f1aa"; }

.fa-journal-whills:before { content: "\f66a"; }

.fa-js:before { content: "\f3b8"; }

.fa-js-square:before { content: "\f3b9"; }

.fa-jsfiddle:before { content: "\f1cc"; }

.fa-kaaba:before { content: "\f66b"; }

.fa-kaggle:before { content: "\f5fa"; }

.fa-key:before { content: "\f084"; }

.fa-keybase:before { content: "\f4f5"; }

.fa-keyboard:before { content: "\f11c"; }

.fa-keycdn:before { content: "\f3ba"; }

.fa-khanda:before { content: "\f66d"; }

.fa-kickstarter:before { content: "\f3bb"; }

.fa-kickstarter-k:before { content: "\f3bc"; }

.fa-kiss:before { content: "\f596"; }

.fa-kiss-beam:before { content: "\f597"; }

.fa-kiss-wink-heart:before { content: "\f598"; }

.fa-kiwi-bird:before { content: "\f535"; }

.fa-korvue:before { content: "\f42f"; }

.fa-landmark:before { content: "\f66f"; }

.fa-language:before { content: "\f1ab"; }

.fa-laptop:before { content: "\f109"; }

.fa-laptop-code:before { content: "\f5fc"; }

.fa-laravel:before { content: "\f3bd"; }

.fa-lastfm:before { content: "\f202"; }

.fa-lastfm-square:before { content: "\f203"; }

.fa-laugh:before { content: "\f599"; }

.fa-laugh-beam:before { content: "\f59a"; }

.fa-laugh-squint:before { content: "\f59b"; }

.fa-laugh-wink:before { content: "\f59c"; }

.fa-layer-group:before { content: "\f5fd"; }

.fa-leaf:before { content: "\f06c"; }

.fa-leanpub:before { content: "\f212"; }

.fa-lemon:before { content: "\f094"; }

.fa-less:before { content: "\f41d"; }

.fa-less-than:before { content: "\f536"; }

.fa-less-than-equal:before { content: "\f537"; }

.fa-level-down-alt:before { content: "\f3be"; }

.fa-level-up-alt:before { content: "\f3bf"; }

.fa-life-ring:before { content: "\f1cd"; }

.fa-lightbulb:before { content: "\f0eb"; }

.fa-line:before { content: "\f3c0"; }

.fa-link:before { content: "\f0c1"; }

.fa-linkedin:before { content: "\f08c"; }

.fa-linkedin-in:before { content: "\f0e1"; }

.fa-linode:before { content: "\f2b8"; }

.fa-linux:before { content: "\f17c"; }

.fa-lira-sign:before { content: "\f195"; }

.fa-list:before { content: "\f03a"; }

.fa-list-alt:before { content: "\f022"; }

.fa-list-ol:before { content: "\f0cb"; }

.fa-list-ul:before { content: "\f0ca"; }

.fa-location-arrow:before { content: "\f124"; }

.fa-lock:before { content: "\f023"; }

.fa-lock-open:before { content: "\f3c1"; }

.fa-long-arrow-alt-down:before { content: "\f309"; }

.fa-long-arrow-alt-left:before { content: "\f30a"; }

.fa-long-arrow-alt-right:before { content: "\f30b"; }

.fa-long-arrow-alt-up:before { content: "\f30c"; }

.fa-low-vision:before { content: "\f2a8"; }

.fa-luggage-cart:before { content: "\f59d"; }

.fa-lyft:before { content: "\f3c3"; }

.fa-magento:before { content: "\f3c4"; }

.fa-magic:before { content: "\f0d0"; }

.fa-magnet:before { content: "\f076"; }

.fa-mail-bulk:before { content: "\f674"; }

.fa-mailchimp:before { content: "\f59e"; }

.fa-male:before { content: "\f183"; }

.fa-mandalorian:before { content: "\f50f"; }

.fa-map:before { content: "\f279"; }

.fa-map-marked:before { content: "\f59f"; }

.fa-map-marked-alt:before { content: "\f5a0"; }

.fa-map-marker:before { content: "\f041"; }

.fa-map-marker-alt:before { content: "\f3c5"; }

.fa-map-pin:before { content: "\f276"; }

.fa-map-signs:before { content: "\f277"; }

.fa-markdown:before { content: "\f60f"; }

.fa-marker:before { content: "\f5a1"; }

.fa-mars:before { content: "\f222"; }

.fa-mars-double:before { content: "\f227"; }

.fa-mars-stroke:before { content: "\f229"; }

.fa-mars-stroke-h:before { content: "\f22b"; }

.fa-mars-stroke-v:before { content: "\f22a"; }

.fa-mastodon:before { content: "\f4f6"; }

.fa-maxcdn:before { content: "\f136"; }

.fa-medal:before { content: "\f5a2"; }

.fa-medapps:before { content: "\f3c6"; }

.fa-medium:before { content: "\f23a"; }

.fa-medium-m:before { content: "\f3c7"; }

.fa-medkit:before { content: "\f0fa"; }

.fa-medrt:before { content: "\f3c8"; }

.fa-meetup:before { content: "\f2e0"; }

.fa-megaport:before { content: "\f5a3"; }

.fa-meh:before { content: "\f11a"; }

.fa-meh-blank:before { content: "\f5a4"; }

.fa-meh-rolling-eyes:before { content: "\f5a5"; }

.fa-memory:before { content: "\f538"; }

.fa-menorah:before { content: "\f676"; }

.fa-mercury:before { content: "\f223"; }

.fa-microchip:before { content: "\f2db"; }

.fa-microphone:before { content: "\f130"; }

.fa-microphone-alt:before { content: "\f3c9"; }

.fa-microphone-alt-slash:before { content: "\f539"; }

.fa-microphone-slash:before { content: "\f131"; }

.fa-microscope:before { content: "\f610"; }

.fa-microsoft:before { content: "\f3ca"; }

.fa-minus:before { content: "\f068"; }

.fa-minus-circle:before { content: "\f056"; }

.fa-minus-square:before { content: "\f146"; }

.fa-mix:before { content: "\f3cb"; }

.fa-mixcloud:before { content: "\f289"; }

.fa-mizuni:before { content: "\f3cc"; }

.fa-mobile:before { content: "\f10b"; }

.fa-mobile-alt:before { content: "\f3cd"; }

.fa-modx:before { content: "\f285"; }

.fa-monero:before { content: "\f3d0"; }

.fa-money-bill:before { content: "\f0d6"; }

.fa-money-bill-alt:before { content: "\f3d1"; }

.fa-money-bill-wave:before { content: "\f53a"; }

.fa-money-bill-wave-alt:before { content: "\f53b"; }

.fa-money-check:before { content: "\f53c"; }

.fa-money-check-alt:before { content: "\f53d"; }

.fa-monument:before { content: "\f5a6"; }

.fa-moon:before { content: "\f186"; }

.fa-mortar-pestle:before { content: "\f5a7"; }

.fa-mosque:before { content: "\f678"; }

.fa-motorcycle:before { content: "\f21c"; }

.fa-mouse-pointer:before { content: "\f245"; }

.fa-music:before { content: "\f001"; }

.fa-napster:before { content: "\f3d2"; }

.fa-neos:before { content: "\f612"; }

.fa-neuter:before { content: "\f22c"; }

.fa-newspaper:before { content: "\f1ea"; }

.fa-nimblr:before { content: "\f5a8"; }

.fa-nintendo-switch:before { content: "\f418"; }

.fa-node:before { content: "\f419"; }

.fa-node-js:before { content: "\f3d3"; }

.fa-not-equal:before { content: "\f53e"; }

.fa-notes-medical:before { content: "\f481"; }

.fa-npm:before { content: "\f3d4"; }

.fa-ns8:before { content: "\f3d5"; }

.fa-nutritionix:before { content: "\f3d6"; }

.fa-object-group:before { content: "\f247"; }

.fa-object-ungroup:before { content: "\f248"; }

.fa-odnoklassniki:before { content: "\f263"; }

.fa-odnoklassniki-square:before { content: "\f264"; }

.fa-oil-can:before { content: "\f613"; }

.fa-old-republic:before { content: "\f510"; }

.fa-om:before { content: "\f679"; }

.fa-opencart:before { content: "\f23d"; }

.fa-openid:before { content: "\f19b"; }

.fa-opera:before { content: "\f26a"; }

.fa-optin-monster:before { content: "\f23c"; }

.fa-osi:before { content: "\f41a"; }

.fa-outdent:before { content: "\f03b"; }

.fa-page4:before { content: "\f3d7"; }

.fa-pagelines:before { content: "\f18c"; }

.fa-paint-brush:before { content: "\f1fc"; }

.fa-paint-roller:before { content: "\f5aa"; }

.fa-palette:before { content: "\f53f"; }

.fa-palfed:before { content: "\f3d8"; }

.fa-pallet:before { content: "\f482"; }

.fa-paper-plane:before { content: "\f1d8"; }

.fa-paperclip:before { content: "\f0c6"; }

.fa-parachute-box:before { content: "\f4cd"; }

.fa-paragraph:before { content: "\f1dd"; }

.fa-parking:before { content: "\f540"; }

.fa-passport:before { content: "\f5ab"; }

.fa-pastafarianism:before { content: "\f67b"; }

.fa-paste:before { content: "\f0ea"; }

.fa-patreon:before { content: "\f3d9"; }

.fa-pause:before { content: "\f04c"; }

.fa-pause-circle:before { content: "\f28b"; }

.fa-paw:before { content: "\f1b0"; }

.fa-paypal:before { content: "\f1ed"; }

.fa-peace:before { content: "\f67c"; }

.fa-pen:before { content: "\f304"; }

.fa-pen-alt:before { content: "\f305"; }

.fa-pen-fancy:before { content: "\f5ac"; }

.fa-pen-nib:before { content: "\f5ad"; }

.fa-pen-square:before { content: "\f14b"; }

.fa-pencil-alt:before { content: "\f303"; }

.fa-pencil-ruler:before { content: "\f5ae"; }

.fa-people-carry:before { content: "\f4ce"; }

.fa-percent:before { content: "\f295"; }

.fa-percentage:before { content: "\f541"; }

.fa-periscope:before { content: "\f3da"; }

.fa-phabricator:before { content: "\f3db"; }

.fa-phoenix-framework:before { content: "\f3dc"; }

.fa-phoenix-squadron:before { content: "\f511"; }

.fa-phone:before { content: "\f095"; }

.fa-phone-slash:before { content: "\f3dd"; }

.fa-phone-square:before { content: "\f098"; }

.fa-phone-volume:before { content: "\f2a0"; }

.fa-php:before { content: "\f457"; }

.fa-pied-piper:before { content: "\f2ae"; }

.fa-pied-piper-alt:before { content: "\f1a8"; }

.fa-pied-piper-hat:before { content: "\f4e5"; }

.fa-pied-piper-pp:before { content: "\f1a7"; }

.fa-piggy-bank:before { content: "\f4d3"; }

.fa-pills:before { content: "\f484"; }

.fa-pinterest:before { content: "\f0d2"; }

.fa-pinterest-p:before { content: "\f231"; }

.fa-pinterest-square:before { content: "\f0d3"; }

.fa-place-of-worship:before { content: "\f67f"; }

.fa-plane:before { content: "\f072"; }

.fa-plane-arrival:before { content: "\f5af"; }

.fa-plane-departure:before { content: "\f5b0"; }

.fa-play:before { content: "\f04b"; }

.fa-play-circle:before { content: "\f144"; }

.fa-playstation:before { content: "\f3df"; }

.fa-plug:before { content: "\f1e6"; }

.fa-plus:before { content: "\f067"; }

.fa-plus-circle:before { content: "\f055"; }

.fa-plus-square:before { content: "\f0fe"; }

.fa-podcast:before { content: "\f2ce"; }

.fa-poll:before { content: "\f681"; }

.fa-poll-h:before { content: "\f682"; }

.fa-poo:before { content: "\f2fe"; }

.fa-poop:before { content: "\f619"; }

.fa-portrait:before { content: "\f3e0"; }

.fa-pound-sign:before { content: "\f154"; }

.fa-power-off:before { content: "\f011"; }

.fa-pray:before { content: "\f683"; }

.fa-praying-hands:before { content: "\f684"; }

.fa-prescription:before { content: "\f5b1"; }

.fa-prescription-bottle:before { content: "\f485"; }

.fa-prescription-bottle-alt:before { content: "\f486"; }

.fa-print:before { content: "\f02f"; }

.fa-procedures:before { content: "\f487"; }

.fa-product-hunt:before { content: "\f288"; }

.fa-project-diagram:before { content: "\f542"; }

.fa-pushed:before { content: "\f3e1"; }

.fa-puzzle-piece:before { content: "\f12e"; }

.fa-python:before { content: "\f3e2"; }

.fa-qq:before { content: "\f1d6"; }

.fa-qrcode:before { content: "\f029"; }

.fa-question:before { content: "\f128"; }

.fa-question-circle:before { content: "\f059"; }

.fa-quidditch:before { content: "\f458"; }

.fa-quinscape:before { content: "\f459"; }

.fa-quora:before { content: "\f2c4"; }

.fa-quote-left:before { content: "\f10d"; }

.fa-quote-right:before { content: "\f10e"; }

.fa-quran:before { content: "\f687"; }

.fa-r-project:before { content: "\f4f7"; }

.fa-random:before { content: "\f074"; }

.fa-ravelry:before { content: "\f2d9"; }

.fa-react:before { content: "\f41b"; }

.fa-readme:before { content: "\f4d5"; }

.fa-rebel:before { content: "\f1d0"; }

.fa-receipt:before { content: "\f543"; }

.fa-recycle:before { content: "\f1b8"; }

.fa-red-river:before { content: "\f3e3"; }

.fa-reddit:before { content: "\f1a1"; }

.fa-reddit-alien:before { content: "\f281"; }

.fa-reddit-square:before { content: "\f1a2"; }

.fa-redo:before { content: "\f01e"; }

.fa-redo-alt:before { content: "\f2f9"; }

.fa-registered:before { content: "\f25d"; }

.fa-rendact:before { content: "\f3e4"; }

.fa-renren:before { content: "\f18b"; }

.fa-reply:before { content: "\f3e5"; }

.fa-reply-all:before { content: "\f122"; }

.fa-replyd:before { content: "\f3e6"; }

.fa-researchgate:before { content: "\f4f8"; }

.fa-resolving:before { content: "\f3e7"; }

.fa-retweet:before { content: "\f079"; }

.fa-rev:before { content: "\f5b2"; }

.fa-ribbon:before { content: "\f4d6"; }

.fa-road:before { content: "\f018"; }

.fa-robot:before { content: "\f544"; }

.fa-rocket:before { content: "\f135"; }

.fa-rocketchat:before { content: "\f3e8"; }

.fa-rockrms:before { content: "\f3e9"; }

.fa-route:before { content: "\f4d7"; }

.fa-rss:before { content: "\f09e"; }

.fa-rss-square:before { content: "\f143"; }

.fa-ruble-sign:before { content: "\f158"; }

.fa-ruler:before { content: "\f545"; }

.fa-ruler-combined:before { content: "\f546"; }

.fa-ruler-horizontal:before { content: "\f547"; }

.fa-ruler-vertical:before { content: "\f548"; }

.fa-rupee-sign:before { content: "\f156"; }

.fa-sad-cry:before { content: "\f5b3"; }

.fa-sad-tear:before { content: "\f5b4"; }

.fa-safari:before { content: "\f267"; }

.fa-sass:before { content: "\f41e"; }

.fa-save:before { content: "\f0c7"; }

.fa-schlix:before { content: "\f3ea"; }

.fa-school:before { content: "\f549"; }

.fa-screwdriver:before { content: "\f54a"; }

.fa-scribd:before { content: "\f28a"; }

.fa-search:before { content: "\f002"; }

.fa-search-dollar:before { content: "\f688"; }

.fa-search-location:before { content: "\f689"; }

.fa-search-minus:before { content: "\f010"; }

.fa-search-plus:before { content: "\f00e"; }

.fa-searchengin:before { content: "\f3eb"; }

.fa-seedling:before { content: "\f4d8"; }

.fa-sellcast:before { content: "\f2da"; }

.fa-sellsy:before { content: "\f213"; }

.fa-server:before { content: "\f233"; }

.fa-servicestack:before { content: "\f3ec"; }

.fa-shapes:before { content: "\f61f"; }

.fa-share:before { content: "\f064"; }

.fa-share-alt:before { content: "\f1e0"; }

.fa-share-alt-square:before { content: "\f1e1"; }

.fa-share-square:before { content: "\f14d"; }

.fa-shekel-sign:before { content: "\f20b"; }

.fa-shield-alt:before { content: "\f3ed"; }

.fa-ship:before { content: "\f21a"; }

.fa-shipping-fast:before { content: "\f48b"; }

.fa-shirtsinbulk:before { content: "\f214"; }

.fa-shoe-prints:before { content: "\f54b"; }

.fa-shopping-bag:before { content: "\f290"; }

.fa-shopping-basket:before { content: "\f291"; }

.fa-shopping-cart:before { content: "\f07a"; }

.fa-shopware:before { content: "\f5b5"; }

.fa-shower:before { content: "\f2cc"; }

.fa-shuttle-van:before { content: "\f5b6"; }

.fa-sign:before { content: "\f4d9"; }

.fa-sign-in-alt:before { content: "\f2f6"; }

.fa-sign-language:before { content: "\f2a7"; }

.fa-sign-out-alt:before { content: "\f2f5"; }

.fa-signal:before { content: "\f012"; }

.fa-signature:before { content: "\f5b7"; }

.fa-simplybuilt:before { content: "\f215"; }

.fa-sistrix:before { content: "\f3ee"; }

.fa-sitemap:before { content: "\f0e8"; }

.fa-sith:before { content: "\f512"; }

.fa-skull:before { content: "\f54c"; }

.fa-skyatlas:before { content: "\f216"; }

.fa-skype:before { content: "\f17e"; }

.fa-slack:before { content: "\f198"; }

.fa-slack-hash:before { content: "\f3ef"; }

.fa-sliders-h:before { content: "\f1de"; }

.fa-slideshare:before { content: "\f1e7"; }

.fa-smile:before { content: "\f118"; }

.fa-smile-beam:before { content: "\f5b8"; }

.fa-smile-wink:before { content: "\f4da"; }

.fa-smoking:before { content: "\f48d"; }

.fa-smoking-ban:before { content: "\f54d"; }

.fa-snapchat:before { content: "\f2ab"; }

.fa-snapchat-ghost:before { content: "\f2ac"; }

.fa-snapchat-square:before { content: "\f2ad"; }

.fa-snowflake:before { content: "\f2dc"; }

.fa-socks:before { content: "\f696"; }

.fa-solar-panel:before { content: "\f5ba"; }

.fa-sort:before { content: "\f0dc"; }

.fa-sort-alpha-down:before { content: "\f15d"; }

.fa-sort-alpha-up:before { content: "\f15e"; }

.fa-sort-amount-down:before { content: "\f160"; }

.fa-sort-amount-up:before { content: "\f161"; }

.fa-sort-down:before { content: "\f0dd"; }

.fa-sort-numeric-down:before { content: "\f162"; }

.fa-sort-numeric-up:before { content: "\f163"; }

.fa-sort-up:before { content: "\f0de"; }

.fa-soundcloud:before { content: "\f1be"; }

.fa-spa:before { content: "\f5bb"; }

.fa-space-shuttle:before { content: "\f197"; }

.fa-speakap:before { content: "\f3f3"; }

.fa-spinner:before { content: "\f110"; }

.fa-splotch:before { content: "\f5bc"; }

.fa-spotify:before { content: "\f1bc"; }

.fa-spray-can:before { content: "\f5bd"; }

.fa-square:before { content: "\f0c8"; }

.fa-square-full:before { content: "\f45c"; }

.fa-square-root-alt:before { content: "\f698"; }

.fa-squarespace:before { content: "\f5be"; }

.fa-stack-exchange:before { content: "\f18d"; }

.fa-stack-overflow:before { content: "\f16c"; }

.fa-stamp:before { content: "\f5bf"; }

.fa-star:before { content: "\f005"; }

.fa-star-and-crescent:before { content: "\f699"; }

.fa-star-half:before { content: "\f089"; }

.fa-star-half-alt:before { content: "\f5c0"; }

.fa-star-of-david:before { content: "\f69a"; }

.fa-star-of-life:before { content: "\f621"; }

.fa-staylinked:before { content: "\f3f5"; }

.fa-steam:before { content: "\f1b6"; }

.fa-steam-square:before { content: "\f1b7"; }

.fa-steam-symbol:before { content: "\f3f6"; }

.fa-step-backward:before { content: "\f048"; }

.fa-step-forward:before { content: "\f051"; }

.fa-stethoscope:before { content: "\f0f1"; }

.fa-sticker-mule:before { content: "\f3f7"; }

.fa-sticky-note:before { content: "\f249"; }

.fa-stop:before { content: "\f04d"; }

.fa-stop-circle:before { content: "\f28d"; }

.fa-stopwatch:before { content: "\f2f2"; }

.fa-store:before { content: "\f54e"; }

.fa-store-alt:before { content: "\f54f"; }

.fa-strava:before { content: "\f428"; }

.fa-stream:before { content: "\f550"; }

.fa-street-view:before { content: "\f21d"; }

.fa-strikethrough:before { content: "\f0cc"; }

.fa-stripe:before { content: "\f429"; }

.fa-stripe-s:before { content: "\f42a"; }

.fa-stroopwafel:before { content: "\f551"; }

.fa-studiovinari:before { content: "\f3f8"; }

.fa-stumbleupon:before { content: "\f1a4"; }

.fa-stumbleupon-circle:before { content: "\f1a3"; }

.fa-subscript:before { content: "\f12c"; }

.fa-subway:before { content: "\f239"; }

.fa-suitcase:before { content: "\f0f2"; }

.fa-suitcase-rolling:before { content: "\f5c1"; }

.fa-sun:before { content: "\f185"; }

.fa-superpowers:before { content: "\f2dd"; }

.fa-superscript:before { content: "\f12b"; }

.fa-supple:before { content: "\f3f9"; }

.fa-surprise:before { content: "\f5c2"; }

.fa-swatchbook:before { content: "\f5c3"; }

.fa-swimmer:before { content: "\f5c4"; }

.fa-swimming-pool:before { content: "\f5c5"; }

.fa-synagogue:before { content: "\f69b"; }

.fa-sync:before { content: "\f021"; }

.fa-sync-alt:before { content: "\f2f1"; }

.fa-syringe:before { content: "\f48e"; }

.fa-table:before { content: "\f0ce"; }

.fa-table-tennis:before { content: "\f45d"; }

.fa-tablet:before { content: "\f10a"; }

.fa-tablet-alt:before { content: "\f3fa"; }

.fa-tablets:before { content: "\f490"; }

.fa-tachometer-alt:before { content: "\f3fd"; }

.fa-tag:before { content: "\f02b"; }

.fa-tags:before { content: "\f02c"; }

.fa-tape:before { content: "\f4db"; }

.fa-tasks:before { content: "\f0ae"; }

.fa-taxi:before { content: "\f1ba"; }

.fa-teamspeak:before { content: "\f4f9"; }

.fa-teeth:before { content: "\f62e"; }

.fa-teeth-open:before { content: "\f62f"; }

.fa-telegram:before { content: "\f2c6"; }

.fa-telegram-plane:before { content: "\f3fe"; }

.fa-tencent-weibo:before { content: "\f1d5"; }

.fa-terminal:before { content: "\f120"; }

.fa-text-height:before { content: "\f034"; }

.fa-text-width:before { content: "\f035"; }

.fa-th:before { content: "\f00a"; }

.fa-th-large:before { content: "\f009"; }

.fa-th-list:before { content: "\f00b"; }

.fa-the-red-yeti:before { content: "\f69d"; }

.fa-theater-masks:before { content: "\f630"; }

.fa-themeco:before { content: "\f5c6"; }

.fa-themeisle:before { content: "\f2b2"; }

.fa-thermometer:before { content: "\f491"; }

.fa-thermometer-empty:before { content: "\f2cb"; }

.fa-thermometer-full:before { content: "\f2c7"; }

.fa-thermometer-half:before { content: "\f2c9"; }

.fa-thermometer-quarter:before { content: "\f2ca"; }

.fa-thermometer-three-quarters:before { content: "\f2c8"; }

.fa-thumbs-down:before { content: "\f165"; }

.fa-thumbs-up:before { content: "\f164"; }

.fa-thumbtack:before { content: "\f08d"; }

.fa-ticket-alt:before { content: "\f3ff"; }

.fa-times:before { content: "\f00d"; }

.fa-times-circle:before { content: "\f057"; }

.fa-tint:before { content: "\f043"; }

.fa-tint-slash:before { content: "\f5c7"; }

.fa-tired:before { content: "\f5c8"; }

.fa-toggle-off:before { content: "\f204"; }

.fa-toggle-on:before { content: "\f205"; }

.fa-toolbox:before { content: "\f552"; }

.fa-tooth:before { content: "\f5c9"; }

.fa-torah:before { content: "\f6a0"; }

.fa-torii-gate:before { content: "\f6a1"; }

.fa-trade-federation:before { content: "\f513"; }

.fa-trademark:before { content: "\f25c"; }

.fa-traffic-light:before { content: "\f637"; }

.fa-train:before { content: "\f238"; }

.fa-transgender:before { content: "\f224"; }

.fa-transgender-alt:before { content: "\f225"; }

.fa-trash:before { content: "\f1f8"; }

.fa-trash-alt:before { content: "\f2ed"; }

.fa-tree:before { content: "\f1bb"; }

.fa-trello:before { content: "\f181"; }

.fa-tripadvisor:before { content: "\f262"; }

.fa-trophy:before { content: "\f091"; }

.fa-truck:before { content: "\f0d1"; }

.fa-truck-loading:before { content: "\f4de"; }

.fa-truck-monster:before { content: "\f63b"; }

.fa-truck-moving:before { content: "\f4df"; }

.fa-truck-pickup:before { content: "\f63c"; }

.fa-tshirt:before { content: "\f553"; }

.fa-tty:before { content: "\f1e4"; }

.fa-tumblr:before { content: "\f173"; }

.fa-tumblr-square:before { content: "\f174"; }

.fa-tv:before { content: "\f26c"; }

.fa-twitch:before { content: "\f1e8"; }

.fa-twitter:before { content: "\f099"; }

.fa-twitter-square:before { content: "\f081"; }

.fa-typo3:before { content: "\f42b"; }

.fa-uber:before { content: "\f402"; }

.fa-uikit:before { content: "\f403"; }

.fa-umbrella:before { content: "\f0e9"; }

.fa-umbrella-beach:before { content: "\f5ca"; }

.fa-underline:before { content: "\f0cd"; }

.fa-undo:before { content: "\f0e2"; }

.fa-undo-alt:before { content: "\f2ea"; }

.fa-uniregistry:before { content: "\f404"; }

.fa-universal-access:before { content: "\f29a"; }

.fa-university:before { content: "\f19c"; }

.fa-unlink:before { content: "\f127"; }

.fa-unlock:before { content: "\f09c"; }

.fa-unlock-alt:before { content: "\f13e"; }

.fa-untappd:before { content: "\f405"; }

.fa-upload:before { content: "\f093"; }

.fa-usb:before { content: "\f287"; }

.fa-user:before { content: "\f007"; }

.fa-user-alt:before { content: "\f406"; }

.fa-user-alt-slash:before { content: "\f4fa"; }

.fa-user-astronaut:before { content: "\f4fb"; }

.fa-user-check:before { content: "\f4fc"; }

.fa-user-circle:before { content: "\f2bd"; }

.fa-user-clock:before { content: "\f4fd"; }

.fa-user-cog:before { content: "\f4fe"; }

.fa-user-edit:before { content: "\f4ff"; }

.fa-user-friends:before { content: "\f500"; }

.fa-user-graduate:before { content: "\f501"; }

.fa-user-lock:before { content: "\f502"; }

.fa-user-md:before { content: "\f0f0"; }

.fa-user-minus:before { content: "\f503"; }

.fa-user-ninja:before { content: "\f504"; }

.fa-user-plus:before { content: "\f234"; }

.fa-user-secret:before { content: "\f21b"; }

.fa-user-shield:before { content: "\f505"; }

.fa-user-slash:before { content: "\f506"; }

.fa-user-tag:before { content: "\f507"; }

.fa-user-tie:before { content: "\f508"; }

.fa-user-times:before { content: "\f235"; }

.fa-users:before { content: "\f0c0"; }

.fa-users-cog:before { content: "\f509"; }

.fa-ussunnah:before { content: "\f407"; }

.fa-utensil-spoon:before { content: "\f2e5"; }

.fa-utensils:before { content: "\f2e7"; }

.fa-vaadin:before { content: "\f408"; }

.fa-vector-square:before { content: "\f5cb"; }

.fa-venus:before { content: "\f221"; }

.fa-venus-double:before { content: "\f226"; }

.fa-venus-mars:before { content: "\f228"; }

.fa-viacoin:before { content: "\f237"; }

.fa-viadeo:before { content: "\f2a9"; }

.fa-viadeo-square:before { content: "\f2aa"; }

.fa-vial:before { content: "\f492"; }

.fa-vials:before { content: "\f493"; }

.fa-viber:before { content: "\f409"; }

.fa-video:before { content: "\f03d"; }

.fa-video-slash:before { content: "\f4e2"; }

.fa-vihara:before { content: "\f6a7"; }

.fa-vimeo:before { content: "\f40a"; }

.fa-vimeo-square:before { content: "\f194"; }

.fa-vimeo-v:before { content: "\f27d"; }

.fa-vine:before { content: "\f1ca"; }

.fa-vk:before { content: "\f189"; }

.fa-vnv:before { content: "\f40b"; }

.fa-volleyball-ball:before { content: "\f45f"; }

.fa-volume-down:before { content: "\f027"; }

.fa-volume-off:before { content: "\f026"; }

.fa-volume-up:before { content: "\f028"; }

.fa-vuejs:before { content: "\f41f"; }

.fa-walking:before { content: "\f554"; }

.fa-wallet:before { content: "\f555"; }

.fa-warehouse:before { content: "\f494"; }

.fa-weebly:before { content: "\f5cc"; }

.fa-weibo:before { content: "\f18a"; }

.fa-weight:before { content: "\f496"; }

.fa-weight-hanging:before { content: "\f5cd"; }

.fa-weixin:before { content: "\f1d7"; }

.fa-whatsapp:before { content: "\f232"; }

.fa-whatsapp-square:before { content: "\f40c"; }

.fa-wheelchair:before { content: "\f193"; }

.fa-whmcs:before { content: "\f40d"; }

.fa-wifi:before { content: "\f1eb"; }

.fa-wikipedia-w:before { content: "\f266"; }

.fa-window-close:before { content: "\f410"; }

.fa-window-maximize:before { content: "\f2d0"; }

.fa-window-minimize:before { content: "\f2d1"; }

.fa-window-restore:before { content: "\f2d2"; }

.fa-windows:before { content: "\f17a"; }

.fa-wine-glass:before { content: "\f4e3"; }

.fa-wine-glass-alt:before { content: "\f5ce"; }

.fa-wix:before { content: "\f5cf"; }

.fa-wolf-pack-battalion:before { content: "\f514"; }

.fa-won-sign:before { content: "\f159"; }

.fa-wordpress:before { content: "\f19a"; }

.fa-wordpress-simple:before { content: "\f411"; }

.fa-wpbeginner:before { content: "\f297"; }

.fa-wpexplorer:before { content: "\f2de"; }

.fa-wpforms:before { content: "\f298"; }

.fa-wrench:before { content: "\f0ad"; }

.fa-x-ray:before { content: "\f497"; }

.fa-xbox:before { content: "\f412"; }

.fa-xing:before { content: "\f168"; }

.fa-xing-square:before { content: "\f169"; }

.fa-y-combinator:before { content: "\f23b"; }

.fa-yahoo:before { content: "\f19e"; }

.fa-yandex:before { content: "\f413"; }

.fa-yandex-international:before { content: "\f414"; }

.fa-yelp:before { content: "\f1e9"; }

.fa-yen-sign:before { content: "\f157"; }

.fa-yin-yang:before { content: "\f6ad"; }

.fa-yoast:before { content: "\f2b1"; }

.fa-youtube:before { content: "\f167"; }

.fa-youtube-square:before { content: "\f431"; }

.fa-zhihu:before { content: "\f63f"; }

.sr-only { border: 0; clip: rect(0, 0, 0, 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }

.sr-only-focusable:active, .sr-only-focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }

@font-face { font-family: 'Font Awesome 5 Brands'; font-style: normal; font-weight: normal; src: url("../css/webfonts/fa-brands-400.eot"); src: url("../css/webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../css/webfonts/fa-brands-400.woff2") format("woff2"), url("../css/webfonts/fa-brands-400.woff") format("woff"), url("../css/webfonts/fa-brands-400.ttf") format("truetype"), url("../css/webfonts/fa-brands-400.svg#fontawesome") format("svg"); }
/* montserrat-regular - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat-v18-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/montserrat-v18-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/montserrat-v18-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/montserrat-v18-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/montserrat-v18-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/montserrat-v18-latin-regular.svg#Montserrat') format('svg'); /* Legacy iOS */
}
/*liber**/
/*@font-face {
  font-family: 'Liber';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/LiberRegular.otf'); /* IE9 Compat Modes */
 /* src: local(''),
       url('../fonts/LiberRegular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  /*     url('../fonts/LiberRegular.woff2') format('woff2'), /* Super Modern Browsers */
  /*     url('../fonts/LiberRegular.woff') format('woff'), /* Modern Browsers */
  /*     url('../fonts/LiberRegular.ttf') format('truetype'); /* Safari, Android, iOS */
/*}*/


/* montserrat-700 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/montserrat-v18-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/montserrat-v18-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/montserrat-v18-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/montserrat-v18-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/montserrat-v18-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/montserrat-v18-latin-700.svg#Montserrat') format('svg'); /* Legacy iOS */
}

.fab { font-family: 'Font Awesome 5 Brands'; }

@font-face { font-family: 'Font Awesome 5 Free'; font-style: normal; font-weight: 400; src: url("../css/webfonts/fa-regular-400.eot"); src: url("../css/webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../css/webfonts/fa-regular-400.woff2") format("woff2"), url("../css/webfonts/fa-regular-400.woff") format("woff"), url("../css/webfonts/fa-regular-400.ttf") format("truetype"), url("../css/webfonts/fa-regular-400.svg#fontawesome") format("svg"); }

.far { font-family: 'Font Awesome 5 Free'; font-weight: 400; }

@font-face { font-family: 'Font Awesome 5 Free'; font-style: normal; font-weight: 900; src: url("../css/webfonts/fa-solid-900.eot"); src: url("../css/webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../css/webfonts/fa-solid-900.woff2") format("woff2"), url("../css/webfonts/fa-solid-900.woff") format("woff"), url('../css/webfonts/fa-solid-900.ttf") format("truetype'), url("../css/webfonts/fa-solid-900.svg#fontawesome") format("svg"); }

.fa, .fas { font-family: 'Font Awesome 5 Free'; font-weight: 900; }

.animatetab .owl-carousel .owl-item { -moz-animation: zoomIn 500ms ease; -o-animation: zoomIn 500ms ease; -webkit-animation: zoomIn 500ms ease; animation: zoomIn 500ms ease; }

/* fonts */
/* end fonts */
.owl-carousel { display: none; width: 100%; -webkit-tap-highlight-color: transparent; /* position relative and z-index fix webkit rendering fonts issue */ position: relative; z-index: 1; }

.owl-carousel .owl-stage { position: relative; -ms-touch-action: pan-Y; }

.owl-carousel .owl-stage:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }

.owl-carousel .owl-stage-outer { position: relative; overflow: hidden; width: 100%; /* fix for flashing background */ -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-item { position: relative; min-height: 1px; float: left; padding: 0 15px; -webkit-backface-visibility: hidden; -webkit-tap-highlight-color: transparent; -webkit-touch-callout: none; }
.owl-carousel .owl-item:hover { z-index: 2; }

.owl-carousel .owl-item img { display: block; max-width: 100%; -webkit-transform-style: preserve-3d; }

.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled { display: none; }

.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot { cursor: pointer; cursor: hand; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }

.owl-carousel.owl-loaded { display: block; }

.owl-carousel.owl-loading { opacity: 0; display: block; }

.owl-carousel.owl-hidden { opacity: 0; }

.owl-carousel.owl-refresh .owl-item { display: none; }

.owl-carousel.owl-drag .owl-item { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }

.owl-carousel.owl-grab { cursor: move; cursor: grab; }

.owl-carousel.owl-rtl { direction: rtl; }

.owl-carousel.owl-rtl .owl-item { float: right; }

/* No Js */
.no-js .owl-carousel { display: block; }

/* Owl Carousel - Animate Plugin */
.owl-carousel .animated { animation-duration: 1000ms; animation-fill-mode: both; }

.owl-carousel .owl-animated-in { z-index: 0; }

.owl-carousel .owl-animated-out { z-index: 1; }

.owl-carousel .fadeOut { animation-name: fadeOut; }

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

/* 	Owl Carousel - Auto Height Plugin */
.owl-height { transition: height 500ms ease-in-out; }

/* 	Owl Carousel - Lazy Load Plugin */
.owl-carousel .owl-item .owl-lazy { opacity: 0; transition: opacity 400ms ease; }

.owl-carousel .owl-item img.owl-lazy { transform-style: preserve-3d; }

/* 	Owl Carousel - Video Plugin */
.owl-carousel .owl-video-wrapper { position: relative; height: 100%; background: #000; }

.owl-carousel .owl-video-play-icon { position: absolute; height: 80px; width: 80px; left: 50%; top: 50%; margin-left: -40px; margin-top: -40px; background: url("owl.video.play.png") no-repeat; cursor: pointer; z-index: 1; -webkit-backface-visibility: hidden; transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover { -ms-transform: scale(1.3, 1.3); transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn, .owl-carousel .owl-video-playing .owl-video-play-icon { display: none; }

.owl-carousel .owl-video-tn { opacity: 0; height: 100%; background-position: center center; background-repeat: no-repeat; background-size: contain; transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame { position: relative; z-index: 1; height: 100%; width: 100%; }

input:focus, button:focus, select:focus, textarea:focus { text-decoration: none !important; box-shadow: none !important; outline: 0 !important; }

a:hover, a:focus { outline: 0 !important; box-shadow: none !important; text-decoration: none; }

.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .btn:hover, .btn:focus, .btn:active, .btn.active { outline: 0 !important; text-decoration: none !important; box-shadow: none !important; background: #ff940c; border: none; }

.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .open &gt; .btn-primary.dropdown-toggle.focus, .open &gt; .btn-primary.dropdown-toggle:focus, .open &gt; .btn-primary.dropdown-toggle:hover { color: #fff; background-color: #ff940c; border-color: transparent; border: none; }

.btn-secondary, .btn-tertiary, .btn-primary { text-transform: inherit;/*capitalize;*/ font-weight: 400; font-size: 14px; border: none; color: white; line-height: 25px; box-shadow: none; padding: 5px 20px; border-radius: 3px; background: #282828; }
.btn-secondary:hover, .btn-tertiary:hover, .btn-primary:hover { background: #ff940c; border-color: #ff940c; color: white; border: none; }

.btn-secondary:hover, .btn-tertiary:hover, .btn-primary.focus, .btn-primary:focus, .btn-primary:hover { color: white; background-color: #ff940c; border-color: transparent; border: none; }

a { color: #282828; -webkit-transition: all 300ms ease; -moz-transition: all 300ms ease; -o-transition: all 300ms ease; transition: all 300ms ease; }

.img-responsive { display: block; max-width: 100%; height: auto; }

button, html [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: none; }

/* edit from here */
.ui-menu .ui-menu-item a.ui-state-focus, .ui-menu .ui-menu-item a { font-size: 14px; }

.ui-menu .ui-menu-item a.ui-state-focus, .ui-menu .ui-menu-item a.ui-state-active { margin: 0; background: none; border: 0; color: #ff940c; cursor: pointer; }

button { -webkit-transition: all 300ms ease; -moz-transition: all 300ms ease; -ms-transition: all 300ms ease; -o-transition: all 300ms ease; transition: all 300ms ease; }

.product-flag { margin: 0; }

/* edit theme */
*:focus { outline: none !important; }

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

ol, ul, dl { margin: 0; padding: 0; }

i, cite, em, var, address, dfn { font-style: normal; }

body { font-family: 'Montserrat', sans-serif; font-size: 14px; background: white; line-height: 24px; color: #777777; }/*AAB 'Open Sans'**/

p { font-size: 14px; color: #777777; margin: 0; }

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 { font-size: 16px; /*text-transform: capitalize;*/ color: #1f1f1f;/*#282828;*/ font-weight: 500; }

.unvisible, .headerSpace { display: none; }

/* custom page */
.card { box-shadow: none; border: none; padding: 0; text-align: justify; }

.page-header h1, .card-block h1 { color: #282828; text-align: left; font-size: 20px; font-style: normal; text-transform: none; border-bottom: 1px solid #e9e9e9; margin-bottom: .8em; padding-bottom: .5em; }

.page-content.page-cms { padding: 1.25rem 0; }

.contact-form { padding: 0 0 0 50px; color: #282828; border-left: 1px solid #e9e9e9; }

.form-control { background-color: white; color: #282828; border: 1px solid #e9e9e9; font-size: 14px; }

.form-control:focus { color: #282828; border-color: #282828; }

.form-control:focus, .input-group.focus { outline: 0; }

.input-group .input-group-btn &gt; .btn[data-action=show-password]:hover { background: #ff940c; }

.form-control-label { font-size: 14px; text-align: left; color: #282828; }

.input-group .input-group-btn &gt; .btn { padding: .67rem 1rem; }

.sitemap h2 { color: #282828; text-transform: capitalize; font-size: 16px; font-weight: 700; border-bottom: 1px solid #e9e9e9; }

.sitemap ul li { font-size: 14px; }
.sitemap ul li:before { content: "\f105"; font-family: "Font Awesome 5 Free"; font-size: 14px; display: inline-block; margin-right: 5px; }

#stores .page-stores { width: 100%; }

#stores .page-stores .store-item { padding: 0; }

#stores .page-stores .store-item-container { border-bottom: 1px solid rgba(161, 161, 161, 0.25); }
#stores .page-stores .store-item-container .h3.card-title { font-size: 16px; color: #282828; text-transform: capitalize; }

#stores .page-stores .store-item-container .store-description { font-size: 14px; color: #666; }

#stores .page-stores .store-item-container ul { margin-bottom: 0; font-size: 14px; }

#stores .page-stores .store-item-container .divide-left { border-left: 1px solid rgba(161, 161, 161, 0.25); }

.page-addresses .address, .page-authentication #content { box-shadow: none; background: #fff; border: 1px solid #e9e9e9; }

.page-authentication #content { max-width: 100%; }

.page-customer-account #content { box-shadow: none; border: 1px solid #e9e9e9; font-size: 14px; color: #282828; }

.page-customer-account #content .no-account { text-align: center; font-size: 14px; }

.custom-checkbox input[type=checkbox] + span { margin-top: 5px; }

.label, label { font-size: 14px; color: #282828; }

.page-my-account #content .links a span.link-item { box-shadow: none; border: 1px solid #e9e9e9; font-size: 14px; }

.separator { border-color: #d9d9d9; }

.cart-summary, #js-checkout-summary { border: 1px solid #e9e9e9; }

.cart-summary-line .label, .cart-summary .label, .cart-summary-line.cart-summary-subtotals .label, .cart-summary-line.cart-summary-subtotals .value { text-transform: capitalize; font-weight: 600; }

.cart-summary-line .value { color: #282828; font-weight: 600; font-size: 16px; }

.cart-summary-products p { font-weight: 600; }

.cart-grid-body .card-block { padding: 0; }

.cart-item { border-bottom: 1px solid #e9e9e9; padding: 1rem 0;}

body#checkout section.checkout-step { box-shadow: none; border-bottom: 1px solid #e9e9e9; }

body#checkout section.checkout-step .step-title { text-transform: capitalize; }

.checkout-inner { border: 1px solid #e9e9e9; }

.block-reassurance-item .h6 { font-size: 14px; }

#block-reassurance li { border-bottom: 1px solid #e9e9e9; }

/* end custom page */
@media (min-width: 992px) { .container { max-width: 970px; padding-left: 0; padding-right: 0; } }
@media (min-width: 1200px) { .container-fluid { padding-left: 80px; padding-right: 80px; }
  .container { max-width: 1170px; padding-left: 0; padding-right: 0; } }
.container { width: auto; }

main { overflow: hidden; }

#wrapper { margin: 0; background: transparent; box-shadow: none; padding-top: 30px; padding-bottom: 10px; }
#wrapper #main .page-footer { margin: 0; }

#index #wrapper { padding-top: 0; }

.back-top { display: block; position: fixed; left: 25px; bottom: 25px; z-index: 3; }
.back-top a { background: #ff940c; color: white; width: 50px; height: 50px; line-height: 50px; border-radius: 3px; box-shadow: 0 0 3px #fff; display: block; text-align: center; text-decoration: none; -webkit-transition: all 500ms ease-in-out; -moz-transition: all 500ms ease-in-out; -o-transition: all 500ms ease-in-out; transition: all 500ms ease-in-out; }
.back-top a:after { content: "\f062"; font-family: "Font Awesome 5 Free"; font-size: 25px; font-weight: 900; }
.back-top a:hover { box-shadow: 0 0 20px #fff !important; background: #282828; }

/* ===== edit theme ======== */
#header &gt; div.header-bottom.scroll-menu.animated.fadeInDown {background-color: #ff940c; /**AAB**/}
@media (min-width: 992px) { #header .header-bottom.scroll-menu { position: fixed; top: 0; left: 0; width: 100%; z-index: 1001; padding: 10px 0; background: rgba(255, 255, 255, 0.8); border: none; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4); -moz-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4); box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4); }
  #header .header-bottom.scroll-menu:hover { background: #ff940c;/*white;*/ -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; } }
#header { position: relative; z-index: 9; background: white; }
@media (max-width: 767px) { #header { text-align: center; } }
#header .header-nav { background: #212121;/*AAB#282828*/ padding: 10px 0; margin: 0; border-bottom: solid 1px #777777; }
@media (max-width: 991px) { #header .header-nav { text-align: center; } }
#header .header-top { padding: 25px 0; /**AAB**/ background-color: #212121;}
@media (max-width: 991px) { #header .header-top { padding: 20px 0 15px 0; text-align: center; } }
@media (max-width: 767px) { #header .header-top { /*background: transparent;*/ padding-bottom: 0; } }
@media (min-width: 992px) { #header .header-top .row { margin: 0; display: table; vertical-align: middle; width: 100%; }
  #header .header-top .row .col { padding: 0; display: table-cell; vertical-align: middle; float: none; }
  #header .header-top .row .col.header_logo { padding-right: 30px; } }
#header .header-top .header_logo img { margin: 0; }
@media (max-width: 991px) { #header .header-top .header_logo img { margin: auto; margin-bottom: 20px; } }
#header .header-bottom { position: relative; background: #ff940c; padding-top: .75em; padding-bottom: .75em;}
#header .header-bottom .display_bottom { /*padding-top: 6px;*/ }
@media (max-width: 991px) { #header .header-bottom .display_bottom { padding-top: 0; text-align: center; } }

#index .header-bottom { background: #ff940c; padding-top: .75em; padding-bottom: .75em; /*margin-bottom: 30px;*/ }

/* item product */
.pos_title { position: relative; display: block; border-bottom: 1px solid #e9e9e9; margin-bottom: 50px; text-align: center; }
.pos_title h1 { margin: 0; position: relative; z-index: 1; color: #222222; font-size: 20px; font-weight: 600; line-height: 1; padding-bottom: 35px; display: inline-block; text-transform: uppercase; }
.pos_title h1:before { content: ""; width: 170px; height: 2px; background: #ff940c; position: absolute; left: 50%; margin-left: -85px; bottom: -1px; }

.owl-carousel .owl-stage-outer:after { content: ""; position: absolute; right: 0; top: 0; width: 1px; height: 100%; background: white; }

.js-product-miniature { position: relative; background: white; text-align: center; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; margin-bottom: 50px; }
.js-product-miniature:last-child { margin-bottom: 0; }
.js-product-miniature .item-inner { position: relative; }
.js-product-miniature .item-inner:before { content: ""; border-left: 1px solid #ebebeb; position: absolute; right: -15px; bottom: 0; top: 0; }
.js-product-miniature .manufacturer a { font-size: 12px; text-transform: capitalize; color: #999999; line-height: 1; margin-bottom: 15px; display: block; }
.js-product-miniature .manufacturer a:hover { color: #ff940c; }
.js-product-miniature h1 { font-weight: 400; margin: 0; line-height: 1; }
.js-product-miniature .product_name { line-height: 20px; display: block; overflow: hidden; color: #282828; font-size: 14px; margin-bottom: 15px; }
.js-product-miniature .product_name:hover { color: #ff940c; }
.js-product-miniature .add-to-links { display: inline-block; box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.15); }
.js-product-miniature .add-to-links li { float: left; height: 46px; overflow: hidden; border-left: 1px solid #e9e9e9; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.js-product-miniature .add-to-links li:first-child { border: none; }
.js-product-miniature .add-to-links li a { display: inline-block; background: white; color: #282828; padding: 0; border: none; line-height: 46px; height: 46px; width: 46px; padding: 0; font-size: 0; text-align: center; text-transform: capitalize; }
.js-product-miniature .add-to-links li a:before { font-size: 14px; font-family: 'Font Awesome 5 Free'; font-weight: 900; display: block; -moz-transform: translateY(50%); -webkit-transform: translateY(50%); -o-transform: translateY(50%); -ms-transform: translateY(50%); transform: translateY(50%); }
.js-product-miniature .add-to-links li a:hover { background: #ff940c; color: white; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.js-product-miniature .add-to-links li a.quick_view:before { content: "\f06e"; }
.js-product-miniature .add-to-links li a.addToWishlist:before { content: "\f004"; }
.js-product-miniature .add-to-links li.cart button.ajax_add_to_cart_button, .js-product-miniature .add-to-links li.cart span.ajax_add_to_cart_button { display: inline-block; background: white; color: #282828; font-size: 0; font-weight: 500; padding: 0; border: none; line-height: 46px; height: 46px; width: 46px; padding: 0; cursor: pointer; text-transform: uppercase; }
.js-product-miniature .add-to-links li.cart button.ajax_add_to_cart_button i, .js-product-miniature .add-to-links li.cart span.ajax_add_to_cart_button i { font-size: 14px; margin-right: 5px; display: none; }
.js-product-miniature .add-to-links li.cart button.ajax_add_to_cart_button:before, .js-product-miniature .add-to-links li.cart span.ajax_add_to_cart_button:before { content: "\f291"; font-size: 14px; font-family: 'Font Awesome 5 Free'; font-weight: 900; display: block; -moz-transform: translateY(50%); -webkit-transform: translateY(50%); -o-transform: translateY(50%); -ms-transform: translateY(50%); transform: translateY(50%); }
.js-product-miniature .add-to-links li.cart button.ajax_add_to_cart_button.disabled, .js-product-miniature .add-to-links li.cart span.ajax_add_to_cart_button.disabled { opacity: 0.5; }
.js-product-miniature .add-to-links li.cart button.ajax_add_to_cart_button:hover, .js-product-miniature .add-to-links li.cart span.ajax_add_to_cart_button:hover { background: #ff940c; color: white; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.js-product-miniature .img_block { position: relative; overflow: hidden; margin-bottom: 30px; }
.js-product-miniature .img_block img { width: 100%; margin: 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; }
.js-product-miniature .img_block .box-hover { position: absolute; top: 50%; margin-top: 10px; opacity: 0; left: 0; right: 0; -moz-transform: translateY(-50%); -webkit-transform: translateY(-50%); -o-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.js-product-miniature:hover .box-hover { margin: 0; opacity: 1; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.js-product-miniature:hover .box-hover .add-to-links li button.ajax_add_to_cart_button:before, .js-product-miniature:hover .box-hover .add-to-links li span.ajax_add_to_cart_button:before, .js-product-miniature:hover .box-hover .add-to-links li a:before { -moz-transform: translateY(0px); -webkit-transform: translateY(0px); -o-transform: translateY(0px); -ms-transform: translateY(0px); transform: translateY(0px); }
.js-product-miniature:hover .box-hover .add-to-links li:nth-child(2) a:before { -webkit-transition: all 500ms linear; -moz-transition: all 500ms linear; -ms-transition: all 500ms linear; -o-transition: all 500ms linear; transition: all 500ms linear; }
.js-product-miniature:hover .box-hover .add-to-links li:nth-child(1) button.ajax_add_to_cart_button:before, .js-product-miniature:hover .box-hover .add-to-links li span.ajax_add_to_cart_button:before, .js-product-miniature:hover .box-hover .add-to-links li a:before { -webkit-transition: all 400ms linear; -moz-transition: all 400ms linear; -ms-transition: all 400ms linear; -o-transition: all 400ms linear; transition: all 400ms linear; }
.js-product-miniature:hover .box-hover .add-to-links li:nth-child(3) a:before { -webkit-transition: all 600ms linear; -moz-transition: all 600ms linear; -ms-transition: all 600ms linear; -o-transition: all 600ms linear; transition: all 600ms linear; }
.js-product-miniature .product_desc { background: white; overflow: hidden; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.js-product-miniature .product_desc .hook-reviews { display: none; line-height: 1; margin-top: 15px; position: relative; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.js-product-miniature .product_desc .hook-reviews .comments_note { direction: ltr !important; text-align: left; display: inline-block; position: relative; }
.js-product-miniature .product_desc .hook-reviews .star_content { display: inline-block; vertical-align: bottom; }
.js-product-miniature .product_desc .hook-reviews .nb-comments { font-size: 12px; display: none; }
.js-product-miniature .product_desc .product-desc { display: none; margin-bottom: 20px; font-size: 14px; color: #777777; line-height: 18px; }
.js-product-miniature .product_desc .product-desc p { font-size: 14px; color: #777777; line-height: 18px; margin: 0; }
.js-product-miniature .product_desc .product-desc p span { font-family: 'Montserrat', sans-serif !important; font-size: 14px !important; color: #777777 !important; }/*AAB Open Sans*/
.js-product-miniature .product_desc .variant-links { margin-top: 15px; margin-top: 15px; background: transparent; padding: 0; min-height: auto; text-align: left; display: none; }
.js-product-miniature .product_desc .variant-links a { margin: 0 5px 0 0; margin: 0 5px 0 0; border-radius: 100%; width: 15px; height: 15px; }

.js-product-miniature .product-price-and-shipping { line-height: 1; }
.js-product-miniature .product-price-and-shipping .sr-only { display: none; }
.js-product-miniature .product-price-and-shipping .price { font-size: 18px; font-weight: 600; color: #ff940c; display: inline-block; margin-bottom: 5px; }
.js-product-miniature .product-price-and-shipping .regular-price { font-size: 14px; color: #999999; font-weight: 400; text-decoration: line-through; margin-right: 5px; }

.product-price-and-shipping .discount-product { display: inline-block; background: #ff940c;/*#bd0018;*/ color: white; border-radius: 3px; padding: 0 5px; text-align: center; line-height: 24px; height: 24px; font-size: 18px; font-weight: 700; text-transform: uppercase; margin-left: 5px; }

.product-flag .new, .product-flag .on-sale, .product-flag .pack { position: absolute; top: 23px !important; left: 23px; display: inline-block; background: #ff940c; color: white; border-radius: 2px; padding: 0 5px; min-width: 50px; text-align: center; line-height: 23px; height: 23px; font-size: 12px; font-weight: 400; text-transform: uppercase; display: none; }

.product-flag .pack { z-index: 2; }

.product-flag .on-sale { right: 23px; left: auto; background: #f35833; display: block; }

.product-flag .discount { display: none; }

.owl-dots { text-align: center; margin-top: 50px; line-height: 1; }
.owl-dots .owl-dot { display: inline-block; margin: 0 5px; }
.owl-dots .owl-dot:last-child { margin-right: 0; }
.owl-dots .owl-dot span { display: inline-block; width: 10px; height: 10px; border-radius: 10px; background: #d3d3d3; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.owl-dots .owl-dot span:hover { background: #ff940c; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.owl-dots .owl-dot.active span { background: #ff940c; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }

.owl-nav &gt; div { position: absolute; top: 50%; -moz-transform: translateY(-50%); -webkit-transform: translateY(-50%); -o-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); display: inline-block; font-size: 0; cursor: pointer; text-align: center; width: 36px; height: 36px; border-radius: 3px; line-height: 36px; background: #efefef; color: #c6c6c6; z-index: 1; opacity: 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; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
@media (max-width: 991px) { .owl-nav &gt; div { display: none; } }
.owl-nav &gt; div:before { font-weight: 900; font-family: "Font Awesome 5 Free"; font-size: 14px; display: block; }
.owl-nav &gt; div:hover { -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; background: #ff940c; color: white; }
.owl-nav &gt; div.owl-prev { left: 15px; }
.owl-nav &gt; div.owl-prev:before { content: "\f053"; }
.owl-nav &gt; div.owl-next { right: 15px; }
.owl-nav &gt; div.owl-next:before { content: "\f054"; }

.pos_content { position: relative; margin: 0 -15px; }
.pos_content:hover .owl-nav &gt; div { opacity: 1; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.pos_content:hover .owl-nav &gt; div.owl-prev { left: 0; }
.pos_content:hover .owl-nav &gt; div.owl-next { right: 0; }
.pos_content .js-product-miniature img, .pos_content .thumb-category img, .pos_content .item_logo img, .pos_content .thumb-container img { display: none; }
.pos_content .owl-item .js-product-miniature img, .pos_content .owl-item .thumb-category img, .pos_content .owl-item .item_logo img, .pos_content .owl-item .thumb-container img { display: block; }

.tab-manufacturers-container-slider, .recommended-product, .pos-featured-products, .categoryproducts, .product-accessories, .pos-bestsellers-product, .poslistcateproduct, .tab-category-container-slider, .tab-category-container-slider2, .pos_new_product, .product-tabs-container-slider, .pos-special-products, .pos_random_product, .poslistcategories, .home_blog_post_area, .testimonials_container, .recommended-product { margin-bottom: 80px; position: relative; display: inline-block; width: 100%; background: white; }
@media (max-width: 767px) { .tab-manufacturers-container-slider, .recommended-product, .pos-featured-products, .categoryproducts, .product-accessories, .pos-bestsellers-product, .poslistcateproduct, .tab-category-container-slider, .tab-category-container-slider2, .pos_new_product, .product-tabs-container-slider, .pos-special-products, .pos_random_product, .poslistcategories, .home_blog_post_area, .testimonials_container, .recommended-product { margin-bottom: 40px	!important; } }

.position { background: #f0eff5; padding-top: 80px; margin-bottom: 80px; }
@media (max-width: 767px) { .position { padding-top: 40px; margin-bottom: 40px; } }

/* end item product */
/* selector */
.selector-block { float: left; padding: 0 15px; line-height: 1; }
@media (max-width: 991px) { .selector-block { display: inline-block; float: inline-start;/*none;*/ } }
.selector-block:first-child { border: none; padding-left: 0; }
.selector-block .selector-label { color: #999999; line-height: 16px; text-transform: capitalize; font-size: 14px; margin-right: 5px; display: none; }
.selector-block .localiz_block { margin: 0 !important; display: inline-block; }
.selector-block .localiz_block:hover button, .selector-block .localiz_block:hover .current-block { color: white; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.selector-block .localiz_block:hover button .expand-more, .selector-block .localiz_block:hover .current-block .expand-more { -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; color: white; }
.selector-block .localiz_block button, .selector-block .localiz_block .current-block { font-weight: 400; color: #999999; background: transparent; text-shadow: none; cursor: pointer; line-height: 22px; font-size: 14px; display: inline-block; text-transform: capitalize; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.selector-block .localiz_block button .expand-more, .selector-block .localiz_block .current-block .expand-more { color: #999999; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.selector-block .localiz_block button i, .selector-block .localiz_block .current-block i { font-size: 14px; vertical-align: -3px; }
.selector-block .localiz_block button img, .selector-block .localiz_block .current-block img { margin-right: 5px; vertical-align: -1px; }
.selector-block .localiz_block .dropdown-menu { margin: 0; top: 32px; right: 0; left: auto; min-width: 7rem; overflow: hidden; padding: 10px; background: white; border-radius: 0; border: none; -webkit-box-shadow: 0 0 7.2px 0.8px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0 0 7.2px 0.8px rgba(0, 0, 0, 0.1); box-shadow: 0 0 7.2px 0.8px rgba(0, 0, 0, 0.1); }
.selector-block .localiz_block .dropdown-menu li { padding: 0; margin-bottom: 2px; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.selector-block .localiz_block .dropdown-menu li:last-child { margin-bottom: 0; }
.selector-block .localiz_block .dropdown-menu li .dropdown-item { padding: 0 10px; color: #636363; line-height: 22px; font-size: 14px; }
.selector-block .localiz_block .dropdown-menu li .dropdown-item img { display: inline-block; margin-right: 5px; vertical-align: -2px; }
.selector-block .localiz_block .dropdown-menu li.current .dropdown-item { color: white; background: #ff940c; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.selector-block .localiz_block .dropdown-menu li:hover .dropdown-item { color: white; background: #ff940c; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }

@media (min-width: 992px) { .user-info-block { float: right; padding-right: 0; border: none; } }
.user-info-block .localiz_block button, .user-info-block .localiz_block .current-block { text-transform: capitalize; }
.user-info-block .localiz_block button .icon.icon-Settings, .user-info-block .localiz_block .current-block .icon.icon-Settings { font-size: 16px; vertical-align: -2px; margin-right: 5px; }

.user_info_desktop { float: right; line-height: 1; }
.user_info_desktop li { display: inline-block; line-height: 1; }
.user_info_desktop li:last-child a { padding-right: 0; }
.user_info_desktop li a { color: #999999; font-size: 14px; line-height: 16px; text-transform: capitalize; padding: 0 20px; position: relative; }
.user_info_desktop li a:hover { color: white; }
.user_info_desktop li a:hover i { left: -5px; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.user_info_desktop li a i { position: absolute; top: 0; left: 0; display: block; font-size: 14px; color: white; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }

/* end selector */
/* wishlist block */
.wishtlist_Top { float: right; margin-right: 20px; }
@media (max-width: 767px) { .wishtlist_Top { float: none; display: inline-block; margin: 0 10px 0 0; } }
@media (max-width: 479px) { .wishtlist_Top { width: 100%; margin: 0; } }
.wishtlist_Top a { width: 50px; height: 50px; line-height: 50px; color: #ff940c; position: relative; text-align: center; display: inline-block; }
.wishtlist_Top a i { font-weight: 400; font-size: 20px; vertical-align: -3px; }
.wishtlist_Top a .cart-wishlist-number { position: absolute; top: 8px; right: 8px; display: block; overflow: hidden; font-weight: 500; color: white; font-size: 14px; line-height: 1; }

/* end wishlist block */
/* module contact */
.block-contact-top { position: relative; float: left; }
@media (max-width: 991px) { .block-contact-top { float: none; display: inline-block; margin-top: 10px; } }
.block-contact-top:before { content: '\f58f'; font-size: 34px; font-weight: 900; display: inline-block; font-family: 'Font Awesome 5 Free'; vertical-align: middle; margin-top: 7px; margin-right: 15px; color: #ff940c; float: left; }
.block-contact-top .contact_cms { overflow: hidden; text-align: left; }
.block-contact-top .contact_cms span { text-transform: capitalize; font-size: 14px; line-height: 20px; font-weight: 400; color: #777777; display: block; }
.block-contact-top .contact_cms span.cms2 { color: #282828; font-weight: 700; }

/* end module contact */
/* module user-info */
.user_info_top { float: right; font-size: 0; }
@media (max-width: 767px) { .user_info_top { width: 100%; display: inline-block; float: none; } }
.user_info_top &gt; li { display: inline-block; vertical-align: top; margin: 0 5px; line-height: 1; }
.user_info_top &gt; li:last-child a { border: none; }
.user_info_top &gt; li a { display: inline-block; overflow: hidden; float: left; line-height: 35px; padding: 0 15px 0 30px; font-size: 14px; position: relative; color: #282828; }
.user_info_top &gt; li a i { position: absolute; top: 0; left: 3px; display: block; font-size: 14px; line-height: 35px; color: #999999; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.user_info_top &gt; li a:hover { color: #ff940c; }
.user_info_top &gt; li a:hover i { left: 7px; color: #ff940c; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }

/* end module user-info */
/* module megamenu */
.megamenu { position: relative; z-index: 1; }

.pt_custommenu { position: relative; float: right; }
.pt_custommenu .pt_menu { float: left; position: relative; }
.pt_custommenu .pt_menu .parentMenu a { display: block; line-height: 30px; padding: 5px 13px; height: 40px; font-size: 16px; font-weight: 400; color: #fff;/*#282828;*/ background: transparent; /*text-transform: uppercase;*/ position: relative; position: relative; z-index: 9; }
@media (max-width: 1199px) { .pt_custommenu .pt_menu .parentMenu a { padding: 5px 10px; font-size: 14px; } }
.pt_custommenu .pt_menu .parentMenu a i { font-size: 14px; padding: 0 0 0 9px; color: #282828; vertical-align: -1px; }
.pt_custommenu .pt_menu.act .parentMenu a, .pt_custommenu .pt_menu.active .parentMenu a { color: #ff940c; }
.pt_custommenu .pt_menu:first-child .parentMenu a { padding-left: 0; }
.pt_custommenu .pt_menu .popup { position: absolute; background: white; border: 2px solid #eeeeee; padding: 30px 20px; z-index: 10; text-align: left; left: 50% !important; -moz-transform: translateX(-50%); -webkit-transform: translateX(-50%); -o-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); /* The white fill of the triangle */ }
.pt_custommenu .pt_menu .popup:before, .pt_custommenu .pt_menu .popup:after { content: ""; position: absolute; border-left: 12px solid transparent; border-right: 12px solid transparent; top: -10px; left: 50%; margin-left: -6px; }
.pt_custommenu .pt_menu .popup:before { border-bottom: 12px solid #eeeeee; }
.pt_custommenu .pt_menu .popup:after { border-bottom: 12px solid white; z-index: 1; margin-top: 2px; }
.pt_custommenu .pt_menu .popup .cms_mega a img { -webkit-transition: all 1700ms ease; -moz-transition: all 1700ms ease; -o-transition: all 1700ms ease; transition: all 1700ms ease; }
.pt_custommenu .pt_menu .popup .cms_mega a:hover img { -webkit-transform: scale(1.07); -moz-transform: scale(1.07); -ms-transform: scale(1.07); -o-transform: scale(1.07); transform: scale(1.07); }
.pt_custommenu .pt_menu .popup .block1 { overflow: hidden; float: left; }
.pt_custommenu .pt_menu .popup .block1 .column { float: left; width: 200px; margin-right: 30px; margin-bottom: -99999px; padding-bottom: 99999px; border-right: 1px solid #e9e9e9; }
.pt_custommenu .pt_menu .popup .block1 .column.last { margin-right: 0; border: none; }
.pt_custommenu .pt_menu .popup .block1 .column .itemMenuName { color: #282828; line-height: 35px; text-transform: capitalize; font-weight: 500; font-size: 14px; display: block; }
.pt_custommenu .pt_menu .popup .block1 .column .itemMenuName:hover { color: #ff940c; }
.pt_custommenu .pt_menu .popup .block1 .column .itemSubMenu { padding: 0; }
.pt_custommenu .pt_menu .popup .block1 .column .itemSubMenu .itemMenuName { color: #7a7a7a; text-transform: capitalize; line-height: 30px; font-weight: 400; font-size: 14px; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.pt_custommenu .pt_menu .popup .block1 .column .itemSubMenu .itemMenuName:hover { color: #ff940c; padding-left: 10px; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }

.pt_custommenu_mobile { text-align: left; position: relative; clear: both; }
.pt_custommenu_mobile .navbar { min-height: 40px; margin: 0; border: 0; position: relative; overflow: hidden; background: #282828; padding: 0 15px; overflow: hidden; cursor: pointer; }
.pt_custommenu_mobile .navbar .navbar-inner .btn-navbar { display: block; overflow: hidden; margin: 0; color: #fff; font-size: 16px; font-weight: 600; letter-spacing: 0.025em; text-transform: uppercase; line-height: 40px; }
.pt_custommenu_mobile .navbar .navbar-inner .btn-navbar:after { display: block; position: absolute; top: 0; right: 0; width: 40px; height: 40px; text-align: center; color: #282828;/*#fff;*/ font-size: 15px; font-weight: 400; font-family: "Font Awesome 5 Free"; cursor: pointer; font-weight: 900; }
.pt_custommenu_mobile .navbar .navbar-inner.navbar-inactive .btn-navbar:after { content: "\f078"; /*content: "\f03a";*/ }
.pt_custommenu_mobile .navbar .navbar-inner.navbar-active .btn-navbar:after { content: "\f077"; /*content: "\f03a";*/}

ul#pt_custommenu_itemmobile { overflow: hidden; margin: 0 0 15px; padding: 0; }
ul#pt_custommenu_itemmobile li { height: 40px; cursor: pointer; list-style-type: none; margin: 0; padding: 0 10px; display: block; position: relative; border-bottom: 1px solid rgba(40, 40, 40, 0.1);/**255*/ }
ul#pt_custommenu_itemmobile li:last-child { border: 0; }
ul#pt_custommenu_itemmobile li a { line-height: 45px; color: #282828; /*#fff;*/ text-transform: capitalize; text-decoration: none; font-size: 15px; font-weight: 400; }
ul#pt_custommenu_itemmobile li a:hover { color: #ff940c; }
ul#pt_custommenu_itemmobile li .grower { position: absolute; top: 0; right: 0; }
ul#pt_custommenu_itemmobile li .grower a:after { display: block; width: 45px; height: 45px; text-align: center; color: #fff; font-size: 14px; font-weight: 400; font-family: "Font Awesome 5 Free"; content: "\f055"; font-weight: 900; }
ul#pt_custommenu_itemmobile li .grower.active a:after { content: "\f056"; }

/* end module megamenu */
/* module vegamenu */
.navleft-container { position: relative; z-index: 9; }
.navleft-container .pt_vmegamenu_title { position: relative; cursor: pointer; padding: 10px 10px 10px 10px; height: 48px;/*52px*/ /*border: 2px solid #eeeeee;*/background-color: #fff; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; }
#header &gt; div.header-bottom &gt; div &gt; div &gt; div.col-lg-3.col-md-12.col-xs-12 &gt; div &gt; div { text-align: center; }
@media (max-width: 1199px) { .navleft-container .pt_vmegamenu_title { padding-left: 35px; } }
.navleft-container .pt_vmegamenu_title:before { display: none;/*inline-block;*/ content: "\f0c9"; font-size: 16px; padding: 0 10px 0 0; color: #282828; font-family: 'Font Awesome 5 Free'; font-weight: 900; vertical-align: 9px; line-height: 1; }
.navleft-container .pt_vmegamenu_title:after { display: none;/*inline-block;*/ content: "\f078"; font-size: 14px; padding: 0 0 0 15px; color: #282828; font-family: 'Font Awesome 5 Free'; font-weight: 900; vertical-align: 6px; line-height: 1; }
.navleft-container .pt_vmegamenu_title h2 { margin: 0; color: #282828; padding: 0; text-transform: capitalize; font-size: 15px; font-weight: 700; overflow: hidden; line-height: 28px; display: inline-block; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.navleft-container .pt_vmegamenu_title h2 i { display: none; }
.navleft-container .pt_vmegamenu { display: none; width: 100%; background: #fff; border-top: none; padding: 0; position: absolute; top: 100%; left: 0; z-index: 9; border: 2px solid #eeeeee; border-radius: 3px; /* The white fill of the triangle */ }
.navleft-container .pt_vmegamenu:before, .navleft-container .pt_vmegamenu:after { content: ""; position: absolute; border-left: 16px solid transparent; border-right: 16px solid transparent; top: -14px; left: 50%; margin-left: -8px; }
.navleft-container .pt_vmegamenu:before { border-bottom: 16px solid #eeeeee; }
.navleft-container .pt_vmegamenu:after { border-bottom: 16px solid white; z-index: 1; margin-top: 2px; }
/*.navleft-container .pt_vmegamenu .pt_menu { position: relative; }*/
.navleft-container .pt_vmegamenu .pt_menu:last-child .parentMenu a { border-bottom: none; }
.navleft-container .pt_vmegamenu .pt_menu:hover .wrap-popup { opacity: 1; }
.navleft-container .pt_vmegamenu .pt_menu:not(.noSub):after { display: block; position: absolute; top: 0; right: 25px; line-height: 48px; /*content: "\f054";*/ font-size: 10px; color: #777777; font-weight: 900; font-family: "Font Awesome 5 Free"; background: transparent; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.navleft-container .pt_vmegamenu .pt_menu.pt_menu_cms:after { display: none; }
.navleft-container .pt_vmegamenu .pt_menu.active .parentMenu a, .navleft-container .pt_vmegamenu .pt_menu:hover:not(.noSub):after { color: #ff940c; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.navleft-container .pt_vmegamenu .pt_menu.active .parentMenu a { padding-left: 20px; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.navleft-container .pt_vmegamenu .pt_menu .parentMenu { padding: 0 20px; }
.navleft-container .pt_vmegamenu .pt_menu .parentMenu a { position: relative; display: block; overflow: hidden; line-height: 48px; word-wrap: break-word; background: white; color: #555555; padding: 0 10px; border-bottom: 1px solid #d9d9d9; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; font-size: 14px; font-weight: 400; }
.navleft-container .pt_vmegamenu .pt_menu .parentMenu a .cate-thumb { float: left; width: 40px; margin-right: 10px; padding: 0; border-right: 1px solid #e9e9e9; }
@media (max-width: 1199px) { .navleft-container .pt_vmegamenu .pt_menu .parentMenu a .cate-thumb { display: none; } }
.navleft-container .pt_vmegamenu .pt_menu .parentMenu a.view_more { cursor: pointer; }
.navleft-container .pt_vmegamenu .pt_menu .parentMenu a.view_more:before { display: none; }
.navleft-container .pt_vmegamenu .pt_menu .parentMenu a.view_more:hover { color: #ff940c; padding-left: 20px; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.navleft-container .pt_vmegamenu .pt_menu .parentMenu a.view_more i { margin-right: 5px; font-size: 20px; display: inline-block; width: 40px; text-align: center; margin-right: 10px; display: none; }
.navleft-container .pt_vmegamenu .pt_menu.act:after, .navleft-container .pt_vmegamenu .pt_menu.active:after { color: #ff940c; }
.navleft-container .pt_vmegamenu .pt_menu.act .parentMenu a, .navleft-container .pt_vmegamenu .pt_menu.active .parentMenu a { color: #ff940c; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup { position: absolute; top: 0; left: 100%; z-index: 1; opacity: 0; width: 860px; }
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup { display: none; position: absolute; top: 0 !important; left: 0 !important; width: auto !important; box-shadow: none; border: 2px solid #eeeeee; border-radius: 3px; /* The white fill of the triangle */ }
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup:before, .navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup:after { content: ""; position: absolute; border-top: 12px solid transparent; border-bottom: 12px solid transparent; top: 11px; left: -12px; }
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup:before { border-right: 12px solid #eeeeee; }
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup:after { border-right: 12px solid white; z-index: 1; margin-left: 2px; }
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup { background: #fff; padding: 20px; float: left; overflow: hidden; }
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column { max-width: 269px; padding: 0 15px; margin-bottom: -99999px; padding-bottom: 99999px; }
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemMenuName { color: #3c3c3c; line-height: 22px; font-weight: 600; font-size: 14px; display: block; }
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemMenuName:hover { color: #ff940c; }
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemMenuName.nochild { color: #666; font-weight: 400; font-size: 14px; }
#pt_vmegamenu &gt; div:last-child{ display: none; } 
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemMenuName.nochild:hover { color: #ff940c; }
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemSubMenu { padding-bottom: 20px; }
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemSubMenu .itemMenuName { color: #666; text-transform: capitalize; font-weight: 400; font-size: 14px; }
/*.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemSubMenu .itemMenuName:before { content: "\f0c8"; display: block; line-height: 35px; float: left; padding: 0 7px 0 1px; font-family: "Font Awesome 5 Free"; font-size: 14px; font-weight: 400; }*/
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemSubMenu .itemMenuName:hover { color: #ff940c; }
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemSubMenu .itemMenuName:after { display: none; }
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column.last { padding-right: 0; border: 0; }
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column.blockright { width: 300px; }
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .block1 { overflow: hidden; }
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .block2 { display: inline-block; width: 100%; margin-top: 20px; }

/* end module vegamenu */
/* module search category */
#pos_search_top { padding: 0; position: relative; }
#pos_search_top .form_search { padding: 0; position: relative; width: 100%; float: left; height: 50px; color: #a9a9a9; }
#pos_search_top .form_search label { display: none; }
#pos_search_top .form_search .search-block { height: 50x; line-height: 50px; }
#pos_search_top .form_search .form-control { padding: 10px 60px 10px 180px; width: 100%; height: 50px; font-size: 14px; background: white; color: #c2c2c2; border: none; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; }
#pos_search_top .form_search .form-control:focus { box-shadow: none; }
@media (max-width: 479px) { #pos_search_top .form_search .form-control { padding-right: 0; } }
#pos_search_top .form_search .search_submit { position: absolute; top: 0; right: 0; height: 50px; line-height: 50px; text-align: center; width: 50px; text-align: center; color: #232f3e; background: #ff940c; padding: 0; border: 0; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
#pos_search_top .form_search .search_submit .icon { font-size: 20px; display: inline-block; vertical-align: middle; }
#pos_search_top .form_search .search_submit:hover { background: #f26522; color: white; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
#pos_search_top .form_search .form-group { position: absolute; left: 1px; top: 1px; display: inline-block; width: 150px; margin: 0; background: transparent; }
#pos_search_top .form_search .form-group:after { content: ""; width: 1px; height: 16px; background: #e1e1e1; position: absolute; top: 50%; right: -10px; margin-top: -8px; }
#pos_search_top .form_search .form-group .bootstrap-select { width: 150px; height: 48px; line-height: 48px; margin: 0; border: 0; padding: 0 25px; color: #282828; font-size: 14px; -webkit-user-select: none; -moz-user-select: -moz-none; -ms-user-select: none; user-select: none; -webkit-appearance: none; -moz-appearance: none; appearance: none; background: url(../img/option_search.png) no-repeat 90% 50% white; }

@media (max-width: 480px) { #pos_search_top .form_search .form-control { font-size: 10px; padding: 0 60px 0 120px; }
  #pos_search_top .form_search .form-group { width: 110px; }
  #pos_search_top .form_search .form-group .bootstrap-select { width: 110px; font-size: 10px; } }
.ui-corner-all.ui-widget-content { max-height: 380px; /*overflow: auto;*/ border: 1px solid #e9e9e9; }

/* end module search category */
/* search block */
.block-search { position: relative; padding: 0; }
@media (max-width: 991px) { .block-search { margin: 0; } }

.search_top { padding: 0; background: transparent; border: 0; }
.search_top form { width: 100%; position: relative; }
.search_top form .text_input { padding: 10px 130px 10px 10px; height: 52px; line-height: 48px; font-size: 14px; color: #999999; border: 2px solid #fff; border-radius: 3px; box-shadow: none; overflow: hidden; width: 100%; background: white; }
.search_top form .text_input::-moz-placeholder { color: #999999; }
.search_top form .text_input::-webkit-input-placeholder { color: #999999; }
.search_top form .text_input:-ms-input-placeholder { color: #999999; }
.search_top form button { position: absolute; top: 0; right: 0; height: 52px; display: inline-block; padding: 0 35px; text-align: center; background: #ff940c; color: white; line-height: 52px; font-size: 15px; text-transform: capitalize; border: 0; text-align: center; border-radius: 0px 3px 3px 0px; font-weight: 700; cursor: pointer; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.search_top form button i { line-height: 52px; }
.search_top form button:hover { background: #ff940c; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }

.ui-corner-all { /*overflow: hidden;*/ max-height: 300px; overflow-y: scroll; }
@media (max-width: 360px) { .ui-corner-all { max-width: 300px !important; } }
.ui-corner-all li a { display: inline-block !important; width: 100%; overflow: visible; max-height: none; overflow-y: auto; }
.ui-corner-all li a img { float: left; margin-right: 30px; width: 50px; }
.ui-corner-all li a &gt; div { overflow: hidden; padding-top: 10px; }
.ui-corner-all li a span { margin: 0; display: inline-block; font-size: 12px; }
.ui-corner-all li a span.separator { margin-left: 5px; margin-right: 5px; }
.ui-corner-all li a span.product { font-size: 14px; font-style: italic; }
.ui-corner-all li a .price { font-weight: 600; }

/* end search block */
.blockcart { float: right; position: relative; }
@media (max-width: 767px) { .blockcart { float: none; display: inline-block; width: 100%; margin-bottom: 20px; } }
.blockcart .header { position: relative; display: inline-block; position: relative; height: 52px; }
.blockcart .header a { display: block; position: relative; color: #fff;/*#777777;*/ font-size: 14px; font-weight: 400; height: 52px; text-align: left; line-height: 26px; padding-left: 32px/*60px;*/ padding-right: 32px; }
.blockcart .header a i { font-size: 34px; color: #ff940c; position: absolute; left: 24%;/*0;*/ top: 2%;/*50%;*/ -moz-transform: translateY(-100%);/*(-50%);*/ -webkit-transform: translateY(-100%);/*(-50%)*/; -o-transform: translateY(-100%);/*(-50%);*/ -ms-transform: translateY(-100%);/*(-50%);*/ transform: translateY(-100%);/*(-50%);*/ }
.blockcart .header a .item_total { display: block; font-size: 18px; color: #ff940c; font-weight: 600; }
.blockcart .header a .item_total:after { content: '\f078'; font-size: 12px; font-weight: 900; display: inline-block; font-family: 'Font Awesome 5 Free'; vertical-align: middle; margin-left: 5px; color: #282828; line-height: 1; vertical-align: 1px; }
.item_total:after {color: #fff !important;}
.blockcart .header a .item_count { font-size: 14px; display: block; width: 24px; height: 24px; background: #bd0018; color: white; border-radius: 100%; line-height: 24px; font-weight: 700; position: absolute; top: 2px; right: 0; text-align: center; }
.blockcart .body { margin: 0; padding: 0; width: 340px; padding-top: 9px; top: 100%; left: auto; right: 0; position: absolute; display: none; z-index: 99; text-align: left; }
@media (max-width: 479px) { .blockcart .body { width: 270px; } }
@media (max-width: 767px) { .blockcart .body { /*right: 50%;*/ -moz-transform: translateX(25%); -webkit-transform: translateX(25%); -o-transform: translateX(25%); -ms-transform: translateX(25%); transform: translateX(25%); width:100%; } }
.blockcart .body .mini_cart_arrow { right: 75px; top: 2px; position: absolute; height: 16px; width: 16px; border-color: transparent; border-top-color: #ebebeb; border-left-color: #ebebeb; border-style: solid; border-width: 1px 1px 1px 1px; transform: rotate(45deg); background: #fff; z-index: 1; }
.blockcart .body .content-cart { background: white; border: 1px solid #e9e9e9; }
.blockcart .body ul { padding: 0 30px; }
.blockcart .body ul li { padding: 20px 0; border-bottom: 1px solid #e9e9e9; overflow: hidden; }
.blockcart .body ul li .img_content { float: left; margin: 0 20px 0 0; position: relative; }
.blockcart .body ul li .img_content .product-quantity { position: absolute; top: 5px; left: 5px; min-width: 25px; line-height: 25px; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; padding: 0; text-align: center; background: #ff940c; color: white; font-size: 14px; display: inline-block; }
.blockcart .body ul li .right_block { overflow: hidden; position: relative; padding: 0 15px 0 0; }
.blockcart .body ul li .right_block span { font-size: 14px; }
.blockcart .body ul li .right_block .product-name { display: block; color: #282828; text-transform: capitalize; font-size: 14px; line-height: 20px; }
.blockcart .body ul li .right_block .product-name:hover { color: #ff940c; }
.blockcart .body ul li .right_block .product-price { display: block; margin: 5px 0 0; font-size: 18px; font-weight: 600; color: #ff940c; }
.blockcart .body ul li .right_block .remove-from-cart { display: block; position: absolute; top: 0; right: 0; color: #777; }
.blockcart .body ul li .right_block .remove-from-cart:hover { color: #333; }
.blockcart .body ul li .right_block .attributes_content { display: block; font-size: 16px; line-height: 20px; color: #777; margin: 5px 0 0; }
.blockcart .body ul li .right_block strong { font-weight: 400; }
.blockcart .body .price_content { overflow: hidden; padding: 30px; }
.blockcart .body .price_content .price_inline { overflow: hidden; line-height: 25px; }
.blockcart .body .price_content .price_inline .label { float: left; font-weight: 600; color: #282828; font-size: 14px; }
.blockcart .body .price_content .price_inline .value { float: right; font-weight: 600; color: #282828; font-size: 18px; }
.blockcart .body .price_content .price_inline.cart-total .value { font-weight: 600; color: #ff940c; }
.blockcart .body .checkout { padding: 0 30px 30px 30px; }
.blockcart .body .checkout a { display: block; text-transform: uppercase; font-weight: 700; font-size: 14px; color: white; box-shadow: none; padding: 10px 15px; line-height: 26px; border-radius: 3px; background: #ff940c; }
.blockcart .body .checkout a:hover { background: #212121;/*#569403;*/ color: white; }

@media (min-width: 992px) { .blockcart .body ul { max-height: 358px; overflow-y: auto; } }
.blockcart .body ul::-webkit-scrollbar-track { background-color: #ff940c; }

.blockcart .body ul::-webkit-scrollbar { width: 4px; background-color: #ff940c; }

.blockcart .body ul::-webkit-scrollbar-thumb { background-color: rgba(46, 46, 46, 0.85); border-radius: 10px; }

/* style layer cart */
#blockcart-modal .modal-body { background: white; padding: 3.125rem 1.875rem; }

#blockcart-modal .divide-right { border-right: 1px solid #e9e9e9; }
#blockcart-modal .divide-right p, #blockcart-modal .divide-right strong { color: #282828; font-size: 14px; font-weight: 600; }

#blockcart-modal .cart-content p, #blockcart-modal .cart-content strong { color: #282828; font-size: 14px; }
#blockcart-modal .cart-content strong { font-weight: 600; }

#blockcart-modal .product-name { font-size: 16px; margin-bottom: 20px; color: #282828; }

#blockcart-modal .modal-header { background: #ff940c; }

/* end style layer cart */
#blockcart-modal button.close { color: white; opacity: 1; }

#blockcart-modal .cart-content .btn { margin-top: 20px; }

/* end module cart block */
/* module slideshow */
.pos-loading { background: #cccccc; position: relative; }
.pos-loading span { width: 20px; height: 20px; position: absolute; z-index: 99; background: url(../img/preloader.gif) no-repeat; top: 50%; left: 50%; margin: -10px 0 0 -10px; }
.pos-loading img { opacity: 0; }

.nivo-html-caption { display: none; }

@-webkit-keyframes myfirst { from { width: 0; }
  to { width: 100%; } }

@keyframes myfirst { from { width: 0; }
  to { width: 100%; } }

.timethai.pos_hover { -webkit-animation-play-state: paused; animation-play-state: paused; }

.slideshow_container .pos-slideshow { position: relative; margin-bottom: 30px; }
.slideshow_container .pos-slideshow:hover .nivo-directionNav a { opacity: 1; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.slideshow_container .pos-slideshow:hover .nivo-directionNav a.nivo-prevNav { left: 20px; }
.slideshow_container .pos-slideshow:hover .nivo-directionNav a.nivo-nextNav { right: 20px; }

.slideshow_container .pos-slideshow .nivo-directionNav a { display: block; width: 40px; height: 40px; line-height: 38px; border-radius: 5px; border: 1px solid #e9e9e9; color: #bdbfbe; background: white; text-align: center; font-size: 0; position: absolute; z-index: 8; cursor: pointer; top: 50%; -moz-transform: translateY(-50%); -webkit-transform: translateY(-50%); -o-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); opacity: 0; -webkit-transition: none; -moz-transition: none; -o-transition: none; transition: none; }
.slideshow_container .pos-slideshow .nivo-directionNav a i { font-size: 18px; }
@media (max-width: 767px) { .slideshow_container .pos-slideshow .nivo-directionNav a { display: none; } }
.slideshow_container .pos-slideshow .nivo-directionNav a:hover { background: #ff940c; color: white; border-color: #ff940c; }
.slideshow_container .pos-slideshow .nivo-directionNav a.nivo-prevNav { left: 10px; }
.slideshow_container .pos-slideshow .nivo-directionNav a.nivo-nextNav { right: 10px; }

.slideshow_container .pos-slideshow .nivo-controlNav { position: absolute; bottom: 30px; left: 50%; -moz-transform: translateX(-50%); -webkit-transform: translateX(-50%); -o-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); text-align: center; display: inline-block; z-index: 8; }
@media (max-width: 1199px) { .slideshow_container .pos-slideshow .nivo-controlNav { bottom: 2.92969vw; } }
@media (max-width: 767px) { .slideshow_container .pos-slideshow .nivo-controlNav { display: none; } }
.slideshow_container .pos-slideshow .nivo-controlNav a { display: inline-block; margin: 0 3px; cursor: pointer; font-size: 0; width: 8px; height: 8px; background: #d3d3d3; -webkit-border-radius: 100%; -moz-border-radius: 100%; -ms-border-radius: 100%; -o-border-radius: 100%; border-radius: 100%; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; -moz-transform: scale3d(1, 1, 1); -webkit-transform: scale3d(1, 1, 1); -o-transform: scale3d(1, 1, 1); -ms-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); }
.slideshow_container .pos-slideshow .nivo-controlNav a.active, .slideshow_container .pos-slideshow .nivo-controlNav a:hover { background: #ff940c; -moz-transform: scale3d(1.3, 1.3, 1.3); -webkit-transform: scale3d(1.3, 1.3, 1.3); -o-transform: scale3d(1.3, 1.3, 1.3); -ms-transform: scale3d(1.3, 1.3, 1.3); transform: scale3d(1.3, 1.3, 1.3); }

.banner7-des { position: absolute; left: 0; top: 50%; right: 0; z-index: 8; -moz-transform: translateY(-50%); -webkit-transform: translateY(-50%); -o-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); line-height: 1; text-align: left; direction: ltr !important; }
.banner7-des p { margin: 0; }
.banner7-des .info { text-align: center; max-width: 50%; }

.desc1 { direction: rtl !important; }
.desc1 .info { direction: ltr !important; }
@media (min-width: 1200px) { .desc1 .info { padding-right: 70px; } }

.desc .title1, .desc1 .title1, .desc2 .title1 { font-size: 60px; color: white; font-style: italic; text-transform: capitalize; font-family: 'Montserrat', serif; -webkit-animation-duration: 1.2s; animation-duration: 1.2s; }/**AAB PT Serif*/
.desc .title2, .desc1 .title2, .desc2 .title2 { position: relative; font-size: 40px; color: white; font-style: italic; margin-bottom: 40px; font-family: 'Montserrat', serif; -webkit-animation-duration: 1.2s; animation-duration: 1.2s; } /**AAB PT Serif*/
.desc .readmore, .desc1 .readmore, .desc2 .readmore { -webkit-animation-duration: 1.2s; animation-duration: 1.2s; display: inline-block; }
.desc .readmore a, .desc1 .readmore a, .desc2 .readmore a { -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; position: relative; font-size: 15px; font-weight: 700; color: #282828; line-height: 50px; text-transform: capitalize; padding: 0 45px; border-radius: 3px; background: #eccd00; display: inline-block; }
.desc .readmore a:hover, .desc1 .readmore a:hover, .desc2 .readmore a:hover { background: #d2b600; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }

/* responsive slideshow */
@media (max-width: 1199px) { .desc .title1, .desc1 .title1, .desc2 .title1, .desc3 .title1 { font-size: 4.88281vw; }
  .desc .title2, .desc1 .title2, .desc2 .title2, .desc3 .title2 { font-size: 2.92969vw; margin: 0 0 3.90625vw 0; }
  .desc .readmore a, .desc1 .readmore a, .desc2 .readmore a, .desc3 .readmore a { font-size: 1.36719vw; line-height: 3.90625vw; padding: 0vw 3.41797vw; } }
@media (max-width: 480px) { .desc .title1, .desc1 .title1, .desc2 .title1, .desc3 .title1 { font-size: 6.25vw; }
  .desc .title2, .desc1 .title2, .desc2 .title2, .desc3 .title2 { font-size: 3.33333vw; margin: 0 0 4.16667vw 0; }
  .desc .readmore a, .desc1 .readmore a, .desc2 .readmore a, .desc3 .readmore a { font-size: 2.5vw; line-height: 4.16667vw; padding: 0vw 4.16667vw; } }
/* end responsive slideshow */
/* end module slideshow */
/* module postabproductslider */
.product-tabs-container-slider { border-radius: 3px; padding: 30px 0; margin-bottom: 80px; }
.product-tabs-container-slider .tab_inner { position: relative; display: inline-block; width: 100%; text-align: center; margin-bottom: 60px; }
.product-tabs-container-slider ul.tabs_slider { display: inline-block; background: white; position: relative; font-size: 0; }
.product-tabs-container-slider ul.tabs_slider:before { content: ""; position: absolute; border: 2px solid #eeeeee; border-radius: 3px; left: 0; bottom: 0; top: 0; right: 0; z-index: 1; pointer-events: none; }
.product-tabs-container-slider ul.tabs_slider li { display: inline-block; position: relative; background: white; border: 2px solid transparent; line-height: 30px; cursor: pointer; color: #282828; border-radius: 3px; text-transform: capitalize; font-size: 15px; font-weight: 700; /* The white fill of the triangle */ }
@media (max-width: 575px) { .product-tabs-container-slider ul.tabs_slider li { display: block; } }
.product-tabs-container-slider ul.tabs_slider li:before, .product-tabs-container-slider ul.tabs_slider li:after { content: ""; position: absolute; border-left: 6px solid transparent; border-right: 6px solid transparent; top: 100%; left: 50%; margin-left: -3px; }
.product-tabs-container-slider ul.tabs_slider li:before { border-top: 6px solid transparent; margin-top: 2px; }
.product-tabs-container-slider ul.tabs_slider li:after { border-top: 6px solid transparent; margin-top: -1px; z-index: 1; }
.product-tabs-container-slider ul.tabs_slider li.active, .product-tabs-container-slider ul.tabs_slider li:hover { color: #ff940c; border-color: #ff940c; z-index: 2; }
.product-tabs-container-slider ul.tabs_slider li.active:before, .product-tabs-container-slider ul.tabs_slider li:hover:before { border-top: 6px solid #ff940c; }
.product-tabs-container-slider ul.tabs_slider li.active:after, .product-tabs-container-slider ul.tabs_slider li:hover:after { border-top: 6px solid white; }
.product-tabs-container-slider ul.tabs_slider li.active span:before, .product-tabs-container-slider ul.tabs_slider li:hover span:before { display: none; }
.product-tabs-container-slider ul.tabs_slider li span { display: block; position: relative; padding: 10px 45px; }
@media (max-width: 991px) { .product-tabs-container-slider ul.tabs_slider li span { padding: 10px 20px; } }
.product-tabs-container-slider ul.tabs_slider li span:before { content: ""; width: 1px; height: 30px; background: #eeeeee; position: absolute; left: -2px; top: 50%; margin-top: -15px; }
.product-tabs-container-slider ul.tabs_slider li:first-child span:before { display: none; }
.product-tabs-container-slider .pos_content { margin: 0; }
.product-tabs-container-slider .js-product-miniature { display: inline-block; width: 100%; margin-bottom: 50px; }
.product-tabs-container-slider .js-product-miniature .item-inner { width: 100%; display: inline-block; padding: 11px 0; }
@media (max-width: 1199px) { .product-tabs-container-slider .js-product-miniature { margin-bottom: 10px; } }
.product-tabs-container-slider .js-product-miniature:last-child { margin: 0; }
.product-tabs-container-slider .js-product-miniature .img_block { width: 110px; float: left; margin: 0 20px 0 0; }
.product-tabs-container-slider .js-product-miniature .product_desc { overflow: hidden; text-align: left; }

/* end  postabproductslider*/
/* module tabcateslider */
.tab-category-container-slider .pos_tab { position: relative; display: inline-block; width: 100%; text-align: center; margin-bottom: 30px; }
.tab-category-container-slider ul.tab_cates { display: inline-block; background: white; position: relative; font-size: 0; }
.tab-category-container-slider ul.tab_cates:before { content: ""; position: absolute; border: 2px solid #eeeeee; border-radius: 3px; left: 0; bottom: 0; top: 0; right: 0; z-index: 1; pointer-events: none; }
.tab-category-container-slider ul.tab_cates li { display: inline-block; position: relative; background: white; border: 2px solid transparent; line-height: 30px; cursor: pointer; color: #282828; border-radius: 3px; text-transform: capitalize; font-size: 15px; font-weight: 700; /* The white fill of the triangle */ }
@media (max-width: 575px) { .tab-category-container-slider ul.tab_cates li { display: block; } }
.tab-category-container-slider ul.tab_cates li:before, .tab-category-container-slider ul.tab_cates li:after { content: ""; position: absolute; border-left: 6px solid transparent; border-right: 6px solid transparent; top: 100%; left: 50%; margin-left: -3px; }
.tab-category-container-slider ul.tab_cates li:before { border-top: 6px solid transparent; margin-top: 2px; }
.tab-category-container-slider ul.tab_cates li:after { border-top: 6px solid transparent; margin-top: -1px; z-index: 1; }
.tab-category-container-slider ul.tab_cates li.active, .tab-category-container-slider ul.tab_cates li:hover { color: #ff940c; border-color: #ff940c; z-index: 2; }
.tab-category-container-slider ul.tab_cates li.active:before, .tab-category-container-slider ul.tab_cates li:hover:before { border-top: 6px solid #ff940c; }
.tab-category-container-slider ul.tab_cates li.active:after, .tab-category-container-slider ul.tab_cates li:hover:after { border-top: 6px solid white; }
.tab-category-container-slider ul.tab_cates li.active span:before, .tab-category-container-slider ul.tab_cates li:hover span:before { display: none; }
.tab-category-container-slider ul.tab_cates li span { display: block; position: relative; padding: 10px 45px; }
@media (max-width: 991px) { .tab-category-container-slider ul.tab_cates li span { padding: 10px 20px; } }
.tab-category-container-slider ul.tab_cates li span:before { content: ""; width: 1px; height: 30px; background: #eeeeee; position: absolute; left: -2px; top: 50%; margin-top: -15px; }
.tab-category-container-slider ul.tab_cates li:first-child span:before { display: none; }

.tab-category-container-slider { border-radius: 3px; padding: 30px 0; margin-bottom: 80px; }
.tab-category-container-slider .pos_content { margin: 0; }
.tab-category-container-slider .js-product-miniature { display: inline-block; width: 100%; margin-bottom: 50px; }
.tab-category-container-slider .js-product-miniature .item-inner { width: 100%; display: inline-block; padding: 11px 0; }
@media (max-width: 1199px) { .tab-category-container-slider .js-product-miniature { margin-bottom: 10px; } }
.tab-category-container-slider .js-product-miniature:last-child { margin: 0; }
.tab-category-container-slider .js-product-miniature .img_block { width: 110px; float: left; margin: 0 20px 0 0; }
.tab-category-container-slider .js-product-miniature .product_desc { overflow: hidden; text-align: left; }

.tab-category-container-slider2 ul.tab2_cates { margin-right: 80px; margin-top: 10px; }
@media (min-width: 768px) { .tab-category-container-slider2 ul.tab2_cates { float: right; margin-top: 0; } }
.tab-category-container-slider2 ul.tab2_cates li { display: inline-block; position: relative; background: white; margin-right: 20px; line-height: 1; cursor: pointer; color: #bbbbbb; text-transform: capitalize; font-size: 13px; font-weight: 400; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.tab-category-container-slider2 ul.tab2_cates li:last-child { margin: 0; }
.tab-category-container-slider2 ul.tab2_cates li.active, .tab-category-container-slider2 ul.tab2_cates li:hover { color: #282828; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }

/* end module tabcateslider */
/* module featured-products */
/* end module featured-products */
/* module new-products */
.pos_new_product .owl-item.firstActiveItem .js-product-miniature { border-left: none; }
.pos_new_product .js-product-miniature { border: none; border-left: 1px solid #e9e9e9; }
@media (min-width: 1200px) { .pos_new_product .js-product-miniature { margin-bottom: 15px; }
  .pos_new_product .js-product-miniature:after { bottom: -7.5px; }
  .pos_new_product .js-product-miniature:last-child { margin-bottom: 0; }
  .pos_new_product .js-product-miniature:last-child:after { display: none; } }

/* end module new-products */
/* end module cate-products-slider */
.category-products-slider .owl-stage-outer { padding: 15px 0; }
.category-products-slider .js-product-miniature { box-shadow: none !important; margin-bottom: 30px; }
.category-products-slider .js-product-miniature:last-child { margin-bottom: 0; }
.category-products-slider .js-product-miniature .img_block { float: left; width: 90px; }
.category-products-slider .js-product-miniature .product_desc { overflow: hidden; padding: 0 10px; text-align: left; }

/* end module  cate-products-slider */
/* module special-products */
.pos-special-products { margin-bottom: 30px; padding-bottom: 30px; overflow: hidden; border-radius: 3px; }
.pos-special-products .pos_title { border: none; background: #ff940c; }
.pos-special-products .pos_title h2 { padding: 0; color: white; font-size: 28px; font-weight: 400; line-height: 50px; text-transform: inherit; }
.pos-special-products .pos_title h2:before { display: none; }
.pos-special-products .owl-carousel .owl-stage-outer:after { display: none; }
.pos-special-products .owl-carousel .owl-item { padding: 0; }
.pos-special-products .pos_content { margin: 0; }
.pos-special-products .js-product-miniature { padding: 0 10px; }
@media (min-width: 992px) { .pos-special-products .js-product-miniature { padding: 0 30px; } }
.pos-special-products .js-product-miniature .item-inner:before { display: none; }
.pos-special-products .js-product-miniature .product_name { font-size: 18px; font-weight: 600; }

/* countdown */
.is-countdown { display: inline-block; width: 100%; position: relative; font-size: 0; border: 2px solid #eeeeee; border-radius: 3px; max-width: 220px; margin: auto; margin-top: 25px; }
.is-countdown .countdown-section { float: left; text-align: center; padding: 10px 0; }
.is-countdown .countdown-section .countdown-amount { display: block; font-size: 20px; background: white; color: #000;/*#282828;*/ font-weight: 600; position: relative; line-height: 1; margin-bottom: 2px; }
.is-countdown .countdown-section .countdown-period { display: block; font-size: 14px; line-height: 1; color: #000;/*#777777;*/ text-transform: capitalize; }

.countdown-show1 .countdown-section { width: 100%; }

.countdown-show2 .countdown-section { width: 50%; }

.countdown-show3 .countdown-section { width: 33.33%; }

.countdown-show4 .countdown-section { width: 25%; }

#product .countdown-show4 .countdown-section { width: auto; }

.countdown-show5 .countdown-section { width: 19.5%; }

.countdown-show6 .countdown-section { width: 16.25%; }

.countdown-show7 .countdown-section { width: 14%; }

/* end countdown */
/* end module special-products */
/* module recommendedproducts */
.recommended-product .js-product-miniature { display: inline-block; width: 100%; }
.recommended-product .js-product-miniature .item-inner { display: inline-block; width: 100%; }
.recommended-product .js-product-miniature .img_block { float: left; width: 110px; margin: 0; margin-right: 20px; }
.recommended-product .js-product-miniature .product_desc { overflow: hidden; text-align: left; }
.recommended-product .js-product-miniature .product_desc .product_name { margin-bottom: 10px; min-height: auto; }

/*end  module recommendedproducts */
.tab-manufacturers-container-slider { background: url(../img/bg_author.jpg) no-repeat center center; padding: 80px 0; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; }
.tab-manufacturers-container-slider .manu_content { background: white; display: inline-block; width: 100%; }
@media (min-width: 768px) { .tab-manufacturers-container-slider .col { padding: 0; display: flex; flex-direction: column; justify-content: center; }
  .tab-manufacturers-container-slider .pos_content { padding: 30px; display: flex; width: 100%; margin: 0; } }
@media (max-width: 767px) { .tab-manufacturers-container-slider .manu_facturer { padding-top: 30px; } }
.tab-manufacturers-container-slider .pos_title { margin-bottom: 0; border: none; }
@media (min-width: 768px) { .tab-manufacturers-container-slider .thumb_manu { padding-right: 30px; } }
.tab-manufacturers-container-slider .thumb_manu .owl-carousel .owl-stage-outer:after { display: none; }
.tab-manufacturers-container-slider .thumb_manu .owl-item { padding: 0; }
.tab-manufacturers-container-slider .thumb_manu img { width: 100%; cursor: pointer; }
.tab-manufacturers-container-slider .manu_facturer .js-product-miniature { display: inline-block; width: 100%; }
.tab-manufacturers-container-slider .manu_facturer .js-product-miniature .item-inner { display: inline-block; width: 100%; }
.tab-manufacturers-container-slider .manu_facturer .js-product-miniature .img_block { float: left; width: 110px; margin: 0; margin-right: 20px; }
.tab-manufacturers-container-slider .manu_facturer .js-product-miniature .product_desc { overflow: hidden; text-align: left; }
.tab-manufacturers-container-slider .manu_facturer .js-product-miniature .product_desc .product_name { margin-bottom: 10px; min-height: auto; }

/* module manufacturer */
/* end module manufacturer */
/* module list-categories */
.poslistcategories { position: relative; margin: 0; }
.poslistcategories .pos_content { margin: 0 -15px; }
.poslistcategories .pos_content .owl-item { padding: 0 15px; border-left: 1px solid #e9e9e9; }
.poslistcategories .pos_content .owl-item.firstActiveItem { border-left: 1px solid transparent; }
.poslistcategories .owl-nav &gt; div.owl-prev { right: 47px; }
.poslistcategories .owl-nav &gt; div.owl-next { right: 15px; }
.poslistcategories .list-categories { position: relative; }
.poslistcategories .list-categories:hover .thumb-category img { -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; -moz-transform: scale3d(1.05, 1.05, 1.05); -webkit-transform: scale3d(1.05, 1.05, 1.05); -o-transform: scale3d(1.05, 1.05, 1.05); -ms-transform: scale3d(1.05, 1.05, 1.05); transform: scale3d(1.05, 1.05, 1.05); }
.poslistcategories .list-categories .thumb-category { -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; overflow: hidden; margin-bottom: 20px; }
.poslistcategories .list-categories .thumb-category img { -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; -moz-transform: scale3d(1, 1, 1); -webkit-transform: scale3d(1, 1, 1); -o-transform: scale3d(1, 1, 1); -ms-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); width: 100%; }
.poslistcategories .list-categories .desc-listcategoreis { overflow: hidden; }
.poslistcategories .list-categories .desc-listcategoreis .name_categories { margin: 0 0 15px 0; font-size: 15px; line-height: 1; font-weight: 500; color: #282828; text-transform: capitalize; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.poslistcategories .list-categories .desc-listcategoreis .name_categories:hover { color: #ff940c; }
.poslistcategories .list-categories .desc-listcategoreis .sub a { color: #7a7a7a; font-size: 14px; line-height: 24px; text-transform: capitalize; float: left; clear: both; }
.poslistcategories .list-categories .desc-listcategoreis .sub a:hover { padding-left: 10px; color: #ff940c; }
.poslistcategories .list-categories .desc-listcategoreis .view-more a { display: block; float: left; clear: both; margin-top: 15px; padding: 0 20px; background: #282828; color: white; line-height: 30px; text-transform: capitalize; font-size: 14px; font-weight: 400; border-radius: 3px; }
.poslistcategories .list-categories .desc-listcategoreis .view-more a:hover { background: #ff940c; color: #282828; }

/* end module list-categories */
/* blog */
.home_blog_post_area { position: relative; display: inline-block; width: 100%; }
.home_blog_post_area .blog_slider .item .blog_post { display: inline-block; width: 100%; background: white; }
.home_blog_post_area .blog_slider .item .blog_post .blog_post_content_top { float: left; width: 45%; border-radius: 3px; overflow: hidden; }
@media (max-width: 543px) { .home_blog_post_area .blog_slider .item .blog_post .blog_post_content_top { float: none; display: inline-block; width: 100%; margin: 0 0 30px 0; } }
.home_blog_post_area .blog_slider .item .blog_post img { width: 100%; }
.home_blog_post_area .blog_slider .item .blog_post .post_content { padding-left: 15px; position: relative; overflow: hidden; }
.home_blog_post_area .blog_slider .item .blog_post .post_content .content-inner { padding: 15px; border: 2px solid #eeeeee; position: relative; border-radius: 3px; /* The white fill of the triangle */ }
.home_blog_post_area .blog_slider .item .blog_post .post_content .content-inner:before, .home_blog_post_area .blog_slider .item .blog_post .post_content .content-inner:after { content: ""; position: absolute; border-top: 16px solid transparent; border-bottom: 16px solid transparent; top: 30px; left: -16px; }
.home_blog_post_area .blog_slider .item .blog_post .post_content .content-inner:before { border-right: 16px solid #eeeeee; }
.home_blog_post_area .blog_slider .item .blog_post .post_content .content-inner:after { border-right: 16px solid white; z-index: 1; margin-left: 2px; }
.home_blog_post_area .blog_slider .item .blog_post .post_content .post_inner .date_time { width: 40px; height: 47px; border-radius: 3px; text-align: center; overflow: hidden; float: left; margin-right: 15px; }
.home_blog_post_area .blog_slider .item .blog_post .post_content .post_inner .date_time .day_time { color: #ff940c; background: #e9e9e9; font-size: 18px; display: block; line-height: 27px; font-weight: 700; }
.home_blog_post_area .blog_slider .item .blog_post .post_content .post_inner .date_time .moth_time { color: white; background: #ff940c; text-transform: uppercase; font-size: 12px; display: block; line-height: 20px; font-weight: 400; }
.home_blog_post_area .blog_slider .item .blog_post .post_title { margin: 0; overflow: hidden; }
.home_blog_post_area .blog_slider .item .blog_post .post_title a { font-size: 18px; font-weight: 400; line-height: 24px; color: #282828; text-transform: capitalize; position: relative; display: block; margin-bottom: 0; }
.home_blog_post_area .blog_slider .item .blog_post .post_title a:hover { color: #ff940c; }
.home_blog_post_area .blog_slider .item .blog_post .post_meta { overflow: hidden; position: relative; padding-top: 15px; }
.home_blog_post_area .blog_slider .item .blog_post .post_meta span { color: #999999; font-size: 13px; line-height: 18px; text-transform: capitalize; display: inline-block; margin-right: 20px; }
.home_blog_post_area .blog_slider .item .blog_post .post_meta span:last-child { margin: 0; }
.home_blog_post_area .blog_slider .item .blog_post .post_meta span i { margin-right: 5px; }
.home_blog_post_area .blog_slider .item .blog_post .post_meta span a { color: #999999; }
.home_blog_post_area .blog_slider .item .blog_post .post_meta span a:hover { color: #ff940c; }
.home_blog_post_area .blog_slider .item .blog_post .post_description { font-size: 14px; font-weight: 400; color: #777777; margin: 0; display: inline-block; width: 100%; padding: 20px 0; }
@media (max-width: 1199px) { .home_blog_post_area .blog_slider .item .blog_post .post_description { padding: 14px 0; } }
.home_blog_post_area .blog_slider .item .blog_post a.read-more { display: inline-block; line-height: 18px; color: #555555; text-transform: capitalize; font-size: 14px; font-weight: 500; }
.home_blog_post_area .blog_slider .item .blog_post a.read-more i { color: #ff940c; }
.home_blog_post_area .blog_slider .item .blog_post a.read-more:hover { color: #ff940c; }

.home_blog_post_area .home_blog_post .blog_post .post_thumbnail { position: relative; overflow: hidden; }
.home_blog_post_area .home_blog_post .blog_post .post_thumbnail:hover img { -moz-transform: scale3d(1.1, 1.1, 1.1); -webkit-transform: scale3d(1.1, 1.1, 1.1); -o-transform: scale3d(1.1, 1.1, 1.1); -ms-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1); -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.home_blog_post_area .home_blog_post .blog_post .post_thumbnail img { -moz-transform: scale3d(1, 1, 1); -webkit-transform: scale3d(1, 1, 1); -o-transform: scale3d(1, 1, 1); -ms-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }

.blog_mask { display: none; }

.home_blog_post_area .home_blog_post .blog_post .post_thumbnail .blog_mask .blog_mask_content a { display: block; text-align: center; font-size: 70px; color: #fff; display: none; }

.home_blog_post_area .home_blog_post .blog_post .post_thumbnail:hover .blog_mask { opacity: 1; visibility: visible; z-index: 1; -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1); }

.home_blog_post_area .home_blog_post .blog_post .post_thumbnail:hover .blog_mask .blog_mask_content { left: 50%; }

.kr_blog_post_area .blog_post { margin-bottom: 40px; }

.kr_blog_post_area .blog_post .post_thumbnail img { margin: 0; width: 100%; }

.kr_blog_post_area .blog_post .post_content .post_title { font-size: 16px; text-transform: uppercase; margin-bottom: 15px; }

.kr_blog_post_area .blog_post .post_content .post_meta &gt; p { font-family: 'Montserrat', sans-serif; font-size: 14px; text-transform: capitalize; padding-right: 10px; margin-right: 10px; }/**AAB Open Sans*/

.kr_blog_post_area .blog_post .post_content .read_more a { color: #999999; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: bold; text-transform: uppercase; }/**AAB Open Sans*/

/* end blog */
/* module logo */
.pos_logo { position: relative; /*border-top: 1px solid #e9e9e9; border-bottom: 1px solid #e9e9e9;*/ }
.pos_logo:hover .owl-nav &gt; div { opacity: 1; }
.pos_logo .owl-nav { position: static; height: auto; }
.pos_logo .owl-nav &gt; div { position: absolute; top: 50%; -moz-transform: translateY(-50%); -webkit-transform: translateY(-50%); -o-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); opacity: 0; }
.pos_logo .owl-nav &gt; div.owl-prev { right: auto; left: -15px; }
.pos_logo .owl-nav &gt; div.owl-next { right: -15px; }
.pos_logo .pos_title { display: none; }
.pos_logo .item-banklogo { overflow: hidden; }
.pos_logo .item-banklogo:hover img { -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; -moz-transform: scale3d(1.05, 1.05, 1.05); -webkit-transform: scale3d(1.05, 1.05, 1.05); -o-transform: scale3d(1.05, 1.05, 1.05); -ms-transform: scale3d(1.05, 1.05, 1.05); transform: scale3d(1.05, 1.05, 1.05); }
.pos_logo .item-banklogo img { -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; -moz-transform: scale3d(1, 1, 1); -webkit-transform: scale3d(1, 1, 1); -o-transform: scale3d(1, 1, 1); -ms-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); }

/* end module logo */
/* module newletter */
.ft_newsletter { position: relative; margin-bottom: 20px; }
.ft_newsletter h3 { margin-bottom: 20px !important; }
.ft_newsletter .desc { font-size: 14px; line-height: 24px; margin-bottom: 20px; display: none; position: relative; color: #757575; }
.ft_newsletter form { position: relative; overflow: hidden; }
.ft_newsletter form .input-wrapper input { height: 54px; background: white; color: #7b7b7b; padding: 10px 120px 10px 10px; line-height: 35px;/*30px;*/ height: 35px; display: inline-block; width: 100%; font-size: 13px; border: 1px solid #e9e9e9; /*#eeeeee;*/ -webkit-border-radius: 0px; /*3px;*/ -moz-border-radius: 0px; /*3px;*/ -ms-border-radius: 0px; /*3px;*/ -o-border-radius: 0px; /*3px;*/ border-radius: 0px; /*3px;*/ }
.ft_newsletter form .input-wrapper input::-moz-placeholder { color: #7b7b7b; }
.ft_newsletter form .input-wrapper input::-webkit-input-placeholder { color: #7b7b7b; }
.ft_newsletter form .input-wrapper input:-ms-input-placeholder { color: #7b7b7b; }
.ft_newsletter form .btn { text-transform: capitalize; font-size: 15px; font-weight: 700; color: white; background: #ff940c; border: 0; box-shadow: none; padding: 0 40px; line-height: 35px; /*50px;*/ height: 35px;/*50px;*/ display: block; text-align: center; float: none !important; width: 100%; margin-top: 10px; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.ft_newsletter form .btn:hover { background: #ff940c; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.ft_newsletter form .condition, .ft_newsletter form .alert { margin: 10px 0 0; font-size: 12px; line-height: 24px; color: #bcbcbc; background: none; border: 0; padding: 0; }
.ft_newsletter form .condition.alert-danger, .ft_newsletter form .alert.alert-danger { color: white; }
.ft_newsletter form .condition.alert-success, .ft_newsletter form .alert.alert-success { color: white; }

/* end module newletter */
.social_follow { position: relative; font-size: 0; }
.social_follow h3 { margin-bottom: 10px !important; }
.social_follow li { display: inline-block; margin: 0 0 0 8px; /*0 8px 8px 0;*/ line-height: 32px; background-image: none !important; padding: 0; }
.social_follow li:last-child { margin: 0; }
.social_follow li a { position: relative; display: inline-block; vertical-align: middle; color: white; font-size: 0; padding: 0; line-height: 32px; width: 32px; height: 32px; text-align: center; border: 0; z-index: 1; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.social_follow li a:before { padding: 0 !important; font-size: 18px; display: inline-block; font-family: "Font Awesome\ 5 Brands"; font-weight: normal; vertical-align: middle; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.social_follow li a:hover { color: white; opacity: 0.8; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.social_follow li.facebook a { background: #282828;/*#3c5b9b;*/ border-radius: 6px;/*20px;*/ width: 50px; height: 50px; }
.social_follow li.facebook a:before { content: "\f39e";/*"\f09a";*/ font-size: 35px; position: relative; top: 8px; }
.social_follow li.twitter a { background: #40c1df; }
.social_follow li.twitter a:before { content: "\f099"; }
.social_follow li.rss a { background: #eb8314; }
.social_follow li.rss a:before { content: "\f09e"; }
.social_follow li.youtube a { background: #db2d29; border-radius: 20px; }
.social_follow li.youtube a:before { content: "\f167"; }
.social_follow li.googleplus a { background: #ed3c32; }
.social_follow li.googleplus a:before { content: "\f0d5"; }
.social_follow li.pinterest a { background: #c62a21; border-radius: 20px; }
.social_follow li.pinterest a:before { content: "\f0d2"; }
.social_follow li.vimeo a { background: #82a418; }
.social_follow li.vimeo a:before { content: "\f194"; }
.social_follow li.instagram a { background: #282828;/*#c619b8;*/ border-radius: 6px;/*20px;*/ width: 50px; height: 50px; }
.social_follow li.instagram a:before { content: "\f16d"; font-size: 35px; position: relative; top: 8px;}

/* end module social */
/* module advertising */
.advertising { position: relative; margin-bottom: 30px; text-align: center; overflow: hidden; }
.advertising a img { width: 100%; height: auto; }
.advertising a:before { background: rgba(255, 255, 255, 0.2); bottom: 0; content: ""; left: 50%; position: absolute; right: 51%; top: 0; opacity: 1; }
.advertising a:after { background: rgba(255, 255, 255, 0.2); bottom: 50%; content: ""; left: 0; position: absolute; right: 0; top: 50%; opacity: 1; }
.advertising:hover a:before { left: 0; right: 0; opacity: 0; -webkit-transition: all 900ms linear; -moz-transition: all 900ms linear; -ms-transition: all 900ms linear; -o-transition: all 900ms linear; transition: all 900ms linear; }
.advertising:hover a:after { top: 0; bottom: 0; opacity: 0; -webkit-transition: all 900ms linear; -moz-transition: all 900ms linear; -ms-transition: all 900ms linear; -o-transition: all 900ms linear; transition: all 900ms linear; }

/* end module advertising */
/* module tags */
.tags_block { padding: 30px 15px 15px 15px; background: #f9f9f9; border: 1px solid #e9e9e9; margin-bottom: 30px; border-radius: 3px; }
.tags_block h3 { font-size: 18px; line-height: 1; font-weight: 500; color: #282828; padding-bottom: 15px; border-bottom: 1px solid #e9e9e9; margin-bottom: 20px; position: relative; text-transform: capitalize; }
.tags_block .tags_content { font-size: 0; }
.tags_block a { display: inline-block; padding: 0 10px; border: 1px solid #e9e9e9; font-size: 14px; line-height: 30px; color: #afafaf; background: white; border-radius: 3px; margin-right: 10px; margin-bottom: 10px; }
.tags_block a:last-child { margin-right: 0; }
.tags_block a:hover { color: white; background: #ff940c; border-color: #ff940c; }

/* end module tags */
/* module testimonials */
.testimonials_container { position: relative; }
.testimonials_container .item-testimonials .item { position: relative; padding-left: 65px; }
.testimonials_container .item-testimonials .item .content_des { position: relative; border: 2px solid #eeeeee; border-radius: 2px; padding: 80px 20px 40px 60px; }
.testimonials_container .item-testimonials .item .content_des:before { content: ' “ '; display: inline-block; position: absolute; left: 40px; top: 60px; font-size: 60px; color: #ff940c; }
.testimonials_container .item-testimonials .item .content_des .des_testimonial { color: #777777; line-height: 24px; margin: 0; font-size: 18px; margin-bottom: 25px; }
.testimonials_container .item-testimonials .item .content_des .des_namepost { font-size: 15px; color: #333333; line-height: 30px; font-weight: 700; text-transform: capitalize; margin: 0; }
.testimonials_container .item-testimonials .item .content_des .des_email { font-size: 12px; color: #999999; line-height: 20px; margin: 0; }
.testimonials_container .item-testimonials .item .content_des .des_email:hover { color: #ff940c; }
.testimonials_container .item-testimonials .item .content_author { position: absolute; left: 0; top: 60px; z-index: 1; }
.testimonials_container .item-testimonials .item .content_author img { border-radius: 100%; width: 100px; height: 100px; }

/* end module testimonials */
/* static */
@-webkit-keyframes shine { 100% { left: 125%; } }

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

.banner-nav { position: relative; }
.banner-nav .close_banner { position: absolute; top: 50%; -moz-transform: translateY(-50%); -webkit-transform: translateY(-50%); -o-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); right: 30px; color: white; cursor: pointer; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.banner-nav .close_banner i { font-size: 18px; }
.banner-nav .close_banner:hover { color: #ff940c; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }

.home-banner, .banner-left { position: relative; }
@media (min-width: 768px) { .home-banner, .banner-left { margin-bottom: 50px; margin-top: 75px;}
  .home-banner .col1, .banner-left .col1 { width: 55.5%; }
  .home-banner .col2, .banner-left .col2 { width: 44.5%; } }

.banner-box { position: relative; overflow: hidden; margin-bottom: 30px; }
.banner-box:hover img { -moz-transform: scale(1.1) rotate(0.05deg); -ms-transform: scale(1.1) rotate(0.05deg); -o-transform: scale(1.1) rotate(0.05deg); -webkit-transform: scale(1.1) rotate(0.05deg); transform: scale(1.1) rotate(0.05deg); -webkit-transition: all 500ms linear; -moz-transition: all 500ms linear; -ms-transition: all 500ms linear; -o-transition: all 500ms linear; transition: all 500ms linear; }
.banner-box img { width: 100%; -webkit-transition: all 500ms linear; -moz-transition: all 500ms linear; -ms-transition: all 500ms linear; -o-transition: all 500ms linear; transition: all 500ms linear; }

.static_cms { position: relative; margin-bottom: 80px;/*30px;*/ }
.static_cms .box_cms { border: 2px solid #eeeeee; border-radius: 3px; padding: 13px 10px 13px 15px; }
@media (max-width: 991px) { .static_cms .box_cms { margin-bottom: 5px; } }
.static_cms .box_cms i { float: left; color: #ff940c; font-size: 34px; margin-right: 15px; }
.static_cms .box_cms .txt_cms { overflow: hidden; }
.static_cms .box_cms h2 { line-height: 1; color: #282828; font-size: 16px; font-weight: 400; text-transform: capitalize; margin-bottom: 5px; }
.static_cms .box_cms p { line-height: 1; color: #777777; font-size: 14px; margin: 0; }

.tag-static { margin-top: 40px; padding: 40px 0; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.tag-static li a { line-height: 30px; text-transform: capitalize; color: #5b697b; position: relative; display: inline-block; vertical-align: top; font-size: 14px; }
.tag-static li a:first-child { padding: 0 15px; font-weight: 400; color: #fff; background: #37475a; border-radius: 2px; margin-right: 8px; }
.tag-static li a:first-child:after { display: none; }
.tag-static li a:hover { color: white; }
.tag-static li a:after { content: "/"; display: inline-block; vertical-align: top; margin: 0 9px; color: #5b697b; }
.tag-static li a:last-child:after { display: none; }

/* end static */
/* footer */
#footer { padding: 0; color: #777777; }
#footer p { color: #777777; }
#footer .footer-container { margin: 0; padding: 0; overflow: visible; box-shadow: none; background: white; }
#footer .footer-container .footer-top { padding: 80px 0; }
@media (max-width: 767px) { #footer .footer-container .footer-top { padding: 40px 0; } }
#footer .footer-container .footer-middle { position: relative; padding: 50px 0; }
@media (max-width: 767px) { #footer .footer-container .footer-middle { padding: 20px 0; } }
#footer .footer-container .footer-middle:before { border-top: 1px solid #323232; content: ""; position: absolute; max-width: 1170px; top: 0; margin: 0 auto; width: 100%; left: 0; right: 0; }
#footer .footer-container .footer-middle .footer-links { text-align: center; }
#footer .footer-container .footer-middle .footer-links .links-tag { position: relative; text-align: center; margin-bottom: 30px; }
#footer .footer-container .footer-middle .footer-links .links-tag li { display: inline-block; margin: 0; vertical-align: top; }
#footer .footer-container .footer-middle .footer-links .links-tag li:not(:last-child):after { content: "/"; display: inline-block; vertical-align: middle; color: #777777; margin: 0 5px; }
#footer .footer-container .footer-middle .footer-links .links-tag li a { display: inline-block; padding: 0 5px; font-size: 14px; line-height: 24px; color: #6d6d6d; border-radius: 3px; }
#footer .footer-container .footer-middle .footer-links .links-tag li a:hover { color: #ff940c; }
#footer .footer-container .footer-bottom { position: relative; background: #f0eff5; /*#282828;*/ text-align: center; padding: /*60px*/ 30px 0; }
@media (max-width: 767px) { #footer .footer-container .footer-bottom { padding: 30px 0; } }
#footer .footer-container .footer-bottom .payment { color: #999999; font-size: 14px; margin-bottom: 30px; }
#footer .footer-container .footer-bottom .payment .txt_payment { margin-bottom: 30px; }
#footer .footer-container .footer-bottom .copyright { color: #282828;/*white;*/ font-size: 14px; }
#footer .footer-container .footer-bottom .copyright a { color: #282828; font-weight: 700;}
#footer .footer-container .footer-bottom .copyright a:hover { text-decoration: underline; }
#footer .footer-container .about_us .footer-info { margin-bottom: 20px; }
#footer .footer-container .about_us .footer-info .logo_footer { margin-bottom: 40px; }
#footer .footer-container .about_us .footer-info .logo_footer img { margin: 0; }
#footer .footer-container .about_us .footer-info .address-store p { line-height: 24px; margin-bottom: 10px; }
#footer .footer-container .about_us .footer-info .address-store p span { color: #282828; font-weight: 400;/*700;*/ margin-right: 20px; }
#footer .footer-container .footer_block { margin-bottom: 0; }
@media (max-width: 991px) { #footer .footer-container .footer_block { margin-bottom: 15px; } }
@media (max-width: 767px) { #footer .footer-container .footer_block { margin-bottom: 0; }
  #footer .footer-container .footer_block .title { padding: 0; border: none; } }
#footer .footer-container .footer_block h3 { font-size: 16px; line-height: 24px; /*35px;*/ font-weight: 600; color: #282828; margin: 0 0 45px 0; text-transform: uppercase; }
@media (max-width: 767px) { #footer .footer-container .footer_block h3 { margin-bottom: 10px; } }
#footer .footer-container .footer_block .navbar-toggler { position: absolute; right: 15px; top: 5px; width: auto; height: auto; color: #282828; }
#footer .footer-container .footer_block .footer_list { margin-bottom: 0; background: none; }
#footer .footer-container .footer_block .footer_list li { display: block; margin: 0; line-height: 4px; /*1;*/ border: 0; padding: 0; font-weight: 400; }
#footer .footer-container .footer_block .footer_list li a { font-size: 14px; line-height: 24px; /*margin-bottom: 10px;*/ display: block; position: relative; color: #777777; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; padding-left: 2em; }
#footer .footer-container .footer_block .footer_list li a:before { content: "\f105"; font-family: "Font Awesome 5 Free"; font-size: 14px; display: inline-block; margin-right: 5px; font-weight: 700; display: none; }
#footer .footer-container .footer_block .footer_list li a:hover { color: #ff940c; padding-left: 2em;/*10px;*/ -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
#footer .footer-container .footer_block .footer_list li a:hover:before { color: #ff940c; }

/* end footer */
/* category page */
@media (max-width: 767px) { #left-column, #content-wrapper, #right-column { width: 100%; } }
.name_category { text-align: center; margin-bottom: 40px; display: inline-block; width: 100%; }
.name_category h2 { display: inline-block; position: relative; font-size: 30px; font-weight: 700; color: white; margin: 0; line-height: 1; text-transform: uppercase; }

#js-product-list-top ul.display { float: left; margin-right: 50px; position: relative; z-index: 1; }
@media (min-width: 768px) and (max-width: 991px) { #js-product-list-top ul.display { margin-right: 10px; } }
@media (max-width: 767px) { #js-product-list-top ul.display { margin-bottom: 10px; } }
#js-product-list-top ul.display li { float: left; line-height: 26px; margin-right: 5px; cursor: pointer; color: #555555; background: transparent; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
#js-product-list-top ul.display li:hover, #js-product-list-top ul.display li.selected { color: #ff940c; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
#js-product-list-top ul.display li i { font-size: 24px; }

.quickview .modal-content { background: white; }

#js-product-list .product_content { position: relative; background: white; }
#js-product-list .product_content.list .js-product-miniature { border-bottom: 1px solid #e9e9e9; padding-bottom: 30px; margin-bottom: 30px; box-shadow: none !important; }
@media (min-width: 480px) { #js-product-list .product_content.list .js-product-miniature .row { margin: 0; } }
#js-product-list .product_content.list .js-product-miniature .img_block { padding: 0; overflow: hidden; }
#js-product-list .product_content.list .js-product-miniature .img_block .box-hover { display: none; }
#js-product-list .product_content.list .js-product-miniature .product_desc { padding-left: 30px; padding-top: 0; text-align: left; }
@media (max-width: 479px) { #js-product-list .product_content.list .js-product-miniature .product_desc { padding: 30px 15px; } }
#js-product-list .product_content.list .js-product-miniature .product_desc .product_name { min-height: auto; text-transform: capitalize; font-size: 20px; font-weight: 600; overflow: visible; margin: 0; }
#js-product-list .product_content.list .js-product-miniature .product_desc .product_name:hover { color: #ff940c; }
#js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links { box-shadow: none; display: block; margin-top: 25px; }
#js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li { height: auto; border: none; float: none; display: inline-block; }
@media (max-width: 991px) { #js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li { display: block; } }
#js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li a { display: inline-block; background: white; color: #999999; padding: 0; border: none; line-height: 50px; height: 50px; border-radius: 3px; width: auto; padding: 0 20px; font-size: 14px; text-align: center; text-transform: capitalize; }
@media (max-width: 991px) { #js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li a { line-height: 30px; height: 30px; padding: 0; } }
#js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li a:before { display: inline-block; -moz-transform: none; -webkit-transform: none; -o-transform: none; -ms-transform: none; transform: none; margin-right: 5px; }
#js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li a:hover { color: #ff940c; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
#js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li a.quick_view:before { content: "\f06e"; }
#js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li a.addToWishlist:before { content: "\f004"; }
@media (max-width: 991px) { #js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li.cart { margin-bottom: 10px; } }
#js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li.cart button.ajax_add_to_cart_button, #js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li.cart span.ajax_add_to_cart_button { display: inline-block; background: white; color: #7b7b7b; font-size: 15px; font-weight: 700; padding: 0 60px; border-radius: 3px; border: 2px solid #eeeeee; line-height: 46px; height: 50px; width: auto; cursor: pointer; text-transform: capitalize; }
@media (max-width: 1199px) { #js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li.cart button.ajax_add_to_cart_button, #js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li.cart span.ajax_add_to_cart_button { padding: 0 30px; } }
#js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li.cart button.ajax_add_to_cart_button i, #js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li.cart span.ajax_add_to_cart_button i { font-size: 14px; margin-right: 5px; display: none; }
#js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li.cart button.ajax_add_to_cart_button:before, #js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li.cart span.ajax_add_to_cart_button:before { display: none; -moz-transform: none; -webkit-transform: none; -o-transform: none; -ms-transform: none; transform: none; }
#js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li.cart button.ajax_add_to_cart_button.disabled, #js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li.cart span.ajax_add_to_cart_button.disabled { opacity: 0.5; }
#js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li.cart button.ajax_add_to_cart_button:hover, #js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li.cart span.ajax_add_to_cart_button:hover { border-color: #ff940c; color: #333333; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
#js-product-list .product_content.list .js-product-miniature .product_desc .hook-reviews { display: block; }
#js-product-list .product_content.list .js-product-miniature .product_desc .product-price-and-shipping { animation: none !important; opacity: 1; }
#js-product-list .product_content.list .js-product-miniature .product_desc .product-desc { display: block; padding: 20px 0; margin: 0; }
#js-product-list .product_content.list .js-product-miniature .product_desc .product-desc p { font-size: 14px; color: #777777; line-height: 25px; padding: 0; }
#js-product-list .product_content.list .js-product-miniature .product_desc .variant-links { margin-top: 30px; }
@media (max-width: 479px) { #js-product-list .product_content.list .js-product-miniature .img_block, #js-product-list .product_content.list .js-product-miniature .product_desc { width: 100%; } }
#js-product-list .product_content.grid .item-product { -webkit-animation-fill-mode: none; animation-fill-mode: none; }
@media (min-width: 480px) and (max-width: 543px) { #js-product-list .product_content.grid .item-product { width: 50%; } }
#js-product-list .product_content.grid .item-product .js-product-miniature { margin-bottom: 50px; }
#js-product-list .product_content.grid .item-product .js-product-miniature .item-inner:before { left: -15px; right: auto; }
@media (min-width: 1200px) { #js-product-list .product_content.grid .item-product:nth-child(3n+1) { clear: both; }
  #js-product-list .product_content.grid .item-product:nth-child(3n+1) .js-product-miniature .item-inner:before { display: none; } }
@media (min-width: 480px) and (max-width: 991px) { #js-product-list .product_content.grid .item-product:nth-child(2n+1) { clear: both; }
  #js-product-list .product_content.grid .item-product:nth-child(2n+1) .js-product-miniature .item-inner:before { display: none; } }
@media (max-width: 479px) { #js-product-list .product_content.grid .item-product { clear: both; }
  #js-product-list .product_content.grid .item-product .js-product-miniature .item-inner:before { display: none; } }

@media (min-width: 480px) and (max-width: 543px) { #js-product-list .product_content .item-product.grid { float: left; width: 50%; } }
.breadcrumb_container { overflow: hidden; margin: 0; font-size: 14px; }
.breadcrumb_container .breadcrumb-inner { background: transparent; margin-top: 30px; }
.breadcrumb_container .breadcrumb-inner ol { padding-left: 0; margin-bottom: 0; }
.breadcrumb_container .breadcrumb-inner ol li { display: inline; }
.breadcrumb_container .breadcrumb-inner ol li:after { content: "/"; color: #777777; margin: 0.3125em; font-size: 14px; vertical-align: -1px; }
.breadcrumb_container .breadcrumb-inner ol li:last-child a, .breadcrumb_container .breadcrumb-inner ol li:last-child span { color: #ff940c; }
.breadcrumb_container .breadcrumb-inner ol li:last-child:after { content: ""; display: none; }
.breadcrumb_container .breadcrumb-inner ol li a { display: inline-block; position: relative; color: #777777; line-height: 25px; }
.breadcrumb_container .breadcrumb-inner ol li a:hover { color: #ff940c; }
.breadcrumb_container .breadcrumb-inner[data-depth="1"] { display: none; }

.block-category { padding: 0; min-height: auto; margin-bottom: 10px; }
.block-category h1.h1 { color: #222222; font-size: 34px; line-height: 34px; padding: 0 0 10px 0; margin: 0; border: none; text-transform: uppercase; font-weight: 600; }
.block-category .category-cover { position: static; }
.block-category .category-cover img { width: auto; height: auto; margin-bottom: 25px; }
.block-category.card { box-shadow: none; border: 0; }

#products img, .featured-products img, .product-accessories img { margin: 0; }

.block-categories, #search_filters { box-shadow: none; margin-bottom: 30px; padding: 0; }

.block-categories a.h6 { font-size: 15px; line-height: 50px; font-weight: 700; color: white; background: #ff940c; text-align: center; margin-bottom: 0; position: relative; display: block; border-radius: 3px; text-transform: capitalize !important; }
.block-categories .category-sub-menu { margin: 0; }
.block-categories .category-sub-menu li { display: inline-block; width: 100%; }
.block-categories .category-sub-menu li a { color: #282828; }
.block-categories .category-sub-menu li a:hover { color: #ff940c; }
.block-categories .category-sub-menu li[data-depth="0"] &gt; a { font-weight: 700;/*400;*/ color: #282828; display: block; font-size: 14px; text-transform: capitalize; line-height: 22px;/*48px;*/ margin: 0; padding: 0; border: none; /*border-bottom: 1px solid #e9e9e9;*/ }
.block-categories .category-sub-menu li[data-depth="0"] &gt; a:hover { color: #ff940c; }
.block-categories .category-sub-menu li[data-depth="1"] { margin: 0; margin-top: 10px; }
.block-categories .category-sub-menu li:last-child a { border-bottom: 0; }
.block-categories .category-sub-menu .category-sub-link { font-size: 14px; line-height: 0px;/*30px;*/ margin: 0; padding: 0 10px; display: block; color: #777777; }
.block-categories .collapse-icons { top: 0px;/*14px;*/ right: 0; height: auto; width: auto; }
.block-categories .collapse-icons i { font-size: 18px; color: #ff940c; }
.block-categories .collapse-icons i:hover { color: #ff940c; }

.block-categories .category-sub-menu li:not([data-depth="0"]):not([data-depth="1"]):before { display: none; }

#search_filters_wrapper #search_filters h4 { font-size: 15px; line-height: 50px; font-weight: 700; color: white; background: #ff940c; text-align: center; margin-bottom: 20px; position: relative; display: block; border-radius: 3px; text-transform: capitalize !important; }

.facet-content { margin-top: 20px; }

#search_filters .facet .facet-title {width: 100%; background-color: #eee; padding: 0.25em 1em; display: block; clear: both; color: #282828; font-weight: 600; font-size: 16px; margin-bottom: 10px; line-height: 24px; text-transform: capitalize; }
#search_filters .facet .collapse { margin: 0; }
#search_filters .facet .collapse li { line-height: 25px; /*border-bottom: 1px solid #e9e9e9;*/ }
#search_filters .facet .custom-checkbox input[type="checkbox"] + span { margin: -3px 3px 0 0; width: 15px; height: 15px; border: 1px #dadada solid; border-radius: 3px; }
#search_filters .facet .custom-checkbox input[type="checkbox"] + span.color { border: 0; }
#search_filters .facet .facet-label { margin: 10px 0; }
#search_filters .facet .facet-label a { color: #282828; font-size: 14px; margin-top: 0; /**AAB*/width: 50%; }
#search_filters .facet .facet-label a:hover { color: #ff940c; }

#search_filters .js-search-filters-clear-all { background: #c8c8c8; font-weight: 500; text-transform: uppercase; }
#search_filters .js-search-filters-clear-all:hover { background: #ff940c; }

/* Drop-down list */
.facet-dropdown { color: #282828; background: white; border: none; box-shadow: none; }

.facet-dropdown .select-title { border: 1px solid #e9e9e9; color: #282828; padding: 10px 15px; border-radius: 5px; background: #ffffff; background: -moz-linear-gradient(top, white 1%, #f3f3f3 100%); background: -webkit-linear-gradient(top, white 1%, #f3f3f3 100%); background: linear-gradient(to bottom, #ffffff 1%, #f3f3f3 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f3f3f3',GradientType=0 ); }

.facet-dropdown.open &gt; .select-title { border: 1px solid #e9e9e9; background: #ffffff; background: -moz-linear-gradient(top, white 1%, #f3f3f3 100%); background: -webkit-linear-gradient(top, white 1%, #f3f3f3 100%); background: linear-gradient(to bottom, #ffffff 1%, #f3f3f3 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f3f3f3',GradientType=0 ); }

.facet-dropdown .dropdown-menu { border: 1px solid #e9e9e9; background: -moz-linear-gradient(top, white 1%, #f3f3f3 100%); background: -webkit-linear-gradient(top, white 1%, #f3f3f3 100%); background: linear-gradient(to bottom, #ffffff 1%, #f3f3f3 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f3f3f3',GradientType=0 ); box-shadow: none; }

.facet-dropdown .select-list { display: block; color: #282828; font-size: 14px; background: transparent; }

/* end Drop-down list */
/* page list */
.pagination .page-list { box-shadow: none; padding: 0; text-align: left !important; }

.pagination { font-size: 14px; font-weight: 400; border: 2px solid #eeeeee; padding: 10px 15px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; margin: 0 0 20px 0; line-height: 40px; color: #282828; }
.pagination .previous, .pagination .next { float: none; }
.pagination .previous:hover, .pagination .next:hover { background: #282828; }
.pagination a { font-weight: 400; color: #282828; padding: 0 10px; height: 28px; line-height: 28px; background: #f1f2f4; border-radius: 3px; font-size: 14px; display: inline-block; }
.pagination a i { font-size: 14px; vertical-align: -3px; }
.pagination a:hover { background: #ff940c; color: white; }
.pagination .disabled { color: #282828; }
.pagination .current a { background: #ff940c; font-size: 14px; color: white; }
.pagination .show_items { line-height: 28px; font-size: 14px; }
.pagination &gt; div:first-child { line-height: 1; }

/*end page list */
@media (max-width: 767px) { #category #left-column #search_filters .facet .navbar-toggler { padding: 0.625rem 3rem 0 0; } }
.products-selection .filter-button .btn-secondary, .products-selection .filter-button .btn-tertiary { box-shadow: none; padding: 4px 15px; border-radius: 4px; }

.products-selection .total-products { padding-top: 0; }

.products-selection { border: 2px solid #eeeeee; padding: 10px 15px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; margin-bottom: 20px; display: inline-block; width: 100%; }
.products-selection p, .products-selection .sort-by { line-height: 20px; font-size: 14px; padding: 5px; margin: 0; float: left; color: #555555; font-weight: 600; text-transform: capitalize; }
.products-selection .products-sort-order .select-title { border: 1px solid #e9e9e9; padding: 2px 15px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; line-height: 24px; font-size: 14px; margin: 0; color: #555555; text-align: left; box-shadow: none; }
.products-selection .products-sort-order .select-title i { float: right; }
.products-selection .products-sort-order .dropdown-menu { background: #fff; border: 1px solid #e9e9e9; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; right: 15px; left: auto; text-align: right; box-shadow: none; max-width: 100%; }
.products-selection .products-sort-order .dropdown-menu .select-list { line-height: 24px; font-size: 14px; padding: 3px 15px; }
.products-selection .products-sort-order .dropdown-menu .select-list:hover { background: #ff940c; }

.text-muted { margin-bottom: 20px; }

/* end category page */
/* product page */
.h1.namne_details, .product_name_h1 { font-size: 20px !important; line-height: 1 !important; color: #282828 !important; text-transform: none !important; font-weight: 600 !important; margin: 0 0 20px 0 !important; }

.product-prices { margin-top: 15px; }
.product-prices .price, .product-prices .current-price span:first-child { font-weight: 600; font-size: 18px; line-height: 30px; color: #ff940c; }

.product-discount { display: inline-block; }

.product-discount .regular-price { font-weight: 400; font-size: 14px; line-height: 20px; color: #999999; }

.has-discount.product-price, .has-discount p { font-weight: 500; font-size: 24px; line-height: 20px; display: inline-block; color: #777777; }

.has-discount .discount { font-weight: 400; font-size: 14px; line-height: 22px; color: white; padding: 0 10px; background: #f35833; vertical-align: 4px; border-radius: 3px; text-transform: capitalize; }

.product-information { color: #777777; font-size: 14px; font-weight: normal; line-height: 24px; }
.product-information span { font-size: 14px; }
.product-information .product-desc { padding: 25px 0; }
.product-information .product-desc p { font-size: 14px; color: #777777; margin: 0; }
.product-information .product-desc p span { font-size: 14px !important; font-family: 'Montserrat', sans-serif  !important; color: #777777; }/**AAB Open Sans*/
.product-information label { margin: 0; }
.product-information .product-variants { margin-bottom: 25px; }
.product-information .product-variants &gt; .product-variants-item .color { margin-bottom: 0; }

.product-prices div { margin: 0; }

.bootstrap-touchspin, .product-variants &gt; .product-variants-item select { box-shadow: none; }

.product-variants &gt; .product-variants-item { margin: 0 0 10px 0; }

.product-quantity { display: block; }
.product-quantity .qty { margin-right: 10px; }
@media (max-width: 360px) { .product-quantity .add { clear: both; margin-top: 10px; } }

.product-quantity #quantity_wanted { height: 40px;/*50px;*/ }

.product-quantity .btn-touchspin { height: 21px;/*26px;*/ }
.product-quantity .btn-touchspin:hover { border: 1px solid rgba(0, 0, 0, 0.25); }

.product-actions .product-add-to-cart { padding-bottom: 25px; border-bottom: 1px solid #e9e9e9; margin-bottom: 4em;/*padding-top: 25px; border-top: 1px solid #e9e9e9; */}

.product-actions .add-to-cart { position: relative; padding: 0 50px; color: #282828; line-height: 37px;/*46px;*/ height: 40px;/*50px;*/ font-size: 15px; font-weight: 700; border: 2px solid #ff940c; background: white; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; box-shadow: none; text-transform: capitalize; }
.product-actions .add-to-cart:hover { background: #ff940c; color: white; }
.product-actions .add-to-cart i { display: none; }

.reference { font-size: 14px; color: #282828; margin: 0; }

#product #block-reassurance { box-shadow: none; margin-top: 10px; }
#product #block-reassurance span { font-weight: 400; font-size: 14px; }
#product #block-reassurance li .block-reassurance-item { padding: 15px 0; }

#product #content { overflow: hidden; max-width: 100%; }

.product-cover img { box-shadow: none; border: none; }

li.product-flag { background: #ff940c; color: white; font-size: 14px; padding: 0; min-width: 60px; text-align: center; display: block; z-index: 1; line-height: 30px; border-radius: 20px; font-weight: 500; height: 30px; margin: 0; }

.social-sharing { margin-top: 10px; }
.social-sharing &gt; span { display: none; }

.social-sharing li { box-shadow: none; height: auto; width: auto; border-radius: 0; display: inline-block; background-color: transparent; line-height: 1; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.social-sharing li:first-child { margin: 0; }
.social-sharing li:hover a { -moz-transform: translateY(-4px); -webkit-transform: translateY(-4px); -o-transform: translateY(-4px); -ms-transform: translateY(-4px); transform: translateY(-4px); color: white; }
.social-sharing li.facebook a { background: #3c5b9b; }
.social-sharing li.twitter a { background: #40c1df; }
.social-sharing li.googleplus a { background: #ed3c32; }
.social-sharing li.pinterest a { background: #c62a21; }
.social-sharing li a { display: inline-block; line-height: 30px; height: 30px; text-align: center; color: white; margin-right: 20px; white-space: normal; text-indent: 0; overflow: hidden; font-size: 14px; padding: 0 5px; border-radius: 2px; }
.social-sharing li a:before { font-family: "Font Awesome\ 5 Brands"; font-size: 14px; display: inline-block; background: transparent; margin-right: 5px; }
.social-sharing li.facebook a:before { content: "\f09a"; }
.social-sharing li.twitter a:before { content: "\f099"; }
.social-sharing li.googleplus a:before { content: "\f0d5"; }
.social-sharing li.pinterest a:before { content: "\f0d2"; }

.tabs { box-shadow: none; display: inline-block; width: 100%; /*margin: 30px 0;*/ padding: 0; position: relative; background: transparent; text-align: center; }
.tabs .nav-tabs { border: none; position: relative; display: block; border-bottom: 1px solid #e9e9e9; }
.tabs .nav-tabs .nav-item { position: relative; display: inline-block; margin: 0; float: none; }
@media (max-width: 639px) { .tabs .nav-tabs .nav-item { width: 100%; } }
.tabs .nav-tabs .nav-item .nav-link { background: transparent; border: 0; text-transform: uppercase; line-height: 24px; color: #282828; padding: 30px 25px; font-size: 15px; font-weight: 600; position: relative; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
@media (max-width: 639px) { .tabs .nav-tabs .nav-item .nav-link { padding: 10px; } }
.tabs .nav-tabs .nav-item .nav-link:before { content: ""; display: block; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; opacity: 0; border-bottom: 2px solid #ff940c; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.tabs .nav-tabs .nav-item .nav-link span { position: relative; z-index: 1; }
.tabs .nav-tabs .nav-item .nav-link:hover, .tabs .nav-tabs .nav-item .nav-link.active { color: #282828; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.tabs .nav-tabs .nav-item .nav-link:hover:before, .tabs .nav-tabs .nav-item .nav-link.active:before { opacity: 1; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }

.tab-content { overflow: hidden; padding: 0;/*55px 0;*/ background: white; font-size: 14px; background: white; line-height: 24px; text-align: left; }

.product-description p { font-size: 14px; color: #666666; }
.product-description p span { font-size: 14px !important; font-family: 'Montserrat', sans-serif  !important; }/**AAB Open Sans*/

#tab-content { font-size: 12px; }
#tab-content label { font-size: 12px; }

#product-modal .modal-content .modal-body .product-images img { max-width: none; border: transparent 3px solid; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
#product-modal .modal-content .modal-body .product-images img:hover { -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }

.images-container .js-qv-mask { float: left; width: 70px; position: absolute; top: 0; left: 0; margin: 0; }
@media (max-width: 400px) { .images-container .js-qv-mask { width: 55px; } }

.product-cover { overflow: hidden; position: relative; margin: 0; }

.images-container { margin-bottom: 30px; padding-left: 80px; position: relative; }
@media (max-width: 400px) { .images-container { padding-left: 65px; } }
@media (max-width: 360px) { .images-container { margin-bottom: 60px; } }
.images-container .product-images .owl-stage-outer { padding: 0; margin: 0; }
.images-container .product-images .owl-item { padding: 0; }
.images-container .product-images .owl-nav &gt; div { opacity: 1; width: 20px; height: 20px; line-height: 20px; top: 50%; margin-top: -10px; }
.images-container .product-images .owl-nav &gt; div:before { font-size: 14px; }
.images-container .product-images .owl-nav &gt; div.owl-prev { left: 0; }
.images-container .product-images .owl-nav &gt; div.owl-next { right: 0; }
.images-container .owl-carousel .owl-stage-outer:after { display: none; }

.thumb-container img { width: 100%; height: auto; cursor: pointer; border: 1px solid transparent; margin: 0; margin-bottom: 10px; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
.thumb-container img.selected, .thumb-container img:hover { border-color: #ff940c; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }

#click-zoom { display: inline-block; position: absolute; bottom: 10px; left: 50%; -moz-transform: translateX(-50%); -webkit-transform: translateX(-50%); -o-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); z-index: 1; color: #d3d3d3; cursor: pointer; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }
#click-zoom:hover { color: #ff940c; }
#click-zoom i { font-size: 80px; }
@media (max-width: 767px) { #click-zoom i { font-size: 80px; } }

.modal-content .thumb-container { margin-bottom: 10px; }

.product-cover .layer { background: transparent; -webkit-transition: all 300ms linear; -moz-transition: all 300ms linear; -ms-transition: all 300ms linear; -o-transition: all 300ms linear; transition: all 300ms linear; }

.product-cover .layer .zoom-in { color: #ff940c; font-size: 4.25rem; }

.product-accessories, .categoryproducts { margin-bottom: 50px; }

.scroll-box-arrows.scroll { display: none; }

.img-thumbnail { margin-bottom: 20px; }

#product-modal .modal-content .modal-body .product-images img { max-width: 90px; margin: 0; }

#product-modal .modal-content .modal-body .image-caption { width: 100%; }

#product-modal .modal-content .modal-body .mask { max-height: 390px; }

#product-modal .modal-content .modal-body { margin: 0; left: 50%; -moz-transform: translateX(-50%); -webkit-transform: translateX(-50%); -o-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); }

@media (min-width: 992px) { #product-modal .modal-content .modal-body .product-images { display: inline-block; }
  .product-images &gt; li.thumb-container { float: left; clear: both; display: inline-block; } }
@media (min-width: 576px) { .modal-dialog { max-width: 760px;/*700px;*/ } }
@media (min-width: 1920px) { .modal-dialog { margin-top: 100px; } }
.quickview .social-sharing { margin: 0; text-align: left; }

.product-discounts { margin: 0; }

.quickview #product_comments_block_extra .comments_advices { display: none; }

#blockcart-modal .modal-title, #blockcart-modal button.close { color: white; font-weight: 400; }

.modal-content { border: none; }

.cart-grid-body a.label { font-size: 17px; }

.panel-product-actions { margin-top: 15px; text-align: left; }
.panel-product-actions i { margin-right: 5px; }

.product-line-grid-body &gt; .product-line-info &gt; .label { /*float: left;*/ color: #282828; font-size: 14px; }
.product-line-grid-body &gt; .product-line-info &gt; .label:hover { color: #ff940c; }

.product-line-grid-body .product-discount .regular-price { font-size: 14px; color: #999999; }

.product-line-grid-body .current-price { line-height: 1; }

.product-line-grid-body .current-price .price { font-size: 18px; color: #ff940c; font-weight: 600; }

@media (max-width: 1199px) { .zoomContainer { display: none !important; }
  .zoomWrapper { width: auto !important; height: auto !important; } }
/* end product page */
/* ===== end edit theme ======== */
/* end custom */

/********AAB Custom*************/
/*#search_widget &gt; form &gt; button,
.back-top a,
.ft_newsletter form .btn,
.pos_title h1:before,
.pos-special-products .pos_title,
.owl-dots .owl-dot.active span,
.ft_newsletter form .btn:hover,
.product-price-and-shipping .discount-product,
.js-product-miniature .add-to-links li.cart button.ajax_add_to_cart_button:hover, .js-product-miniature .add-to-links li.cart span.ajax_add_to_cart_button:hover,
.js-product-miniature .add-to-links li a:hover,
.product-actions .add-to-cart:hover,
.btn-secondary:hover, .btn-tertiary:hover, .btn-primary.focus, .btn-primary:focus, .btn-primary:hover,
.input-group .input-group-btn &gt; .btn[data-action=show-password]:hover,
.custom-radio input[type=radio]:checked+span,
.blockcart .body ul li .img_content .product-quantity,
.blockcart .body .checkout a,
.block-categories a.h6,
.blockcart .body .checkout a:hover,
.slideshow_container .pos-slideshow .nivo-controlNav a.active, .slideshow_container .pos-slideshow .nivo-controlNav a:hover,
.pagination .current a,
.pagination a:hover,
#blockcart-modal .modal-header,
.products-selection .products-sort-order .dropdown-menu .select-list:hover,
.selector-block .localiz_block .dropdown-menu li.current .dropdown-item,
.selector-block .localiz_block .dropdown-menu li:hover .dropdown-item,
.owl-nav &gt; div:hover,
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .btn:hover, .btn:focus, .btn:active, .btn.active,
.owl-dots .owl-dot span:hover
{
  background: #ff940c;
}

.blockcart .header a i,.account-aa .header a i,
.blockcart .header a .item_total, .account-aa .header a .item_total,
.pt_custommenu .pt_menu.act .parentMenu a, .pt_custommenu .pt_menu.active .parentMenu a,
.navleft-container .pt_vmegamenu .pt_menu.active .parentMenu a,
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemMenuName.nochild:hover,
.js-product-miniature .product-price-and-shipping .price,
.testimonials_container .item-testimonials .item .content_des:before,
.js-product-miniature .manufacturer a:hover,
.js-product-miniature .product_name:hover,
.product-prices .price, .product-prices .current-price span:first-child,
a:hover,
.page-my-account #content .links a:hover i,
.breadcrumb_container .breadcrumb-inner ol li:last-child a, .breadcrumb_container .breadcrumb-inner ol li:last-child span,
.breadcrumb_container .breadcrumb-inner ol li a:hover,
#footer .footer-container .footer_block .footer_list li a:hover,
.blockcart .body ul li .right_block .product-price, .account-aa .body ul li .right_block .product-price,
.blockcart .body .price_content .price_inline.cart-total .value, .account-aa .body .price_content .price_inline.cart-total .value,
.pt_custommenu .pt_menu .popup .block1 .column .itemMenuName:hover,
#js-product-list-top ul.display li:hover, #js-product-list-top ul.display li.selected,
.product-line-grid-body .current-price .price,
.navleft-container .pt_vmegamenu .pt_menu.active .parentMenu a, .navleft-container .pt_vmegamenu .pt_menu:hover:not(.noSub):after,
#pt_menu_link &gt; div &gt; a &gt; span:hover,
#js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li a:hover,
.block-categories .category-sub-menu li[data-depth="0"] &gt; a:hover,
#search_filters .facet .facet-label a:hover,
#footer .footer-container .footer-bottom .copyright a,
.cart-grid-body a.label:hover
{
  color: #ff940c;
}*/

/*******latence de chargement**********/
/*#search_widget &gt; form &gt; input.text_input.ui-autocomplete-input
{
  border: 2px solid #eeeeee !important;
  margin-bottom: 0 !important;

}*/
/*************/

#header &gt; div.header-bottom &gt; div &gt; div &gt; div.col-lg-3.col-md-12.col-xs-12 &gt; div &gt; div &gt; div.pt_vmegamenu_title &gt; h2
{
  visibility: hidden;
}



.product-tabs-container-slider ul.tabs_slider li.active, .product-tabs-container-slider ul.tabs_slider li:hover 
{
  color: #ff940c;
  border-color: #ff940c;
}
.product-tabs-container-slider ul.tabs_slider li.active:before, .product-tabs-container-slider ul.tabs_slider li:hover:before 
{
  border-top: 6px solid #ff940c;
}

.blockcart .header a .item_count
{
  background: #ff940c ;/*#282828;*/
}

.product-actions .add-to-cart
{
  border: 2px solid #212121;
  background-color: #212121;
  color: #fff;
}

.product-actions .add-to-cart:hover
{
  border: 2px solid #ff940c;
}

body#checkout section.checkout-step .address-item.selected 
{
    border: 3px solid #ff940c;
}
.thumb-container img.selected, .thumb-container img:hover,
#js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li.cart button.ajax_add_to_cart_button:hover, #js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li.cart span.ajax_add_to_cart_button:hover
{
  border-color: #ff940c;
}
.slideshow_container .pos-slideshow .nivo-directionNav a:hover
{
	background: #ff940c;
	border-color: #ff940c;
}

#sm &gt; a &gt; img,
#phone &gt; a &gt; img

{
  width: 2.75em;
  position: relative;
  top: 0.5em;
}
#tel
{
  position: relative;
  left: 3em;
  bottom: 0.95em;
  font-weight: bold;
}
#app
{
  position: relative;
  left: 0.5em;
}
#phone
{
  padding-right: 20px;
  right: 11em;
  bottom: 0.5em;
}
#phone &gt; a
{
  text-decoration-color: #282828;
}
#pt_menu_link &gt; div &gt; a &gt; span
{
  position: relative;
  top: 0.25em;
  font-weight: 700;
}

.static_cms .box_cms h2
{
	font-size: 12px;
	font-weight: bold;
}

#wrapper &gt; div.static_cms &gt; div &gt; div &gt; div
{
	padding: 0.4em;
}

.static_cms .box_cms p
{
	font-size: 12px;
}

#wrapper &gt; div.static_cms &gt; div &gt; div &gt; div&gt; div &gt; svg
{
	bottom: 0.4em;
    width: 38px;
    float: left;
    margin-right: 15px;
    position: relative;
}
#wrapper &gt; div.static_cms &gt; div &gt; div &gt; div &gt; div &gt; svg &gt; path
{
	fill: #ff940c;
}
#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div &gt; div &gt; div &gt; div.address-store &gt; p
{
	text-align: justify;
}

#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div:nth-child(1) &gt; div &gt; div &gt; div.address-store &gt; p:nth-child(2) &gt; svg,
#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div:nth-child(1) &gt; div &gt; div &gt; div.address-store &gt; p:nth-child(3) &gt; svg,
#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div:nth-child(1) &gt; div &gt; div &gt; div.address-store &gt; p:nth-child(4) &gt; svg,
#main &gt; div &gt; div.cart-grid-body.col-xs-12.col-lg-8 &gt; div &gt; div.cart-overview.js-cart &gt; ul &gt; li &gt; div &gt; div.product-line-grid-body.col-md-4.col-xs-8 &gt; div:nth-child(3)
{
  display: none;
}

#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div &gt; div &gt; div &gt; div.address-store &gt; p:nth-child(1) &gt; svg,
.footer-top .footer-info .address-store svg
{
	width: 38px;
    float: left;
    fill: #ff940c;
    position: relative;
    top: 0.5em;
    padding: 0;
}
#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div &gt; div &gt; div &gt; div.address-store &gt; p:nth-child(2) &gt; svg,
#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div &gt; div &gt; div &gt; div.address-store &gt; p:nth-child(3) &gt; svg,
.footer-top .footer-info .address-store svg
{
	width: 38px;
    /*float: left;*/
    fill: #ff940c;
    position: relative;
    top: 15px;
    padding-right: 4px;
    float: unset;
}
#footer .footer-container .about_us .footer-info .address-store p i {
    display: flex;
        align-items: baseline;
}
#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div:nth-child(1) &gt; div &gt; div &gt; div.address-store &gt; p:nth-child(1),div.footer-top div.address-store &gt; p
{
	position: relative;
	bottom: 1.5em;
}

#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div.col-sm-12.col-md-12.col-lg-6.col-xs-12 &gt; div &gt; div:nth-child(2) &gt; h3
{
	visibility: hidden;
}

/*signin*//*
#header &gt; div.header-banner &gt; div.customer-info &gt; div
{*/
 /* display: none;*/
/*}

.customer-dropdown&gt;.account span
{
  padding: 0;
  height: 0;
}
.user_info_desktop li a
{
  padding: unset;
  padding-left: 20px;
}
.user_info_desktop li
{
  padding-right: 20px;
}


#header &gt; nav &gt; div
{
  position: relative;
}

#header &gt; nav &gt; div &gt; ul
{
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
}
#header &gt; nav &gt; div &gt; ul &gt; li:nth-child(4) &gt; div &gt; div &gt; ul
{
  top: 3em;
}
#header &gt; nav &gt; div &gt; ul &gt; li:nth-child(4) &gt; div &gt; div &gt; ul &gt; li
{
  padding-right: 0 !important;
}
*/

#cart-subtotal-shipping &gt; span.value:not(#opc_steps_content #cart-subtotal-shipping &gt; span.value)
{
  visibility: hidden;
}

/**molka design**/
#header &gt; div.header-top &gt; div &gt; div &gt; div.col-right.col.col-xs-12.col-lg-9.col-md-12.display_top &gt; div.blockcart.cart-preview &gt; div.header &gt; a
{
  top: 31px;
}

#header &gt; div.header-top &gt; div &gt; div &gt; div.col-right.col.col-xs-12.col-lg-9.col-md-12.display_top &gt; div.blockcart.cart-preview &gt; div.header &gt; a &gt; span.item_count
{
  left:  15em;
  top: -1.25em;
}

#header &gt; div.header-top &gt; div &gt; div &gt; div.col-right.col.col-xs-12.col-lg-9.col-md-12.display_top &gt; div.blockcart.cart-preview &gt; div.header &gt; a &gt; span.item_total
{
  position: relative;
  top: -2.5em;
  left: 5em;
}
#header &gt; div.header-top &gt; div &gt; div &gt; div.col-right.col.col-xs-12.col-lg-9.col-md-12.display_top &gt; div.blockcart.cart-preview
{
  top: -3px;
  right: 7em;
}
#header &gt; div.header-top &gt; div &gt; div &gt; div.col-right.col.col-xs-12.col-lg-9.col-md-12.display_top &gt; div.blockcart.cart-preview &gt; div.header &gt; a &gt; i
{
  /*display: none;*/
}

#aa_cart_ext
{
  width: 44%;
  position: relative;
}

div &gt; div &gt; article &gt; div.item-inner &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button &gt; i
{
  color: #ff940c;
}

#aa_cart_list
{
  width: 11%;
  float: left;
}

#wrapper &gt; div.position &gt; div &gt; div &gt; div.col-xs-12.col-sm-12.col-md-4
{
    -ms-transform: translateY(10%);/*20% before dots*/
    transform: translateY(10%);
}

/*#wrapper &gt; div.position &gt; div &gt; div &gt; div.col-xs-12.col-sm-12.col-md-4 &gt; div &gt; div.row.pos_content &gt; div &gt; div.owl-stage-outer &gt; div,*/
/*#wrapper &gt; div.position &gt; div &gt; div &gt; div.col-xs-12.col-sm-12.col-md-4 &gt; div &gt; div.row.pos_content &gt; div &gt; div.owl-stage-outer &gt; div &gt; div

{
  width: 100% !important;
}*/

#wrapper &gt; div.static_cms &gt; div &gt; div &gt; div &gt; div &gt; div &gt; p
{
  padding-bottom: 1px;
}

#wrapper &gt; div.position &gt; div &gt; div &gt; div.col-xs-12.col-sm-12.col-md-4 &gt; div &gt; div.row.pos_content &gt; div &gt; div.owl-stage-outer &gt; div &gt; div &gt; div &gt; article &gt; div.item-inner &gt; div.product_desc &gt; div.product-price-and-shipping &gt; span.discount-percentage.discount-product
{
  display: block;
  width: 25%;
  margin-left: auto;
  margin-right: auto;
  direction: ltr;
}

#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div.col-sm-12.col-md-12.col-lg-6.col-xs-12 &gt; div &gt; div &gt; ul
{
  list-style: disc;
}

#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div.col-sm-12.col-md-12.col-lg-6.col-xs-12 &gt; div &gt; div &gt; ul &gt; li:before {
   content: "→";
   position: relative;
   top: 18px;
   color: #e9e9e9;
}

#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div.col-sm-12.col-md-12.col-lg-6.col-xs-12 &gt; div &gt; div &gt; h3
{
  margin-bottom: 0;
}

#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div.col-sm-12.col-md-12.col-xs-12.col-lg-12 &gt; div &gt; div &gt; div.logo_footer.col-lg-3
{
  padding-left: 0;
}

#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div.col-sm-12.col-md-12.col-xs-12.col-lg-12 &gt; div &gt; div &gt; div.address-store &gt; div &gt; h3
{
  display: none;
}

#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div.col-sm-12.col-md-12.col-xs-12.col-lg-12 &gt; div &gt; div &gt; div.address-store.col-lg-9 &gt; p
{
  border-left: 1px solid #e9e9e9;
  border-right: 1px solid #e9e9e9;
  font-weight: 700;
  color: #282828;
}

#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div.col-sm-12.col-md-12.col-xs-12.col-lg-12
{
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 50px;
    padding: 0;
}
#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div.col-sm-12.col-md-12.col-xs-12.col-lg-12:before
{
    content: "";
    width: 170px;
    height: 2px;
    background: #ff940c;
    position: absolute;
    left: 0%;
    margin-left: 0px;
    bottom: -1px;
}

#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div.col-sm-12.col-md-12.col-xs-12.col-lg-12 &gt; div &gt; div &gt; div.address-store.col-lg-9 &gt; p

{
  padding-left: 2.5em;
  padding-right: 2.5em;
}

#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div.col-sm-12.col-md-12.col-xs-12.col-lg-12 &gt; div &gt; div &gt; div.address-store.col-lg-9 &gt; div &gt; ul
{
  direction: rtl;
}

#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div.col-sm-12.col-md-12.col-lg-6.col-xs-12 &gt; div &gt; div &gt; ul &gt; li &gt; a,#footer .footer-container .footer_block .footer_list li a
{
  color: #282828;
  font-weight: 700;
}
#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div.col-sm-12.col-md-12.col-lg-6.col-xs-12 &gt; div &gt; div &gt; ul &gt; li &gt; a:hover,#footer .footer-container .footer_block .footer_list li a:hover
{
  color: #ff940c;
}
#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div:nth-child(2)
{
  padding-left: 0;
}

#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div:nth-child(4) &gt; div &gt; div.content-newletter &gt; form &gt; div.input-subscribe &gt; input,div.input-subscribe input
{
  padding: 0 40px !important;
}

#wrapper &gt; div.position &gt; div &gt; div &gt; div.col-xs-12.col-sm-12.col-md-8 &gt; div &gt; div &gt; div.row.pos_content.pos_content_product_cate &gt; div.productTabCategorySlider.owl-carousel.owl-loaded.owl-drag &gt; div.owl-stage-outer &gt; div &gt; div &gt; div &gt; article &gt; div &gt; div.product_desc
{
  padding-right: 15px;
  padding-left: 15px;
}

#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div:nth-child(4) &gt; div &gt; div.content-newletter &gt; form &gt; div.input-subscribe &gt; input,div.input-subscribe input
{
  border: none !important;
  border-radius: 0;
  text-transform: uppercase;
}

#exCollapsingNavbar7 &gt; ul &gt; li &gt; span
{
  right: 1px;
}

#exCollapsingNavbar7 &gt; ul &gt; li &gt; span &gt; i
{
  color: #e0e0e0;
}

#exCollapsingNavbar217 &gt; ul &gt; li,
#exCollapsingNavbar218 &gt; ul &gt; li,
#exCollapsingNavbar219 &gt; ul &gt; li,
#exCollapsingNavbar220 &gt; ul &gt; li
{
  list-style: square;
  display: list-item;
  height: 24px;
  color: #e0e0e0;
}

#js-product-list-top &gt; div &gt; div:nth-child(2) &gt; div &gt; div &gt; button &gt; i
{
  color: #ff940c;
}

#js-product-list-top &gt; div &gt; div:nth-child(2) &gt; div &gt; div &gt; button
{
  border: none;
}

#search_widget &gt; form &gt; button
{
  padding-left: 15px;
  padding-right: 15px;
}

/***remarque CBS***/
#ui-id-1 &gt; li.jolisearch-container.product.ui-menu-item &gt; span
{
  display: none;
}
.ui-menu .ui-menu-item .jolisearch-post-right
{
  top: 1em !important;
}
/*#wrapper &gt; div.testimonials_container &gt; div &gt; div.row.pos_content &gt; div &gt; div.owl-dots,*/
#wrapper &gt; div:nth-child(10) &gt; div &gt; div.row.pos_content &gt; div &gt; div.owl-dots
{
  display: none;
}

.ui-menu .ui-menu-item .jolisearch-post-right
{
  height: 40px;
  
}
.ui-menu .ui-menu-item a.ui-corner-all
{
  overflow-y: hidden;
}


/***banner***/

@media (min-width: 751px)
{
    /*#aa_banner4
  {
    width: 98.75%;
  }

  #aa_banner2
  {
   width: 102.75%;
    max-width: 102.75%;
  }
  #aa_banner3
  {
   width: 103.75%;
   max-width: 103.75%;
  }*/
}

@media (min-width: 768px)
{
  #wrapper &gt; div.home-banner &gt; div &gt; div &gt; div:nth-child(2)
  {
    display: none;
  }
  /*#pagenotfound &gt; main &gt; section &gt; div.container &gt; div.row &gt; div
  {
    width: 100%;
  }*/
}

@media (max-width: 767px)
{
  /*#wrapper &gt; div.home-banner &gt; div &gt; div &gt; div:nth-child(1),*/
  #ban_desk &gt; div:nth-child(1) &gt; div,
  #header &gt; div.header-top &gt; div &gt; div &gt; div.col-right.col.col-xs-12.col-lg-9.col-md-12.display_top &gt; div.blockcart.cart-preview &gt; div.body &gt; div &gt; div.mini_cart_arrow
  {
    display: none;
  }
  #ban_mobile &gt; div &gt; a &gt; img
  {
    width: 80%;
  }
}

#PM_ASBlock_6 &gt; div.card-header,
#js-active-search-filters,
/*#PM_ASCriterionGroupLink_3_4 &gt; li:nth-child(3),*/
#PM_ASCriterionsGroup_3_10,
#left-column &gt; div.block-categories.hidden-sm-down &gt; ul &gt; li:nth-child(2) &gt; ul &gt; li:nth-child(16)
{
  display: none;
}
#PM_ASBlock_6 &gt; div.card-block
{
  padding: 0;
}


/*****mobile molka design********/

#PM_ASBlock_6 &gt; div.card-block &gt; form.PM_ASSelectionsBlock.PM_ASSelections.active_filters,
#PM_ASBlock_6 &gt; div.card-block &gt; a
{
  display: none !important;
}

#header &gt; nav &gt; div &gt; ul.hidden-md-down
{
  display: block !important;
}

#header &gt; nav &gt; div &gt; div.user-info-block.selector-block.hidden-lg-up
{
  display: none;
}


#navbar-inner &gt; a
{
  visibility: hidden;
  text-transform: none;
  color: #282828;
}

#header &gt; div.header-bottom &gt; div &gt; div &gt; div.display_bottom.col-xs-12.col-lg-9.col-md-12 &gt; div.ma-nav-mobile-container.hidden-lg-up &gt; div &gt; div
{
  background: #fff;
  border-radius: 3px;
}

.button.ajax_add_to_cart_button:disabled
{
  cursor: not-allowed !important;
}


/********/


/**BH Style**/
#form-control-submit-login
{
  width: 46%;/*94%;*/
}

#customer-form-login &gt; section &gt; div:nth-child(6) &gt; div
{
  color: #1f1f1f;
}

@media (min-width: 768px){
  #customer-form-login &gt; section &gt; div:nth-child(8)
  {
    width: 56%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    bottom: 1em;
  }
}
#customer-form-login &gt; section &gt; div:nth-child(8) &gt; div &gt; button
{
  width: 100%;
  background-color: #ff940c;
  color: #fff;
}
#customer-form-login &gt; section &gt; div:nth-child(8) &gt; div &gt; button:hover
{
  background-color: #212121;
}

#customer-form-login &gt; section &gt; div:nth-child(6)
{
  margin-bottom: 2em;
}

#fbpsc &gt; p.btn-connect.btn-block-connect.btn-social.btn-facebook
{
  background-color: #fff;
  color: #4267B2;
  border: none;
}

#fbpsc &gt; p.btn-connect.btn-block-connect.btn-social.btn-google
{
  box-shadow: none;
}

#customer-form-create &gt; section &gt; div.recaptcha-text-center.field
{
  margin-top: 2em;
  margin-bottom: 1em;
}

.account-aa .header a i {
    font-size: 28px;/*34px;*/
    color: #ff940c;
    position: absolute;
    left: 44%;/*0;*/
    /*top: 50%;*/
    -moz-transform: translateY(-100%);/*(-50%);*/
    -webkit-transform: translateY(-100%);/*(-50%);*/
    -o-transform: translateY(-100%);/*(-50%);*/
    -ms-transform: translateY(-100%);/*(-50%);*/
    transform: translateY(-100%);/*(-50%);*/
}



.account-aa {
    float: right;
    position: relative;
}
.account-aa .header a {
    display: block;
    position: relative;
    color: #fff;/*#777777;*/
    font-size: 14px;
    font-weight: 400;
    height: 52px;
    text-align: left;
    line-height: 26px;
    padding-left: 60px;
    padding-right: 32px;
}

#user-login-aa
{
  top: 2em;/*1em;*/
  right: 8em;
  
}
#user-login-aa &gt; div &gt; a
{
  padding-right: 1em;
  padding-left: 2.5em;/*3em;*/
  height: auto;
}
#user-login-aa &gt; div &gt; a:hover
{
	color: #fff !important;
}


#header &gt; div.header-top &gt; div &gt; div &gt; div.col-right.col.col-xs-12.col-lg-9.col-md-12.display_top &gt; div.block-search.col-lg-8.col-md-8.col-sm-12
{
  width: 58.5%;
}


#user-login-aa &gt; div &gt; div
{
  z-index: 10;
  background-color: #fff !important; 
  width: 26em;/*40em*/

  /*border-radius: 30px;*/
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.231));

  top: 2.5rem;
  left: 0em;
}
/*
#my-account-guest-notification &gt; div.login-buttons &gt; p
{
    margin-bottom: 0;
    text-align: center;
    margin: 30px 0 10px 0;
    font-size: 18px;
}
*/

#header.page-header p 
{
    margin-bottom: 0;
}

.login-buttons p 
{
    text-align: center;
    margin: 30px 0 10px 0;
}

.login-buttons a 
{
    width: 70%;
    margin: 20px auto;
    display: block;
    line-height: 50px;
}

.login-buttons a .login 
{
    background: #ff940c;/*#1a5888;*/
    color: #fff;
    font-weight: bold;
    height: 3.5em;
    border: unset;
}

.login-buttons a button 
{
    cursor: pointer;
    border-radius: 3px;
    width: 100%;
}

.login-buttons a .create-account 
{
    width: 100%;
    background: 0;
    border: 1px solid #ff940c;
    height: 3.5em;
    color: #ff940c;
    font-weight: bold;

}

#header .section 
{
    width: 100%;
}

.section.gray 
{
    background: #f7f7f7;
}

.cart-alert-tab .section 
{
    margin-top: 30px;
    clear: both;
}

.notification-tab-link, .notification-tab-link-lower 
{
    display: block;
    width: 33.3333333%;
    font-size: 11px;
    text-align: center;
    text-transform: uppercase;
    padding: 20px 0;
    position: relative;
}

.left {
    float: left;
}


.notification-tab-link&gt;a, .notification-tab-link-lower&gt;a 
{
    display: block;
}

/*
.notification-tab-link svg, .notification-tab-link-lower svg 
{
    height: 25px;
    fill: #404040;
    width: 100%;
    margin-bottom: 10px;
}

*/

#my-account-guest-notification &gt; div.section.gray &gt; span
{
  cursor: pointer;
}


#my-account-guest-notification &gt; div.section.gray &gt; span:nth-child(1) &gt; a &gt; span,
#my-account-guest-notification &gt; div.section.gray &gt; span:nth-child(2) &gt; a &gt; span,
#my-account-guest-notification &gt; div.section.gray &gt; span:nth-child(3) &gt; a &gt; span

{
    position: absolute;
    top: 50%;
    left: 45%;
    color: #777777;

    /*margin: -13px 0 0 -29px;*/

    text-align: center;
    margin: 0px 0px 0 -46px;



}

#my-account-guest-notification &gt; div.section.gray &gt; span &gt; a &gt; span
{
  font-size: 12px;
}

#my-account-guest-notification &gt; div.section.gray
{
  /*border-radius: 0px 0px 30px 30px;*/
}


#my-account-guest-notification &gt; div.section.gray &gt; span
{
  margin-top: 5%;
}

#my-account-guest-notification &gt; div.section.gray &gt; span &gt; a &gt; i
{
      /*margin: 0% -20% -20%;*/
      position: relative;
      top: 1rem;
      /*left: -50% ;*//*-1.5rem;*/
      color: #000;
}

#my-account-guest-notification &gt; div.section.gray &gt; span:nth-child(1) &gt; a &gt; span
{
  left: 50%;
}

#my-account-guest-notification &gt; div.section.gray &gt; span:nth-child(1) &gt; a &gt; i
{
  left: -64%;
}

#my-account-guest-notification &gt; div.section.gray &gt; span:nth-child(2) &gt; a &gt; span
{
  left: 34%;
}

#my-account-guest-notification &gt; div.section.gray &gt; span:nth-child(2) &gt; a &gt; i
{
  left: -74%;
}


#my-account-guest-notification &gt; div.section.gray &gt; span:nth-child(3) &gt; a &gt; span
{
  left: 36%;
}

#my-account-guest-notification &gt; div.section.gray &gt; span:nth-child(3) &gt; a &gt; i
{
  left: -84%;
}



#my-account-guest-notification &gt; div.login-buttons &gt; a:nth-child(2),
#my-account-guest-notification &gt; div.login-buttons &gt; a:nth-child(3)
{
  width: 100%;
  padding-left: 3em;
  padding-right: 3em;
}

#header &gt; div.header-banner &gt; div.customer-container.login-container.showy &gt; div.form-wraps
{
  padding: 35px;
  /*height: 29em;*/
  height: 466px;/*460px;*/
  width: 500px;/*355px;/*360px;*/
}

#header &gt; div.header-banner &gt; div.customer-container.create-container.showy &gt; div.form-wraps
{
  /*height: 43em;*/
}


#customer-form-login &gt; section &gt; div:nth-child(6),
#customer-form-login &gt; section &gt; div:nth-child(6) &gt; div,
#customer-form-login &gt; section &gt; div:nth-child(5),
#customer-form-login &gt; section &gt; div:nth-child(5) &gt; div

{
    display: flex;
    justify-content: center;
}

#customer-form-login &gt; section &gt; div:nth-child(7)
{
  text-align: center;
  margin-bottom: 0.5em;
}

#customer-form-login &gt; section
{
  margin-bottom: 1em;
}
#customer-form-login &gt; section &gt; div:nth-child(5)
{
  margin-bottom: 2em;
}

#fbpsc
{
  display: flex !important;
  flex-direction: row-reverse;
  /*position: relative;
  left: -13%;*/
  justify-content: center;
  align-items: center;
  position: relative;
  bottom: 20px;
}


#fbpsc.displayFooter
{
  background: unset;
  border: unset;
  padding: 0;
}

#fbpsc &gt; p.btn-connect.btn-block-connect.btn-social.btn-google,
#fbpsc &gt; p.btn-connect.btn-block-connect.btn-social.btn-facebook
{
  margin-top: 1em;
}

#customer-form-login &gt; section &gt; div &gt; label
{
  text-align: left;
}

#customer-form-login &gt; section &gt; div:nth-child(4) &gt; div &gt; div &gt; span &gt; button
{
  background-color: #000;
  bottom: 4px;
  /*height: 26px !important;
  padding-top: 6px;*/
  z-index: 20;
}

#customer-form &gt; section &gt; div:nth-child(9) &gt; div.col-md-9 &gt; span &gt; input[type=checkbox]
{
  top: 2.8em;
  right: 0;
  z-index: 99;
}


/****************/

/****Filter Design*******/



#left-column &gt; div.block-categories.hidden-sm-down &gt; ul &gt; li &gt; ul &gt; li &gt; a.active
{
  color: #ff940c;
}

/*#left-column &gt; div.block-categories.hidden-sm-down &gt; ul &gt; li,*/
#PM_ASBlock_3 &gt; div.card-header,
#PM_ASBlock_3 &gt; div.card-block &gt; form.PM_ASSelectionsBlock.PM_ASSelections.active_filters,
#left-column &gt; div.block-categories.hidden-sm-down &gt; ul &gt; li:nth-child(2) &gt; ul &gt; li:nth-child(6),
#left-column &gt; div.block-categories.hidden-sm-down &gt; ul &gt; li:nth-child(2) &gt; ul &gt; li:nth-child(7),
#left-column &gt; div.block-categories.hidden-sm-down &gt; ul &gt; li:nth-child(2) &gt; ul &gt; li:nth-child(8),
#left-column &gt; div.block-categories.hidden-sm-down &gt; ul &gt; li:nth-child(2) &gt; ul &gt; li:nth-child(9),
#left-column &gt; div.block-categories.hidden-sm-down &gt; ul &gt; li:nth-child(2) &gt; ul &gt; li:nth-child(10),
#left-column &gt; div.block-categories.hidden-sm-down &gt; ul &gt; li:nth-child(2) &gt; ul &gt; li:nth-child(11),
#left-column &gt; div.block-categories.hidden-sm-down &gt; ul &gt; li:nth-child(1),

/*#PM_ASCriterionGroupLink_3_4 &gt; li:nth-child(6),
#PM_ASCriterionGroupLink_3_4 &gt; li:nth-child(7),
*/
#PM_ASCriterionGroupLink_3_4 &gt; li:nth-child(1),
#PM_ASCriterionGroupLink_3_4 &gt; li:nth-child(15)/*,
#PM_ASCriterionGroupLink_3_4 &gt; li:nth-child(2)
/*,
#PM_ASCriterionGroupLink_3_4 &gt; li:nth-child(3),
#PM_ASCriterionGroupLink_3_4 &gt; li:nth-child(4),
#PM_ASCriterionGroupLink_3_4 &gt; li:nth-child(5),
#PM_ASCriterionGroupLink_3_4 &gt; li:nth-child(12),
#PM_ASCriterionGroupLink_3_4 &gt; li:nth-child(13),
#PM_ASCriterionGroupLink_3_4 &gt; li:nth-child(14),
#PM_ASCriterionGroupLink_3_4 &gt; li:nth-child(15)*/

{
  display: none;
}

#PM_ASCriterionsGroupTitle_3_4
{
  border: 0;
}


#PM_ASCriterionGroupLink_3_4 &gt; li:only-child
{
  display: block;
}

#PM_ASBlock_3 &gt; div.card-block &gt; a
{
  display: none !important;
}


a.PM_ASCriterionLinkSelected &gt; span,
.PM_ASBlockOutputVertical a:hover
{
  color: #ff940c;
}

/*#PM_ASCriterionGroupLink_3_4 &gt; li &gt; a &gt; span &gt; div.PM_ASCriterionNbProduct,*/
div.PM_ASCriterionNbProduct
{
  opacity: unset;
}

.PM_ASCriterionGroupLink:not(.PM_ASCriterionGroupLinkColor) .PM_ASCriterionLink:before
{
  content: unset;
}

#PM_ASBlock_3 &gt; div.card-block
{
  padding: 0;
}

.PM_ASBlockOutput.PM_ASMobileMode .card-block
{
  display: block;
}

#PM_ASCriterionsGroupTitle_3_4 &gt; span,
#PM_ASCriterionsGroupTitle_3_5 &gt; span,
#PM_ASCriterionsGroupTitle_3_8 &gt; span,
#PM_ASCriterionsGroupTitle_3_9 &gt; span,
#PM_ASCriterionsGroupTitle_3_6 &gt; span,
#PM_ASCriterionsGroupTitle_3_15 &gt; span
{
  font-weight: 700;
}

#PM_ASCriterions_3_8 &gt; div &gt; div &gt; div &gt; div,
#PM_ASCriterions_3_9 &gt; div &gt; div &gt; div &gt; div,
#PM_ASCriterions_3_5 &gt; div &gt; div &gt; div &gt; div,
#PM_ASCriterions_3_6 &gt; div &gt; div &gt; div &gt; div,
#PM_ASCriterions_3_4 &gt; div &gt; div &gt; div &gt; div
{
  /*border: none;*/
  box-shadow: none;
}
#PM_ASCriterionsGroupTitle_3_5,
#PM_ASCriterionsGroupTitle_3_6
{
  border: 0;
}
#ver_pt_menu3 &gt; div,
#ver_pt_menu4,
#ver_pt_menu5,
#ver_pt_menu14,
#pt_custommenu_itemmobile &gt; li:nth-child(12),
#PM_ASCriterionsGroup_3_13
{ 
  display: none;
}

.PM_ASLabelCheckbox
{
  top : 0 !important;
}

.selectize-control.single .selectize-input:after
{
  border-color: #ff940c transparent transparent transparent;
}

#PM_ASearchResultsInner &gt; section &gt; h2,
#js-product-list-top,
#pt_custommenu_itemmobile &gt; li:nth-child(19)
{
  display: none;
}

#pt_custommenu_itemmobile &gt; li:nth-child(15)
{
  border: none;
}

#cart &gt; main &gt; section
{
  margin-bottom: 5em;
}

#main &gt; div &gt; div.cart-grid-right.col-xs-12.col-lg-4 &gt; div.checkout.cart-detailed-actions.card-block
{
  padding-right: 0;
  padding-left: 0;
}

#main &gt; div &gt; div.cart-grid-right.col-xs-12.col-lg-4 &gt; div.checkout.cart-detailed-actions.card-block &gt; div &gt; a
{
  width: 100%;
}

#cart &gt; main &gt; section &gt; div &gt; div &gt; div &gt; section &gt; div &gt; div.cart-grid-right.col-xs-12.col-lg-4 &gt; div.checkout.cart-detailed-actions.card-block &gt; div &gt; a
{
  background-color: #ff940c;
}

#cart &gt; main &gt; section &gt; div &gt; div &gt; div &gt; section &gt; div &gt; div.cart-grid-right.col-xs-12.col-lg-4 &gt; div.checkout.cart-detailed-actions.card-block &gt; div &gt; a:hover
{
  background-color: #282828;
}

#order-details &gt; ul &gt; li
{
  list-style : inside;
}

#order-details &gt; ul &gt; li::marker
{
  color: #ff940c;
}




#left-column
{
  padding: 0;
}

#PM_ASCriterionGroupLink_3_4,
#PM_ASCriterionGroupLink_3_5,
#PM_ASCriterionGroupLink_3_6
{
  list-style: square;
  color: #e0e0e0;
}

#exCollapsingNavbar7 &gt; ul &gt; li &gt; span &gt; i.material-icons.add
{
  line-height: 0;
}

#exCollapsingNavbar217 &gt; ul,
#exCollapsingNavbar218 &gt; ul,
#exCollapsingNavbar219 &gt; ul,
#exCollapsingNavbar220 &gt; ul
{
  margin: 0.75em;
}


/*************/

/******youssef design*******/

#main &gt; div &gt; div.cart-grid-body.col-xs-12.col-lg-8 &gt; div &gt; div.card-block &gt; h1,
#main &gt; div &gt; div.cart-grid-body.col-xs-12.col-lg-8 &gt; a
{
  font-weight: 700;
}

/*********/


@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}


#my-account-guest-notification &gt; div.login-buttons &gt; p:nth-child(1) &gt; i
{
  color: #000;
  font-size: 5em;
}

#my-account-guest-notification &gt; div.login-buttons &gt; p.fs18.light
{
  font-size: 1.5em;
}

#my-account-guest-notification &gt; div.login-buttons &gt; p:nth-child(3)
{
  position: relative;
}

#my-account-guest-notification &gt; div.login-buttons &gt; p:nth-child(3) &gt; a
{
  width: 47%;
  padding-left: 3em;
  padding-top: 0.8em;
  color: #212121;
}





/****to translate before production****/

#header &gt; div.header-banner &gt; div.customer-info &gt; div
{
  display: none;
}



/******************************************/



/******maquillage***********/
#content-hook_order_confirmation &gt; div &gt; div &gt; div &gt; p &gt; strong.aa_span_mail
{
  color: #282828;
}



#order-items &gt; h3,
#order-details &gt; h3
{
  border-left: 3px solid #ff940c;
  padding-left: 1.5em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
#product-availability .product-available,
#order-items &gt; div &gt; table &gt; tbody &gt; tr.font-weight-bold &gt; td &gt; span.aa_total,
#order-items &gt; div &gt; table &gt; tbody &gt; tr.font-weight-bold &gt; td.aa_total

{
  color: #ff940c;
}
#myModalLabel &gt; i
{
  color: #fff;
}
#payment-option-3-additional-information &gt; section &gt; p  /*cash payement paragraph**/
{
  display: none;
}

#aa_table &gt; p:nth-child(2),
#aa_table &gt; p.cart-products-count
{
  margin-top: 1em;
}

#PM_ASCriterionGroupLink_3_5
{
  text-align: left;
}
/*#wrapper &gt; div &gt; div.pos_logo.product_block_container &gt; div.row.pos_content &gt; div.logo-slider.owl-carousel.owl-loaded.owl-drag &gt; div.owl-stage-outer &gt; div.owl-stage &gt; div
{
  padding: 0 2em;
}*/

#customer-form-create &gt; section &gt; h3,
#customer-form-login &gt; section &gt; header &gt; h3,
#customer-form-forgot &gt; header &gt; h3
{
  text-transform: none;
  font-size: 18px;/*22px;*/
  margin-left: 5%;
  margin-right: 5%;
}

#creer_phrase
{
  text-align: center;
  position: relative;
  bottom: 5px;
}

/****animate label-placeholder****/

 /*form {*/
  /*margin: 50px auto;
  padding: 30px;
  border: 4px double black;
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.2);
  width: 400px;*/

 /* h2 {
    margin: 0 0 16px 0;
    padding: 0;
  }*/

  input,
  label {
    position: relative !important;
    display: inline-block !important;
    /*width: 100% !important;*/
  }
  #add-to-cart-or-refresh &gt; input.product-refresh.ps-hidden-by-js,#add-to-cart-or-refresh input.product-refresh.ps-hidden-by-js
  {
    display: none !important;
  }
#customer-form-create &gt; section &gt; div:nth-child(9) &gt; div.col-md-6 &gt; div &gt; input,
#password,
#email,
#customer-form-create &gt; section &gt; div &gt; div.col-md-6 &gt; input

/*,
  input[type="text"],
  input[type="password"],
  input[type="email"]*/ {
    font-size: 16px !important;
    padding: 0.5em 0 !important;/*0 0 5px 0 !important;*/
    z-index: 10 !important;
    background: #fbfbfb !important; /*transparent !important;*/
    margin-bottom: 0.5em !important;
    border: none !important;
    /*border-bottom: 1px solid black !important;*/
  }

  label {
    display: inline-block !important;
    margin: 0 auto !important;
    padding: 0 0 5px 0 !important;
    /*transition: all 0.5s ease-in-out !important;*/ 
    z-index: 1 ;
    top: 36px !important;
    transition-delay: 0s !important;
    transition-duration: 0.15s !important;
    transition-property: all !important;
    transition-timing-function: ease-out !important;
  }

  input[type="submit"] {
    cursor: pointer !important;
    margin: 1.33em auto !important;
    width: 100% !important;
    padding: 10px 0 !important;
    border: 1px solid black !important;
  }



.filled label {
  top: 1.3em !important;
  font-size: 14px !important;
  /*left: 0.5em !important;*/
} 




/****/

.form-wraps label, .form-wraps .form-control-comment
{
  text-align: left;
}

#customer-form-create &gt; section &gt; div &gt; div.col-md-6,
#customer-form-forgot &gt; section &gt; div &gt; div.col-md-6
/*#customer-form-login &gt; section &gt; div &gt; div.col-md-9*/
{
  left: 2em;
    top: 0em;
    z-index: 0;
    width: 84%;
}

#customer-form-create &gt; section &gt; div &gt; label

{
  padding-left: 45px !important;
  padding-bottom: 12px !important;
  width: 100%;
  font-size: 16px;
  color: #B6B6B6 !important;
}

#customer-form-login &gt; section &gt; div &gt; label,
#customer-form-forgot &gt; section &gt; div &gt; label

{
  padding-left: 1em !important;
  padding-bottom: 12px !important;
  width: 100%;
  font-size: 16px;
  /*left: 0.5em;*/
  z-index: 11;
  color: #B6B6B6 !important;
}

#customer-form-create &gt; section &gt; div:nth-child(5)
 {
  line-height: 0;
 }

 #customer-form-create &gt; section &gt; div,
 #customer-form-login &gt; section &gt; div

 {
  margin-bottom: 0;
 }

#customer-form-create &gt; section &gt; div:nth-child(5) &gt; div.col-md-6.form-control-valign &gt; label:nth-child(1)
{
  top: 0.4em !important;
  left: 4em;
}
#customer-form-create &gt; section &gt; div:nth-child(5) &gt; div.col-md-6.form-control-valign &gt; label:nth-child(2)
{
  top: .4em !important;
  left: 7em;
}

#customer-form-create &gt; section &gt; div:nth-child(9) &gt; div.col-md-6 &gt; div,
#customer-form-login &gt; section &gt; div:nth-child(4) &gt; div &gt; div
{
  border: unset;
}

#customer-form-create &gt; section &gt; div:nth-child(9) &gt; div.col-md-6 &gt; div &gt; span
{
  bottom: 10px;
}

#customer-form-create &gt; section &gt; div:nth-child(6),
#customer-form-login &gt; section &gt; div:nth-child(3)
{
  position: relative;
  bottom: 1.5em;
}


#customer-form-create &gt; section &gt; div:nth-child(7)
{
  position: relative;
  bottom: 2em;
}

#customer-form-create &gt; section &gt; div:nth-child(8)
{
  position: relative;
  bottom: 3.5em;
}

#customer-form-create &gt; section &gt; div:nth-child(9)
{
  position: relative;
  bottom: 5em;
}

#customer-form-create &gt; section &gt; div:nth-child(10)
{
  position: relative;
  bottom: 6.5em;
}

#customer-form-create &gt; section &gt; div:nth-child(10) &gt; div.col-md-3.form-control-comment
{
  left: 13em;
  bottom: 2.2em;
}

#customer-form-create &gt; footer
{
  position: relative;
  /*bottom: 3.5em;*/
  bottom: 6.5em;
}

#header &gt; div.header-banner &gt; div.customer-container.create-container.showy &gt; div.form-wraps.create-form
{
  width: 500px;/*355px;*/
  height: 725px;/*660px;/*665px*/
  padding-top: 35px;
  padding-bottom: 35px;
}


#customer-form-create &gt; div,
#customer-form-login &gt; div
{
  position: relative;
  bottom: 1.5em;
  text-align: center;
  

}

#customer-form-forgot &gt; p
{
  text-align: justify;
}

#login_phrase &gt; button,
#reminde_aa &gt; button
{
  cursor: pointer;
      box-shadow: 0 1px 2px 0px rgba(0,0,0,0.28);
    background-color: #fff;
    color: #000;
    font-weight: 600;
    margin-top: 10px;
}

#login_phrase &gt; button

#customer-form-create &gt; section &gt; div:nth-child(5) &gt; div.col-md-6.form-control-valign &gt; label &gt; span
{
  bottom: 0.2em;
}
#customer-form-create &gt; section &gt; div:nth-child(5) &gt; label
{
  padding-bottom: 0px !important;
  top: 1.5em !important;
}

#customer-form-create &gt; section &gt; div:nth-child(6),
#customer-form-login &gt; section &gt; div:nth-child(3)
{
  bottom: 0.5em
}

#customer-form-create &gt; section &gt; div:nth-child(9) &gt; div.col-md-6 &gt; div &gt; span &gt; button
{
  /*padding-top: 6px;*/
  /*height: 26px !important;*/
  top: 6px;
  z-index: 20;
}


#customer-form-login &gt; section &gt; div &gt; div,
#customer-form-forgot &gt; section &gt; div &gt; div
{
  width: 100%;
}

#customer-form-create &gt; section &gt; div.filled &gt; label
{
  left: -3px !important;
}

#customer-form-login &gt; section &gt; div:nth-child(4)
{
  position: relative;
  bottom: 20px;
}


#header &gt; div.header-banner &gt; div.customer-container.forgot-container.showy &gt; div.form-wraps.forgot-pass-form
{
  width: 355px;
  height: 435px;
  padding: 35px;
}

#customer-form-forgot &gt; div
{
  margin-top: 2em;
  text-align: center;
}

#customer-form-login &gt; section &gt; div:nth-child(7) &gt; div
{
  top : -3px;
}

#form-control-submit-email
{
  width: 100%;
}

#form-control-submit-create
{
  width: 83%;
}

/*testimonials car**/
#wrapper &gt; div.testimonials_container &gt; div &gt; div.row.pos_content &gt; div &gt; div.owl-nav.disabled
{
  display: block;
}


/***fixing labels***/

#payment-option-1-additional-information &gt; section &gt; dl &gt; dt:nth-child(5),
#payment-option-1-additional-information &gt; section &gt; dl &gt; dd:nth-child(6)
{
  display: none;
}


#checkout-addresses-step &gt; div &gt; div &gt; form &gt; section &gt; div &gt; label,
#product-details &gt; div &gt; label,
#checkout-addresses-step &gt; div &gt; div &gt; form &gt; section &gt; div &gt; div &gt; label
{
  top: 0 !important;
}
#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div:nth-child(3) &gt; div.ft_newsletter &gt; div.content-newletter &gt; form &gt; div.input-subscribe &gt; input
{
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}
#order-details
{
  padding-left: 0.9375rem;
  top: 36px;
}
#payment-option-1-additional-information,
#payment-option-2-additional-information
{
  margin-bottom: 20px;
}
#customer-form &gt; section &gt; p
{
  margin-bottom: 1.5rem;
}

#checkout-personal-information-step &gt; div.content &gt; div
{
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 20px;
  padding-left: 0;
}

#customer-form
{
  margin-top: 0 !important;
}


#checkout-login-form &gt; form
{
  margin : 0 !important;
}

body#checkout section.checkout-step #customer-form .form-control-label, 
body#checkout section.checkout-step #delivery-address .form-control-label,
body#checkout section.checkout-step #invoice-address .form-control-label, body#checkout section.checkout-step #login-form .form-control-label,
#checkout-addresses-step &gt; div &gt; div &gt; form &gt; section &gt; div &gt; label
{
  text-align: right;
}

#customer-form &gt; section &gt; div:nth-child(1) &gt; div.col-md-6.form-control-valign
{
	bottom: 40px;
}

#customer-form &gt; section &gt; div &gt; label,
#login-form &gt; section &gt; div &gt; label,
#delivery-address &gt; div &gt; section &gt; div &gt; label,
#invoice-address &gt; div &gt; section &gt; div &gt; label,
#content &gt; div &gt; div &gt; form &gt; section &gt; div &gt; label

{
	top: 5px !important;
	text-align: right;
}

/*#login-form &gt; section &gt; div:nth-child(3) &gt; div.col-md-6 &gt; div &gt; span &gt; button,
#customer-form &gt; section &gt; div:nth-child(5) &gt; div.col-md-6 &gt; div &gt; span &gt; button,
#customer-form &gt; section &gt; div:nth-child(6) &gt; div.col-md-6 &gt; div &gt; span &gt; button
{
	bottom: 8px;
}*/

#fbpsc.authentication.advanced,
#fbpsc.orderFunnel
{
	top: 0;
	background-color: #fff;
    border-color: #fff;
    z-index: 8;
}

#fbpsc &gt; div.clr_10
{
	width: 0;
}

#login-form &gt; section &gt; div &gt; div &gt; input,
#login-form &gt; section &gt; div:nth-child(3) &gt; div.col-md-6 &gt; div &gt; input,
#customer-form &gt; section &gt; div &gt; div &gt; input,
#customer-form &gt; section &gt; div:nth-child(5) &gt; div.col-md-6 &gt; div &gt; input,
#content &gt; form &gt; section &gt; div &gt; div &gt; input,
#content &gt; div &gt; div &gt; form &gt; section &gt; div &gt; div.col-md-6 &gt; input
{
	z-index: 8 !important;
}

#customer-form &gt; section &gt; div:nth-child(7) &gt; div.col-md-6 &gt; span,
#customer-form &gt; section &gt; div:nth-child(8) &gt; div.col-md-6 &gt; span,
#customer-form &gt; section &gt; div:nth-child(9) &gt; div.col-md-6 &gt; span
{
	left: -3em;
}
#customer-form &gt; section &gt; div &gt; div &gt; span &gt; input[type=checkbox]
{
	right: -1em;
	top: 4px;
}

#main &gt; #content &gt; #customer-form &gt; section &gt; div &gt; div.col-md-6 &gt; span &gt; input[type=checkbox]
{
	right: -18px;
	top: 6px;
}

#checkout-guest-form  &gt; #customer-form &gt; section &gt; div &gt; div.col-md-6 &gt; span &gt; input[type=checkbox]
{
  top: 0;
}

#customer-form &gt; section &gt; div:nth-child(7) &gt; div.col-md-6 &gt; span &gt; label,
#customer-form &gt; section &gt; div:nth-child(8) &gt; div.col-md-6 &gt; span &gt; label,
#customer-form &gt; section &gt; div:nth-child(9) &gt; div.col-md-6 &gt; span &gt; label
{
	top: 0 !important;
	margin-left: 1em !important;
}

#customer-form &gt; section
{
	position: relative;
	top: 1em;
}

#content &gt; form &gt; section
{
  position: relative;
  top: 1.5em;
  display: flex;
  justify-content: center;
}

#content &gt; form &gt; section &gt; div &gt; label
{
  top: 0 !important;
  margin-top: 5px !important;
}

#customer-form &gt; section &gt; div:nth-child(10) &gt; div.col-md-6 &gt; span
{
  left: -3em;
}

#customer-form &gt; section &gt; div:nth-child(10) &gt; div.col-md-6 &gt; span &gt; label
{
  margin-left: 3.5em !important;
  top: -16px !important;
}

#delivery-address &gt; div &gt; section &gt; div:nth-child(13),
#invoice-address &gt; div &gt; section &gt; div:nth-child(13)
{
  position: relative;
  left: 10em;
}

#delivery-address &gt; div &gt; section &gt; div:nth-child(13) &gt; div &gt; label,#delivery-address &gt; div &gt; section &gt; div:nth-child(14) &gt; div &gt; label,
#invoice-address &gt; div &gt; section &gt; div:nth-child(13) &gt; div &gt; label, #invoice-address &gt; div &gt; section &gt; div:nth-child(14) &gt; div &gt; label
{
  top: 0 !important;
  left: 1em;
}



#delivery-addresses &gt; article &gt; header,
#invoice-addresses &gt; article &gt; header
{
  height: 200px;
  margin-left: 2em;
}

#js-delivery &gt; div &gt; div.delivery-options &gt; div.row.delivery-option &gt; label,
#delivery &gt; label,
.payment-options  &gt; div &gt; div &gt; label,
#conditions-to-approve &gt; ul &gt; li &gt; div.condition-label &gt; label
{
  top: 0 !important;
}
#delivery &gt; label
{
  text-align: left;
}

#conditions-to-approve &gt; ul &gt; li &gt; div.float-xs-left
{
  position: relative;
  right: 10px;
}

#conditions_to_approve\[terms-and-conditions\]
{
  left: 14px;
}

#conditions-to-approve
{
  padding-bottom: 1rem;
}

#main &gt; #content &gt; #customer-form &gt; section
{
	top: 16px;
	display: block;

}

#main &gt; #content &gt; #customer-form &gt; section &gt; div:nth-child(9) &gt; div.col-md-6 &gt; span &gt; label
{
	top: -20px !important;
	left: 2.75em;
}

#content &gt; form &gt; section &gt; div.container-fluid &gt; div &gt; label
{
  top: 0px !important;
  width: 50%;
}

#content &gt; form &gt; section &gt; div.container-fluid &gt; div &gt; div
{
  width: 50%;
}

#content &gt; form &gt; section &gt; div.container-fluid &gt; div &gt; div &gt; input
{
  z-index: 0 !important;
  width: 140%;
}



/*******fixing js*********/


#header &gt; nav &gt; div &gt; ul &gt; li &gt; a
{
  display: none;
}

/*#content-wrapper
{
  width: 100%;
}*/

/*************/




/*****menu toutes les catégorie******/

#pt_vmegamenu:before,
#pt_vmegamenu
{
  border: none;
}

#pt_vmegamenu
{
  /*display: grid;
    grid-template-columns: 19em 19em 19em 19em;*/

}

#pt_vmegamenu:before
{
  position: relative;
  left: 40%;
}

#pt_vmegamenu &gt; div &gt; h3,
#pt_vmegamenu &gt; div &gt; div
{
  text-align: left;
  padding-left: 20px;
  color: #ff940c;
  font-weight: 700;
}

#pt_vmegamenu &gt; div &gt; div &gt; a
{
  padding: 0;
  line-height: 22px;
  border: none;
}

#ver_pt_menu8 &gt; h3,
#ver_pt_menu16 &gt; h3
{
  padding-top: 1em;
  padding-bottom: .5em;
}

#ver_pt_menu7,
#ver_pt_menu15 
{
  border-bottom: 1px solid #eee;
  padding-bottom: 1em;
}

#ver_pt_menu10,
#ver_pt_menu11,
#ver_pt_menu14,
#ver_pt_menu15,
#ver_pt_menu12,
#ver_pt_menu13,
#ver_pt_menu16,
#ver_pt_menu17
{
  display: block !important;
}
#pt_vmegamenu &gt; div:nth-child(16).pt_menu.noSub
{
  display: none !important;
}

#ver_pt_menu17
{
  padding-bottom: 1em;
}



/*******************/


/** formulaire de contact ****/

#contact &gt; main &gt; section &gt; div:nth-child(1) &gt; div &gt; div.left-column.col-xs-12.col-sm-8.col-md-8 &gt; section &gt; section &gt; section &gt; form &gt; section &gt; div:nth-child(5) &gt; div &gt; div,
#contact &gt; main &gt; section &gt; div:nth-child(1) &gt; div &gt; div.left-column.col-xs-12.col-sm-8.col-md-8 &gt; section &gt; section &gt; section &gt; form &gt; section &gt; div:nth-child(4) &gt; div &gt; div
{
  display: none !important;
}

#contact &gt; main &gt; section &gt; div:nth-child(1) &gt; div &gt; div.left-column.col-xs-12.col-sm-8.col-md-8 &gt; section &gt; section &gt; section &gt; form &gt; section &gt; div &gt; label
{
  top: 0 !important;
}

#contact &gt; main &gt; section &gt; div:nth-child(1) &gt; div &gt; div.left-column.col-xs-12.col-sm-8.col-md-8 &gt; section &gt; section &gt; section &gt; form &gt; section &gt; div &gt; div
{
  right : 1em;
}

/*********/


/****banner livre d'occasion**/

#btn_cmt_ca_marche &gt; div
{
  display: flex;
}
#btn_cmt_ca_marche &gt; div &gt; div
{
  margin-left: auto;
  margin-right: auto;
}
#btn_cmt_ca_marche &gt; div &gt; div &gt; a
{
  padding: 0.75em 1em;
  border: 1px solid #ff940c;
  background-color: #ff940c;
  color: #fff;
}
/*#ban_desk &gt; div:nth-child(1) &gt; div &gt; a &gt; img
{
  padding: 0.5em;
}*/

#ban_desk
{
  margin-bottom: 3em;
}

#aa_quest_mark
{
  position: relative;
  width: 2%;
  left: 57%;
  bottom: 45px;
}


/***********************/

/** login /fr/connexion***/
#wrapper &gt; div:nth-child(1) &gt; div &gt; div:nth-child(2) &gt; section &gt; section &gt; section &gt; div &gt; p.btn-connect.btn-block-connect.btn-social.btn-google,
#wrapper &gt; div:nth-child(1) &gt; div &gt; div:nth-child(2) &gt; section &gt; section &gt; section &gt; div &gt; p.btn-connect.btn-block-connect.btn-social.btn-facebook
{
    padding-left: 5em;
    padding-right: 5em;
    padding-top: 2em;
    padding-bottom: 2em;
}
#wrapper &gt; div:nth-child(1) &gt; div &gt; div:nth-child(2) &gt; section &gt; section &gt; section &gt; div &gt; p.btn-connect.btn-block-connect.btn-social.btn-facebook
{
  color: #4267B2;
  background: none;
  border-color: #f1f1f1;
}

#wrapper &gt; div:nth-child(1) &gt; div &gt; div:nth-child(2) &gt; section &gt; section &gt; section &gt; div &gt; p.btn-connect.btn-block-connect.btn-social.btn-facebook &gt; span
{
  font-size: 3.75em;
  padding-top: 0.15em;
  left: unset;
}

#wrapper &gt; div:nth-child(1) &gt; div &gt; div:nth-child(2) &gt; section &gt; section &gt; section
{
  margin-top: 0;
}

#wrapper &gt; div:nth-child(1) &gt; div &gt; div:nth-child(1) &gt; section &gt; header &gt; h1,
#wrapper &gt; div:nth-child(1) &gt; div &gt; div:nth-child(2) &gt; section &gt; header &gt; h1
{
  color: #777;
}

#submit-login
{
  border-radius: 0px;
}

#wrapper &gt; div &gt; div &gt; div:nth-child(1) &gt; section &gt; section &gt; section &gt; form &gt; footer
{
  margin-bottom: 1rem;
}
#wrapper &gt; div &gt; div &gt; div:nth-child(1) &gt; section &gt; section,
#wrapper &gt; div &gt; div &gt; div:nth-child(2) &gt; section &gt; section
{
  border: unset;
}

#wrapper &gt; div &gt; div &gt; div:nth-child(2) &gt; section &gt; section
{
  margin-top: 4em;
  margin-bottom: 4em;
}

#customer-form &gt; section &gt; div:nth-child(1) &gt; div.col-md-9
{
  bottom: 2.5em;;
}

#customer-form &gt; section &gt; div:nth-child(9) &gt; div.col-md-9 &gt; span &gt; span
{
  position: relative;
  top: 2.5em;
  left: -1em;
}

#wrapper &gt; div &gt; div &gt; div:nth-child(1) &gt; section &gt; section &gt; section &gt; form &gt; section &gt; div:nth-child(9)
{
  margin-bottom: 4em;
}

#wrapper &gt; div &gt; div &gt; div:nth-child(1) &gt; section &gt; section &gt; section &gt; form &gt; footer &gt; button
{
  border-radius: 0px;
  margin-top: 2em;
}


/*****/



/******page shop***********/
#js-product-list-top &gt; div &gt; div:nth-child(2) &gt; div &gt; div.col-sm-6.col-xs-8.col-md-9.products-sort-order.dropdown &gt; button &gt; i
{
  color: #ff940c;
}
#js-product-list-top &gt; div &gt; div:nth-child(2) &gt; div &gt; div.col-sm-6.col-xs-8.col-md-9.products-sort-order.dropdown &gt; button,
#js-product-list-top,
#js-product-list &gt; nav,
#js-product-list &gt; div &gt; div &gt; article &gt; div.item-inner &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button,
#wrapper &gt; div.poslistcateproduct &gt; div &gt; div.row.pos_content &gt; div &gt; div &gt; div.owl-stage-outer &gt; div &gt; div.owl-item &gt; div &gt; article &gt; div.item-inner &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button
{
  border: none;
}

#js-product-list-top &gt; div &gt; div:nth-child(2) &gt; div &gt; div.col-sm-6.col-xs-8.col-md-9.products-sort-order.dropdown.open &gt; div &gt; a
{
  text-align: left;
}

#js-product-list &gt; div &gt; div &gt; article &gt; h1
/*#wrapper &gt; div.poslistcateproduct &gt; div &gt; div.row.pos_content &gt; div &gt; div &gt; div.owl-stage-outer &gt; div &gt; div.owl-item &gt; div &gt; article &gt; div.item-inner &gt; div.product_desc &gt; h1*/
{
  display: none;
}

#js-product-list &gt; div &gt; div &gt; article &gt; div.item-inner &gt; div.product_desc &gt; h1 &gt; a
{
  margin: 0;
}

#js-product-list &gt; div &gt; div &gt; article &gt; div.item-inner &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button:hover,
#js-product-list &gt; div &gt; div &gt; article &gt; div.item-inner &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button,
#wrapper &gt; div.poslistcateproduct &gt; div &gt; div.row.pos_content &gt; div &gt; div &gt; div.owl-stage-outer &gt; div &gt; div.owl-item &gt; div &gt; article &gt; div.item-inner &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button,
#wrapper &gt; div.poslistcateproduct &gt; div &gt; div.row.pos_content &gt; div &gt; div &gt; div.owl-stage-outer &gt; div &gt; div.owl-item &gt; div &gt; article &gt; div.item-inner &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button:hover,
#js-product-list &gt; div &gt; i &gt; div &gt; article &gt; div &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button,
#js-product-list &gt; div &gt; i &gt; div &gt; article &gt; div &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button:hover,
#js-product-list &gt; div &gt; i &gt; em &gt; div &gt; article &gt; div &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button,
#js-product-list &gt; div &gt; i &gt; em &gt; div &gt; article &gt; div &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button:hover,
#js-product-list &gt; div &gt; b &gt; div &gt; article &gt; div &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button,
#js-product-list &gt; div &gt; b &gt; div &gt; article &gt; div &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button:hover
{
  background-color: unset;
  cursor: pointer;
}

#js-product-list &gt; div &gt; div &gt; article &gt; div.item-inner &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button,
#wrapper &gt; div.poslistcateproduct &gt; div &gt; div.row.pos_content &gt; div &gt; div &gt; div.owl-stage-outer &gt; div &gt; div.owl-item &gt; div &gt; article &gt; div.item-inner &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button,
#js-product-list &gt; div &gt; i &gt; div &gt; article &gt; div &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button,
#js-product-list &gt; div &gt; b &gt; div &gt; article &gt; div &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button,
#js-product-list &gt; div &gt; i &gt; em &gt; div &gt; article &gt; div &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button,
article &gt; div &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button
{
      /*border-bottom: 1px solid #ff940c;
      margin-top: 1em;*/
      border: 0px #fff;
      border-bottom: 1px solid #ff940c !important;
      padding-top: 1em;
      background-color: #fff;
      font-weight: 500;
}


#header &gt; div.header-bottom &gt; div &gt; div &gt; div.display_bottom.col-xs-12.col-lg-9.col-md-12 &gt; div.block-contact-top
{
  display: none;
}


/**********************/


/*****page checkout*****/

#promo-code &gt; div
{
  display: none;
}
#js-checkout-summary &gt; div.block-promo
{
  padding-bottom: 1.25em;
  padding-left: 1.25em;
  padding-right: 1.25em;
}


#js-checkout-summary &gt; div:nth-child(1) &gt; div.cart-summary-products &gt; p:nth-child(2)
{
  visibility: hidden;
}

#js-delivery &gt; div &gt; div.order-options &gt; span &gt; label
{
  top: 0 !important;
  margin-left: 0em !important;
}

#input_gift
{
  z-index: 1;
}

#js-delivery &gt; div &gt; div.order-options &gt; span &gt; span
{
  z-index: 0;
  position: relative;
  right: 1em;
}

#js-delivery &gt; div &gt; div.delivery-options &gt; div.row.delivery-option &gt; div
{
  top: 0.5em;
}

#gift_message
{
  margin-top: 3em;
}

#checkout-personal-information-step &gt; h1 &gt; i,
#checkout-addresses-step&gt; h1 &gt; i,
#checkout-delivery-step&gt; h1 &gt; i,
#checkout-payment-step&gt; h1 &gt; i
{
  color: #ff940c;
}

#js-delivery &gt; div &gt; div.delivery-options &gt; div.row.delivery-option &gt; label
{
  padding: 0 !important;
}

#payment-confirmation &gt; div.ps-shown-by-js &gt; button
{
  margin-left: auto;
  margin-right: auto;
  display: block;
  background-color: #ff940c;
}

#content-hook_order_confirmation &gt; div &gt; div &gt; div &gt; h3 &gt; i
{
  color: #ff940c;
}

#js-checkout-summary &gt; div:nth-child(1) &gt; div.cart-summary-products &gt; p:nth-child(1)
{
  color: #282828;
}

/***********************/
/**Recherche**/
#search_filters &gt;section &gt; ul &gt; li &gt; label
{
  top: 0!important;
}
/** MegaMenu***/


.hide_menu_block &gt; div.wrap-popup
{
  display: none;
}


/******/

/**filtre prix**/
#search_filters .ui-slider-horizontal
{
  height: 1em;
}
.ui-widget-header
{
  background: unset;
  background-color: #ff940c !important;
}

/******/

/**carrousel**/
/*div.logo-slider &gt; div.owl-stage-outer &gt; div &gt; div &gt; div &gt; div &gt; a &gt; img
{
  height: 80px !important;
  margin-top: 1em;
  margin-bottom: 1em;
}

div.logo-slider &gt; div.owl-stage-outer &gt; div &gt; div
{
  width: auto !important;
}*/

div.productTabCategorySlider.owl-carousel.owl-loaded.owl-drag &gt; div.owl-stage-outer &gt; div &gt; div.owl-item
{
  border-right: solid 1px #000;
}

/**popup ajout au panier**/
#blockcart-modal &gt; div &gt; div &gt; div.modal-body &gt; div &gt; div.col-md-5.divide-right &gt; div &gt; div &gt; p:nth-child(2)
{
  color: #ff940c;
  order: 3;
}

#blockcart-modal &gt; div &gt; div &gt; div.modal-body &gt; div &gt; div.col-md-5.divide-right &gt; div &gt; div:nth-child(2)
{
  display: flex;
    flex-flow: column;
}
#aa_table
{
  border: 1px solid #eee;
  /*padding: 0 1em;*/
  width: 70%;
}
#aa_table &gt; p:nth-child(4)
{
  background: #f1f1f1;
}
#aa_table &gt; p &gt; span
{
  /*position: relative;*/
  font-weight: bold;
  float: right;
}
/*#aa_table &gt; p:nth-child(4) &gt; span
{
  left: 50%;
}
#aa_table &gt; p:nth-child(3) &gt; span
{
  left: 38%;
}
#aa_table &gt; p:nth-child(2) &gt; span
{
  left: 35%;
}*/
#aa_table &gt; p
{
  padding: 0 1em;
}
#aa_table &gt; p:nth-child(3)
{
  margin-bottom: 1em;
}


/**modification customer form*/
#customer-form &gt; section &gt; div:nth-child(7),
#customer-form &gt; section &gt; div:nth-child(8),
#customer-form &gt; section &gt; div:nth-child(2) &gt; div.col-md-6 &gt; span,
#customer-form &gt; section &gt; div:nth-child(3) &gt; div.col-md-6 &gt; span,
#customer-form &gt; section &gt; div:nth-child(6),
#customer-form &gt; section &gt; p
{
  display: none;
}

/**modification address form***/
#delivery-address &gt; div &gt; section &gt; div:nth-child(3),
#delivery-address &gt; div &gt; section &gt; div:nth-child(4),
#checkout-addresses-step &gt; div &gt; div &gt; form &gt; p,
#delivery-address &gt; div &gt; section &gt; div:nth-child(6),
#delivery-address &gt; div &gt; section &gt; div:nth-child(14)
{
  display: none;
}

/*modification commande summary**/
#order-summary-content
{
  display: none;
}


/**page produiit***/
.reference &gt; span
{
  font-weight: bold;
}
#aa_product_editor &gt; a
{
  color: #999;
}
#aa_product_editor &gt; a:hover
{
  color: #ff940c;
}
#description
{
  background-color: #f1f1f1;
  padding: 3em;
}
#product-details &gt; section &gt; dl &gt; dd.value
{
  font-weight: bold;
}

.product-features&gt;dl.data-sheet dt.name
{
  text-align: right;
}
#description &gt; div
{
  text-align: justify;
}

/**page shop**/
#left-column
{
  display: flex;
  flex-flow: column-reverse;
}
#left-column &gt; div.block-categories.hidden-sm-down
{
  order: 1;
}
#search_filters_wrapper
{
  order: 1;
}
#search_filters
{
  border: 1px solid #eee;
  /*padding: 1em;*/
}
.ui-widget-heade
{
  background: #ff940c;
}
#search_filters &gt; p
{
  padding: 0.75em 1em
}
#search_filters &gt; section:nth-child(4) &gt; ul &gt; li &gt; p
{
  text-align: center;
}

/**checkout***/
li &gt; div &gt; div.product-line-grid-body.col-md-4.col-xs-8 &gt; div.product-line-info.product-price.h5 &gt; div.current-price
{
  margin-top: 1em;
}

#main &gt; div &gt; div.cart-grid-right.col-xs-12.col-lg-4
{
  position: relative;
  top: 2.25em;
}


/***pos module acheté****/
#wrapper &gt; div.position &gt; div &gt; div &gt; div.col-xs-12.col-sm-12.col-md-8 &gt; div &gt; div &gt; div.pos_title

{
  border-bottom: none;
}

#wrapper &gt; div.position &gt; div &gt; div &gt; div.col-xs-12.col-sm-12.col-md-8 &gt; div &gt; div &gt; div.pos_title &gt; ul
{
  top: 24px;
}

#wrapper &gt; div.position &gt; div &gt; div &gt; div.col-xs-12.col-sm-12.col-md-8 &gt; div &gt; div &gt; div.pos_title &gt; ul &gt; li &gt; span:before
{
  width: 0px;
}

.tab-category-container-slider ul.tab_cates li
{
  border-color: #eee;
}

/***********************/




/********blockwishlist**********/

#block-order-detail &gt; div &gt; p.wishlisturl.form-group &gt; label,
#block-order-detail &gt; div &gt; div.wlp_bought &gt; ul &gt; li.col-xs-12.col-sm-4.col-md-3 &gt; div &gt; div &gt; div &gt; div.wishlist_product_detail &gt; p &gt; label,
#block-order-detail &gt; div &gt; form &gt; fieldset &gt; div.form-group &gt; label
{
  top: 0 !important;
}

#block-order-detail &gt; div &gt; div.wlp_bought &gt; ul &gt; li.col-xs-12.col-sm-4.col-md-3 &gt; div &gt; div &gt; div &gt; div.btn_action &gt; a.btn.btn-default.button.btn-secondary.wishlist_change_button,
#block-order-detail &gt; div &gt; p.wishlisturl.form-group,
#showSendWishlist,
#mywishlist &gt; div.footer_links.wishlist_footer.clearfix &gt; a.btn.btn-default.button.btn-secondary.pull-right,
td.wishlist_default,
#block-history &gt; table &gt; thead &gt; tr &gt; th:nth-child(6),
#block-history &gt; table &gt; thead &gt; tr &gt; th:nth-child(3),
td:nth-child(3)

{
  display: none;
}

#block-order-detail &gt; div &gt; div.wlp_bought &gt; ul &gt; li.col-xs-12.col-sm-4.col-md-3 &gt; div &gt; div &gt; div &gt; a &gt; img,
#mywishlist &gt; div.footer_links.wishlist_footer.clearfix
{
  margin-top: 30px;
}

#content &gt; section.contact-form &gt; form &gt; section &gt; div:nth-child(5) &gt; div &gt; div &gt; span &gt; label
{
  top: 0!important;
}

#content &gt; section.contact-form &gt; form &gt; section &gt; div:nth-child(5) &gt; div &gt; div &gt; span &gt; label &gt; span.buttonText
{
  position: relative;
  top: 2.5px;
}



/*******ios issues**********/

#wrapper &gt; div.poslistcateproduct.product_container &gt; div &gt; div.row.pos_content &gt; div &gt; div &gt; div.owl-stage-outer &gt; div &gt; div &gt; div &gt; article &gt; div &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button,
#js-product-list &gt; div &gt; div &gt; article &gt; div &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button
{
  color: #282828;
}

#wrapper &gt; div.poslistcateproduct.product_container &gt; div &gt; div.row.pos_content &gt; div &gt; div &gt; div.owl-stage-outer &gt; div &gt; div &gt; div &gt; article &gt; div &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button:disabled,
#js-product-list &gt; div &gt; div &gt; article &gt; div &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button:disabled
{
  color: rgba(16,16,16,0.3);
}
/* CSS specific to iOS devices */
@supports (-webkit-touch-callout: none) {
   
  #customer-form-create &gt; section &gt; div &gt; label
  {
    visibility: hidden;
  }
  #id_gender_label
  {
    visibility: visible !important;
  }

  footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div:nth-child(4) &gt; div.social_follow.footer_block &gt; ul
  {
    justify-content: center;
    display: flex;
  }

  #footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div:nth-child(4) &gt; div.social_follow.footer_block &gt; ul &gt; li
  {
    padding: 4px;
  }
}


/*****************/

#manufacturer &gt; main &gt; section &gt; div &gt; div &gt; div &gt; section &gt; ul &gt; li &gt; div.brand-img &gt; a &gt; img,
#manufacturer &gt; main &gt; section &gt; div &gt; div &gt; div &gt; section &gt; ul &gt; li &gt; div.brand-products &gt; a:nth-child(2),
#manufacturer &gt; main &gt; section &gt; div:nth-child(1) &gt; div &gt; div &gt; section &gt; h1
{
  display: none;
}

#supplier &gt; main &gt; section &gt; div &gt; div &gt; div &gt; section &gt; ul &gt; li &gt; div.brand-img &gt; a &gt; img,
#supplier &gt; main &gt; section &gt; div &gt; div &gt; div &gt; section &gt; ul &gt; li &gt; div.brand-products &gt; a:nth-child(2),
#supplier &gt; main &gt; section &gt; div:nth-child(1) &gt; div &gt; div &gt; section &gt; h1
{
  display: none;
}

#manufacturer &gt; main &gt; section &gt; div &gt; div &gt; div &gt; section &gt; ul &gt; li &gt; div.brand-infos &gt; h3
{
  margin: 0;
}

#manufacturer &gt; main &gt; section &gt; div &gt; div &gt; div &gt; section &gt; ul &gt; li &gt; div.brand-products
{
  margin-bottom: 1em;
}

#left-column &gt; div.block-categories.hidden-sm-down &gt; ul &gt; li:nth-child(2) &gt; ul &gt; li:nth-child(12),
#PM_ASCriterionGroupLink_3_4 &gt; li:nth-child(4),
/*#PM_ASCriterionGroupLink_3_4 &gt; li:nth-child(5),*/
/*#PM_ASCriterionGroupLink_3_4 &gt; li:nth-child(13),*/
#PM_ASCriterionGroupLink_3_4 &gt; li:nth-child(15)
{
  display: none;
}

/**categorie tree**/
#left-column &gt; div.block-categories.hidden-sm-down,
#ver_pt_menu14/*,
#ver_pt_menu17,
#pt_custommenu_itemmobile &gt; li:nth-child(15)*/
{
  display: none !important;
}

#ver_pt_menu380 &gt; div
{
  padding-bottom: 1em;
}
#ver_pt_menu380
{
  display: block !important;
}

/***font size 4eme couverture**/
#description &gt; div
{
  font-size: 16px;
}
#product-details &gt; section:nth-child(2) &gt; dl &gt; dt,
#product-details &gt; section:nth-child(2) &gt; dl &gt; dd
{
  font-size: 14px;
}

@media (max-width: 767px)
{
  #description &gt; div
{
  font-size: 18px;
}
#product-details &gt; section:nth-child(2) &gt; dl &gt; dt,
#product-details &gt; section:nth-child(2) &gt; dl &gt; dd
{
  font-size: 14px;
}
}

/*****/


/**hide auteur filtre**/
#PM_ASCriterionsGroup_3_14
{
  display: none;
}

/***/


@media (max-width: 1270px)
{
 #user-login-aa &gt; div &gt; div
 {
  left: -1.5em;
 }
 #left-column
 {
  padding-left: 2em;
  padding-right: 2em;
 } 
}

@media (max-width: 1199px)
{
  #footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div &gt; div.ft_newsletter &gt; div.content-newletter &gt; form &gt; div.input-wrapper &gt; input[type=text]
  {
    font-size: 8px;
  }

	#main &gt; #content &gt; #customer-form &gt; section &gt; div:nth-child(10) &gt; div.col-md-6 &gt; span &gt; label
	{
		top: -20px !important;
		left: 2.5em;
	}

  #delivery-address &gt; div &gt; section &gt; div:nth-child(13), #invoice-address &gt; div &gt; section &gt; div:nth-child(13) 
  {
   
    left: 8em;
  }
  #phone
  {
    right: 7em;
  }
  #footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div:nth-child(1) &gt; div &gt; div &gt; div.address-store &gt; p:nth-child(4) &gt; span &gt; a
  {
  	font-size: 0.9em;
  }
  #header &gt; div.header-top &gt; div
  {
    max-width: 92%;
  }
  #rech_bar
  {
    left: 2em;
  }
  #footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div &gt; div &gt; div &gt; div &gt; p &gt; span 
  {
    margin-right: 0 !important;
  }
  #aa_quest_mark
  {
    width: 2.5%;
    left: 58.5%;
  }
}

@media (max-width: 1150px)
{
  #rech_bar
  {
    left: 0em;
  }
}

@media (max-width: 991px) and (min-width: 768px)
{
  #rech_bar
  {
    bottom: 0.5em;
  }
}


@media (max-width: 991px)
{
  #footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div &gt; div.ft_newsletter &gt; div.content-newletter &gt; form &gt; div.input-wrapper &gt; input[type=text]
  {
    font-size: 15px;
  }

  #js-delivery &gt; div &gt; div.delivery-options &gt; div.row.delivery-option &gt; label &gt; div &gt; div.col-sm-5.col-xs-12 &gt; div &gt; div
  {
    padding-left: 2em;
  }
  #delivery-address &gt; div &gt; section &gt; div:nth-child(13), #invoice-address &gt; div &gt; section &gt; div:nth-child(13) 
  {
    
    position: unset;
  }

  /*#delivery-address &gt; div &gt; section &gt; div:nth-child(13) &gt; div &gt; label
  {
    top: -25px !important;
  }*/
	#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div:nth-child(1) &gt; div &gt; div &gt; div.address-store &gt; p:nth-child(3)
	{
		padding-top: 10px;
	}
  #content &gt; form &gt; section
  {
    display: block;
  }
  #content &gt; form &gt; section &gt; div.container-fluid &gt; div &gt; div &gt; input
  {
    width: 100%;
  }
  #content &gt; form &gt; section &gt; div.container-fluid &gt; div &gt; label
  {
    width: 33%;
  }

  /*#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div:nth-child(2) &gt; div &gt; div &gt; div &gt; p:nth-child(2)
  {
    position: relative;
    right: 40px;
  }*/

  #footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div:nth-child(2) &gt; div &gt; div &gt; div &gt; p:nth-child(1) &gt; svg
  {
    bottom: 13px;
    right: 5px;
    top: unset;
  }

  #footer &gt; div &gt; div.footer-top
  {
    margin-left: 30px;
    margin-right: 30px;
  }
  #footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div.col-sm-12.col-md-12.col-xs-12.col-lg-12 &gt; div &gt; div &gt; div.address-store.col-lg-9 &gt; div
  {
    display: flex;
    justify-content: center;
  }



}


@media (max-width:  974px)
{
  #pt_custommenu_itemmobile &gt; li:nth-child(16),
  #pt_custommenu_itemmobile &gt; li:nth-child(17),
  #pt_custommenu_itemmobile &gt; li:nth-child(18)
  {
    display: none;
  }
  #aa_quest_mark
  {
    left: 59%;
  }
}

@media (max-width: 930px)
{
  #aa_quest_mark
  {
    left: 59.5%;
  }
}




@media (max-width: 874px)
{
  #delivery-address &gt; div &gt; section &gt; div:nth-child(13) &gt; div &gt; label, #invoice-address &gt; div &gt; section &gt; div:nth-child(13) &gt; div &gt; label 
  {
    top: -25px !important;
    
  }
  #aa_quest_mark
  {
    left: 60%;
  }
}

@media (max-width: 841px)
{
  #delivery-address &gt; div &gt; section &gt; div:nth-child(13) &gt; div &gt; label, #invoice-address &gt; div &gt; section &gt; div:nth-child(13) &gt; div &gt; label 
  {
    text-align: left;
    left: 2em;
    
  }
  #aa_quest_mark
  {
    left: 60.5%;
  }
}

@media (max-width: 808px)
{
  #rech_bar
  {
    left: -2em;
  }
  #user-login-aa, #header &gt; div.header-top &gt; div &gt; div &gt; div.col-right.col.col-xs-12.col-lg-9.col-md-12.display_top &gt; div.blockcart.cart-preview,
  #user-login-aa, #header &gt; div.header-top &gt; div &gt; div &gt; div.col-right.col.col-xs-12.col-lg-9.col-md-12.display_top &gt; div.account-aa

  {
    /*left: 2em;*/
  }

  #aa_quest_mark
  {
    left: 61%;
  }
}

@media (max-width: 783px)
{
  #rech_bar
  {
    width: 50%;
  }
  #aa_quest_mark
  {
    left: 61.5%;
  }
  
}

@media (max-width: 783px) and (min-width: 768px)
{
  #mySidenav &gt; a,
  #mySidenav2 &gt; a,
  #mySidenav3 &gt; a,
  #mySidenav4 &gt; a
  {
  	display: none;
  }
}

@media (min-width: 767px)
{
  #content-hook_order_confirmation &gt; div &gt; div &gt; div &gt; p,
  #order-items &gt; div,
  #order-details &gt; ul &gt; li,
  #content-hook_payment_return &gt; div &gt; div &gt; div &gt; p,
  #content-hook_payment_return &gt; div &gt; div &gt; div &gt; ul
  {
    padding-left: 4em;
  }
  #order-items &gt; h3, #order-details &gt; h3
  {
    margin-left: 1.5em;
  }
}


@media (max-width: 767px)/*766*/
{

/*slideout css**/

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  /*background-color: #111;*/
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

#user-login-aa &gt; div &gt; div#mySidenav
{
	width: 0em;
	top: 0em;
	left: unset;
	right: 0em;
	
}

#mySidenav &gt; a.closebtn
{
	color: #000;
    position: relative;
    left: -2.6em;
    top: -.85em;
    font-size: 3em;
}

#mySidenav
{
	width: 100% !important;
	top: 0em;
	left: unset;
	right: 0em;
	height: 100% !important;
}

#user-login-aa &gt; div &gt; div#mySidenav2, #user-login-aa &gt; div &gt; div#mySidenav3, #user-login-aa &gt; div &gt; div#mySidenav4
{
  width: 0em;
  top: 0em;
  left: unset;
  right: 0em;
  
}

#mySidenav2 &gt; a.closebtn
{
  color: #000;
    position: relative;
    left: -2.15em;
    top: -0.9em;
    font-size: 3em;
}

#mySidenav3 &gt; a.closebtn
{
  color: #000;
    position: relative;
    left: -2.6em;
    top: -.9em;
    font-size: 3em;
}

 #mySidenav4 &gt; a.closebtn
{
  color: #000;
    position: relative;
    left: -6.2em;
    top: -1.5em;
    font-size: 3em;
}

#mySidenav2, #mySidenav3, #mySidenav4
{
  width: 100% !important;
  top: 0em;
  left: unset;
  right: 0em;
  height: 100% !important;
}

#mySidenav4
{
  background: #fff;
}

#header &gt; nav &gt; div &gt; ul &gt; li &gt; a
{
  display: none;
}

#form-control-submit-login
{
  padding-left: 25%;
  padding-right: 25%;
  /*background-color: #ff940c;*/
  width: 92%;
}

#customer-form-login &gt; section &gt; div:nth-child(6) &gt; div &gt; button
{
  background-color: #fff;
  color: #000;/*#ff940c;*/
  font-weight: 600;
  width: 57%;
  box-shadow: 0 1px 2px 0px rgba(0,0,0,0.28);
  margin-bottom: 1.25em;
}

/*slideout after logn**/




	.account-aa
	{
		width: 100%;
		margin-bottom: 30px;
		display: flex;
		justify-content: center;

	}


	#customer-form &gt; section &gt; div &gt; label,
	#login-form &gt; section &gt; div &gt; label
	{
		left: 1em;
	}

	#customer-form &gt; section &gt; div:nth-child(7) &gt; div.col-md-6 &gt; span,
	#customer-form &gt; section &gt; div:nth-child(8) &gt; div.col-md-6 &gt; span,
	#customer-form &gt; section &gt; div:nth-child(9) &gt; div.col-md-6 &gt; span
	{
		left: -1em;
	}


	 #user-login-aa &gt; div &gt; a
	 {
	 	cursor: pointer;
	 }
	 #user-login-aa &gt; div &gt; div
	 {
	 	display: none;
	 }

   #rech_bar,
   #header &gt; div.header-top &gt; div &gt; div &gt; div.col-right.col.col-xs-12.col-lg-9.col-md-12.display_top &gt; div.block-search.col-lg-8.col-md-8.col-sm-12
   {
    width: 100%;
    left: 0em;
   }

   #customer-form-login &gt; header &gt; h3
   {
    bottom: 2em;
    position: relative;
    font-size: 30px;
   }

   #customer-form-login &gt; header &gt; h5
   {
    position: relative;
    bottom: 4em;
   }

   #customer-form-login &gt; header &gt; h5 &gt; a
   {
    font-size: 16px;
   }

   #nav-container
   {
    border-top: 1px solid;
    margin-top: -2em;
    padding-top: 2em;
   }

   #nav-content
   {
    text-align: justify;

   }

   #nav-content &gt; ul &gt; li:nth-child(1) &gt; a &gt; i,
   #nav-content &gt; ul &gt; li:nth-child(2) &gt; a &gt; i
   {
    width: 1.5em;
   }
   #nav-content &gt; ul &gt; li:nth-child(3) &gt; a &gt; i
   {
    width: 1.8em;
   }

   #content &gt; form &gt; section &gt; div &gt; label 
   {
    margin-left: 1em !important;
   }



   #checkout-guest-form &gt; #customer-form &gt; section &gt; div:nth-child(10)
   {
    position: relative;
    left: 2em;;
   }

   #delivery-address &gt; div &gt; section &gt; div:nth-child(13) &gt; div &gt; label, #invoice-address &gt; div &gt; section &gt; div:nth-child(13) &gt; div &gt; label 
  {
    top: 0px !important;
    
  }

  #main &gt; #content &gt; #customer-form &gt; section &gt; div:nth-child(10) &gt; div.col-md-6 &gt; span
  {
  	left: -1em;
  }
   #main &gt; #content &gt; #customer-form &gt; section &gt; div:nth-child(10) &gt; div.col-md-6 &gt; span &gt; label
   {
   	top: 0 !important;
   	left: 0;
   }

   #content &gt; form &gt; section &gt; div.container-fluid &gt; div &gt; div
   {
    padding: 0;
   }


   #header &gt; div.header-top &gt; div &gt; div &gt; div.header_logo.col-left
   {
    /*visibility: hidden;*/
   }
   #header &gt; div.header-top &gt; div &gt; div &gt; div.col-right.col.col-xs-12.col-lg-9.col-md-12.display_top &gt; div.blockcart.cart-preview &gt; div.header &gt; a &gt; span.item_count,
   #header &gt; div.header-top &gt; div &gt; div &gt; div.col-right.col.col-xs-12.col-lg-9.col-md-12.display_top &gt; div.blockcart.cart-preview &gt; div.header &gt; a &gt; span.item_total
   {
    display: none;
   }

   #rech_bar
   {
    left: 0%;
    bottom: 2em;
   }

   #user-login-aa
   {
    
    left: -2%;
    margin: 0;
    width: 50%;
    top: -43px !important;
   }
   #header &gt; div.header-top &gt; div &gt; div &gt; div.col-right.col.col-xs-12.col-lg-9.col-md-12.display_top &gt; div.blockcart.cart-preview
   {
    left: -25% !important;
   }



   /****/

   #blockcart-modal &gt; div &gt; div &gt; div.modal-body &gt; div &gt; div.col-md-5.divide-right &gt; div &gt; div:nth-child(2)
   {
    left: 4em;
    margin-top: 1em;
    margin-bottom: 1em;
   }
   #aa_table
   {
    width: 100%;
   }
   #blockcart-modal &gt; div &gt; div &gt; div.modal-body &gt; div &gt; div.col-md-7 &gt; div
   {
    padding-right: 2.5rem;
   }

   #footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div.col-sm-12.col-md-12.col-lg-6.col-xs-12 &gt; div &gt; div:nth-child(2) &gt; div
   {
    visibility: hidden;
   }
   #footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div.col-sm-12.col-md-12.col-lg-6.col-xs-12 &gt; div &gt; div:nth-child(1) &gt; div &gt; span &gt; span
   {
    display: none;
   }
   #footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div:nth-child(4)
   {
    margin-top: 1.5em;
   }
   #wrapper &gt; div.position &gt; div &gt; div &gt; div.col-xs-12.col-sm-12.col-md-4
   {
    -ms-transform: translateY(0%);
    transform: translateY(0%);
   }
   

  









 
}

@media (max-width: 745px) {

  #aa_quest_mark
  {
    width: 3.5%;
  }
  
}

@media (max-width: 716px)
{
  #aa_quest_mark
  {
    left: 62%;
  }
}

@media (max-width: 690px)
{
  #aa_quest_mark
  {
    left: 62.5%;
  }
}

@media (max-width: 670px)
{
  #aa_quest_mark
  {
    left: 63%;
  }
}
@media (max-width: 648px)
{
  #aa_quest_mark
  {
    left: 63.5%;
  }
}

@media (max-width: 626px)
{
  #aa_quest_mark
  {
    left: 64%;
  }
}


@media (max-width: 606px)
{
  #aa_quest_mark
  {
    left: 64.5%;
  }
}


@media (max-width: 586px)
{
  #aa_quest_mark
  {
    width: 4%;
  }
}


@media (max-width: 575px)
{
  #aa_quest_mark
  {
    left: 65.5%;
  }
  
	#login-form &gt; footer
	{
		display: flex;
		justify-content: center;
	}
  #js-delivery &gt; div &gt; div.delivery-options &gt; div.row.delivery-option &gt; label &gt; div &gt; div.col-sm-5.col-xs-12 &gt; div &gt; div
  {
    padding-left: 1em;
  }
   #blockcart-modal
  {
    right: 10px;
  }
  #user-login-aa &gt; div &gt; a
  {
    padding-bottom: 0px;
    padding-top: 0px;
  }
  #wrapper &gt; div &gt; div.pos_logo.product_block_container
  {
    display: none;
  }
  #wrapper &gt; div.static_cms &gt; div &gt; div &gt; div
  {
    display: flex;
    margin-left: 25%;
    margin-right: 25%;
    width: 45%;
  }
}

@media (max-width: 560px)
{
  #wrapper &gt; div.static_cms &gt; div &gt; div &gt; div
  {
    
    width: 46%;
  }
	#main &gt; #content &gt; #customer-form &gt; section &gt; div:nth-child(10) &gt; div.col-md-6 &gt; span &gt; label
	{
		top: -20px !important;
		left: 2.75em;
	}

  #content &gt; form &gt; section &gt; div.container-fluid &gt; div &gt; label
  {
    width: 80%;
  }

  #content &gt; form &gt; section &gt; div.container-fluid &gt; div &gt; div &gt; input
  {
    width: 150%;
  }
  #content &gt; form &gt; section &gt; div.container-fluid &gt; div &gt; div &gt; button
  {
    margin-left: 0;
  }

}

@media (max-width: 550px)
{
  #header &gt; nav &gt; div &gt; ul &gt; li:nth-child(1)
  {
    display: none;
  }
  #blockcart-modal &gt; div &gt; div &gt; div.modal-body
  {
    padding: 3.125rem;
  }
  #wrapper &gt; div.static_cms &gt; div &gt; div &gt; div
  {
    
    width: 47%;
  }
  #aa_quest_mark
  {
    left: 66%;
  }
}

@media (max-width: 530px)
{
  #aa_quest_mark
  {
    width: 5%;
    left: 66.5%;
  }
}

@media (max-width: 502px)
{
  #aa_quest_mark
  {
    
    left: 68%;
  }
  #wrapper &gt; div.static_cms &gt; div &gt; div &gt; div
  {
    
    width: 51%;
  }
  #blockcart-modal &gt; div &gt; div &gt; div.modal-body &gt; div &gt; div.col-md-7 &gt; div &gt; div.cart-content-btn &gt; button,
  #blockcart-modal &gt; div &gt; div &gt; div.modal-body &gt; div &gt; div.col-md-7 &gt; div &gt; div.cart-content-btn &gt; a
  {
    font-size: 12px;
  }
  #blockcart-modal &gt; div &gt; div &gt; div.modal-body &gt; div &gt; div.col-md-7 &gt; div &gt; div.cart-content-btn &gt; a
  {
    padding-left: 1em;
    padding-right: 1em;
  }
  #blockcart-modal &gt; div &gt; div &gt; div.modal-body &gt; div &gt; div.col-md-5.divide-right &gt; div &gt; div:nth-child(2)
  {
    left: 1em;
  }
  #blockcart-modal &gt; div &gt; div &gt; div.modal-body &gt; div &gt; div.col-md-7 &gt; div
  {
    padding: 0;
  }
  #myModalLabel &gt; i
  {
    margin-right: 0.2em !important;
  }


}

@media (max-width: 480px)
{
  #aa_quest_mark
  {
    
    left: 69%;
    width: 6%;
  }
  #wrapper &gt; div.static_cms &gt; div &gt; div &gt; div
  {
    
    width: 53%;
  }
}

@media (max-width: 460px)
{
  #wrapper &gt; div.static_cms &gt; div &gt; div &gt; div
  {
    
    width: 56%;
  }
}

@media (max-width: 440px)
{
  #aa_quest_mark
  {
    
    left: 70%;
  }
  #wrapper &gt; div.static_cms &gt; div &gt; div &gt; div
  {
    
    width: 58%;
  }
}


/*
@media (max-width: 451px)
{
  #blockcart-modal &gt; div &gt; div &gt; div.modal-body &gt; div &gt; div.col-md-7 &gt; div &gt; div.cart-content-btn &gt; button
  {
    padding-left: 1em;
    padding-right: 1em;
  }
}
@media (max-width: 435px)
{
  #blockcart-modal &gt; div &gt; div &gt; div.modal-body &gt; div &gt; div.col-md-7 &gt; div &gt; div.cart-content-btn &gt; button
  {
    padding-left: 0.75em;
    padding-right: 0.75em;
  }
  #blockcart-modal &gt; div &gt; div &gt; div.modal-body &gt; div &gt; div.col-md-7 &gt; div &gt; div.cart-content-btn &gt; a
  {
    padding-left: 0.75em;
    padding-right: 0.75em;
  }

}

@media (max-width: 424px)
{
  #footer &gt; div &gt; div.footer-top
  {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (max-width: 423px)
{
  #blockcart-modal &gt; div &gt; div &gt; div.modal-body &gt; div &gt; div.col-md-7 &gt; div &gt; div.cart-content-btn &gt; button
  {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
  #blockcart-modal &gt; div &gt; div &gt; div.modal-body &gt; div &gt; div.col-md-7 &gt; div &gt; div.cart-content-btn &gt; a
  {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }

}

@media (max-width: 411px)
{
  #blockcart-modal &gt; div &gt; div &gt; div.modal-body &gt; div &gt; div.col-md-7 &gt; div &gt; div.cart-content-btn &gt; button,
  #blockcart-modal &gt; div &gt; div &gt; div.modal-body &gt; div &gt; div.col-md-7 &gt; div &gt; div.cart-content-btn &gt; a
  {
    font-size: 11px;
  }
}*/

@media (max-width: 428px)
{
  #blockcart-modal &gt; div &gt; div &gt; div.modal-body &gt; div &gt; div.col-md-7 &gt; div &gt; div.cart-content-btn &gt; a 
  {
    padding-left: auto;
    padding-right: auto;
  }
  #blockcart-modal &gt; div &gt; div &gt; div.modal-body &gt; div &gt; div.col-md-7 &gt; div &gt; div.cart-content-btn &gt; button, 
  #blockcart-modal &gt; div &gt; div &gt; div.modal-body &gt; div &gt; div.col-md-7 &gt; div &gt; div.cart-content-btn &gt; a 
  {
    font-size: 11px;
  }

  #main &gt; div &gt; div.cart-grid-body.col-xs-12.col-lg-8 &gt; div &gt; div.cart-overview.js-cart &gt; ul &gt; li &gt; div &gt; div.product-line-grid-right.product-line-actions.col-md-5.col-xs-12 &gt; div &gt; div.col-md-10.col-xs-6 &gt; div &gt; div.col-md-6.col-xs-6.qty &gt; div
  {
    display: flex;
  }
  #main &gt; div &gt; div.cart-grid-body.col-xs-12.col-lg-8 &gt; div &gt; div.cart-overview.js-cart &gt; ul &gt; li &gt; div &gt; div.product-line-grid-left.col-md-3.col-xs-4
  {
    padding: 0;
  }
  #wrapper &gt; div.static_cms &gt; div &gt; div &gt; div
  {
    
    width: 60%;
    margin-left: 20%;
    margin-right: 20%;
  }


}

@media (max-width: 424px)
{
  #footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div:nth-child(2) &gt; div &gt; div &gt; div &gt; p:nth-child(1) &gt; svg
  {
    bottom: 0px;
  }
  #aa_quest_mark
  {
    
    left: 71.5%;
  }
  #footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div:nth-child(2) &gt; div &gt; div &gt; div &gt; p:nth-child(2)
  {
    right: 0px;
  }

  #myModalLabel
  {
    font-size: 16px !important;
  }

   #wrapper &gt; div.static_cms &gt; div &gt; div &gt; div
  {
    
    width: 61%;
   
  }

}

@media (max-width: 400px)
{
  #delivery-address &gt; div &gt; section &gt; div:nth-child(13) &gt; div &gt; label, #invoice-address &gt; div &gt; section &gt; div:nth-child(13) &gt; div &gt; label 
  {
    
    left: 0em;
  }
   #wrapper &gt; div.static_cms &gt; div &gt; div &gt; div
  {
    
    width: 64%;
    margin-left: 18%;
    margin-right: 18%;
  }
  #aa_quest_mark
  {
    
    width: 7%;
  }

}

@media (max-width: 394px)
{
  #aa_quest_mark
  {
    
    left: 73%;
  }
   #wrapper &gt; div.static_cms &gt; div &gt; div &gt; div
  {
    
    width: 65%;
  
  }

  #footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div:nth-child(2) &gt; div &gt; div &gt; div &gt; p:nth-child(2)
  {
    right: 0px;
  }
}

@media (max-width: 392px)
{
  #blockcart-modal &gt; div &gt; div &gt; div.modal-body &gt; div &gt; div.col-md-7 &gt; div &gt; div.cart-content-btn &gt; button, 
  #blockcart-modal &gt; div &gt; div &gt; div.modal-body &gt; div &gt; div.col-md-7 &gt; div &gt; div.cart-content-btn &gt; a 
  {
    font-size: 10px;
  }
}

@media (max-width: 385px)
{
   #wrapper &gt; div.static_cms &gt; div &gt; div &gt; div
  {
    
    width: 67%;
    margin-left: 16.5%;
    margin-right: 16.5%;
  }

  #header &gt; nav &gt; div &gt; div.language-selector-wrapper.selector-block,
  #header &gt; nav &gt; div &gt; ul
  {
    float: initial;
  }
  #header &gt; nav &gt; div &gt; ul.hidden-md-down
  {
    display: inline-block !important;
  }
  #header &gt; nav &gt; div &gt; ul &gt; li:nth-child(3)
  {
    display: none;
  }
   #myModalLabel
  {
    font-size: 14px !important;
  }
}

@media (max-width: 376px)
{
   #footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div &gt; div.ft_newsletter &gt; div.content-newletter &gt; form &gt; div.input-wrapper &gt; input[type=text]
  {
    font-size: 14px;
  }
   #wrapper &gt; div.static_cms &gt; div &gt; div &gt; div
  {
    
    width: 68%;
    margin-left: 16%;
    margin-right: 16%;
  }
  #aa_quest_mark
  {
    
    width: 8%;
  }

}

@media (max-width: 371px)
{
  #blockcart-modal &gt; div &gt; div &gt; div.modal-body &gt; div &gt; div.col-md-7 &gt; div &gt; div.cart-content-btn &gt; button
  {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
  #blockcart-modal &gt; div &gt; div &gt; div.modal-body &gt; div &gt; div.col-md-7 &gt; div &gt; div.cart-content-btn &gt; a
  {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }

}

@media (max-width: 366px)
{
   #footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div &gt; div.ft_newsletter &gt; div.content-newletter &gt; form &gt; div.input-wrapper &gt; input[type=text]
  {
    font-size: 13px;
  }
  #aa_quest_mark
  {
    
    left: 74.5%;
  }
}

@media (max-width: 360px)
{
   #wrapper &gt; div.static_cms &gt; div &gt; div &gt; div
  {
    
    width: 72%;
    margin-left: 14%;
    margin-right: 14%;
  }

	#main &gt; #content &gt; #customer-form &gt; section &gt; div:nth-child(8) &gt; div.col-md-6 &gt; span &gt; label
	{
		top: -20px !important;
		left: 2.75em;
	}
  #footer &gt; div &gt; div.footer-bottom &gt; div
  {
    text-align: justify;
  }
}

@media (max-width: 356px)
{
   #footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div &gt; div.ft_newsletter &gt; div.content-newletter &gt; form &gt; div.input-wrapper &gt; input[type=text]
  {
    font-size: 12px;
  }
}

@media (max-width: 346px)
{
   #footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div &gt; div.ft_newsletter &gt; div.content-newletter &gt; form &gt; div.input-wrapper &gt; input[type=text]
  {
    font-size: 11px;
  }
  #aa_quest_mark
  {
    
    width: 9%;
  }

}

@media (max-width: 336px)
{
  #footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div &gt; div.ft_newsletter &gt; div.content-newletter &gt; form &gt; div.input-wrapper &gt; input[type=text]
  {
    font-size: 10px;
  }
   #wrapper &gt; div.static_cms &gt; div &gt; div &gt; div
  {
    
    width: 77%;
    margin-left: 11.5%;
    margin-right: 11.5%;
  }

}

@media (max-width: 334px)
{
  #user-login-aa
  {
    width: 60%;
  }
}

@media (max-width: 326px)
{
  #footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div &gt; div.ft_newsletter &gt; div.content-newletter &gt; form &gt; div.input-wrapper &gt; input[type=text]
  {
    font-size: 9px;
  }
   #wrapper &gt; div.static_cms &gt; div &gt; div &gt; div
  {
    
    width: 79%;
    margin-left: 10.5%;
    margin-right: 10.5%;
  }

}

@media (max-width: 320px)
{
   #wrapper &gt; div.static_cms &gt; div &gt; div &gt; div
  {
    
    width: 81%;
    margin-left: 9.5%;
    margin-right: 9.5%;
  }
  #aa_quest_mark
  {
    
    left: 77%;
  }

}

div#rc-anchor-container {
  
    margin-top: 15px;
}

p#login_phrase {
    margin-top: -60px;
}
/*
.product-pack .pack-product-container .pack-product-name
{
  -webkit-box-flex:0 !important;
  -ms-flex:0 0 50% !important;
  flex:0 0 50% !important;
  font-size:.875rem !important;
  color:#7a7a7a !important;
}
.product-pack .pack-product-container .pack-product-quantity
{
  border-left:2px solid #f1f1f1 !important;
  padding-left:.625rem !important;
}
.product-pack .pack-product-container .pack-product-name,.product-pack .pack-product-container .pack-product-price,.product-pack .pack-product-container .pack-product-quantity
{
  display:-webkit-box !important;
  display:-ms-flexbox !important;
  display:flex !important;
  -webkit-box-align:center !important;
  -ms-flex-align:center !important;
  align-items:center !important;
}
*/

#subtab-AdminStockManagement
{
  display: none;
}

#product-availability &gt; i
{
  color :#282828 !important ;
}

#product-availability, #add-to-cart-or-refresh &gt; div.product-add-to-cart &gt; div.tax-shipping-delivery-label &gt; span
{
  color : #ff940c;
}


#ver_pt_menu16,
#ver_pt_menu380,
#ver_pt_menu15,
#pt_custommenu_itemmobile &gt; li:nth-child(13),
#pt_custommenu_itemmobile &gt; li:nth-child(14),
#pt_custommenu_itemmobile &gt; li:nth-child(15)
{
  display: none !important;
}

#aa_product_name
{
  text-transform: none;
}
#product &gt; main &gt; div.breadcrumb_container &gt; div &gt; nav &gt; ol &gt; li &gt; a &gt; span
{
  text-transform: none !important;
}

.aa_h2_min
{
    font-size: 12px;
    text-transform: capitalize;
    color: #999999;
    line-height: 1;
    margin-bottom: 15px;
    display: block;
}

#aa_product_author:hover,
#aa_product_editor:hover,
#attachments &gt; section &gt; div &gt; a &gt; h3:hover
{
  color: #ff940c;
}

#aa_product_editor
{    font-weight:400 !important;
     color: #999 !important;
    font-size: 15px !important;
}

#description &gt; div &gt; h2 &gt; p
{
  line-height: 24px;
}


#product-details &gt; section &gt; dl &gt; dt &gt; h2
{
  font-size: 14px;
    color: rgb(119,119,119);
    display: contents;
}

#product-details &gt; section &gt; dl &gt; dd &gt; h2
{
  font-size: 14px;
    color: rgb(119,119,119);
    display: contents;
    font-weight: 700;
}

#wrapper &gt; div.poslistcateproduct &gt; div &gt; div.row.pos_content &gt; div &gt; div &gt; div.owl-stage-outer &gt; div &gt; div &gt; div &gt; article &gt; div &gt; div.product_desc &gt; a &gt; h2
{
  color: #282828;
  font-size: 14px;
  height: 55px;
  line-height: 1.4;
 
}

#PM_ASearchSeoCrossLinks
{
  display: none;
}

#footer &gt; div &gt; div.footer-top &gt; div &gt; div &gt; div.col-sm-12.col-md-12.col-xs-12.col-lg-12 &gt; div &gt; div &gt; div.address-store.col-lg-9 &gt; h4
{
  padding-left: 2.5em;
    padding-right: 2.5em;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    font-weight: 700;
    color: #282828;
    position: relative;
    bottom: 1.5em;
    line-height: 24px;
    margin-bottom: 10px;
    text-align: justify;
    font-size: 14px;
}

#description &gt; div &gt; h2
{
  font-size: 14px;
  line-height: 24px;
  color: #666;
}

#facebook &gt; body &gt; div &gt; div &gt; div &gt; div,
#facebook &gt; body &gt; div &gt; div &gt; div &gt; div &gt; div &gt; div &gt; div &gt; div &gt; div:nth-child(1) &gt; div &gt; div._9l4n &gt; div &gt; div &gt; div
{
  background-color: #ff940c !important;
}


@media (max-width : 1199px) and (min-width: 992px)
{
  #js-product-list &gt; div &gt; div &gt; article &gt; div &gt; div.product_desc &gt; a &gt; h2
  {
    font-size: 14px !important;
  }
}




#dal_hide
{
  display: none;
}


/**order addresses***/

@media (max-width: 991px)
{
  body#checkout section.checkout-step .address-item
  {
    flex: 0 0 100%;
  }
}



/**** Cross sell ****/

section.grelated_products &gt; h2
{
  background: transparent;
  border: 0;
  text-transform: uppercase;
  line-height: 24px;
  color: #282828;
  padding: 30px 25px !important;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 2px solid #ff940c;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  
}

@media (max-width: 639px)
{
  section.grelated_products &gt; h2
  {
    padding: 10px 20px !important;
    width: auto;
  }
}

section.grelated_products &gt; div &gt; div.owl-nav &gt; div.owl-prev,
section.grelated_products &gt; div &gt; div.owl-nav &gt; div.owl-next
{
  padding-top: 1px;
  opacity: 0.5;
  background: #ff940c;
}

section.grelated_products &gt; div &gt; div.owl-nav &gt; div.owl-prev:hover,
section.grelated_products &gt; div &gt; div.owl-nav &gt; div.owl-next:hover
{
  background: #ff940c;
  opacity: 1;
}

section.grelated_products &gt; div &gt; div.owl-dots
{
  display: none;
}


@media (min-width: 576px)
{
  #product &gt; main &gt; section &gt; div &gt; div.pos_logo
 {
   margin-top: 100px;
  }
}

#product &gt; main &gt; section &gt; div &gt; section.grelated_products &gt; h2
{
  margin-top: 4em;
}

section.grelated_products &gt; div &gt; div.owl-stage-outer &gt; div &gt; div &gt; article &gt; div &gt; div.product_desc &gt; div.product-add-to-cart &gt; form &gt; button
{
  cursor: pointer;
}




/***title**/
#js-product-list-header &gt; h1
{
  visibility: hidden;
}

#product-details &gt; section.product-features &gt; dl &gt; dt &gt; h2
{
  text-transform: none;
}


/*spin**/

@media (min-width: 500px)
{
  
  #suc_msg
{
  
  padding-right: 1em;
}
}

/****spin****/
#suc_msg
{
  text-align: center !important;
  padding-bottom: 1em;
}

@media (max-width: 499px)
{
  #continue_btn
  {
    width: 99% !important;
  }
}


@media (min-width : 500px)
{
  #aa_15
  {
    position: relative;
    bottom: 2em;
    text-align: center;
    width : 84%;
  }
  #velsof_offer_main_container &gt; div:nth-child(1) &gt; div:nth-child(4)
  {
    position: relative;
    bottom: 2.5em;
  }
}
@media (max-width : 499px)
{
  #aa_15
  {
    
    text-align: center;
    font-size: 25px;
  }
}
#customer-form-create&gt;section&gt;div.title, #customer-form-login&gt;section&gt;header&gt;div.title, #customer-form-forgot&gt;header&gt;div.title {
    text-transform: none;
    font-size: 18px;
    margin-left: 5%;
    margin-right: 5%;
	text-align: center;
    margin-bottom: 20px;
	color: #1f1f1f;
    font-weight: 500;
}
.navleft-container .pt_vmegamenu_title div {
    margin: 0;
    color: #282828;
    padding: 0;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 700;
    overflow: hidden;
    line-height: 28px;
    display: inline-block;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

#footer&gt;div&gt;div.footer-top&gt;div&gt;div&gt;div.col-sm-12.col-md-12.col-xs-12.col-lg-12&gt;div&gt;div&gt;div.address-store.col-lg-9&gt;div.parag {
    padding-left: 2.5em;
    padding-right: 2.5em;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    font-weight: 700;
    color: #282828;
    position: relative;
    bottom: 1.5em;
    line-height: 24px;
    margin-bottom: 10px;
    text-align: justify;
    font-size: 14px;
	
}
.footer-top .col-sm-12.col-md-12.col-lg-3.col-xs-12 .about_us.footer_block .address-store .col-lg-9.parag{ display:none;}
#index h1 {
    color: #222 !important;
    font-size: 26px !important;
    line-height: 34px !important;
    padding: 0 0 10px 0 !important;
    margin: 0 !important;
    border: none !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
}
.left-column.col-xs-12.col-sm-8.col-md-8 h1 {
    color: #222 !important;
    font-size: 26px !important;
    line-height: 26px !important;
    padding: 0 0 10px 0 !important;
    margin: 0 !important;
    border: none !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
}
#js-product-list-header&gt;h1 {
    visibility: visible;
    margin-bottom: 40px !important;
}


#footer&gt;div&gt;div.footer-top&gt;div&gt;div&gt;div.col-sm-12.col-md-12.col-lg-6.col-xs-12&gt;div&gt;div&gt; .titreB {
    margin-bottom: 0;
}
#footer .footer-container .footer_block div.titreB {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600!important;
    color: #282828;
    margin: 0 0 45px 0;
    text-transform: uppercase;
}
#footer .footer-container .footer_block  div.titreB {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #282828;
    margin: 0 0 45px 0;
    text-transform: uppercase;
}
#footer&gt;div&gt;div.footer-top&gt;div&gt;div&gt;div.col-sm-12.col-md-12.col-lg-6.col-xs-12&gt;div&gt;div:nth-child(2) div.titreB {
    visibility: hidden!important;
}
#index .pos_title h2.psoc {
    color: #222 !important;
    font-size: 26px !important;
    line-height: 34px !important;
    padding: 0 0 10px 0 !important;
    margin: 0 !important;
    border: none !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
}
#index .pos_title h2.psoc:before {
    content: "";
    width: 170px;
    height: 2px;
    background: #ff940c;
    position: absolute;
    left: 50%;
    margin-left: -85px;
    bottom: -1px;
}
.chercherD{
    color: #222 !important;
    font-size:20px !important;
    line-height: 34px !important;
    padding: 0 0 10px 0 !important;
    margin: 0 !important;
    border: none !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
}
#ver_pt_menu3&gt;div{display: block!important;}
/*****/


#category-description{ margin-top:30px;}
.as5-seo-page-footer-description{margin-bottom: 4rem;}
#category-description p, #supplier-description p, .advancedsearch-seo p {
    margin-bottom: .8rem !important;
}

#category-description h1, #supplier-description h1, .advancedsearch-seo h1 {
	color: #222;
	font-size: 35px;
	margin-bottom: 15px;
	font-weight: bold;
}

#category-description h2, #supplier-description h2, .advancedsearch-seo h2:not(.advancedsearch-seo .product_desc h2) {
     color: #ff940c;
    font-weight: 600;
    text-transform: none;
    font-size: 21px;
    margin-top: 25px;
    margin-bottom: 10px;
    max-height: 70px;
    height: 70px;
    overflow: hidden;
    line-height: 23p!important;
    margin-bottom: 10px;
}
.product_desc h2{
    max-height: 70px;
    height: 70px;
    overflow: hidden;
	line-height: 1.4;
    margin: 0;
}
#category-description h3, #supplier-description h3, .advancedsearch-seo h3 {
    margin: 19px 0 8px 0; font-weight: 600!important;
    color: #000 !important;
    opacity: 1 !important;
    font-weight: 500;
    font-size: 17px;
}
#category-description strong {
}
#category-description h2 strong, #supplier-description h2 strong, .advancedsearch-seo h2 strong {
    font-weight: 600;
    color: #ff940c!important;
}
#category-description h3 strong, #supplier-description h3 strong, .advancedsearch-seo h3 strong {
    font-weight: 600;
    color: #000000!important;
}
.block-category .block-category-inner #category-description p, #supplier-description p{ text-align: justify;}
#category-description a, #supplier-description a, .as5-seo-page-footer-description a{
    font-weight: 400;
    text-decoration: underline;
	 color: #ff940c !important;
}
#category-description p, #supplier-description p, .as5-seo-page-footer-description p{
    margin-bottom: .8rem !important;
    text-align: justify;
}
#category-description a strong, #supplier-description  a strong, .as5-seo-page-footer-description  a strong{
    color: #3b7cff!important;
}


body#supplier #main{
	display: flex;
    flex-direction: column;
}

body#supplier #supplier-description{
	order: 2;
	margin-bottom: 50px;
}

body#supplier #products-list{
	order: 1;
}






#js-product-list-bottom{ margin-bottom:30px; margin-top:30px;}
#js-product-list-bottom p {
    margin-bottom: .8rem !important;
}
#js-product-list-bottom h2 {
 color: #ff940c; font-weight: 600;
    text-transform: none;
    font-size: 21px;
    margin-top: 25px;
    margin-bottom: 10px;
}
#js-product-list-bottom h3 {
    margin: 19px 0 8px 0; font-weight: 600;
    color: #000 !important;
    opacity: 1 !important;
    font-weight: 500;
    font-size: 17px;
}
#js-product-list-bottom strong {
}
#js-product-list-bottom h2 strong {
    font-weight: 600;
    color: #ff940c!important;
}
#js-product-list-bottom h3 strong {
    font-weight: 600;
    color: #000000!important;
}
#js-product-list-bottom p{ text-align: justify;}
#js-product-list-bottom a {
    font-weight: 400;
    text-decoration: underline;
	 color: #ff940c !important;
}
#js-product-list-bottom {
    margin-bottom: .8rem !important;
    text-align: justify;
}
#js-product-list-bottom a strong {
    color: #ff940c!important;
}

#aa_product_editor{ text-transform: lowercase !important;}
#aa_product_editor:first-letter{ text-transform:uppercase!important;}

/*#index .home-banner &gt; .container &gt; :nth-child(2), #index .home-banner &gt; .container &gt; :last-child{
	display: none;
}*/

#index h1{
	margin-bottom: 0;
}

#index  #wrapper &gt; .poslistcateproduct:first-child .pos_title{
	display: none;
}

#index .position{
	display: none;
}

.js-product-miniature #product-availability, .js-product-miniature .product_desc .manufacturer{
	display: none;
}

.js-product-miniature .product_name{
	margin-bottom: 0 !important;
}

#index h1{
	font-size: 30px !important;
}

@media(max-width: 767px){
	#header .header_logo img{
		max-width: 60%;
	}
	
	#index h1{
		font-size: 22px !important;
	}
	
	#index h2{
		font-size: 18px !important;
	}
	
	#header .header-nav{
		padding-bottom: 0;
	}
	
	#index &gt; main &gt; div.pos_bannerslide &gt; div.home-banner &gt; div &gt; div:nth-child(1){
		margin-bottom: 30px !important;
	}
}

@media(max-width: 1280px){
	#index #pos-slideshow-home{
		max-height: 300px;
	}
	
	.nivo-main-image {
		max-width: 100% !important;
		width: initial !important;
	}
}

@media(max-width: 1024px){
	#index #pos-slideshow-home{
		max-height: 220px;
	}
	
	.nivo-main-image {
		max-width: 100% !important;
		width: initial !important;
	}
}

@media(min-width: 1281px){
	#index #pos-slideshow-home{
		max-height: 400px;
	}
}

#index .pos_bannerslide .home-banner{
	margin: 0 !important;
}

#pt_custommenu .parentMenu &gt; a{
	color: #fff !important;
    font-weight: bold;
}

.pt_custommenu .pt_menu .popup:not(.pt_custommenu .pt_menu:nth-child(2) .popup){
	width: 260px !important;
}

.pt_custommenu .pt_menu .popup{
	padding: 15px 9px !important;
}

.product-add-to-cart .ajax_add_to_cart_button.add-to-cart{
	padding-top: 0 !important;
}

#header ul.custom-links{
	display: flex;
    justify-content: flex-end;
}

#header ul.custom-links a:not(#header ul.custom-links &gt; li:last-child &gt; a){
    margin-right: 15px;
}

#header ul.custom-links a{
	color: #fff;
}

@media(max-width: 767px){
	#header .header-nav .container .row &gt; div{
		margin-bottom: 15px;
	}
	
	#pos-slideshow-home{
		display: none !important;
	}
}

@media(max-width: 420px){
#header ul.custom-links a {
    color: #fff;
    font-size: 14px;
}}

#pt_menu_link &gt; div &gt; a{
	padding-top: 0;
}	

@media(max-width: 767px){
	/*#header &gt; div.header-top &gt; div &gt; div &gt; div.col-right.col.col-xs-12.col-lg-9.col-md-12.display_top &gt; div.blockcart.cart-preview &gt; div.header &gt; a img#aa_cart_ext{
		width: 63% !important;
	}*/
	
	/*#header &gt; div.header-top &gt; div &gt; div &gt; div.col-right.col.col-xs-12.col-lg-9.col-md-12.display_top &gt; div.blockcart.cart-preview &gt; div.header &gt; a &gt; span:nth-child(2){
		position: absolute;
		top: -23px;
		width: 89px;
		right: 55px;
	}*/
	
	#header &gt; div.header-top &gt; div &gt; div &gt; div.header_logo.col-left.col.col-lg-3.col-md-12.col-xs-12 &gt; a &gt; img{
		width: 63%;
	}
	
	#index &gt; main &gt; div.pos_bannerslide &gt; div.home-banner &gt; div &gt; div &gt; h1{
		margin-top: 9px !important;
	}
	
	#header &gt; nav{
		padding-bottom: 0 !important;
	}
}

#opc_cart{
	background: #fff;
}

#ets_onepagecheckout label:not(#ets_onepagecheckout .customer-information label){
	    display: inline-block !important;
     margin: 0 !important; 
     padding: 0 0 0 15px !important; 
     transition: all 0.5s ease-in-out !important; 
     z-index: 1; 
     top: 0px !important; 
     transition-delay: 0s !important; 
     transition-duration: 0.15s !important;
     transition-property: all !important; 
     transition-timing-function: ease-out !important;	
	
}

#ets_onepagecheckout &gt; div.onepagecheckout-left.col-lg-4 &gt; div.block-onepagecheckout.block-customer &gt; div.block-content &gt; div.customer-information &gt; ul{
	display: flex;
}

#ver_pt_menu203{
	display: block !important;
	margin-bottom: 1em !important;
}

@media(max-width: 767px){
	.left-column.col-xs-12.col-sm-8.col-md-8 h1{
		font-size: 20px !important;
	}
	
	.page-module-pm-advancedsearch4-seo #wrapper &gt; .container &gt; .row{
		display: flex;
		flex-direction: column;
	}

	.page-module-pm-advancedsearch4-seo #wrapper &gt; .container &gt; .row #left-column{
		order: 2;
	}

	.page-module-pm-advancedsearch4-seo #wrapper &gt; .container &gt; .row #content-wrapper{
		order: 1;
	}
	
	#js-product-list .product_content{
		display: flex;
		flex-wrap: wrap;
	}
}

#ets_onepagecheckout &gt; div.onepagecheckout-left.col-lg-4 &gt; div.block-onepagecheckout.block-customer &gt; div.block-content &gt; div.customer-information &gt; ul &gt; li:nth-child(3) &gt; label &gt; span,
#ets_onepagecheckout &gt; div.onepagecheckout-left.col-lg-4 &gt; div.block-onepagecheckout.block-customer &gt; div.block-content &gt; div.customer-information &gt; ul &gt; li:nth-child(2) &gt; label &gt; span,
#ets_onepagecheckout &gt; div.onepagecheckout-left.col-lg-4 &gt; div.block-onepagecheckout.block-customer &gt; div.block-content &gt; div.customer-information &gt; ul &gt; li:nth-child(1) &gt; label &gt; span
{
	font-size: 13px;
}

body#checkout #use_another_address_for_invoice{
	display: none !important;
}

body#checkout #delivery-addresses &gt; div.form-group.row &gt; label{
	padding: 0 !important;
    margin-left: -5px !important;
}

body#checkout #ets_onepagecheckout &gt; div.onepagecheckout-left.col-lg-4 &gt; div &gt; div.block-onepagecheckout.block-gift &gt; div.block-content &gt; div &gt; span &gt; label{
	padding: 0 !important;
    display: flex !important;
}

body#checkout #gift_input{
	display: none !important;
}

body#checkout #ets_onepagecheckout &gt; div.onepagecheckout-left.col-lg-4 &gt; div &gt; div.block-onepagecheckout.block-gift &gt; div.block-content &gt; div &gt; span &gt; label &gt; i{
	width: 33px !important;
}

body#checkout #ets_onepagecheckout &gt; div.onepagecheckout-left.col-lg-4 &gt; div &gt; div.block-onepagecheckout.block-gift &gt; div.block-content &gt; div &gt; span &gt; label &gt; label{
	padding: 0 !important;
    margin-top: -4px !important;
    margin-left: 5px !important;
}

body#checkout #gift &gt; label{
	margin-left: 8px !important;
    margin-top: 17px !important;
    text-align: left !important;
}

body#checkout #ets_onepagecheckout #gift &gt; label{
	padding-left: 23px !important;
    padding-top: 15px !important;
}</pre></body></html>