/*!
 * 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.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center; }

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-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; } }
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom; }
  50% {
    transform: rotate(-10deg); }
  70% {
    transform: rotate(3deg); }
  to {
    opacity: 1;
    transform: scale(1); } }
.jackInTheBox {
  animation-name: jackInTheBox; }

@font-face {
  font-family: 'roadthemes-icon';
  src: url("../css/fonts/roadthemes-icon.eot?748w34");
  src: url("../css/fonts/roadthemes-icon.eot?748w34#iefix") format("embedded-opentype"), url("../css/fonts/roadthemes-icon.ttf?748w34") format("truetype"), url("../css/fonts/roadthemes-icon.woff?748w34") format("woff"), url("../css/fonts/roadthemes-icon.svg?748w34#roadthemes-icon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block; }
[class^="icon-rt-"], [class*=" icon-rt-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'roadthemes-icon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-rt-bag-outline:before {
  content: "\e900"; }

.icon-rt-cart-outline:before {
  content: "\e901"; }

.icon-rt-bag:before {
  content: "\e902"; }

.icon-rt-handbag:before {
  content: "\e903"; }

.icon-rt-shopping-cart:before {
  content: "\e904"; }

.icon-rt-bag2:before {
  content: "\e905"; }

.icon-rt-shopping-cart-solid:before {
  content: "\e906"; }

.icon-rt-basket-outline:before {
  content: "\e907"; }

.icon-rt-shopping-basket-solid:before {
  content: "\e908"; }

.icon-rt-heart:before {
  content: "\e909"; }

.icon-rt-heart2:before {
  content: "\e90a"; }

.icon-rt-heart-solid:before {
  content: "\e90b"; }

.icon-rt-heart-outline:before {
  content: "\e90c"; }

.icon-rt-ios-heart-outline:before {
  content: "\e90d"; }

.icon-rt-shuffle:before {
  content: "\e90e"; }

.icon-rt-refresh:before {
  content: "\e90f"; }

.icon-rt-ios-shuffle:before {
  content: "\e910"; }

.icon-rt-ios-shuffle-strong:before {
  content: "\e911"; }

.icon-rt-repeat-outline:before {
  content: "\e912"; }

.icon-rt-sync-alt-solid:before {
  content: "\e913"; }

.icon-rt-star2:before {
  content: "\e914"; }

.icon-rt-star-solid:before {
  content: "\e915"; }

.icon-rt-star-half-alt-solid:before {
  content: "\e916"; }

.icon-rt-search:before {
  content: "\e917"; }

.icon-rt-magnifier:before {
  content: "\e918"; }

.icon-rt-search2:before {
  content: "\e919"; }

.icon-rt-loupe:before {
  content: "\e91a"; }

.icon-rt-search1:before {
  content: "\e91b"; }

.icon-rt-eye-outline:before {
  content: "\e91c"; }

.icon-rt-eye:before {
  content: "\e91d"; }

.icon-rt-look:before {
  content: "\e91e"; }

.icon-rt-eye2:before {
  content: "\e91f"; }

.icon-rt-bars-solid:before {
  content: "\e920"; }

.icon-rt-menu-outline:before {
  content: "\e921"; }

.icon-rt-navicon-round:before {
  content: "\e922"; }

.icon-rt-grid-outline:before {
  content: "\e923"; }

.icon-rt-grid:before {
  content: "\e924"; }

.icon-rt-grid2:before {
  content: "\e925"; }

.icon-rt-apps-outline:before {
  content: "\e926"; }

.icon-rt-apps-sharp:before {
  content: "\e927"; }

.icon-rt-list:before {
  content: "\e928"; }

.icon-rt-list-outline:before {
  content: "\e929"; }

.icon-rt-list-solid:before {
  content: "\e92a"; }

.icon-rt-arrow-down:before {
  content: "\e92b"; }

.icon-rt-arrow-left:before {
  content: "\e92c"; }

.icon-rt-arrow-right:before {
  content: "\e92d"; }

.icon-rt-arrow-up:before {
  content: "\e92e"; }

.icon-rt-logo-facebook:before {
  content: "\e92f"; }

.icon-rt-logo-google:before {
  content: "\e930"; }

.icon-rt-logo-pinterest:before {
  content: "\e931"; }

.icon-rt-logo-twitter:before {
  content: "\e932"; }

.icon-rt-logo-youtube:before {
  content: "\e933"; }

.icon-rt-logo-instagram:before {
  content: "\e934"; }

.icon-rt-logo-linkedin:before {
  content: "\e935"; }

.icon-rt-logo-rss:before {
  content: "\e936"; }

.icon-rt-logo-twitch:before {
  content: "\e937"; }

.icon-rt-0-facebook2:before {
  content: "\e938"; }

.icon-rt-1-twitter2:before {
  content: "\e939"; }

.icon-rt-2-youtube2:before {
  content: "\e93a"; }

.icon-rt-3-dribbble:before {
  content: "\e93b"; }

.icon-rt-4-facebook-f:before {
  content: "\e93c"; }

.icon-rt-5-google-plus-g:before {
  content: "\e93d"; }

.icon-rt-6-pinterest-p:before {
  content: "\e93e"; }

.icon-rt-close-outline:before {
  content: "\e93f"; }

.icon-rt-close-circle:before {
  content: "\e940"; }

.icon-rt-close-circle-outline:before {
  content: "\e941"; }

.icon-rt-person-outline:before {
  content: "\e942"; }

.icon-rt-person-circle-outline:before {
  content: "\e943"; }

.icon-rt-user:before {
  content: "\e944"; }

.icon-rt-user-circle:before {
  content: "\e945"; }

.icon-rt-call-outline:before {
  content: "\e946"; }

.icon-rt-call-sharp:before {
  content: "\e947"; }

.icon-rt-headphones:before {
  content: "\e948"; }

.icon-rt-headphones-mic:before {
  content: "\e949"; }

.icon-rt-headphones2:before {
  content: "\e94a"; }

.icon-rt-phone-volume-solid:before {
  content: "\e94b"; }

.icon-rt-phone-call:before {
  content: "\e94c"; }

.icon-rt-headset-outline:before {
  content: "\e94d"; }

.icon-rt-settings-outline:before {
  content: "\e94e"; }

.icon-rt-settings:before {
  content: "\e94f"; }

.icon-rt-shipping-fast-solid:before {
  content: "\e950"; }

.icon-rt-truck-solid:before {
  content: "\e951"; }

.icon-rt-ship-solid:before {
  content: "\e952"; }

.icon-rt-boat-outline:before {
  content: "\e953"; }

.icon-rt-rocket:before {
  content: "\e954"; }

.icon-rt-rocket-outline:before {
  content: "\e955"; }

.icon-rt-location-pin:before {
  content: "\e956"; }

.icon-rt-map-marked-alt-solid:before {
  content: "\e957"; }

.icon-rt-location-outline:before {
  content: "\e958"; }

.icon-rt-mail-outline:before {
  content: "\e959"; }

.icon-rt-mail-open-outline:before {
  content: "\e95a"; }

.icon-rt-globe-solid:before {
  content: "\e95b"; }

.icon-rt-globe-alt:before {
  content: "\e95c"; }

.icon-rt-scan-outline:before {
  content: "\e95d"; }

.icon-rt-expand-outline:before {
  content: "\e95e"; }

.icon-rt-checkmark:before {
  content: "\e95f"; }

.icon-rt-card-outline:before {
  content: "\e960"; }

.icon-rt-credit-card-solid:before {
  content: "\e961"; }

.icon-rt-money-bill-wave-solid:before {
  content: "\e962"; }

.icon-rt-cash-outline:before {
  content: "\e963"; }

.icon-rt-gift-outline:before {
  content: "\e964"; }

.icon-rt-gift-solid:before {
  content: "\e965"; }

.icon-rt-gifts-solid:before {
  content: "\e966"; }

.icon-rt-ribbon-outline:before {
  content: "\e967"; }

.icon-rt-time-outline:before {
  content: "\e968"; }

.icon-rt-help-buoy-outline:before {
  content: "\e969"; }

.icon-rt-exchange-1:before {
  content: "\e96a"; }

.icon-rt-call-center-24-7:before {
  content: "\e96b"; }

.icon-rt-headphone-24-7:before {
  content: "\e96c"; }

.icon-rt-credit-card-secure1:before {
  content: "\e96d"; }

.icon-rt-payment-security:before {
  content: "\e96e"; }

.icon-rt-logo-vk:before {
  content: "\e96f"; }

.icon-rt-logo-whatsapp:before {
  content: "\e970"; }

.icon-rt-logo-telegram:before {
  content: "\e971"; }

.icon-rt-play-outline:before {
  content: "\e972"; }

.icon-rt-videocam-outline:before {
  content: "\e973"; }

.icon-rt-play-circle:before {
  content: "\e974"; }

.icon-rt-home-outline:before {
  content: "\e975"; }

.icon-rt-diamond-outline:before {
  content: "\e976"; }

.icon-rt-camera-outline:before {
  content: "\e977"; }

.icon-rt-fitness-outline:before {
  content: "\e978"; }

.icon-rt-medkit-outline:before {
  content: "\e979"; }

.icon-rt-nuclear-outline:before {
  content: "\e97a"; }

.icon-rt-shirt-outline:before {
  content: "\e97b"; }

.icon-rt-watch-outline:before {
  content: "\e97c"; }

.icon-rt-couch-solid:before {
  content: "\e97d"; }

.icon-rt-filter-outline:before {
  content: "\e97e"; }

.icon-rt-options-outline:before {
  content: "\e97f"; }

.icon-rt-chatbox-outline:before {
  content: "\e980"; }

.icon-rt-chatbubble-outline:before {
  content: "\e981"; }

.icon-rt-logo-behance:before {
  content: "\e982"; }

.icon-rt-logo-flickr:before {
  content: "\e983"; }

.icon-rt-logo-foursquare:before {
  content: "\e984"; }

.icon-rt-logo-github:before {
  content: "\e985"; }

.icon-rt-logo-skype:before {
  content: "\e986"; }

.icon-rt-logo-snapchat:before {
  content: "\e987"; }

.icon-rt-logo-soundcloud:before {
  content: "\e988"; }

.icon-rt-logo-tumblr:before {
  content: "\e989"; }

.icon-rt-logo-vimeo:before {
  content: "\e98a"; }

.icon-rt-logo-wechat:before {
  content: "\e98b"; }

.icon-rt-logo-weibo:before {
  content: "\e98c"; }

.icon-rt-add-outline:before {
  content: "\e98d"; }

.icon-rt-remove-outline:before {
  content: "\e98e"; }

.icon-rt-left-quotes-sign:before {
  content: "\e98f"; }

.icon-rt-right-quotes-symbol:before {
  content: "\e990"; }

.icon-rt-arrow-left-solid:before {
  content: "\e991"; }

.icon-rt-arrow-right-solid:before {
  content: "\e992"; }

.icon-rt-cauliflower:before {
  content: "\e993"; }

.icon-rt-bread:before {
  content: "\e994"; }

.icon-rt-meat:before {
  content: "\e995"; }

.icon-rt-anise-candy:before {
  content: "\e996"; }

.icon-rt-snowflake:before {
  content: "\e997"; }

.icon-rt-coffee-cup:before {
  content: "\e998"; }

.icon-rt-almond:before {
  content: "\e999"; }

.icon-rt-egg:before {
  content: "\e99a"; }

/*!
 * 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.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center; }

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-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; } }
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom; }
  50% {
    transform: rotate(-10deg); }
  70% {
    transform: rotate(3deg); }
  to {
    opacity: 1;
    transform: scale(1); } }
.jackInTheBox {
  animation-name: jackInTheBox; }

@font-face {
  font-family: 'roadthemes-icon';
  src: url("../css/fonts/roadthemes-icon.eot?748w34");
  src: url("../css/fonts/roadthemes-icon.eot?748w34#iefix") format("embedded-opentype"), url("../css/fonts/roadthemes-icon.ttf?748w34") format("truetype"), url("../css/fonts/roadthemes-icon.woff?748w34") format("woff"), url("../css/fonts/roadthemes-icon.svg?748w34#roadthemes-icon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block; }
[class^="icon-rt-"], [class*=" icon-rt-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'roadthemes-icon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-rt-bag-outline:before {
  content: "\e900"; }

.icon-rt-cart-outline:before {
  content: "\e901"; }

.icon-rt-bag:before {
  content: "\e902"; }

.icon-rt-handbag:before {
  content: "\e903"; }

.icon-rt-shopping-cart:before {
  content: "\e904"; }

.icon-rt-bag2:before {
  content: "\e905"; }

.icon-rt-shopping-cart-solid:before {
  content: "\e906"; }

.icon-rt-basket-outline:before {
  content: "\e907"; }

.icon-rt-shopping-basket-solid:before {
  content: "\e908"; }

.icon-rt-heart:before {
  content: "\e909"; }

.icon-rt-heart2:before {
  content: "\e90a"; }

.icon-rt-heart-solid:before {
  content: "\e90b"; }

.icon-rt-heart-outline:before {
  content: "\e90c"; }

.icon-rt-ios-heart-outline:before {
  content: "\e90d"; }

.icon-rt-shuffle:before {
  content: "\e90e"; }

.icon-rt-refresh:before {
  content: "\e90f"; }

.icon-rt-ios-shuffle:before {
  content: "\e910"; }

.icon-rt-ios-shuffle-strong:before {
  content: "\e911"; }

.icon-rt-repeat-outline:before {
  content: "\e912"; }

.icon-rt-sync-alt-solid:before {
  content: "\e913"; }

.icon-rt-star2:before {
  content: "\e914"; }

.icon-rt-star-solid:before {
  content: "\e915"; }

.icon-rt-star-half-alt-solid:before {
  content: "\e916"; }

.icon-rt-search:before {
  content: "\e917"; }

.icon-rt-magnifier:before {
  content: "\e918"; }

.icon-rt-search2:before {
  content: "\e919"; }

.icon-rt-loupe:before {
  content: "\e91a"; }

.icon-rt-search1:before {
  content: "\e91b"; }

.icon-rt-eye-outline:before {
  content: "\e91c"; }

.icon-rt-eye:before {
  content: "\e91d"; }

.icon-rt-look:before {
  content: "\e91e"; }

.icon-rt-eye2:before {
  content: "\e91f"; }

.icon-rt-bars-solid:before {
  content: "\e920"; }

.icon-rt-menu-outline:before {
  content: "\e921"; }

.icon-rt-navicon-round:before {
  content: "\e922"; }

.icon-rt-grid-outline:before {
  content: "\e923"; }

.icon-rt-grid:before {
  content: "\e924"; }

.icon-rt-grid2:before {
  content: "\e925"; }

.icon-rt-apps-outline:before {
  content: "\e926"; }

.icon-rt-apps-sharp:before {
  content: "\e927"; }

.icon-rt-list:before {
  content: "\e928"; }

.icon-rt-list-outline:before {
  content: "\e929"; }

.icon-rt-list-solid:before {
  content: "\e92a"; }

.icon-rt-arrow-down:before {
  content: "\e92b"; }

.icon-rt-arrow-left:before {
  content: "\e92c"; }

.icon-rt-arrow-right:before {
  content: "\e92d"; }

.icon-rt-arrow-up:before {
  content: "\e92e"; }

.icon-rt-logo-facebook:before {
  content: "\e92f"; }

.icon-rt-logo-google:before {
  content: "\e930"; }

.icon-rt-logo-pinterest:before {
  content: "\e931"; }

.icon-rt-logo-twitter:before {
  content: "\e932"; }

.icon-rt-logo-youtube:before {
  content: "\e933"; }

.icon-rt-logo-instagram:before {
  content: "\e934"; }

.icon-rt-logo-linkedin:before {
  content: "\e935"; }

.icon-rt-logo-rss:before {
  content: "\e936"; }

.icon-rt-logo-twitch:before {
  content: "\e937"; }

.icon-rt-0-facebook2:before {
  content: "\e938"; }

.icon-rt-1-twitter2:before {
  content: "\e939"; }

.icon-rt-2-youtube2:before {
  content: "\e93a"; }

.icon-rt-3-dribbble:before {
  content: "\e93b"; }

.icon-rt-4-facebook-f:before {
  content: "\e93c"; }

.icon-rt-5-google-plus-g:before {
  content: "\e93d"; }

.icon-rt-6-pinterest-p:before {
  content: "\e93e"; }

.icon-rt-close-outline:before {
  content: "\e93f"; }

.icon-rt-close-circle:before {
  content: "\e940"; }

.icon-rt-close-circle-outline:before {
  content: "\e941"; }

.icon-rt-person-outline:before {
  content: "\e942"; }

.icon-rt-person-circle-outline:before {
  content: "\e943"; }

.icon-rt-user:before {
  content: "\e944"; }

.icon-rt-user-circle:before {
  content: "\e945"; }

.icon-rt-call-outline:before {
  content: "\e946"; }

.icon-rt-call-sharp:before {
  content: "\e947"; }

.icon-rt-headphones:before {
  content: "\e948"; }

.icon-rt-headphones-mic:before {
  content: "\e949"; }

.icon-rt-headphones2:before {
  content: "\e94a"; }

.icon-rt-phone-volume-solid:before {
  content: "\e94b"; }

.icon-rt-phone-call:before {
  content: "\e94c"; }

.icon-rt-headset-outline:before {
  content: "\e94d"; }

.icon-rt-settings-outline:before {
  content: "\e94e"; }

.icon-rt-settings:before {
  content: "\e94f"; }

.icon-rt-shipping-fast-solid:before {
  content: "\e950"; }

.icon-rt-truck-solid:before {
  content: "\e951"; }

.icon-rt-ship-solid:before {
  content: "\e952"; }

.icon-rt-boat-outline:before {
  content: "\e953"; }

.icon-rt-rocket:before {
  content: "\e954"; }

.icon-rt-rocket-outline:before {
  content: "\e955"; }

.icon-rt-location-pin:before {
  content: "\e956"; }

.icon-rt-map-marked-alt-solid:before {
  content: "\e957"; }

.icon-rt-location-outline:before {
  content: "\e958"; }

.icon-rt-mail-outline:before {
  content: "\e959"; }

.icon-rt-mail-open-outline:before {
  content: "\e95a"; }

.icon-rt-globe-solid:before {
  content: "\e95b"; }

.icon-rt-globe-alt:before {
  content: "\e95c"; }

.icon-rt-scan-outline:before {
  content: "\e95d"; }

.icon-rt-expand-outline:before {
  content: "\e95e"; }

.icon-rt-checkmark:before {
  content: "\e95f"; }

.icon-rt-card-outline:before {
  content: "\e960"; }

.icon-rt-credit-card-solid:before {
  content: "\e961"; }

.icon-rt-money-bill-wave-solid:before {
  content: "\e962"; }

.icon-rt-cash-outline:before {
  content: "\e963"; }

.icon-rt-gift-outline:before {
  content: "\e964"; }

.icon-rt-gift-solid:before {
  content: "\e965"; }

.icon-rt-gifts-solid:before {
  content: "\e966"; }

.icon-rt-ribbon-outline:before {
  content: "\e967"; }

.icon-rt-time-outline:before {
  content: "\e968"; }

.icon-rt-help-buoy-outline:before {
  content: "\e969"; }

.icon-rt-exchange-1:before {
  content: "\e96a"; }

.icon-rt-call-center-24-7:before {
  content: "\e96b"; }

.icon-rt-headphone-24-7:before {
  content: "\e96c"; }

.icon-rt-credit-card-secure1:before {
  content: "\e96d"; }

.icon-rt-payment-security:before {
  content: "\e96e"; }

.icon-rt-logo-vk:before {
  content: "\e96f"; }

.icon-rt-logo-whatsapp:before {
  content: "\e970"; }

.icon-rt-logo-telegram:before {
  content: "\e971"; }

.icon-rt-play-outline:before {
  content: "\e972"; }

.icon-rt-videocam-outline:before {
  content: "\e973"; }

.icon-rt-play-circle:before {
  content: "\e974"; }

.icon-rt-home-outline:before {
  content: "\e975"; }

.icon-rt-diamond-outline:before {
  content: "\e976"; }

.icon-rt-camera-outline:before {
  content: "\e977"; }

.icon-rt-fitness-outline:before {
  content: "\e978"; }

.icon-rt-medkit-outline:before {
  content: "\e979"; }

.icon-rt-nuclear-outline:before {
  content: "\e97a"; }

.icon-rt-shirt-outline:before {
  content: "\e97b"; }

.icon-rt-watch-outline:before {
  content: "\e97c"; }

.icon-rt-couch-solid:before {
  content: "\e97d"; }

.icon-rt-filter-outline:before {
  content: "\e97e"; }

.icon-rt-options-outline:before {
  content: "\e97f"; }

.icon-rt-chatbox-outline:before {
  content: "\e980"; }

.icon-rt-chatbubble-outline:before {
  content: "\e981"; }

.icon-rt-logo-behance:before {
  content: "\e982"; }

.icon-rt-logo-flickr:before {
  content: "\e983"; }

.icon-rt-logo-foursquare:before {
  content: "\e984"; }

.icon-rt-logo-github:before {
  content: "\e985"; }

.icon-rt-logo-skype:before {
  content: "\e986"; }

.icon-rt-logo-snapchat:before {
  content: "\e987"; }

.icon-rt-logo-soundcloud:before {
  content: "\e988"; }

.icon-rt-logo-tumblr:before {
  content: "\e989"; }

.icon-rt-logo-vimeo:before {
  content: "\e98a"; }

.icon-rt-logo-wechat:before {
  content: "\e98b"; }

.icon-rt-logo-weibo:before {
  content: "\e98c"; }

.icon-rt-add-outline:before {
  content: "\e98d"; }

.icon-rt-remove-outline:before {
  content: "\e98e"; }

.icon-rt-left-quotes-sign:before {
  content: "\e98f"; }

.icon-rt-right-quotes-symbol:before {
  content: "\e990"; }

.icon-rt-arrow-left-solid:before {
  content: "\e991"; }

.icon-rt-arrow-right-solid:before {
  content: "\e992"; }

.icon-rt-cauliflower:before {
  content: "\e993"; }

.icon-rt-bread:before {
  content: "\e994"; }

.icon-rt-meat:before {
  content: "\e995"; }

.icon-rt-anise-candy:before {
  content: "\e996"; }

.icon-rt-snowflake:before {
  content: "\e997"; }

.icon-rt-coffee-cup:before {
  content: "\e998"; }

.icon-rt-almond:before {
  content: "\e999"; }

.icon-rt-egg:before {
  content: "\e99a"; }

.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: -.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 > 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-both, .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,
:root .fa-flip-both {
  -webkit-filter: none;
  filter: none; }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em; }

.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-acquisitions-incorporated:before {
  content: "\f6af"; }

.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-adobe:before {
  content: "\f778"; }

.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-artstation:before {
  content: "\f77a"; }

.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-atlassian:before {
  content: "\f77b"; }

.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-baby:before {
  content: "\f77c"; }

.fa-baby-carriage:before {
  content: "\f77d"; }

.fa-backspace:before {
  content: "\f55a"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-bacon:before {
  content: "\f7e5"; }

.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-biohazard:before {
  content: "\f780"; }

.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-blender-phone:before {
  content: "\f6b6"; }

.fa-blind:before {
  content: "\f29d"; }

.fa-blog:before {
  content: "\f781"; }

.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-dead:before {
  content: "\f6b7"; }

.fa-book-medical:before {
  content: "\f7e6"; }

.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-bread-slice:before {
  content: "\f7ec"; }

.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-day:before {
  content: "\f783"; }

.fa-calendar-minus:before {
  content: "\f272"; }

.fa-calendar-plus:before {
  content: "\f271"; }

.fa-calendar-times:before {
  content: "\f273"; }

.fa-calendar-week:before {
  content: "\f784"; }

.fa-camera:before {
  content: "\f030"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-campground:before {
  content: "\f6bb"; }

.fa-canadian-maple-leaf:before {
  content: "\f785"; }

.fa-candy-cane:before {
  content: "\f786"; }

.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-carrot:before {
  content: "\f787"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cash-register:before {
  content: "\f788"; }

.fa-cat:before {
  content: "\f6be"; }

.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-centos:before {
  content: "\f789"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-chair:before {
  content: "\f6c0"; }

.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-cheese:before {
  content: "\f7ef"; }

.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-clinic-medical:before {
  content: "\f7f2"; }

.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-meatball:before {
  content: "\f73b"; }

.fa-cloud-moon:before {
  content: "\f6c3"; }

.fa-cloud-moon-rain:before {
  content: "\f73c"; }

.fa-cloud-rain:before {
  content: "\f73d"; }

.fa-cloud-showers-heavy:before {
  content: "\f740"; }

.fa-cloud-sun:before {
  content: "\f6c4"; }

.fa-cloud-sun-rain:before {
  content: "\f743"; }

.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-medical:before {
  content: "\f7f5"; }

.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-compress-arrows-alt:before {
  content: "\f78c"; }

.fa-concierge-bell:before {
  content: "\f562"; }

.fa-confluence:before {
  content: "\f78d"; }

.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-creative-commons-zero:before {
  content: "\f4f3"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-critical-role:before {
  content: "\f6c9"; }

.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-crutch:before {
  content: "\f7f7"; }

.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-d-and-d-beyond:before {
  content: "\f6ca"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-deaf:before {
  content: "\f2a4"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-democrat:before {
  content: "\f747"; }

.fa-deploydog:before {
  content: "\f38e"; }

.fa-deskpro:before {
  content: "\f38f"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-dev:before {
  content: "\f6cc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-dharmachakra:before {
  content: "\f655"; }

.fa-dhl:before {
  content: "\f790"; }

.fa-diagnoses:before {
  content: "\f470"; }

.fa-diaspora:before {
  content: "\f791"; }

.fa-dice:before {
  content: "\f522"; }

.fa-dice-d20:before {
  content: "\f6cf"; }

.fa-dice-d6:before {
  content: "\f6d1"; }

.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-dog:before {
  content: "\f6d3"; }

.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-dragon:before {
  content: "\f6d5"; }

.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-drumstick-bite:before {
  content: "\f6d7"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-dumbbell:before {
  content: "\f44b"; }

.fa-dumpster:before {
  content: "\f793"; }

.fa-dumpster-fire:before {
  content: "\f794"; }

.fa-dungeon:before {
  content: "\f6d9"; }

.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-egg:before {
  content: "\f7fb"; }

.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-ethernet:before {
  content: "\f796"; }

.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-fantasy-flight-games:before {
  content: "\f6dc"; }

.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-fedex:before {
  content: "\f797"; }

.fa-fedora:before {
  content: "\f798"; }

.fa-female:before {
  content: "\f182"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-figma:before {
  content: "\f799"; }

.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-csv:before {
  content: "\f6dd"; }

.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-alt:before {
  content: "\f7e4"; }

.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-fist-raised:before {
  content: "\f6de"; }

.fa-flag:before {
  content: "\f024"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-flag-usa:before {
  content: "\f74d"; }

.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-ghost:before {
  content: "\f6e2"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-gifts:before {
  content: "\f79c"; }

.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-cheers:before {
  content: "\f79f"; }

.fa-glass-martini:before {
  content: "\f000"; }

.fa-glass-martini-alt:before {
  content: "\f57b"; }

.fa-glass-whiskey:before {
  content: "\f7a0"; }

.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-globe-europe:before {
  content: "\f7a2"; }

.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-lines:before {
  content: "\f7a4"; }

.fa-grip-lines-vertical:before {
  content: "\f7a5"; }

.fa-grip-vertical:before {
  content: "\f58e"; }

.fa-gripfire:before {
  content: "\f3ac"; }

.fa-grunt:before {
  content: "\f3ad"; }

.fa-guitar:before {
  content: "\f7a6"; }

.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-hamburger:before {
  content: "\f805"; }

.fa-hammer:before {
  content: "\f6e3"; }

.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-middle-finger:before {
  content: "\f806"; }

.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-hanukiah:before {
  content: "\f6e6"; }

.fa-hard-hat:before {
  content: "\f807"; }

.fa-hashtag:before {
  content: "\f292"; }

.fa-hat-wizard:before {
  content: "\f6e8"; }

.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-heart-broken:before {
  content: "\f7a9"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-helicopter:before {
  content: "\f533"; }

.fa-highlighter:before {
  content: "\f591"; }

.fa-hiking:before {
  content: "\f6ec"; }

.fa-hippo:before {
  content: "\f6ed"; }

.fa-hips:before {
  content: "\f452"; }

.fa-hire-a-helper:before {
  content: "\f3b0"; }

.fa-history:before {
  content: "\f1da"; }

.fa-hockey-puck:before {
  content: "\f453"; }

.fa-holly-berry:before {
  content: "\f7aa"; }

.fa-home:before {
  content: "\f015"; }

.fa-hooli:before {
  content: "\f427"; }

.fa-hornbill:before {
  content: "\f592"; }

.fa-horse:before {
  content: "\f6f0"; }

.fa-horse-head:before {
  content: "\f7ab"; }

.fa-hospital:before {
  content: "\f0f8"; }

.fa-hospital-alt:before {
  content: "\f47d"; }

.fa-hospital-symbol:before {
  content: "\f47e"; }

.fa-hot-tub:before {
  content: "\f593"; }

.fa-hotdog:before {
  content: "\f80f"; }

.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-house-damage:before {
  content: "\f6f1"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-hryvnia:before {
  content: "\f6f2"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-hubspot:before {
  content: "\f3b2"; }

.fa-i-cursor:before {
  content: "\f246"; }

.fa-ice-cream:before {
  content: "\f810"; }

.fa-icicles:before {
  content: "\f7ad"; }

.fa-id-badge:before {
  content: "\f2c1"; }

.fa-id-card:before {
  content: "\f2c2"; }

.fa-id-card-alt:before {
  content: "\f47f"; }

.fa-igloo:before {
  content: "\f7ae"; }

.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-intercom:before {
  content: "\f7af"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-invision:before {
  content: "\f7b0"; }

.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-jira:before {
  content: "\f7b1"; }

.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-laptop-medical:before {
  content: "\f812"; }

.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-mask:before {
  content: "\f6fa"; }

.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-mendeley:before {
  content: "\f7b3"; }

.fa-menorah:before {
  content: "\f676"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-meteor:before {
  content: "\f753"; }

.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-mitten:before {
  content: "\f7b5"; }

.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-mountain:before {
  content: "\f6fc"; }

.fa-mouse-pointer:before {
  content: "\f245"; }

.fa-mug-hot:before {
  content: "\f7b6"; }

.fa-music:before {
  content: "\f001"; }

.fa-napster:before {
  content: "\f3d2"; }

.fa-neos:before {
  content: "\f612"; }

.fa-network-wired:before {
  content: "\f6ff"; }

.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-otter:before {
  content: "\f700"; }

.fa-outdent:before {
  content: "\f03b"; }

.fa-page4:before {
  content: "\f3d7"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-pager:before {
  content: "\f815"; }

.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-penny-arcade:before {
  content: "\f704"; }

.fa-people-carry:before {
  content: "\f4ce"; }

.fa-pepper-hot:before {
  content: "\f816"; }

.fa-percent:before {
  content: "\f295"; }

.fa-percentage:before {
  content: "\f541"; }

.fa-periscope:before {
  content: "\f3da"; }

.fa-person-booth:before {
  content: "\f756"; }

.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-pizza-slice:before {
  content: "\f818"; }

.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-poo-storm:before {
  content: "\f75a"; }

.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-radiation:before {
  content: "\f7b9"; }

.fa-radiation-alt:before {
  content: "\f7ba"; }

.fa-rainbow:before {
  content: "\f75b"; }

.fa-random:before {
  content: "\f074"; }

.fa-raspberry-pi:before {
  content: "\f7bb"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-react:before {
  content: "\f41b"; }

.fa-reacteurope:before {
  content: "\f75d"; }

.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-redhat:before {
  content: "\f7bc"; }

.fa-redo:before {
  content: "\f01e"; }

.fa-redo-alt:before {
  content: "\f2f9"; }

.fa-registered:before {
  content: "\f25d"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-reply:before {
  content: "\f3e5"; }

.fa-reply-all:before {
  content: "\f122"; }

.fa-replyd:before {
  content: "\f3e6"; }

.fa-republican:before {
  content: "\f75e"; }

.fa-researchgate:before {
  content: "\f4f8"; }

.fa-resolving:before {
  content: "\f3e7"; }

.fa-restroom:before {
  content: "\f7bd"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-rev:before {
  content: "\f5b2"; }

.fa-ribbon:before {
  content: "\f4d6"; }

.fa-ring:before {
  content: "\f70b"; }

.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-running:before {
  content: "\f70c"; }

.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-satellite:before {
  content: "\f7bf"; }

.fa-satellite-dish:before {
  content: "\f7c0"; }

.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-scroll:before {
  content: "\f70e"; }

.fa-sd-card:before {
  content: "\f7c2"; }

.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-sim-card:before {
  content: "\f7c4"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-sistrix:before {
  content: "\f3ee"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-sith:before {
  content: "\f512"; }

.fa-skating:before {
  content: "\f7c5"; }

.fa-sketch:before {
  content: "\f7c6"; }

.fa-skiing:before {
  content: "\f7c9"; }

.fa-skiing-nordic:before {
  content: "\f7ca"; }

.fa-skull:before {
  content: "\f54c"; }

.fa-skull-crossbones:before {
  content: "\f714"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-slack:before {
  content: "\f198"; }

.fa-slack-hash:before {
  content: "\f3ef"; }

.fa-slash:before {
  content: "\f715"; }

.fa-sleigh:before {
  content: "\f7cc"; }

.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-smog:before {
  content: "\f75f"; }

.fa-smoking:before {
  content: "\f48d"; }

.fa-smoking-ban:before {
  content: "\f54d"; }

.fa-sms:before {
  content: "\f7cd"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ac"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-snowboarding:before {
  content: "\f7ce"; }

.fa-snowflake:before {
  content: "\f2dc"; }

.fa-snowman:before {
  content: "\f7d0"; }

.fa-snowplow:before {
  content: "\f7d2"; }

.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-sourcetree:before {
  content: "\f7d3"; }

.fa-spa:before {
  content: "\f5bb"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-speakap:before {
  content: "\f3f3"; }

.fa-spider:before {
  content: "\f717"; }

.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-suse:before {
  content: "\f7d6"; }

.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-temperature-high:before {
  content: "\f769"; }

.fa-temperature-low:before {
  content: "\f76b"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-tenge:before {
  content: "\f7d7"; }

.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-think-peaks:before {
  content: "\f731"; }

.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-toilet:before {
  content: "\f7d8"; }

.fa-toilet-paper:before {
  content: "\f71e"; }

.fa-toolbox:before {
  content: "\f552"; }

.fa-tools:before {
  content: "\f7d9"; }

.fa-tooth:before {
  content: "\f5c9"; }

.fa-torah:before {
  content: "\f6a0"; }

.fa-torii-gate:before {
  content: "\f6a1"; }

.fa-tractor:before {
  content: "\f722"; }

.fa-trade-federation:before {
  content: "\f513"; }

.fa-trademark:before {
  content: "\f25c"; }

.fa-traffic-light:before {
  content: "\f637"; }

.fa-train:before {
  content: "\f238"; }

.fa-tram:before {
  content: "\f7da"; }

.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-trash-alt:before {
  content: "\f2ed"; }

.fa-trash-restore:before {
  content: "\f829"; }

.fa-trash-restore-alt:before {
  content: "\f82a"; }

.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-ubuntu:before {
  content: "\f7df"; }

.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-ups:before {
  content: "\f7e0"; }

.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-injured:before {
  content: "\f728"; }

.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-nurse:before {
  content: "\f82f"; }

.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-usps:before {
  content: "\f7e1"; }

.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-mute:before {
  content: "\f6a9"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-vote-yea:before {
  content: "\f772"; }

.fa-vr-cardboard:before {
  content: "\f729"; }

.fa-vuejs:before {
  content: "\f41f"; }

.fa-walking:before {
  content: "\f554"; }

.fa-wallet:before {
  content: "\f555"; }

.fa-warehouse:before {
  content: "\f494"; }

.fa-water:before {
  content: "\f773"; }

.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-wind:before {
  content: "\f72e"; }

.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-bottle:before {
  content: "\f72f"; }

.fa-wine-glass:before {
  content: "\f4e3"; }

.fa-wine-glass-alt:before {
  content: "\f5ce"; }

.fa-wix:before {
  content: "\f5cf"; }

.fa-wizards-of-the-coast:before {
  content: "\f730"; }

.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-wpressr:before {
  content: "\f3e4"; }

.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-yarn:before {
  content: "\f7e3"; }

.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;
  font-display: auto;
  src: url("../fonts/fa-brands-400.eot");
  src: url("../fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.woff") format("woff"), url("../fonts/fa-brands-400.ttf") format("truetype"), url("../fonts/fa-brands-400.svg#fontawesome") format("svg"); }
.fab {
  font-family: 'Font Awesome 5 Brands'; }

@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: normal;
  src: url("../css/fonts/fa-brands-400.eot");
  src: url("../css/fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../css/fonts/fa-brands-400.woff2") format("woff2"), url("../css/fonts/fa-brands-400.woff") format("woff"), url("../css/fonts/fa-brands-400.ttf") format("truetype"), url("../css/fonts/fa-brands-400.svg#fontawesome") format("svg"); }
.fab {
  font-family: 'Font Awesome 5 Brands'; }

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  src: url("../css/fonts/fa-regular-400.eot");
  src: url("../css/fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../css/fonts/fa-regular-400.woff2") format("woff2"), url("../css/fonts/fa-regular-400.woff") format("woff"), url("../css/fonts/fa-regular-400.ttf") format("truetype"), url("../css/fonts/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/fonts/fa-solid-900.eot");
  src: url("../css/fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../css/fonts/fa-solid-900.woff2") format("woff2"), url("../css/fonts/fa-solid-900.woff") format("woff"), url('../css/fonts/fa-solid-900.ttf") format("truetype'), url("../css/fonts/fa-solid-900.svg#fontawesome") format("svg"); }
.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900; }

.custom-font {
  font-family: "Dosis", sans-serif; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: #1c1e22;
  font-weight: 600;
  line-height: 1; }

.animatetab .owl-carousel .owl-item {
  -moz-animation: zoomIn 500ms ease;
  -o-animation: zoomIn 500ms ease;
  -webkit-animation: zoomIn 500ms ease;
  animation: zoomIn 500ms ease; }

.full-width {
  width: 100vw;
  position: relative;
  left: calc((-1 * (100vw - 100%)/2)); }

.flex-layout {
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }

.center-vertical {
  align-items: center; }

.space-between {
  justify-content: space-between; }

.flex-end {
  justify-content: flex-end; }

.column {
  flex-direction: column; }

.nowrap {
  flex-wrap: nowrap; }

*:focus {
  outline: none !important; }

b, strong {
  font-weight: 500; }

img {
  max-width: 100%;
  margin: auto;
  height: auto; }

i, cite, em, var, address, dfn {
  font-style: normal; }

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;
  color: #1c1e22; }
  a:hover, a:focus {
    outline: 0 !important;
    text-decoration: none; }

input:focus, button:focus, select:focus, textarea:focus {
  text-decoration: none !important;
  box-shadow: none !important;
  outline: 0 !important; }

.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; }

.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 > .btn-primary.dropdown-toggle.focus,
.open > .btn-primary.dropdown-toggle:focus,
.open > .btn-primary.dropdown-toggle:hover {
  color: #ffffff;
  border: none; }

.btn-secondary,
.btn-tertiary,
.btn-primary {
  text-transform: capitalize;
  font-weight: 400;
  border: none;
  box-shadow: none;
  padding: 10px 30px;
  border-radius: 10px;
  display: inline-block;
  background: #1c1e22;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.8; }

.btn-secondary:hover,
.btn-tertiary:hover,
.btn-primary:hover,
.btn-secondary:focus,
.btn-tertiary:focus,
.btn-primary:focus,
.btn-secondary:active,
.btn-tertiary:active,
.btn-primary:active,
.btn-secondary:active:focus,
.btn-tertiary:active:focus,
.btn-primary:active:focus {
  color: #ffffff;
  border: none; }

.usefulness_btn {
  padding: 5px 15px;
  cursor: pointer; }

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; }

.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: 12px; }

.ui-menu .ui-menu-item a.ui-state-focus, .ui-menu .ui-menu-item a.ui-state-active {
  margin: 0;
  background: none;
  border: 0;
  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; }

.modal-dialog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  min-height: calc(100% - (.5rem * 2));
  margin: 0 auto;
  pointer-events: none; }
  @media (min-width: 576px) {
    .modal-dialog {
      min-height: calc(100% - (1.75rem * 2)); } }
  .modal-dialog .modal-content {
    pointer-events: auto; }

.quickview .modal-content {
  max-width: 100%;
  width: 100%; }

/* edit theme */
body {
  line-height: 1.5; }

@media (min-width: 1200px) {
  .container-fluid {
    padding: 0 15px; }

  .container {
    width: 1320px; } }
@media (min-width: 1920px) {
  .container-fluid {
    padding: 0 60px;
    max-width: 1920px; } }
@media (max-width: 1199px) {
  .container {
    width: auto; } }
/* header */
main {
  overflow: hidden;
  position: relative; }

#header {
  position: relative;
  box-shadow: 0px 5px 20px 0px #e2e2e2; }

.header-nav {
  position: relative;
  margin: 0;
  line-height: 1;
  padding: 10px 0;
  background: #ffffff;
  color: #3b3d42;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  font-size: 15px; }
  @media (max-width: 991px) {
    .header-nav {
      background: transparent !important;
      padding: 0;
      border: none !important; }
      .header-nav:before {
        display: none; } }
  .header-nav .mobile > .row-mobile {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0; }
    .header-nav .mobile > .row-mobile .col-mobile {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      align-items: center; }
      .header-nav .mobile > .row-mobile .col-mobile.mobile-left, .header-nav .mobile > .row-mobile .col-mobile.mobile-right {
        flex: 1; }
      .header-nav .mobile > .row-mobile .col-mobile.mobile-center {
        padding: 0 20px; }
      .header-nav .mobile > .row-mobile .col-mobile.mobile-right {
        justify-content: flex-end; }

.header-top {
  position: relative;
  padding: 18px 0; }
  .header-top > div > .flex-layout.center-vertical {
    justify-content: space-between; }
  .header-top .col-center {
    padding: 0 30px; }
  .header-top .col-right {
    justify-content: flex-end; }
    .header-top .col-right > div:not(:last-child) {
      margin-right: 10px; }
      @media (max-width: 1199px) {
        .header-top .col-right > div:not(:last-child) {
          margin-right: 5px; } }

.header-bottom {
  background: #184d47;
  padding: 5px 0; }
  .header-bottom .col-right {
    padding-left: 0px; }

.sticky-inner.scroll-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  border: none;
  margin: auto;
  -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);
  -webkit-animation: .7s ease-out 0s 1 normal forwards running fadeInDown;
  -moz-animation: .7s ease-out 0s 1 normal forwards running fadeInDown;
  -ms-animation: .7s ease-out 0s 1 normal forwards running fadeInDown;
  animation: .7s ease-out 0s 1 normal forwards running fadeInDown;
  -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-layout1 .header-top .col-right {
  flex: 1;
  padding-left: 70px; }
  .header-layout1 .header-top .col-right #_desktop_search_category {
    flex: 1; }
    .header-layout1 .header-top .col-right #_desktop_search_category .search-icon {
      display: none; }
    .header-layout1 .header-top .col-right #_desktop_search_category .dropdown {
      position: static; }
    .header-layout1 .header-top .col-right #_desktop_search_category #pos_search_top {
      display: block !important;
      position: static;
      width: 100%;
      max-width: 630px; }
.header-layout1 #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > a {
  color: #ffffff; }
.header-layout1 .sticky-inner.scroll-menu {
  background: rgba(24, 77, 71, 0.8); }
  .header-layout1 .sticky-inner.scroll-menu:hover {
    background: #184d47; }

.header-layout2 .header-nav {
  background: #000;
  color: #ffffff; }
  @media (max-width: 991px) {
    .header-layout2 .header-nav {
      color: #1c1e22; } }
.header-layout2 .header-top .col-right {
  flex: 1;
  padding-left: 70px; }
  .header-layout2 .header-top .col-right #_desktop_search_category {
    flex: 1; }
    .header-layout2 .header-top .col-right #_desktop_search_category .search-icon {
      display: none; }
    .header-layout2 .header-top .col-right #_desktop_search_category .dropdown {
      position: static; }
    .header-layout2 .header-top .col-right #_desktop_search_category #pos_search_top {
      display: block !important;
      position: static;
      width: 100%;
      max-width: 630px; }
.header-layout2 .sticky-inner.scroll-menu {
  background: rgba(255, 255, 255, 1); }
  .header-layout2 .sticky-inner.scroll-menu:hover {
    background: white; }
.header-layout2 .header-bottom {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5; }

#index .header-layout2 .header-bottom {
  margin-bottom: 30px; }

.header-layout3 .header-nav {
  background: #184d47;
  color: #ffffff; }
  @media (max-width: 991px) {
    .header-layout3 .header-nav {
      color: #1c1e22; } }
  .header-layout3 .header-nav #_desktop_contact_link {
    float: left; }
    .header-layout3 .header-nav #_desktop_contact_link a:not(:hover) {
      color: #ffffff; }
    .header-layout3 .header-nav #_desktop_contact_link .contact-link > div:first-child {
      padding-left: 0; }
  .header-layout3 .header-nav #_desktop_user_info .user-info-block {
    padding: 0 20px; }
    .header-layout3 .header-nav #_desktop_user_info .user-info-block a {
      width: auto;
      height: auto;
      background: transparent;
      border: none;
      margin: 0;
      position: relative; }
      .header-layout3 .header-nav #_desktop_user_info .user-info-block a:not(:last-child):after {
        display: inline-block; }
    .header-layout3 .header-nav #_desktop_user_info .user-info-block .user_register {
      display: block; }
    .header-layout3 .header-nav #_desktop_user_info .user-info-block .user_login, .header-layout3 .header-nav #_desktop_user_info .user-info-block .logout {
      font-size: inherit; }
      .header-layout3 .header-nav #_desktop_user_info .user-info-block .user_login:before, .header-layout3 .header-nav #_desktop_user_info .user-info-block .logout:before {
        display: none; }
.header-layout3 .header-top .col-right #_desktop_search_category #pos_search_top {
  min-width: 500px; }
.header-layout3 .sticky-inner.scroll-menu {
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 0; }
  .header-layout3 .sticky-inner.scroll-menu:hover {
    background: white; }

#mobile_top_menu_wrapper {
  display: block !important;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  max-width: 350px;
  z-index: 99;
  margin: 0;
  padding: 0;
  webkit-transform: translate(-400px, 0px);
  -moz-transform: translate(-400px, 0px);
  -ms-transform: translate(-400px, 0px);
  -o-transform: translate(-400px, 0px);
  transform: translate(-400px, 0px);
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: .9s;
  -o-transition-duration: .9s;
  -webkit-transition-duration: .9s;
  transition-duration: .9s;
  overflow: auto; }

#mobile_top_menu_wrapper.box-menu {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0); }

#mobile_top_menu_wrapper .top-header-mobile {
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0; }
  #mobile_top_menu_wrapper .top-header-mobile > div {
    margin-bottom: 10px; }

#header .header-nav #menu-icon i {
  color: #1c1e22;
  font-size: 28px; }

.open-menu:after {
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  display: block;
  position: fixed;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  transition: opacity 0.2s cubic-bezier(0, 0, 0.3, 1);
  transition-delay: 0.1s; }

.menu-close {
  background: #1c1e22;
  color: #ffffff;
  line-height: 40px;
  height: 40px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  pointer-events: none; }

.menu-close i {
  line-height: 40px;
  display: block;
  height: 40px;
  pointer-events: visible; }

.menu-tabs {
  width: 100%;
  height: 100%; }

#_mobile_currency_selector, #_mobile_language_selector {
  display: inline-block;
  width: 100%; }

.selector-mobile img {
  vertical-align: 0px;
  margin-right: 5px; }
.selector-mobile button {
  background: transparent;
  border: none;
  border-top: 1px solid #e5e5e5;
  width: 100%;
  text-align: left;
  display: block;
  color: #1c1e22;
  font-weight: 400;
  padding: 5px 20px;
  line-height: 30px;
  cursor: pointer;
  text-transform: uppercase; }
  .selector-mobile button i {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 9px;
    color: #1c1e22;
    font-weight: 700; }
.selector-mobile .dropdown-menu {
  position: static;
  position: relative;
  border: 0;
  padding: 0;
  margin: 0;
  float: none; }
  .selector-mobile .dropdown-menu li {
    border-top: 1px solid #e5e5e5; }
    .selector-mobile .dropdown-menu li a {
      display: block;
      color: #1c1e22;
      font-size: 12px;
      font-weight: 400;
      padding: 5px 20px;
      line-height: 30px;
      text-transform: uppercase; }

.js-top-menu-bottom {
  display: inline-block;
  width: 100%;
  position: relative; }

/* selector */
.selector-block {
  float: right;
  padding: 0 20px;
  line-height: 18px;
  color: inherit;
  position: relative; }
  .selector-block:before {
    content: "";
    border-left: 1px solid #c3c3c3;
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px; }
  @media (min-width: 992px) {
    .selector-block.language-selector-wrapper {
      padding-right: 0; } }
  .selector-block .selector-label {
    color: inherit;
    line-height: 18px;
    text-transform: capitalize;
    font-size: inherit;
    margin-right: 5px;
    display: none; }
  .selector-block .localiz_block {
    margin: 0 !important;
    display: inline-block;
    padding: 0 !important; }
    .selector-block .localiz_block button, .selector-block .localiz_block .current-block {
      font-weight: 400;
      color: inherit;
      background: transparent;
      text-shadow: none;
      cursor: pointer;
      line-height: 18px;
      font-size: inherit;
      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 span i, .selector-block .localiz_block .current-block span i {
        vertical-align: -1px;
        display: inline-block;
        margin-right: 7px; }
      .selector-block .localiz_block button i, .selector-block .localiz_block .current-block i {
        font-size: 8px;
        margin-left: 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: 30px;
      left: auto;
      right: 0;
      min-width: 120px;
      overflow: hidden;
      padding: 0 15px;
      background: #ffffff;
      border-radius: 0;
      border: none;
      font-size: inherit;
      box-shadow: 0px 5px 13.5px 1.5px rgba(0, 0, 0, 0.07); }
      .selector-block .localiz_block .dropdown-menu li {
        padding: 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; }
        .selector-block .localiz_block .dropdown-menu li:last-child .dropdown-item {
          border-bottom: none; }
        .selector-block .localiz_block .dropdown-menu li .dropdown-item {
          padding: 10px;
          color: #1c1e22;
          line-height: 25px;
          border-bottom: 1px solid #e5e5e5; }
          .selector-block .localiz_block .dropdown-menu li .dropdown-item img {
            display: inline-block;
            margin-right: 5px; }

/* end selector */
.header-top #_desktop_logo {
  display: flex;
  align-items: center; }
  .header-top #_desktop_logo > div:first-child {
    margin-right: 20px; }
  .header-top #_desktop_logo img {
    margin: 0; }

/* end header */
/* module user */
.user-info-block {
  position: relative;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0 20px; }
  .user-info-block a {
    display: block;
    position: relative;
    color: inherit;
    font-size: inherit;
    text-transform: capitalize;
    line-height: 18px;
    vertical-align: top; }
    .user-info-block a:after {
      content: '/';
      margin: 0 5px;
      display: inline-block;
      font-size: 10px;
      color: inherit; }
    .user-info-block a:last-child:after {
      display: none; }

#_mobile_user_info {
  width: 100%; }
  #_mobile_user_info .user-info-block {
    justify-content: center; }

#_desktop_user_info {
  float: right; }
  #_desktop_user_info .user-info-block {
    padding: 0; }
    #_desktop_user_info .user-info-block a {
      width: 48px;
      height: 48px;
      background: #ffffff;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      padding: 25px;
      /*border: 1px solid #e5e5e5;*/
      border-radius: 20px; }
      #_desktop_user_info .user-info-block a:not(:last-child) {
        margin-right: 20px; }
      #_desktop_user_info .user-info-block a:hover {
        color: #ffffff; }
      #_desktop_user_info .user-info-block a:after {
        display: none; }
    #_desktop_user_info .user-info-block .user_register {
      display: none; }
    #_desktop_user_info .user-info-block .user_login {
      font-size: 14px;
      width: auto; }
      #_desktop_user_info .user-info-block .user_login:before {
        content: "\e944";
        font-size: 26px;
        font-family: "roadthemes-icon";
        display: inline-block; }
      #_mobile_user_info_user{
          font-weight: 400;
          color: #1c1e22;
          background: #ffffff;
          text-shadow: none;
          cursor: pointer;
          display: inline-flex;
          justify-content: center;
          align-items: center;
          width: 48px;
          height: 48px;
          text-transform: capitalize;
          border-radius: 50%;
          position: relative;
          font-size: 0;
      }
      #_mobile_user_info_user:hover {
        background: #000000;
        color: #FFF; }
      #_mobile_user_info_user:before {
        content: "\e944";
        font-size: 26px;
        font-family: "roadthemes-icon";
        display: inline-block; }
    #_desktop_user_info .user-info-block .logout {
      display: none !important;
      font-size: 0;
      width: 48px;
      height: 48px;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      /*border: 1px solid #e5e5e5;*/
      border-radius: 50%; }
      #_desktop_user_info .user-info-block .logout:before {
        content: "\e879";
        font-size: 24px;
        font-family: 'Material Icons';
        display: inline-block;
      }

/* end module user */
.pos-loading {
  background: url(../img/lazy-load.svg) no-repeat;
  background-size: 23px auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #f6f6f6;
  min-height: 23px; }
  .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: 60px; }
  @media (max-width: 1199px) {
    .slideshow_container .pos-slideshow {
      margin-bottom: 60px; } }
  @media (max-width: 767px) {
    .slideshow_container .pos-slideshow {
      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; }
    @media (max-width: 767px) {
      .slideshow_container .pos-slideshow:hover .nivo-directionNav a.nivo-prevNav {
        left: 0; }
      .slideshow_container .pos-slideshow:hover .nivo-directionNav a.nivo-nextNav {
        right: 0; } }

.slideshow_container .pos-slideshow .nivo-directionNav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0px 5px 13.5px 1.5px rgba(0, 0, 0, 0.07);
  color: #1c1e22;
  background: #ffffff;
  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:hover {
    color: #ffffff; }
  .slideshow_container .pos-slideshow .nivo-directionNav a i {
    font-size: 16px; }
  @media (max-width: 767px) {
    .slideshow_container .pos-slideshow .nivo-directionNav a {
      width: 30px;
      height: 30px; } }
  .slideshow_container .pos-slideshow .nivo-directionNav a.nivo-prevNav {
    left: 0; }
  .slideshow_container .pos-slideshow .nivo-directionNav a.nivo-nextNav {
    right: 0; }

.slideshow_container .pos-slideshow .nivo-controlNav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  z-index: 8;
  line-height: 1;
  text-align: center; }
  .slideshow_container .pos-slideshow .nivo-controlNav a {
    display: inline-block;
    margin: 0 20px;
    cursor: pointer;
    font-size: 0;
    width: 12px;
    height: 12px;
    background: #DDE1E2;
    border: none;
    -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; }
    @media (max-width: 1199px) {
      .slideshow_container .pos-slideshow .nivo-controlNav a {
        width: 1.0008340284vw;
        height: 1.0008340284vw;
        margin: 0 0.2502085071vw; } }

.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; }
  @media (max-width: 1919px) {
    .banner7-des .container {
      width: 75.0390828557vw; } }
  @media (max-width: 991px) {
    .banner7-des .container {
      width: auto;
      padding: 0 8.3402835696vw; } }
  .banner7-des .position_left {
    text-align: left; }
  .banner7-des .position_center {
    text-align: center; }
    .banner7-des .position_center .info {
      max-width: 100%; }
  .banner7-des .position_right {
    text-align: right; }
    .banner7-des .position_right .info {
      text-align: left; }
  .banner7-des .info {
    display: inline-block;
    max-width: 60%; }
    @media (max-width: 479px) {
      .banner7-des .info {
        max-width: 80%; } }
  .banner7-des p, .banner7-des h2, .banner7-des h3, .banner7-des h4, .banner7-des h5 {
    margin: 0; }

.desc_slideshow .info > *:first-child {
  margin-top: 0; }
.desc_slideshow .info > *:last-child {
  margin-bottom: 0; }
.desc_slideshow h2 {
  line-height: 1;
  font-size: 56px;
  letter-spacing: 0;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0px 0; }
  @media (max-width: 1600px) {
    .desc_slideshow h2 {
      font-size: 48px;
      margin: 0vw 0; } }
  @media (max-width: 1199px) {
    .desc_slideshow h2 {
      font-size: 40px; } }
  @media (max-width: 991px) {
    .desc_slideshow h2 {
      font-size: 34px; } }
  @media (max-width: 767px) {
    .desc_slideshow h2 {
      font-size: 32px; } }
  @media (max-width: 575px) {
    .desc_slideshow h2 {
      font-size: 24px; } }
.desc_slideshow h3 {
  line-height: 1;
  font-size: 46px;
  letter-spacing: 0;
  font-weight: 600;
  text-transform: capitalize;
  margin: 20px 0; }
  @media (max-width: 1600px) {
    .desc_slideshow h3 {
      font-size: 40px;
      margin: 1.4194464159vw 0; } }
  @media (max-width: 1199px) {
    .desc_slideshow h3 {
      font-size: 34px;
      margin: 1.6680567139vw 0; } }
  @media (max-width: 991px) {
    .desc_slideshow h3 {
      font-size: 28px;
      margin: 10px 0; } }
  @media (max-width: 767px) {
    .desc_slideshow h3 {
      font-size: 28px;
      margin: 2.6075619296vw 0; } }
  @media (max-width: 575px) {
    .desc_slideshow h3 {
      font-size: 22px;
      margin: 3.4782608696vw 0; } }
.desc_slideshow h4 {
  line-height: 1;
  font-size: 36px;
  letter-spacing: 0;
  font-weight: 700;
  text-transform: capitalize;
  margin: 20px 0; }
  @media (max-width: 1600px) {
    .desc_slideshow h4 {
      font-size: 32px;
      margin: 1.4194464159vw 0; } }
  @media (max-width: 1199px) {
    .desc_slideshow h4 {
      font-size: 28px;
      margin: 1.6680567139vw 0; } }
  @media (max-width: 767px) {
    .desc_slideshow h4 {
      font-size: 24px;
      margin: 2.6075619296vw 0; } }
  @media (max-width: 575px) {
    .desc_slideshow h4 {
      font-size: 20px;
      margin: 3.4782608696vw 0; } }
.desc_slideshow h5 {
  line-height: 1;
  font-size: 26px;
  letter-spacing: 0;
  font-weight: 700;
  text-transform: capitalize;
  margin: 30px 0; }
  @media (max-width: 1600px) {
    .desc_slideshow h5 {
      font-size: 23px;
      margin: 2.1291696238vw 0; } }
  @media (max-width: 1199px) {
    .desc_slideshow h5 {
      font-size: 20px;
      margin: 2.5020850709vw 0; } }
  @media (max-width: 767px) {
    .desc_slideshow h5 {
      font-size: 17px;
      margin: 3.9113428944vw 0; } }
  @media (max-width: 575px) {
    .desc_slideshow h5 {
      font-size: 14px;
      margin: 5.2173913043vw 0; } }
.desc_slideshow p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin: 20px 0; }
  @media (max-width: 1600px) {
    .desc_slideshow p {
      font-size: 16px;
      margin: 1.4194464159vw 0; } }
  @media (max-width: 1199px) {
    .desc_slideshow p {
      font-size: 15px;
      margin: 1.6680567139vw 0; } }
  @media (max-width: 991px) {
    .desc_slideshow p {
      margin: 10px 0; } }
  @media (max-width: 767px) {
    .desc_slideshow p {
      font-size: 14px;
      margin: 2.6075619296vw 0; } }
  @media (max-width: 575px) {
    .desc_slideshow p {
      font-size: 13px;
      margin: 3.4782608696vw 0; } }
.desc_slideshow .readmore {
  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;
  position: relative;
  background: transparent;
  border: #FFF 1px;
  font-size: 13px;
  letter-spacing: 0;
  font-weight: 700;
  text-transform: capitalize;
  padding: 15px 35px;
  border-radius: 30px;
  margin-top: 25px; }
  @media (max-width: 1600px) {
    .desc_slideshow .readmore {
      font-size: 13px;
      margin-top: 1.7743080199vw; } }
  @media (max-width: 1199px) {
    .desc_slideshow .readmore {
      font-size: 13px;
      margin-top: 2.0850708924vw; } }
  @media (max-width: 991px) {
    .desc_slideshow .readmore {
      margin-top: 10px; } }
  @media (max-width: 767px) {
    .desc_slideshow .readmore {
      font-size: 13px;
      margin-top: 3.259452412vw;
      padding: 8.5px 25px; } }
  @media (max-width: 575px) {
    .desc_slideshow .readmore {
      font-size: 12px;
      margin-top: 4.347826087vw; } }
  .desc_slideshow .readmore:after {
    content: "\e992";
    font-family: "roadthemes-icon";
    display: inline-block;
    margin-left: 5px;
    font-size: 17px;
    font-weight: 400;
    vertical-align: middle; }
  .desc_slideshow .readmore:hover {
    color: #ffffff !important; }
    .desc_slideshow .readmore:hover:after {
      -webkit-animation: passing 1.2s linear infinite;
      -moz-animation: passing 1.2s linear infinite;
      -ms-animation: passing 1.2s linear infinite;
      animation: passing 1.2s linear infinite; }
.desc_slideshow .transition_slide_0 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s; }
.desc_slideshow .transition_slide_1 {
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s; }
.desc_slideshow .transition_slide_2 {
  -webkit-animation-duration: 1.4s;
  animation-duration: 1.4s; }
.desc_slideshow .transition_slide_3 {
  -webkit-animation-duration: 1.6s;
  animation-duration: 1.6s; }
.desc_slideshow .transition_slide_4 {
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s; }
.desc_slideshow .transition_slide_5 {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }
.desc_slideshow .transition_slide_6 {
  -webkit-animation-duration: 2.8s;
  animation-duration: 2.8s; }
.desc_slideshow .transition_slide_7 {
  -webkit-animation-duration: 3.1s;
  animation-duration: 3.1s; }
.desc_slideshow .transition_slide_8 {
  -webkit-animation-duration: 3.4s;
  animation-duration: 3.4s; }

/* end module slideshow */
/* module advertising */
.advertising-block {
  position: relative;
  text-align: center;
  overflow: hidden;
  margin-bottom: 60px; }
  @media (max-width: 1199px) {
    .advertising-block {
      margin-bottom: 60px; } }
  @media (max-width: 767px) {
    .advertising-block {
      margin-bottom: 30px; } }
  .advertising-block a img {
    width: 100%;
    height: auto; }
  .advertising-block a:before {
    background: rgba(255, 255, 255, 0.2);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1; }
  .advertising-block a:after {
    background: rgba(255, 255, 255, 0.2);
    bottom: 50%;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    opacity: 1; }
  .advertising-block: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-block: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 poscookielaw */
#poscookielaw {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5101;
  padding: 15px 30px;
  opacity: 0.8;
  visibility: visible;
  transform: translate(0, 0); }
  #poscookielaw p {
    margin: 0; }
  @media (max-width: 767px) {
    #poscookielaw {
      font-size: 12px; }
      #poscookielaw button {
        font-size: 12px;
        padding: 5px 15px; } }

#poscookielaw.unvisible {
  opacity: 0;
  visibility: hidden;
  transition: transform .3s ease-out, opacity .3s ease-out, visibility .3s ease-out;
  transform: translate(0, 50%); }

/* module tags */
#tags_block {
  margin-bottom: 60px;
  display: inline-block;
  width: 100%; }
  #tags_block h2 {
    display: block;
    color: #1c1e22;
    font-size: 15px;
    font-weight: 700;
    padding: 0;
    border: none;
    text-transform: uppercase;
    margin-bottom: 30px; }
  #tags_block .tags_block {
    line-height: 1; }
    #tags_block .tags_block li {
      line-height: 1;
      float: left;
      list-style: none; }
      #tags_block .tags_block li:first-child a {
        margin-left: 0; }
      #tags_block .tags_block li a {
        display: block;
        float: left;
        padding: 10px 20px;
        line-height: 20px;
        color: #666666;
        font-weight: 400;
        border: 1px solid #e5e5e5;
        background: #ffffff;
        margin-right: 10px;
        margin-bottom: 10px;
        text-transform: capitalize; }
        #tags_block .tags_block li a:hover {
          color: #ffffff;
          background: var(--hovercolor);
          border-color: var(--hovercolor); }

/* end module tags */
/* module wishlist , compare*/
#_desktop_compare .compare_top {
  padding: 0;
  border: none; }
  #_desktop_compare .compare_top a {
    font-weight: 400;
    color: #1c1e22;
    background: #ffffff;
    text-shadow: none;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    font-size: 0;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    text-transform: capitalize;
    position: relative; }
    #_desktop_compare .compare_top a:hover {
      color: #ffffff; }
    #_desktop_compare .compare_top a i {
      display: block;
      font-size: 22px; }
    #_desktop_compare .compare_top a #poscompare-nb {
      font-size: 12px;
      background: #da2e1f;
      border-radius: 50%;
      color: #ffffff;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      position: absolute;
      left: 37px;
      top: 0; }

#_mobile_compare {
  display: inline-block;
  vertical-align: top; }
  #_mobile_compare .compare_top {
    display: inline-block;
    padding: 0 15px;
    line-height: 20px;
    height: 20px; }
    #_mobile_compare .compare_top a {
      font-weight: 400;
      color: #1c1e22;
      background: transparent;
      text-shadow: none;
      cursor: pointer;
      line-height: 20px;
      display: inline-block;
      text-transform: capitalize;
      font-size: inherit; }
      #_mobile_compare .compare_top a #poscompare-nb:before {
        content: '('; }
      #_mobile_compare .compare_top a #poscompare-nb:after {
        content: ')'; }
      #_mobile_compare .compare_top a i {
        vertical-align: -2px;
        display: inline-block;
        margin-right: 3px;
        font-size: 16px; }

#_desktop_wishtlist .wishtlist_top {
  padding: 0;
  border: none; }
  #_desktop_wishtlist .wishtlist_top a {
    font-weight: 400;
    color: #1c1e22;
    background: #ffffff;
    text-shadow: none;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    text-transform: capitalize;
    /*border: 1px solid #e5e5e5;*/
    border-radius: 50%;
    position: relative;
    font-size: 0; }
    #_desktop_wishtlist .wishtlist_top a .txt_wishlist {
      display: none; }
    #_desktop_wishtlist .wishtlist_top a:hover {
      color: #ffffff; }
    #_desktop_wishtlist .wishtlist_top a i {
      display: block;
      font-size: 22px; }
    #_desktop_wishtlist .wishtlist_top a .cart-wishlist-number {
      font-size: 12px;
      background: #da2e1f;
      border-radius: 50%;
      color: #ffffff;
      font-weight: 600;
      display: none;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      position: absolute;
      left: 37px;
      top: 0; }

#_mobile_wishtlist {
  display: inline-block;
  vertical-align: top; }
  #_mobile_wishtlist .wishtlist_top {
    display: inline-block;
    padding: 0 15px;
    line-height: 20px;
    height: 20px; }
    #_mobile_wishtlist .wishtlist_top a {
      font-weight: 400;
      color: #1c1e22;
      background: transparent;
      text-shadow: none;
      cursor: pointer;
      line-height: 20px;
      display: inline-block;
      text-transform: capitalize;
      font-size: inherit; }
      #_mobile_wishtlist .wishtlist_top a .cart-wishlist-number:before {
        content: '('; }
      #_mobile_wishtlist .wishtlist_top a .cart-wishlist-number:after {
        content: ')'; }
      #_mobile_wishtlist .wishtlist_top a i {
        vertical-align: -2px;
        display: inline-block;
        margin-right: 3px;
        font-size: 16px; }

#wishlistModal, #compareModal {
  text-align: center; }
  #wishlistModal .login_text, #compareModal .login_text {
    display: block; }
  @media (min-width: 576px) {
    #wishlistModal .modal-dialog, #compareModal .modal-dialog {
      max-width: 380px; } }
  #wishlistModal a, #compareModal a {
    display: inline-block;
    width: 100%;
    padding: 10px;
    text-align: center;
    margin-top: 20px; }
  #wishlistModal h4, #compareModal h4 {
    margin-top: 20px;
    line-height: 1.4;
    font-weight: 400; }

.text_wishlist {
  font-size: 20px; }

.wlp_bought_list {
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
  .wlp_bought_list .lnkdel {
    position: absolute;
    top: 0;
    right: 7.5px; }
  .wlp_bought_list .wlp_product {
    display: flex;
    padding: 30px 15px;
    position: relative; }
    .wlp_bought_list .wlp_product .add-to-cart {
      display: inline-block;
      background: #1c1e22;
      color: #ffffff;
      text-transform: capitalize;
      line-height: 40px;
      padding: 0 40px;
      cursor: pointer;
      font-size: 14px;
      border-radius: 30px;
      position: relative;
      z-index: 1;
      border: none; }
    .wlp_bought_list .wlp_product form {
      margin-top: 20px;
      flex-wrap: wrap;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; }
      .wlp_bought_list .wlp_product form > * {
        margin-bottom: 5px; }
        .wlp_bought_list .wlp_product form > *:not(:last-child) {
          margin-right: 15px; }
      .wlp_bought_list .wlp_product form .nb_qty {
        width: 55px;
        border: 1px solid #cccccc;
        padding-left: 10px; }

/* end module wishlist , compare */
#_desktop_contact_link {
  float: right; }

.contact-link {
  line-height: 18px;
  position: relative;
  color: inherit;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
  .contact-link > div {
    padding: 0 20px;
    position: relative; }
    .contact-link > div i {
      vertical-align: -2px;
      margin-right: 3px;
      font-size: 16px; }
  .contact-link a {
    font-weight: 700; }
    .contact-link a:hover {
      text-decoration: underline; }

#_mobile_contact_link {
  padding: 0 20px; }

.contact-rich {
  color: #1c1e22; }
  .contact-rich .block {
    flex-wrap: wrap;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center; }
    .contact-rich .block:not(:last-child) {
      margin-bottom: 20px; }
    .contact-rich .block .icon {
      width: 42px;
      height: 42px;
      background: #1c1e22;
      color: #ffffff;
      border-radius: 50%;
      flex-wrap: wrap;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px; }
      .contact-rich .block .icon i {
        font-size: 22px; }

/* module social */
.social_follow {
  position: relative;
  font-size: 0;
  margin-top: 25px; }
  .social_follow li {
    display: inline-block;
    margin: 0 8px 8px 0;
    line-height: 1;
    background-image: none !important;
    padding: 0; }
    .social_follow li:last-child {
      margin: 0; }
    .social_follow li a {
      position: relative;
      display: inline-flex;
      color: #ffffff !important;
      font-size: 0;
      padding: 0;
      line-height: 1;
      width: 30px;
      height: 30px;
      align-items: center;
      justify-content: center;
      border: none;
      border-radius: 50%;
      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:hover {
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px); }
      .social_follow li a:before {
        padding: 0 !important;
        font-size: 16px;
        display: inline-block;
        font-family: "roadthemes-icon"; }
    .social_follow li.facebook a {
      background: #3b5998; }
      .social_follow li.facebook a:before {
        content: "\e93c"; }
    .social_follow li.twitter a {
      background: #1da1f2; }
      .social_follow li.twitter a:before {
        content: "\e932"; }
    .social_follow li.rss a {
      background: #FFA000; }
      .social_follow li.rss a:before {
        content: "\e936"; }
    .social_follow li.youtube a {
      background: #d91c1b; }
      .social_follow li.youtube a:before {
        content: "\e933"; }
    .social_follow li.googleplus a {
      background: #D54C3F; }
      .social_follow li.googleplus a:before {
        content: "\e93d"; }
    .social_follow li.pinterest a {
      background: #DF0019; }
      .social_follow li.pinterest a:before {
        content: "\e93e"; }
    .social_follow li.vimeo a {
      background: #00A8E8; }
      .social_follow li.vimeo a:before {
        content: "\e98a"; }
    .social_follow li.instagram a {
      background: #d63573; }
      .social_follow li.instagram a:before {
        content: "\e934"; }
    .social_follow li.linkedin a {
      background: #016196; }
      .social_follow li.linkedin a:before {
        content: "\e935"; }

/* end module social */
/* module instagram */
#instagram_block .pos_content {
  margin: 0; }
#instagram_block .owl-carousel.owl-drag .owl-item {
  padding: 0; }
#instagram_block .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px; }
  #instagram_block .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.7); }
  #instagram_block .owl-dots .owl-dot:hover span, #instagram_block .owl-dots .owl-dot.active span {
    background: white; }
#instagram_block .our_instagram {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }
  #instagram_block .our_instagram a {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    background: #ffffff;
    color: #1c1e22;
    padding: 20px 15px;
    max-width: 160px; }
    #instagram_block .our_instagram a:before {
      content: "\e934";
      font-size: 32px;
      font-family: "roadthemes-icon";
      display: inline-block;
      margin-right: 5px; }
#instagram_block .item-instagram 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; }
#instagram_block .item-instagram:hover img {
  -webkit-filter: saturate(2);
  -moz-filter: saturate(2);
  -ms-filter: saturate(2);
  filter: saturate(2);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear; }

.instagram-grid {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

/* end module instagram */
/* module listcategories */
.poslistcategories {
  position: relative; }
  .poslistcategories .content-list {
    border: 1px solid #e5e5e5;
    border-radius: 5px; }
  .poslistcategories .row {
    margin: 0; }
    .poslistcategories .row [class*="col-"] {
      padding: 0; }
    @media (min-width: 1200px) {
      .poslistcategories .row .col-left {
        width: 20%; }
      .poslistcategories .row .col-right {
        width: 80%; } }
  .poslistcategories .banner-box {
    margin: 0;
    padding: 20px; }
  @media (max-width: 575px) {
    .poslistcategories .firstActiveItem .list-categories {
      border-left: none; } }
  .poslistcategories .list-categories {
    position: relative;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    padding: 35px 20px;
    border-left: 1px solid #e5e5e5; }
    .poslistcategories .list-categories:not(:first-child) {
      border-top: 1px solid #e5e5e5; }
    @media (max-width: 575px) {
      .poslistcategories .list-categories {
        border-top: 1px solid #e5e5e5; } }
    .poslistcategories .list-categories .thumb-category {
      position: relative;
      overflow: hidden;
      margin-left: 20px;
      border-radius: 50%; }
      .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; }
    .poslistcategories .list-categories .desc-listcategoreis {
      flex: 1; }
      .poslistcategories .list-categories .desc-listcategoreis .name_categories {
        font-size: 14px;
        text-transform: capitalize;
        color: #1c1e22;
        display: block;
        line-height: 1;
        position: relative;
        font-weight: 600; }
        .poslistcategories .list-categories .desc-listcategoreis .name_categories span {
          font-size: 12px;
          display: block;
          margin-top: 15px;
          font-weight: 400; }
      .poslistcategories .list-categories .desc-listcategoreis .sub a {
        color: #888888;
        font-size: 14px;
        line-height: 24px;
        display: block;
        text-transform: capitalize; }

/*end  module listcategories */
/* module cateproduct */
.category-products-slider .category_products .pos_content {
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  padding: 20px; }
.category-products-slider .owl-nav > div {
  top: -65px;
  transform: none;
  opacity: 1; }
  .category-products-slider .owl-nav > div.owl-prev {
    right: 24px;
    left: auto; }
  .category-products-slider .owl-nav > div.owl-next {
    right: -20px; }
.category-products-slider .js-product-miniature {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center; }
  .category-products-slider .js-product-miniature:not(:last-child) {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e5e5; }
  .category-products-slider .js-product-miniature:after {
    display: none; }
  .category-products-slider .js-product-miniature .img_block {
    -ms-flex: 0 0 120px;
    flex: 0 0 120px;
    max-width: 120px;
    margin-right: 20px; }
    @media (max-width: 1199px) {
      .category-products-slider .js-product-miniature .img_block {
        -ms-flex: 0 0 100px;
        flex: 0 0 100px;
        max-width: 100px; } }
  .category-products-slider .js-product-miniature .product_desc {
    flex: 1;
    min-height: auto !important;
    overflow: hidden;
    padding: 0;
    text-align: left; }
    .category-products-slider .js-product-miniature .product_desc .product_name {
      min-height: auto; }
    .category-products-slider .js-product-miniature .product_desc .product-price-and-shipping .discount-product {
      display: none; }

/* module cateproduct */
/* module poslistcateproduct  */
.poslistcateproduct .btn-group {
  position: absolute;
  right: 100px;
  bottom: 0;
  z-index: 2; }
  @media (max-width: 767px) {
    .poslistcateproduct .btn-group {
      right: 0; } }
  .poslistcateproduct .btn-group > .btn {
    border: 0;
    background: transparent;
    padding: 0; }
    .poslistcateproduct .btn-group > .btn:after {
      display: none; }
    .poslistcateproduct .btn-group > .btn:hover, .poslistcateproduct .btn-group > .btn:active, .poslistcateproduct .btn-group > .btn:focus {
      -webkit-box-shadow: none;
      box-shadow: none; }
  .poslistcateproduct .btn-group .dropdown-menu {
    right: 2px;
    left: auto;
    top: 25px;
    border: 0;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.175);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.175);
    padding: 15px;
    min-width: 200px; }
    .poslistcateproduct .btn-group .dropdown-menu a {
      font-size: 13px;
      color: #1c1e22;
      line-height: 28px; }
.poslistcateproduct .subcategories-list {
  font-size: 0;
  line-height: 1;
  position: relative;
  z-index: 2;
  margin: 0;
  overflow: auto;
  white-space: nowrap;
  position: absolute;
  right: 100px;
  top: 20px;
  max-width: 55%; }
  .poslistcateproduct .subcategories-list li {
    display: inline-block; }
    .poslistcateproduct .subcategories-list li a {
      position: relative;
      display: block;
      vertical-align: top;
      line-height: 30px;
      font-size: 14px;
      text-transform: capitalize;
      font-weight: 400;
      padding: 0;
      cursor: pointer;
      color: #1c1e22;
      padding: 0 20px;
      border: 2px solid transparent;
      border-radius: 30px; }
      .poslistcateproduct .subcategories-list li a.active, .poslistcateproduct .subcategories-list li a:hover {
        z-index: 2;
        -webkit-transition: all 300ms linear;
        -moz-transition: all 300ms linear;
        -ms-transition: all 300ms linear;
        -o-transition: all 300ms linear;
        transition: all 300ms linear; }
.poslistcateproduct .content-listcate {
  display: grid;
  grid-template-columns: 20% 80%; }
  @media (max-width: 1199px) {
    .poslistcateproduct .content-listcate {
      grid-template-columns: 25.2% 74.8%; } }
  @media (max-width: 991px) {
    .poslistcateproduct .content-listcate {
      grid-template-columns: 33.7% 66.3%; } }
  @media (max-width: 767px) {
    .poslistcateproduct .content-listcate {
      display: block; } }
  .poslistcateproduct .content-listcate .banner-box {
    border-radius: 5px 0 0 5px;
    margin: 0; }

/* end module poslistcateproduct  */
/* module promo*/
.pospromo {
  position: relative; }
  .pospromo a:not(:hover) {
    color: inherit; }
  .pospromo .pospromo-close {
    position: absolute;
    right: -30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #1c1e22;
    font-size: 21px; }

/* end module promo*/
/* module testimonial*/
.testimonials_container {
  padding: 60px 0;
  position: relative; }
  @media (max-width: 1199px) {
    .testimonials_container {
      padding: 60px 0; } }
  @media (max-width: 767px) {
    .testimonials_container {
      padding: 30px 0; } }
  .testimonials_container:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -9999rem;
    right: -9999rem;
    background: #fafafa;
    pointer-events: none;
    z-index: -1; }
  @media (min-width: 1200px) {
    .testimonials_container {
      display: grid;
      grid-template-columns: 25% 75%; }
      .testimonials_container .pos_title {
        justify-content: flex-end;
        align-items: flex-start; } }
  .testimonials_container .owl-item.active:nth-child(4n+1) .item-testimonials {
    background: #f5edeb; }
  .testimonials_container .owl-item.active:nth-child(4n+2) .item-testimonials {
    background: #f5f3eb; }
  .testimonials_container .owl-item.active:nth-child(4n+3) .item-testimonials {
    background: #ebf4f5; }
  .testimonials_container .owl-item.active:nth-child(4n+4) .item-testimonials {
    background: #f0eef9; }
  .testimonials_container .item-testimonials {
    background: #f5edeb;
    border-radius: 5px;
    padding: 30px 30px 100px 30px;
    position: relative; }
    .testimonials_container .item-testimonials:hover:before {
      -webkit-transform: translateX(-10px) translateY(10px);
      -moz-transform: translateX(-10px) translateY(10px);
      -ms-transform: translateX(-10px) translateY(10px);
      transform: translateX(-10px) translateY(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; }
    .testimonials_container .item-testimonials:before {
      content: '';
      border: 1px solid var(--hovercolor);
      position: absolute;
      top: 1px;
      right: 1px;
      bottom: 1px;
      left: 1px;
      border-radius: 5px;
      display: block;
      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; }
    .testimonials_container .item-testimonials:after {
      content: "\e990";
      display: inline-block;
      font-size: 36px;
      font-family: "roadthemes-icon";
      color: var(--hovercolor);
      position: absolute;
      right: 0;
      left: 0;
      bottom: 30px;
      text-align: center;
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: rotate(180deg); }
    .testimonials_container .item-testimonials .content_author {
      position: relative;
      flex-wrap: nowrap; }
      .testimonials_container .item-testimonials .content_author .img {
        width: 86px;
        overflow: hidden;
        border-radius: 50%; }
      .testimonials_container .item-testimonials .content_author .content_test {
        line-height: 1;
        padding: 15px 0 15px 15px;
        flex: 1; }
        .testimonials_container .item-testimonials .content_author .content_test .des_namepost {
          font-weight: 600;
          color: #1c1e22;
          margin-bottom: 10px;
          font-size: 16px; }
        .testimonials_container .item-testimonials .content_author .content_test .des_email {
          margin: 0;
          font-size: 14px; }
    .testimonials_container .item-testimonials .des_testimonial {
      margin-top: 30px;
      font-size: 16px;
      text-align: center;
      display: -webkit-box;
      -webkit-line-clamp: 5;
      -webkit-box-orient: vertical;
      overflow: hidden;
      line-height: 1.8; }

/* end module testimonial*/
/* module postabcateslider */
.tab-category-container-slider .content-tabcate {
  display: grid;
  grid-template-columns: 32% 68%; }
  @media (min-width: 991px) and (max-width: 1199px) {
    .tab-category-container-slider .content-tabcate {
      grid-template-columns: 25% 75%; } }
  @media (max-width: 767px) {
    .tab-category-container-slider .content-tabcate {
      display: block; } }
  @media (min-width: 768px) {
    .tab-category-container-slider .content-tabcate .col-left {
      flex-wrap: wrap;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      border: 1px solid #e5e5e5;
      border-right: none; }
      .tab-category-container-slider .content-tabcate .col-left ul.tab_cates {
        flex: 1;
        padding: 20px; } }
  .tab-category-container-slider .content-tabcate .banner-box {
    border-radius: 5px 0 0 5px;
    margin: 0; }
.tab-category-container-slider .imgSpinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  background: url("../img/loader.gif") no-repeat center;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  z-index: 99; }
.tab-category-container-slider ul.tab_cates li {
  display: block;
  vertical-align: top;
  margin-bottom: 15px;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  color: #1c1e22;
  -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-slider ul.tab_cates li .img-thumb {
    margin-bottom: 6px; }
  .tab-category-container-slider ul.tab_cates li.active, .tab-category-container-slider ul.tab_cates li: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; }
@media (max-width: 767px) {
  .tab-category-container-slider ul.tab_cates {
    margin-bottom: 15px;
    white-space: nowrap;
    overflow-y: hidden;
    padding-bottom: 15px; }
    .tab-category-container-slider ul.tab_cates li {
      display: inline-block;
      vertical-align: top;
      margin: 0 15px 0 0; }
      .tab-category-container-slider ul.tab_cates li:last-child {
        margin: 0; } }

/* end module postabcateslider */
/* module cart block */
.sidebar-body {
  overflow: hidden; }

.blockcart {
  position: relative; }
  .blockcart:hover .popup_cart.popup-dropdown {
    top: 100%;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear; }
  .blockcart .button_cart {
    position: relative;
    display: inline-block;
    position: relative; }
    .blockcart .button_cart a.desktop, .blockcart .button_cart a.mobile {
      display: block;
      position: relative;
      font-size: 0;
      font-weight: 400;
      text-align: center;
      color: #1c1e22; }
      .blockcart .button_cart a.mobile:hover:before{
        background-image: url(../img/shopping-cart-w.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        background-size: 30px;
      }
      .blockcart .button_cart a.desktop:hover, .blockcart .button_cart a.mobile:hover {
        color: #ffffff;
        background-image: url(../img/shopping-cart-w.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center; }
        .blockcart .button_cart a.desktop:hover:before {
          background-color: #000000;
          background-image: url(../img/shopping-cart-w.svg);
          background-repeat: no-repeat;
          background-size: 30px;
          background-position: center;
          
        }
      .blockcart .button_cart a.desktop:before, .blockcart .button_cart a.mobile:before {
        content: "";
        display: inline-flex;
        /*font-family: "roadthemes-icon";*/
        height: 48px;
        width: 48px;
        align-items: center;
        justify-content: center;
        /*border: 1px solid #e5e5e5;*/
        background: #ffffff;
        border-radius: 50%;
        background-image: url(../img/shopping-cart.svg);
        background-repeat: no-repeat;
        background-size: 30px;
        background-position: center;
        
      }
      .blockcart .button_cart a.desktop i, .blockcart .button_cart a.mobile i {
        display: none; }
      .blockcart .button_cart a.desktop .item_total, .blockcart .button_cart a.mobile .item_total {
        font-size: 18px;
        font-weight: 600;
        margin-left: 15px;
        font-family: "Dosis", sans-serif;
        color: #1c1e22;
        display: none;
        }
      .blockcart .button_cart a.desktop .item_count, .blockcart .button_cart a.mobile .item_count {
        font-size: 12px;
        background: #F9CA00;
        border-radius: 50%;
        color: #000;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        position: absolute;
        left: 37px;
        top: 0; }
  .blockcart .popup_cart {
    margin: 0;
    text-align: left;
    background: #ffffff;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear; }
    .blockcart .popup_cart.popup-dropdown {
      top: 110%;
      left: auto;
      right: 0;
      position: absolute;
      z-index: 1001;
      opacity: 0;
      visibility: hidden;
      padding: 10px;
      width: 350px;
      box-shadow: 0px 0px 6.65px 2px rgba(0, 0, 0, 0.03); }
      @media (max-width: 767px) {
        .blockcart .popup_cart.popup-dropdown {
          width: 300px; } }
      .blockcart .popup_cart.popup-dropdown > * {
        padding: 0 10px; }
      .blockcart .popup_cart.popup-dropdown > ul {
        max-height: 400px; }
    .blockcart .popup_cart.popup-sidebar {
      position: fixed;
      right: 0;
      top: 0;
      bottom: 0;
      width: 460px;
      max-width: 95%;
      padding: 0;
      z-index: 1001;
      opacity: 0;
      visibility: hidden;
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      transform: translateX(100%); }
      .blockcart .popup_cart.popup-sidebar.sidebar-opened {
        opacity: 1;
        visibility: visible;
        -webkit-transition: all 250ms linear;
        -moz-transition: all 250ms linear;
        -ms-transition: all 250ms linear;
        -o-transition: all 250ms linear;
        transition: all 250ms linear;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0); }
      .blockcart .popup_cart.popup-sidebar .content-sidebar {
        max-width: 100%;
        min-width: auto;
        padding: 10px;
        flex-wrap: wrap;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        height: calc(100vh - 75px);
        background-color: #FFF; }
        .blockcart .popup_cart.popup-sidebar .content-sidebar > * {
          padding: 0 20px; }
        .blockcart .popup_cart.popup-sidebar .content-sidebar .empty-cart {
          text-align: center;
          padding-top: 20px; }
          .blockcart .popup_cart.popup-sidebar .content-sidebar .empty-cart i {
            font-size: 36px;
            margin-bottom: 10px;
            display: block; }
      .blockcart .popup_cart.popup-sidebar .title-cart {
        /*background: #f5f5f5;*/
        height: 75px;
        padding: 20px 30px; }
        .blockcart .popup_cart.popup-sidebar .title-cart > span {
          color: #1c1e22;
          font-weight: 600;
          font-size: 18px; }
        .blockcart .popup_cart.popup-sidebar .title-cart .close-cart:after {
          content: '';
          position: fixed;
          top: 0;
          right: 100%;
          bottom: 0;
          left: -9999rem;
          background: rgba(0, 0, 0, 0.5);
          z-index: 14;
          cursor: ew-resize; 
          height: 100vh;
        }
        .blockcart .popup_cart.popup-sidebar .title-cart i {
          font-size: 30px; }
    .blockcart .popup_cart ul {
      height: auto;
      overflow-y: auto;
      margin: 20px 0 20px 0; }
      .blockcart .popup_cart ul::-webkit-scrollbar {
        -webkit-appearance: none;
        width: 8px; }
      .blockcart .popup_cart ul::-webkit-scrollbar-thumb {
        border-radius: 8px;
        border: 2px solid white;
        /* should match background, can't be transparent */
        background-color: #cccccc; }
      .blockcart .popup_cart ul::-webkit-scrollbar-track {
        background-color: #fff;
        border-radius: 8px; }
      .blockcart .popup_cart ul li {
        border-bottom: 1px solid #e5e5e5;
        padding-bottom: 20px;
        margin-bottom: 20px;
        overflow: hidden; }
        .blockcart .popup_cart ul li:last-child {
          margin: 0; }
        .blockcart .popup_cart ul li .img_content {
          float: left;
          margin: 0 10px 0 0;
          position: relative;
          width: 98px; }
          .blockcart .popup_cart ul li .img_content .product-quantity {
            position: absolute;
            top: 5px;
            left: 5px;
            min-width: 20px;
            line-height: 20px;
            -webkit-border-radius: 100%;
            -moz-border-radius: 100%;
            border-radius: 100%;
            padding: 0;
            text-align: center;
            color: #ffffff;
            font-size: 12px;
            display: inline-block; }
        .blockcart .popup_cart ul li .right_block {
          overflow: hidden;
          position: relative;
          padding: 0 20px 0 0; }
          .blockcart .popup_cart ul li .right_block .product-name {
            display: block;
            text-transform: uppercase;
            font-size: 14px;
            color: #1c1e22;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis; }
          .blockcart .popup_cart ul li .right_block .product-price {
            display: block;
            margin: 5px 0 0;
            font-size: 16px;
            font-weight: 400; }
          .blockcart .popup_cart ul li .right_block .remove-from-cart {
            display: block;
            position: absolute;
            top: 0;
            right: 0;
            color: #707070;
            font-size: 18px; }
            .blockcart .popup_cart ul li .right_block .remove-from-cart:hover {
              color: #1c1e22; }
          .blockcart .popup_cart ul li .right_block .attributes_content {
            display: block;
            font-size: 13px;
            line-height: 20px;
            color: #9b9b9b;
            margin: 5px 0 0; }
          .blockcart .popup_cart ul li .right_block strong {
            font-weight: 400; }
    .blockcart .popup_cart .price_content {
      margin-top: auto; }
      .blockcart .popup_cart .price_content .price_inline {
        overflow: hidden;
        line-height: 25px; }
        .blockcart .popup_cart .price_content .price_inline .label {
          float: left;
          text-transform: capitalize; }
        .blockcart .popup_cart .price_content .price_inline .value {
          float: right;
          font-weight: 400; }
        .blockcart .popup_cart .price_content .price_inline.cart-total {
          margin: 20px 0; }
          .blockcart .popup_cart .price_content .price_inline.cart-total .label {
            color: #1c1e22; }
          .blockcart .popup_cart .price_content .price_inline.cart-total .value {
            color: #1c1e22;
            font-size: 20px; }
    .blockcart .popup_cart .checkout a {
      display: block; }

/* style layer cart */
#blockcart-modal .modal-body {
  background: #ffffff;
  padding: 3.125rem 1.875rem; }

#blockcart-modal .divide-right {
  border-right: none; }
  @media (max-width: 767px) {
    #blockcart-modal .divide-right {
      border: none; } }
  #blockcart-modal .divide-right p, #blockcart-modal .divide-right strong {
    color: #1c1e22;
    font-weight: 600; }

#blockcart-modal .cart-content p, #blockcart-modal .cart-content strong {
  color: #1c1e22; }
#blockcart-modal .cart-content strong {
  font-weight: 600; }

#blockcart-modal .product-name {
  margin-bottom: 20px;
  color: #1c1e22; }

#blockcart-modal .modal-header {
  background: #1c1e22; }

/* end style layer cart */
#blockcart-modal button.close {
  color: #ffffff;
  opacity: 1; }

#blockcart-modal .cart-content .btn {
  margin-top: 20px; }

#blockcart-modal .product-image {
  border: 1px solid #e5e5e5; }

/* end module cart block */
/* search block */
#_desktop_search_category {
  position: relative; }
  #_desktop_search_category .search-icon {
    width: 48px;
    height: 48px;
    background: #ffffff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    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; }
    #_desktop_search_category .search-icon:hover {
      color: #ffffff; }

@media (max-width: 991px) {
  #_mobile_search_category .search-icon {
    display: none; }

  #_mobile_search_category #pos_search_top {
    display: block !important;
    position: static;
    width: 100%;
    min-width: auto; } }
#_mobile_search_category {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px; }

#pos_search_top {
  padding: 0;
  left: auto;
  right: 0;
  border: none;
  background: transparent;
  margin: 0; }
  #pos_search_top .form_search {
    position: relative; }
    #pos_search_top .form_search label {
      display: none; }
    #pos_search_top .form_search .form-control {
      padding: 10px 65px 10px 20px;
      width: 100%;
      height: 48px;
      font-size: 14px;
      background: #ffffff;
      color: #696969;
      border: none;
      border-radius: 5px;
      outline: 0.80px #B1BDC0 solid;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none; }
      #pos_search_top .form_search .form-control:-moz-placeholder {
        color: #3b3d42; }
      #pos_search_top .form_search .form-control::-moz-placeholder {
        color: #3b3d42; }
      #pos_search_top .form_search .form-control:-ms-input-placeholder {
        color: #3b3d42; }
      #pos_search_top .form_search .form-control::-webkit-input-placeholder {
        color: #3b3d42; }
      #pos_search_top .form_search .form-control.focus {
        box-shadow: none; }
    #pos_search_top .form_search .search_submit {
      position: absolute;
      top: 0;
      right: 0;
      height: 48px;
      width: 60px;
      color: #1c1e22;
      background: transparent;
      padding: 0;
      border: 0;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      /*border-radius: 0 30px 30px 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; }
      #pos_search_top .form_search .search_submit:hover {
        color: #ffffff; }
      #pos_search_top .form_search .search_submit i {
        font-size: 18px;
        display: block; }
    #pos_search_top .form_search .form-group {
      position: absolute;
      left: 0;
      top: 0;
      display: inline-block;
      width: 150px;
      margin: 0;
      background: transparent; }
      @media (max-width: 480px) {
        #pos_search_top .form_search .form-group {
          width: 110px; } }
      #pos_search_top .form_search .form-group .bootstrap-select {
        width: 150px;
        line-height: 48px;
        margin: 0;
        border: 0;
        padding: 0 15px;
        color: #1c1e22;
        border-radius: 30px 0 0 30px;
        -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 100% 54% #f2f3f5; }
        @media (max-width: 991px) {
          #pos_search_top .form_search .form-group .bootstrap-select {
            width: 110px;
            font-size: 14px;
            padding: 0 10px; } }
    #pos_search_top .form_search.show-categories .form-control {
      padding-left: 170px; }
      @media (max-width: 991px) {
        #pos_search_top .form_search.show-categories .form-control {
          padding-left: 120px; } }

.ui-autocomplete {
  /* temporal*/
  display: none !important;
  overflow: hidden;
  max-height: 300px;
  overflow-y: scroll;
  padding: 10px;
  border: none;
  box-shadow: 0px 0px 6.65px 2px rgba(0, 0, 0, 0.03);
  z-index: 9999; }
  @media (max-width: 360px) {
    .ui-autocomplete {
      max-width: 300px !important; } }
  .ui-autocomplete::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 8px; }
  .ui-autocomplete::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 2px solid white;
    /* should match background, can't be transparent */
    background-color: #cccccc; }
  .ui-autocomplete::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 8px; }
  .ui-autocomplete li a {
    display: flex !important;
    align-items: center;
    width: 100%;
    overflow: visible;
    max-height: none;
    overflow-y: auto;
    margin-bottom: 10px !important;
    border: none; }
    .ui-autocomplete li a img {
      margin: 0;
      flex: 0 0 80px;
      width: 80px;
      margin-right: 20px; }
    .ui-autocomplete li a > div {
      overflow: hidden;
      padding: 0 20px; }
    .ui-autocomplete li a span {
      margin: 0;
      display: inline-block;
      font-size: 12px; }
      .ui-autocomplete li a span.separator {
        margin-left: 5px;
        margin-right: 5px; }
      .ui-autocomplete li a span.product {
        font-weight: 400;
        font-size: 14px; }
    .ui-autocomplete li a .price {
      margin-top: 10px; }

/* end search block */
/* mega menu */
#_desktop_vegamenu .pos-menu-vertical {
  width: 270px;
  position: relative;
  z-index: 9; }
  #_desktop_vegamenu .pos-menu-vertical .icon-drop-mobile {
    display: none; }
  #_desktop_vegamenu .pos-menu-vertical .title_vertical {
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    height: 50px;
    padding: 0 20px;
    cursor: pointer;
    margin: 0;
    border-radius: 30px;
    color: #ffffff;
    display: flex;
    align-items: center; }
    #_desktop_vegamenu .pos-menu-vertical .title_vertical:before {
      content: '\e920';
      display: inline-block;
      font-size: 20px;
      font-family: "roadthemes-icon";
      font-weight: 400;
      margin-right: 10px; }
    #_desktop_vegamenu .pos-menu-vertical .title_vertical:after {
      content: '\e92b';
      display: inline-block;
      font-size: 8px;
      font-family: "roadthemes-icon";
      flex: 1;
      text-align: right;
      font-weight: 400;
      margin-left: 10px; }
  #_desktop_vegamenu .pos-menu-vertical .menu-content {
    display: none;
    width: 100%;
    background: #ffffff;
    box-shadow: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0;
    min-width: 270px;
    box-shadow: 0px 5px 13.5px 1.5px rgba(0, 0, 0, 0.07);
    margin-top: 5px; }
    #_desktop_vegamenu .pos-menu-vertical .menu-content:before {
      content: '';
      position: absolute;
      left: 25px;
      top: -15px;
      border: 8px solid transparent;
      border-bottom: 8px solid #ffffff; }
    #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item {
      display: block;
      position: relative;
      padding: 0 20px; }
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item > a {
        position: relative;
        display: block;
        overflow: hidden;
        line-height: 26px;
        text-transform: capitalize;
        word-wrap: break-word;
        background: white;
        color: #1c1e22;
        padding: 10px 0;
        font-size: 13px;
        font-weight: 400;
        transition: none;
        border-bottom: 1px solid #e5e5e5; }
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item.bold > a {
        font-weight: 700; }
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item:last-child > a {
        border: none; }
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item .menu-subtitle {
        display: inline-block;
        padding: 0 10px;
        font-size: 11px;
        background: #1c1e22;
        color: #ffffff;
        font-weight: 400;
        line-height: 18px;
        position: absolute;
        border-radius: 3px;
        position: relative;
        margin-left: 10px;
        vertical-align: 2px; }
        #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item .menu-subtitle:after {
          top: 50%;
          left: -8px;
          content: " ";
          height: 0;
          width: 0;
          position: absolute;
          pointer-events: none;
          border: solid transparent;
          border-right-color: #c40316;
          border-width: 4px;
          margin-top: -4px; }
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item .img-icon {
        margin-right: 5px;
        display: inline-block;
        vertical-align: middle;
        width: auto; }
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item i {
        display: inline-block;
        vertical-align: middle;
        font-size: 16px;
        margin-right: 5px; }
        #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item i.hidden-md-down {
          font-size: 9px;
          font-weight: 600;
          margin: 0; }
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item .icon_sub {
        position: absolute;
        right: 0;
        top: 50%;
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); }
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item:hover > .menu-dropdown, #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item > .cat-drop-menu > li:hover > .cat-drop-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transition: all 300ms linear;
        -moz-transition: all 300ms linear;
        -ms-transition: all 300ms linear;
        -o-transition: all 300ms linear;
        transition: all 300ms linear; }
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item > .menu_slidedown,
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item > .menu_slidedown.cat-drop-menu li > .menu-dropdown {
        opacity: 0;
        visibility: hidden;
        -o-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -webkit-transform-origin: 0% 0%;
        transform-style: preserve-3d;
        -o-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        -webkit-transform-style: preserve-3d;
        transform: rotateX(-75deg);
        -o-transform: rotateX(-75deg);
        -moz-transform: rotateX(-75deg);
        -webkit-transform: rotateX(-75deg); }
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item:hover > .menu_slidedown,
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item > .menu_slidedown.cat-drop-menu li:hover > .menu-dropdown {
        opacity: 1;
        visibility: visible;
        transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -webkit-transform: rotateX(0deg);
        -o-transition: -o-transform 0.3s, opacity 0.3s;
        -ms-transition: -ms-transform 0.3s, opacity 0.3s;
        -moz-transition: -moz-transform 0.3s, opacity 0.3s;
        -webkit-transition: -webkit-transform 0.3s, opacity 0.3s; }
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item > .menu_slideup,
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item > .menu_slideup.cat-drop-menu li > .menu-dropdown {
        opacity: 0;
        visibility: hidden;
        -webkit-transform-origin: center center;
        -moz-transform-origin: center center;
        -ms-transform-origin: center center;
        -o-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        transform: translateY(20px); }
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item:hover > .menu_slideup,
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item > .menu_slideup.cat-drop-menu li:hover > .menu-dropdown {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        -o-transition: -o-transform 0.3s, opacity 0.3s;
        -ms-transition: -ms-transform 0.3s, opacity 0.3s;
        -moz-transition: -moz-transform 0.3s, opacity 0.3s;
        -webkit-transition: -webkit-transform 0.3s, opacity 0.3s; }
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item > .menu_slideleft,
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item > .menu_slideleft.cat-drop-menu li > .menu-dropdown {
        opacity: 0;
        visibility: hidden;
        -webkit-transform-origin: center center;
        -moz-transform-origin: center center;
        -ms-transform-origin: center center;
        -o-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: translateX(0px) skewX(7deg);
        -moz-transform: translateX(40px) skewX(7deg);
        -ms-transform: translateX(40px) skewX(7deg);
        -o-transform: translateX(40px) skewX(7deg);
        transform: translateX(40px) skewX(7deg);
        -o-transition: -o-transform 0.3s, opacity 0.3s;
        -ms-transition: -ms-transform 0.3s, opacity 0.3s;
        -moz-transition: -moz-transform 0.3s, opacity 0.3s;
        -webkit-transition: -webkit-transform 0.3s, opacity 0.3s; }
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item:hover > .menu_slideleft,
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-item > .menu_slideleft.cat-drop-menu li:hover > .menu-dropdown {
        opacity: 1;
        visibility: visible;
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
        transform: rotateX(0deg); }
    #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-dropdown {
      position: absolute;
      z-index: 9;
      visibility: hidden;
      opacity: 0;
      text-align: left;
      top: 0;
      left: 100%;
      padding: 0; }
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-dropdown .popup_vertical {
        background: #ffffff;
        padding: 30px;
        box-shadow: 0px 5px 13.5px 1.5px rgba(0, 0, 0, 0.07);
        display: inline-block; }
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-dropdown .pos-menu-row:not(:last-child) {
        margin-bottom: 20px; }
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-dropdown .ul-column .submenu-item:not(:last-child) {
        margin-bottom: 20px; }
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-dropdown .category-sub-menu {
        margin-top: 20px; }
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-dropdown .ul-column:not(.column_dropdown) .submenu-item > a,
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-dropdown .column_title {
        color: #184d47;
        line-height: 1;
        text-transform: uppercase;
        font-size: 13px;
        font-weight: 600;
        display: block;
        margin: 0; }
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-dropdown .ul-column.column_dropdown .submenu-item > a,
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-dropdown .submenu-item .category-sub-menu a {
        color: #1c1e22;
        text-transform: capitalize;
        display: block;
        line-height: 2.25; }
        #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-dropdown .ul-column.column_dropdown .submenu-item > a:hover,
        #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-dropdown .submenu-item .category-sub-menu a:hover {
          -moz-transform: translateX(10px);
          -webkit-transform: translateX(10px);
          -o-transform: translateX(10px);
          -ms-transform: translateX(10px);
          transform: translateX(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; }
      #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-dropdown.cat-drop-menu {
        min-width: 250px;
        left: 100%;
        right: auto;
        padding: 0;
        box-shadow: 0px 5px 13.5px 1.5px rgba(0, 0, 0, 0.07);
        background: #ffffff; }
        #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-dropdown.cat-drop-menu li {
          position: relative;
          padding: 14px 20px;
          border-bottom: 1px solid #e5e5e5;
          position: relative;
          display: block; }
          #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-dropdown.cat-drop-menu li:last-child {
            border-bottom: none; }
          #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-dropdown.cat-drop-menu li .icon-drop-mobile {
            display: block;
            position: absolute;
            right: 15px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
            #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-dropdown.cat-drop-menu li .icon-drop-mobile:before {
              font-family: "roadthemes-icon";
              content: "\e92d";
              font-size: 10px; }
            #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-dropdown.cat-drop-menu li .icon-drop-mobile i {
              display: none; }
          #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-dropdown.cat-drop-menu li a {
            display: block;
            color: #1c1e22;
            font-weight: 400;
            text-transform: capitalize;
            background: #ffffff; }
          #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-dropdown.cat-drop-menu li > .menu-dropdown {
            left: 100% !important;
            top: -1px; }
          #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-dropdown.cat-drop-menu li:hover > .menu-dropdown {
            opacity: 1;
            visibility: visible;
            -webkit-transition: all 300ms linear;
            -moz-transition: all 300ms linear;
            -ms-transition: all 300ms linear;
            -o-transition: all 300ms linear;
            transition: all 300ms linear; }
          #_desktop_vegamenu .pos-menu-vertical .menu-content .menu-dropdown.cat-drop-menu li:hover > a {
            -moz-transform: translateX(10px);
            -webkit-transform: translateX(10px);
            -o-transform: translateX(10px);
            -ms-transform: translateX(10px);
            transform: translateX(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; }

.pos-menu-horizontal .img_desktop, .pos-menu-vertical .img_desktop {
  overflow: hidden;
  display: block;
  position: relative; }
.pos-menu-horizontal img, .pos-menu-vertical img {
  width: 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; }
  .pos-menu-horizontal img:hover, .pos-menu-vertical img:hover {
    -moz-transform: scale(1.05) rotate(0.05deg);
    -ms-transform: scale(1.05) rotate(0.05deg);
    -o-transform: scale(1.05) rotate(0.05deg);
    -webkit-transform: scale(1.05) rotate(0.05deg);
    transform: scale(1.05) rotate(0.05deg);
    -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) {
  .pos-menu-horizontal .hidden-mobile, .pos-menu-vertical .hidden-mobile {
    display: none; } }

#_desktop_megamenu.megamenu_center .pos-menu-horizontal {
  margin: auto; }
  #_desktop_megamenu.megamenu_center .pos-menu-horizontal .menu-content {
    justify-content: center; }
#_desktop_megamenu .pos-menu-horizontal .icon-drop-mobile {
  display: none; }
#_desktop_megamenu .pos-menu-horizontal .menu-content {
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  margin: 0; }
  #_desktop_megamenu .pos-menu-horizontal .menu-content:after {
    content: "";
    display: table;
    clear: both; }
  #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item {
    display: inline-block;
    margin-left: 30px;
    padding: 15px 0;
    /* Rotate menu */ }
    #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item:first-child {
      margin-left: 0; }
    @media (max-width: 1199px) {
      #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item {
        margin-left: 18px; } }
    #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > a {
      display: block;
      padding: 0;
      font-weight: 700;
      font-size: 14px;
      color: #1c1e22;
      background: transparent;
      text-transform: capitalize;
      position: relative; }
      #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > a .menu-subtitle {
        display: inline-block;
        padding: 0 10px;
        font-size: 11px;
        background: #1c1e22;
        color: #ffffff;
        font-weight: 400;
        line-height: 16px;
        position: absolute;
        margin-top: -17px;
        right: 0;
        border-radius: 3px;
        z-index: 11; }
        #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > a .menu-subtitle:after {
          top: 100%;
          left: 50%;
          content: " ";
          height: 0;
          width: 0;
          position: absolute;
          pointer-events: none;
          border: solid transparent;
          border-top-color: #1c1e22;
          border-width: 4px;
          margin-left: -4px; }
      #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > a .img-icon {
        margin-right: 5px;
        display: inline-block;
        vertical-align: middle;
        width: auto; }
      #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > a i {
        display: inline-block;
        vertical-align: middle;
        font-size: 16px; }
        #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > a i.hidden-md-down {
          font-size: 9px;
          font-weight: 600; }
    #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item.active > a:after, #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item.home > a:after, #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item:hover > a:after {
      width: 100%;
      -webkit-transition: all 200ms linear;
      -moz-transition: all 200ms linear;
      -ms-transition: all 200ms linear;
      -o-transition: all 200ms linear;
      transition: all 200ms linear;
      opacity: 1;
      visibility: visible; }
    #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown {
      position: absolute;
      left: 0;
      z-index: 9;
      visibility: hidden;
      opacity: 0;
      text-align: left;
      padding-top: 15px; }
      #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .pos-sub-inner {
        box-shadow: 0px 5px 13.5px 1.5px rgba(0, 0, 0, 0.07);
        background: #ffffff;
        padding: 40px 30px 20px 30px;
        margin-top: 5px; }
        #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .pos-sub-inner .sub-col {
          max-width: 1320px;
          margin: auto;
          float: none; }
          @media (min-width: 1410px) {
            #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .pos-sub-inner .sub-col.col-sm-12 {
              width: 1320px; }
            #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .pos-sub-inner .sub-col.col-sm-11 {
              width: 1210px; }
            #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .pos-sub-inner .sub-col.col-sm-10 {
              width: 1100; }
            #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .pos-sub-inner .sub-col.col-sm-9 {
              width: 990px; }
            #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .pos-sub-inner .sub-col.col-sm-8 {
              width: 880px; }
            #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .pos-sub-inner .sub-col.col-sm-7 {
              width: 770px; }
            #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .pos-sub-inner .sub-col.col-sm-6 {
              width: 660px; }
            #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .pos-sub-inner .sub-col.col-sm-5 {
              width: 550px; }
            #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .pos-sub-inner .sub-col.col-sm-4 {
              width: 440px; }
            #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .pos-sub-inner .sub-col.col-sm-3 {
              width: 330px; }
            #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .pos-sub-inner .sub-col.col-sm-2 {
              width: 220px; }
            #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .pos-sub-inner .sub-col.col-sm-1 {
              width: 110px; } }
      #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .pos-menu-row {
        margin-bottom: 30px; }
        #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .pos-menu-row .pos-menu-col {
          margin-bottom: 20px; }
        #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .pos-menu-row:last-child {
          margin-bottom: 0; }
      #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .ul-column .submenu-item {
        margin-bottom: 50px; }
        #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .ul-column .submenu-item:last-child {
          margin-bottom: 0; }
      #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .ul-column.column_dropdown {
        margin-top: 20px; }
        #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .ul-column.column_dropdown .submenu-item {
          margin-bottom: 0; }
          #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .ul-column.column_dropdown .submenu-item > a {
            line-height: 2.25;
            display: block; }
          #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .ul-column.column_dropdown .submenu-item .category-sub-menu {
            margin-top: 0;
            padding-left: 10px; }
      #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .category-sub-menu {
        margin-top: 20px; }
      #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .ul-column:not(.column_dropdown) .submenu-item > a,
      #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .column_title {
        color: #184d47;
        line-height: 1;
        text-transform: uppercase;
        font-size: 13px;
        font-weight: 600;
        display: block;
        margin: 0; }
      #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .ul-column.column_dropdown .submenu-item > a,
      #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .submenu-item .category-sub-menu a {
        color: #1c1e22;
        text-transform: capitalize;
        display: block;
        line-height: 2.25; }
        #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .ul-column.column_dropdown .submenu-item > a:hover,
        #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .submenu-item .category-sub-menu a:hover {
          -moz-transform: translateX(10px);
          -webkit-transform: translateX(10px);
          -o-transform: translateX(10px);
          -ms-transform: translateX(10px);
          transform: translateX(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; }
      #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown.cat-drop-menu {
        min-width: 250px;
        left: auto !important;
        right: auto;
        padding: 0; }
        #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown.cat-drop-menu .pos-sub-inner {
          padding: 0; }
          #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown.cat-drop-menu .pos-sub-inner .pos-sub-inner {
            margin: 0; }
        #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown.cat-drop-menu li {
          position: relative;
          position: relative;
          display: block; }
          #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown.cat-drop-menu li .icon-drop-mobile {
            display: block;
            position: absolute;
            right: 15px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
            #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown.cat-drop-menu li .icon-drop-mobile:before {
              font-family: "roadthemes-icon";
              content: "\e92d";
              font-size: 9px; }
            #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown.cat-drop-menu li .icon-drop-mobile i {
              display: none; }
          #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown.cat-drop-menu li a {
            display: block;
            color: #1c1e22;
            font-weight: 400;
            text-transform: capitalize;
            background: #ffffff;
            padding: 12px 15px;
            border-bottom: 1px solid #e5e5e5; }
          #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown.cat-drop-menu li:last-child > a {
            border-bottom: none; }
          #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown.cat-drop-menu li > .menu-dropdown {
            left: 100% !important;
            top: 0; }
          #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown.cat-drop-menu li:hover > .menu-dropdown {
            opacity: 1;
            visibility: visible;
            -webkit-transition: all 300ms linear;
            -moz-transition: all 300ms linear;
            -ms-transition: all 300ms linear;
            -o-transition: all 300ms linear;
            transition: all 300ms linear; }
          #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown.cat-drop-menu li:hover .icon-drop-mobile:before {
            color: #ffffff; }
          #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown.cat-drop-menu li:hover > a {
            color: #ffffff;
            -webkit-transition: all 300ms linear;
            -moz-transition: all 300ms linear;
            -ms-transition: all 300ms linear;
            -o-transition: all 300ms linear;
            transition: all 300ms linear; }
    #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item:hover > .menu-dropdown,
    #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > .cat-drop-menu > li:hover > .cat-drop-menu {
      opacity: 1;
      visibility: visible;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear; }
    #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > .menu-dropdown.cat-drop-menu {
      padding-top: 15px; }
    #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > .menu_slidedown,
    #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > .menu_slidedown.cat-drop-menu li > .menu-dropdown {
      opacity: 0;
      visibility: hidden;
      -o-transform-origin: 0% 0%;
      -ms-transform-origin: 0% 0%;
      -moz-transform-origin: 0% 0%;
      -webkit-transform-origin: 0% 0%;
      transform-style: preserve-3d;
      -o-transform-style: preserve-3d;
      -moz-transform-style: preserve-3d;
      -webkit-transform-style: preserve-3d;
      transform: rotateX(-75deg);
      -o-transform: rotateX(-75deg);
      -moz-transform: rotateX(-75deg);
      -webkit-transform: rotateX(-75deg); }
    #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item:hover > .menu_slidedown,
    #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > .menu_slidedown.cat-drop-menu li:hover > .menu-dropdown {
      opacity: 1;
      visibility: visible;
      transform: rotateX(0deg);
      -o-transform: rotateX(0deg);
      -moz-transform: rotateX(0deg);
      -webkit-transform: rotateX(0deg);
      -o-transition: -o-transform 0.3s, opacity 0.3s;
      -ms-transition: -ms-transform 0.3s, opacity 0.3s;
      -moz-transition: -moz-transform 0.3s, opacity 0.3s;
      -webkit-transition: -webkit-transform 0.3s, opacity 0.3s; }
    #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > .menu_slideup,
    #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > .menu_slideup.cat-drop-menu li > .menu-dropdown {
      opacity: 0;
      visibility: hidden;
      -webkit-transform-origin: center center;
      -moz-transform-origin: center center;
      -ms-transform-origin: center center;
      -o-transform-origin: center center;
      transform-origin: center center;
      -webkit-transform: translateY(20px);
      -moz-transform: translateY(20px);
      -ms-transform: translateY(20px);
      -o-transform: translateY(20px);
      transform: translateY(20px); }
    #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item:hover > .menu_slideup,
    #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > .menu_slideup.cat-drop-menu li:hover > .menu-dropdown {
      opacity: 1;
      visibility: visible;
      -webkit-transform: rotateX(0deg);
      -moz-transform: rotateX(0deg);
      -ms-transform: rotateX(0deg);
      -o-transform: rotateX(0deg);
      transform: rotateX(0deg);
      -o-transition: -o-transform 0.3s, opacity 0.3s;
      -ms-transition: -ms-transform 0.3s, opacity 0.3s;
      -moz-transition: -moz-transform 0.3s, opacity 0.3s;
      -webkit-transition: -webkit-transform 0.3s, opacity 0.3s; }
    #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > .menu_rotate,
    #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > .menu_rotate.cat-drop-menu li > .menu-dropdown {
      opacity: 0;
      visibility: hidden;
      transform: perspective(400px) rotate3d(1, 0, 0, -90deg);
      transform-origin: 50% 0px 0px; }
    #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item:hover > .menu_rotate,
    #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > .menu_rotate.cat-drop-menu li:hover > .menu-dropdown {
      opacity: 1;
      visibility: visible;
      max-height: 1000px;
      transform: perspective(400px) rotate3d(0, 0, 0, 0deg);
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear; }

/* mobile */
#_mobile_megamenu, #_mobile_vegamenu {
  text-align: left; }
  #_mobile_megamenu .menu-content, #_mobile_vegamenu .menu-content {
    margin: 0; }
    #_mobile_megamenu .menu-content .pos-sub-menu,
    #_mobile_megamenu .menu-content .pos-sub-menu .pos-menu-col, #_mobile_vegamenu .menu-content .pos-sub-menu,
    #_mobile_vegamenu .menu-content .pos-sub-menu .pos-menu-col {
      float: none;
      display: inline-block;
      width: 100% !important;
      padding: 0; }
    #_mobile_megamenu .menu-content .pos-menu-row, #_mobile_vegamenu .menu-content .pos-menu-row {
      margin: 0; }
    #_mobile_megamenu .menu-content .menu-dropdown,
    #_mobile_megamenu .menu-content .category-sub-menu,
    #_mobile_megamenu .menu-content .ul-column.column_dropdown, #_mobile_vegamenu .menu-content .menu-dropdown,
    #_mobile_vegamenu .menu-content .category-sub-menu,
    #_mobile_vegamenu .menu-content .ul-column.column_dropdown {
      display: none; }
    #_mobile_megamenu .menu-content .menu-dropdown .submenu-item .category-sub-menu a, #_mobile_vegamenu .menu-content .menu-dropdown .submenu-item .category-sub-menu a {
      font-weight: 400; }
    #_mobile_megamenu .menu-content .pos-sub-inner:after, #_mobile_vegamenu .menu-content .pos-sub-inner:after {
      content: "";
      display: table;
      clear: both; }
  #_mobile_megamenu .pos-menu-horizontal .open_menu i.add, #_mobile_megamenu .pos-menu-vertical .open_menu i.add, #_mobile_vegamenu .pos-menu-horizontal .open_menu i.add, #_mobile_vegamenu .pos-menu-vertical .open_menu i.add {
    display: none; }
  #_mobile_megamenu .pos-menu-horizontal .menu-item, #_mobile_megamenu .pos-menu-vertical .menu-item, #_mobile_vegamenu .pos-menu-horizontal .menu-item, #_mobile_vegamenu .pos-menu-vertical .menu-item {
    position: relative;
    display: block;
    line-height: 1; }
    #_mobile_megamenu .pos-menu-horizontal .menu-item .column_title, #_mobile_megamenu .pos-menu-vertical .menu-item .column_title, #_mobile_vegamenu .pos-menu-horizontal .menu-item .column_title, #_mobile_vegamenu .pos-menu-vertical .menu-item .column_title {
      display: block;
      color: #1c1e22;
      font-size: 14px;
      padding: 5px 20px;
      padding-right: 50px;
      line-height: 30px;
      border-top: 1px solid #e5e5e5;
      font-weight: 500;
      padding-left: 30px;
      margin-bottom: 0; }
    #_mobile_megamenu .pos-menu-horizontal .menu-item .icon-drop-mobile i, #_mobile_megamenu .pos-menu-vertical .menu-item .icon-drop-mobile i, #_mobile_vegamenu .pos-menu-horizontal .menu-item .icon-drop-mobile i, #_mobile_vegamenu .pos-menu-vertical .menu-item .icon-drop-mobile i {
      text-align: center;
      position: absolute;
      right: 0;
      top: 0;
      font-size: 18px;
      color: #1c1e22;
      width: 55px;
      height: 40px;
      line-height: 40px;
      cursor: pointer; }
    #_mobile_megamenu .pos-menu-horizontal .menu-item img, #_mobile_megamenu .pos-menu-vertical .menu-item img, #_mobile_vegamenu .pos-menu-horizontal .menu-item img, #_mobile_vegamenu .pos-menu-vertical .menu-item img {
      width: 100%; }
      #_mobile_megamenu .pos-menu-horizontal .menu-item img.img-icon, #_mobile_megamenu .pos-menu-vertical .menu-item img.img-icon, #_mobile_vegamenu .pos-menu-horizontal .menu-item img.img-icon, #_mobile_vegamenu .pos-menu-vertical .menu-item img.img-icon {
        margin-right: 5px;
        display: inline-block;
        vertical-align: middle;
        width: auto; }
    #_mobile_megamenu .pos-menu-horizontal .menu-item .custom_menu a.img_banner, #_mobile_megamenu .pos-menu-vertical .menu-item .custom_menu a.img_banner, #_mobile_vegamenu .pos-menu-horizontal .menu-item .custom_menu a.img_banner, #_mobile_vegamenu .pos-menu-vertical .menu-item .custom_menu a.img_banner {
      padding: 0; }
    #_mobile_megamenu .pos-menu-horizontal .menu-item .html-block, #_mobile_megamenu .pos-menu-vertical .menu-item .html-block, #_mobile_vegamenu .pos-menu-horizontal .menu-item .html-block, #_mobile_vegamenu .pos-menu-vertical .menu-item .html-block {
      padding: 5px 30px; }
    #_mobile_megamenu .pos-menu-horizontal .menu-item li, #_mobile_megamenu .pos-menu-vertical .menu-item li, #_mobile_vegamenu .pos-menu-horizontal .menu-item li, #_mobile_vegamenu .pos-menu-vertical .menu-item li {
      position: relative; }
      #_mobile_megamenu .pos-menu-horizontal .menu-item li a, #_mobile_megamenu .pos-menu-vertical .menu-item li a, #_mobile_vegamenu .pos-menu-horizontal .menu-item li a, #_mobile_vegamenu .pos-menu-vertical .menu-item li a {
        font-weight: 400;
        padding-left: 30px; }
      #_mobile_megamenu .pos-menu-horizontal .menu-item li li a, #_mobile_megamenu .pos-menu-vertical .menu-item li li a, #_mobile_vegamenu .pos-menu-horizontal .menu-item li li a, #_mobile_vegamenu .pos-menu-vertical .menu-item li li a {
        font-weight: 400;
        padding-left: 40px; }
      #_mobile_megamenu .pos-menu-horizontal .menu-item li li li a, #_mobile_megamenu .pos-menu-vertical .menu-item li li li a, #_mobile_vegamenu .pos-menu-horizontal .menu-item li li li a, #_mobile_vegamenu .pos-menu-vertical .menu-item li li li a {
        padding-left: 50px; }
    #_mobile_megamenu .pos-menu-horizontal .menu-item > a .menu-subtitle, #_mobile_megamenu .pos-menu-vertical .menu-item > a .menu-subtitle, #_mobile_vegamenu .pos-menu-horizontal .menu-item > a .menu-subtitle, #_mobile_vegamenu .pos-menu-vertical .menu-item > a .menu-subtitle {
      display: inline-block;
      padding: 0 10px;
      font-size: 12px;
      background: #fe3737;
      color: #ffffff;
      font-weight: 400;
      line-height: 18px;
      border-radius: 3px;
      position: relative;
      margin-left: 10px;
      vertical-align: 2px; }
      #_mobile_megamenu .pos-menu-horizontal .menu-item > a .menu-subtitle:after, #_mobile_megamenu .pos-menu-vertical .menu-item > a .menu-subtitle:after, #_mobile_vegamenu .pos-menu-horizontal .menu-item > a .menu-subtitle:after, #_mobile_vegamenu .pos-menu-vertical .menu-item > a .menu-subtitle:after {
        top: 50%;
        left: -8px;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border: solid transparent;
        border-right-color: #fe3737;
        border-width: 4px;
        margin-top: -4px; }
    #_mobile_megamenu .pos-menu-horizontal .menu-item a, #_mobile_megamenu .pos-menu-vertical .menu-item a, #_mobile_vegamenu .pos-menu-horizontal .menu-item a, #_mobile_vegamenu .pos-menu-vertical .menu-item a {
      display: block;
      color: #1c1e22;
      font-size: 14px;
      font-weight: 500;
      padding: 5px 20px;
      padding-right: 50px;
      line-height: 30px;
    }
    #_mobile_megamenu .pos-menu-horizontal .menu-item a.img_banner, #_mobile_megamenu .pos-menu-vertical .menu-item a.img_banner, #_mobile_vegamenu .pos-menu-horizontal .menu-item a.img_banner, #_mobile_vegamenu .pos-menu-vertical .menu-item a.img_banner {
      padding: 20px; }

  .custom_menu {
  position: relative; }
  .custom_menu .menu_block {
    margin-bottom: 20px; }
    .custom_menu .menu_block .custom_txt {
      font-size: 18px;
      font-weight: 500;
      color: #1c1e22;
      margin-bottom: 20px; }
    .custom_menu .menu_block .custom_menu .menu_block .custom_txt1 {
      font-size: 18px;
      font-weight: 500;
      color: #1c1e22;
      margin-bottom: 20px; }
    .custom_menu .menu_block p {
      font-size: 13px;
      line-height: 18px; }
    .custom_menu .menu_block .custom_menu .menu_block a.go {
      font-weight: 500 !important;
      line-height: 18px;
      padding: 0 !important;
      border: 0 !important; }

.pos-recent-orders {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 320px;
  padding: 20px;
  background: #ffffff;
  font-size: 14px;
  z-index: 8;
  box-shadow: 0px 0px 13.5px 1.5px rgba(0, 0, 0, 0.12);
  max-width: 85%; }
  .pos-recent-orders .pos-recent-orders-inner > p {
    font-size: 18px;
    color: #999999;
    width: 100%; }
  .pos-recent-orders .pos-recent-orders-inner .img-order {
    width: 90px;
    margin-right: 20px; }
  .pos-recent-orders .pos-recent-orders-inner .content-order {
    flex: 1; }
    .pos-recent-orders .pos-recent-orders-inner .content-order a {
      display: block;
      text-transform: uppercase;
      font-size: 14px;
      margin-bottom: 10px; }
    .pos-recent-orders .pos-recent-orders-inner .content-order p {
      margin: 0; }
  .pos-recent-orders .close-button {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 18px; }

button.close {
  position: relative;
  z-index: 9;
  opacity: 1;
  width: 30px;
  height: 30px;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center; }

#product_comments_block_tab .reviews-title {
  font-size: 24px;
  margin-bottom: 30px; }
#product_comments_block_tab .reviews-header {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e5e5; }

#product_comments_block_tab div.comment .comment_author span {
  font-weight: 400;
  font-size: 14px; }

#product_comments_block_tab div.comment .comment_author span.author-reviews {
  font-weight: 500;
  font-size: 20px; }

#product_comments_block_tab .comment_author_infos {
  padding-top: 15px;
  font-size: 18px; }

#product_comments_block_tab div.comment .comment_author .star_content {
  margin: 0; }

#product_comments_block_tab div.comment .comment_details h4 {
  font-size: 16px; }

.hook-reviews .star_content, #product_comments_block_extra .star_content, .reviews-header .star_content {
  display: inline-block;
  position: relative;
  line-height: 1; }
  .hook-reviews .star_content::before, #product_comments_block_extra .star_content::before, .reviews-header .star_content::before {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    -webkit-font-smoothing: antialiased;
    color: #acacac;
    font-family: "roadthemes-icon";
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1;
    content: "\e915" "\e915" "\e915" "\e915" "\e915";
    display: block;
    font-style: normal;
    font-weight: 400;
    speak: none; }
  .hook-reviews .star_content .rating_star, #product_comments_block_extra .star_content .rating_star, .reviews-header .star_content .rating_star {
    display: inline-block;
    overflow: hidden; }
    .hook-reviews .star_content .rating_star:before, #product_comments_block_extra .star_content .rating_star:before, .reviews-header .star_content .rating_star:before {
      position: relative;
      z-index: 2;
      -webkit-font-smoothing: antialiased;
      color: #F9BF00;
      font-family: "roadthemes-icon";
      font-size: 14px;
      letter-spacing: 0;
      line-height: 14px;
      content: "\e915" "\e915" "\e915" "\e915" "\e915";
      display: block;
      font-style: normal;
      font-weight: 400;
      speak: none; }

.reviews-header .rating_aggregate {
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center; }
  .reviews-header .rating_aggregate > *:not(:last-child) {
    margin-right: 30px; }
  .reviews-header .rating_aggregate .nb-comments {
    font-size: 16px; }
  .reviews-header .rating_aggregate .star_content:before, .reviews-header .rating_aggregate .star_content .rating_star:before {
    font-size: 20px;
    line-height: 20px; }

@media (min-width: 768px) {
  #new_comment_form {
    width: 500px; } }
#new_comment_form .new_comment_form_content {
  padding-bottom: 0; }
#new_comment_form h2 {
  text-align: center;
  font-size: 24px;
  background: #f1f1f1;
  padding: 10px 15px;
  border-bottom: 1px solid #cccccc;
  border-radius: 3px; }
#new_comment_form #criterions_list {
  border: none;
  padding: 0; }
  #new_comment_form #criterions_list label {
    margin: 2px 15px 0 0; }
  #new_comment_form #criterions_list .star {
    font-size: 20px; }
#new_comment_form .product {
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center; }
  #new_comment_form .product img {
    max-width: 100px;
    margin: 0; }
  #new_comment_form .product .product_desc {
    padding: 20px; }
#new_comment_form .required {
  font-size: 12px; }
#new_comment_form .button_comment {
  text-align: center;
  margin: 20px 0 0 0; }

/* module new-products */
/* end module new-products */
/* module special */
/* end module special */
.pos-special-products .pos_content {
  margin: 0 -15px; }
.pos-special-products .owl-nav > div.owl-prev {
  right: 59px; }
.pos-special-products .owl-nav > div.owl-next {
  right: 15px; }
.pos-special-products .owl-carousel .owl-item {
  padding: 0 15px; }
.pos-special-products .js-product-miniature {
  padding: 0px; }
  @media (min-width: 576px) {
    .pos-special-products .js-product-miniature {
      flex-wrap: wrap;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; }
      .pos-special-products .js-product-miniature .img_block {
        width: 100%;
        /* max-width: 45%; */ }
      .pos-special-products .js-product-miniature:after {
        /*border: 2px solid #da2e1f !important;*/
        border-radius: 5px; } }
  .pos-special-products .js-product-miniature.style_product3 .add-to-links {
    bottom: 10px; }
  .pos-special-products .js-product-miniature .product-price-and-shipping-top .discount-product {
    top: 0;
    left: 0;
    width: 50px;
    height: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px 0;
    font-size: 12px;
    font-weight: 600;
    font-family: Dosis, sans-serif; }
  .pos-special-products .js-product-miniature .product_desc {
    flex: 1;
    overflow: hidden;
    padding: 20px;
    text-align: center;
    min-height: auto !important; }
    .pos-special-products .js-product-miniature .product_desc .product-price-and-shipping .regular-price {
      font-size: 15px; }
    .pos-special-products .js-product-miniature .product_desc .product-price-and-shipping .price {
      font-size: 16px; }

/* countdown */
.countdown {
  margin: 10px 0px 20px;
  padding: 10px;
  background-color: #FFEDED;
  border-radius: 50px;
  display: inline-flex;
  width: 100%;
  align-items: center;
}

.title_countdown {
  font-size: 14px;
  color: #535456;
  line-height: 16px;
  margin-right: 5px;
  font-weight: bold; }

.is-countdown {
  position: relative;
  font-size: 0;
  line-height: 1; }
  .is-countdown .countdown-section {
    display: inline-flex;
    position: relative;
    align-items: center;
    flex-direction: column;
    justify-content: center; }
    .is-countdown .countdown-section:not(:last-child) {
      margin-right: 10px; }
      .is-countdown .countdown-section:not(:last-child) .countdown-amount:after {
        content: ':';
        font-weight: 600;
        font-size: 15px;
        position: absolute;
        top: 40%;
        right: -5px;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); }
    .is-countdown .countdown-section .countdown-amount {
      display: block;
      font-size: 15px;
      line-height: 1;
      color: #1c1e22;
      font-weight: 600;
      position: relative;
      /*min-width: 40px;
      padding: 9px 5px;
      border-radius: 5px;
      background: #e5e5e5;
      margin-bottom: 10px;
      font-family: Dosis, sans-serif;*/ }
    .is-countdown .countdown-section .countdown-period {
      display: none;
      font-size: 12px;
      line-height: 1;
      color: #1c1e22;
      text-transform: uppercase; }

/* end special */
.pos-manufacturer-container {
  position: relative; }
  .pos-manufacturer-container .owl-carousel .owl-stage {
    display: flex; }
  .pos-manufacturer-container .manufacturer-item {
    position: relative;
    overflow: hidden;
    text-align: center; }
    .pos-manufacturer-container .manufacturer-item:hover img {
      opacity: 0.6;
      -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 logo */
/* blog */
.home_blog_post_area {
  position: relative; }
  .home_blog_post_area .pos_content {
    margin: 0 -15px; }
  .home_blog_post_area .owl-nav > div.owl-prev {
    right: 59px; }
  .home_blog_post_area .owl-nav > div.owl-next {
    right: 15px; }
  .home_blog_post_area .owl-carousel .owl-item {
    padding: 0 15px; }
  .home_blog_post_area .blog_slider .item .blog_post {
    width: 100%;
    background: #ffffff;
    position: relative; }
    .home_blog_post_area .blog_slider .item .blog_post img {
      width: 100%; }
    .home_blog_post_area .blog_slider .item .blog_post .post_thumbnail {
      position: relative;
      overflow: hidden;
      border-radius: 5px; }
    .home_blog_post_area .blog_slider .item .blog_post .post_content {
      padding: 20px 0 0 0; }
    .home_blog_post_area .blog_slider .item .blog_post .post_title {
      margin: 0; }
      .home_blog_post_area .blog_slider .item .blog_post .post_title a {
        line-height: 1.5;
        color: #1c1e22;
        text-transform: capitalize;
        position: relative;
        display: block;
        font-size: 20px;
        font-weight: 600; }
    .home_blog_post_area .blog_slider .item .blog_post .meta_category a {
      font-size: 14px;
      text-transform: uppercase;
      color: #707070;
      margin-bottom: 10px;
      display: none; }
    .home_blog_post_area .blog_slider .item .blog_post .post_meta {
      overflow: hidden;
      position: relative;
      flex-wrap: wrap;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      align-items: center;
      margin-bottom: 10px; }
      .home_blog_post_area .blog_slider .item .blog_post .post_meta > p {
        font-size: 14px;
        color: #184d47;
        margin-right: 5px;
        margin-bottom: 0; }
        .home_blog_post_area .blog_slider .item .blog_post .post_meta > p a:hover {
          text-decoration: underline; }
    .home_blog_post_area .blog_slider .item .blog_post .post_description {
      font-weight: 400;
      color: #555555;
      line-height: 22px;
      display: none;
      width: 100%; }
    .home_blog_post_area .blog_slider .item .blog_post .read_more {
      display: none;
      margin-top: 30px; }
      @media (min-width: 768px) and (max-width: 991px) {
        .home_blog_post_area .blog_slider .item .blog_post .read_more {
          margin-top: 20px; } }
      .home_blog_post_area .blog_slider .item .blog_post .read_more a {
        text-transform: capitalize;
        position: relative;
        display: inline-block;
        line-height: 1.4; }

.home_blog_post_area .blog_post .post_thumbnail {
  position: relative;
  overflow: hidden; }
  .home_blog_post_area .blog_post .post_thumbnail:hover img {
    -moz-transform: scale(1.05) rotate(0.05deg);
    -ms-transform: scale(1.05) rotate(0.05deg);
    -o-transform: scale(1.1) rotate(0.05deg);
    -webkit-transform: scale(1.05) rotate(0.05deg);
    transform: scale(1.05) rotate(0.05deg);
    -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 .blog_post .post_thumbnail 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; }

.kr_blog_post_area .blog_post .post_thumbnail img {
  margin: 0;
  width: 100%; }

.kr_blog_post_area .blog_post .post_content .post_meta > p {
  text-transform: capitalize;
  padding-right: 10px;
  margin-right: 10px; }

.kr_blog_post_area.grid .blog_post .post_content .post_description > * {
  margin: 0; }

.kr_blog_post_area.single .post_title {
  font-size: 48px;
  font-weight: 400; }
  @media (max-width: 1199px) {
    .kr_blog_post_area.single .post_title {
      font-size: 24px; } }
.kr_blog_post_area.single .post_meta {
  margin-bottom: 40px; }
@media (min-width: 768px) {
  .kr_blog_post_area.single .content-blog .blog-inner {
    padding: 0 8%; } }
.kr_blog_post_area.single .blog_post .post_content .post_description p {
  margin-bottom: 55px; }
  @media (max-width: 767px) {
    .kr_blog_post_area.single .blog_post .post_content .post_description p {
      margin-bottom: 30px; } }

/* end blog */
/* module newletters */
.ft_newsletter {
  margin: 0; }
  .ft_newsletter .pos_title {
    display: block;
    text-align: left; }
    .ft_newsletter .pos_title h2 {
      color: #ffffff; }
  .ft_newsletter p {
    color: #ffffff;
    padding: 0;
    margin: 10px 0 0 0; }
  .ft_newsletter .desc_condition {
    padding-top: 30px; }
  .ft_newsletter form {
    position: relative; }
    .ft_newsletter form .input-wrapper input {
      height: 60px;
      background: #ffffff;
      border: 0;
      color: #888686;
      padding: 10px 180px 10px 20px;
      display: inline-block;
      width: 100%;
      border: none;
      border-radius: 30px; }
      .ft_newsletter form .input-wrapper input:-moz-placeholder {
        color: #8a8a8a; }
      .ft_newsletter form .input-wrapper input::-moz-placeholder {
        color: #8a8a8a; }
      .ft_newsletter form .input-wrapper input:-ms-input-placeholder {
        color: #8a8a8a; }
      .ft_newsletter form .input-wrapper input::-webkit-input-placeholder {
        color: #8a8a8a; }
    .ft_newsletter form .input-wrapper input[type=email]:focus {
      border: none;
      padding: 10px 180px 10px 20px; }
    .ft_newsletter form .btn {
      position: absolute;
      top: 5px;
      right: 5px;
      text-transform: capitalize;
      font-weight: 700;
      color: #ffffff;
      border: 0;
      box-shadow: none;
      padding: 0 30px;
      line-height: 50px;
      height: 50px;
      border-radius: 30px;
      -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:after {
        content: "\e992";
        font-family: "roadthemes-icon";
        display: inline-block;
        margin-left: 5px;
        font-size: 17px;
        font-weight: 400;
        vertical-align: middle; }
      .ft_newsletter form .btn:hover {
        background: #184d47;
        -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:after {
          -webkit-animation: passing 1.2s linear infinite;
          -moz-animation: passing 1.2s linear infinite;
          -ms-animation: passing 1.2s linear infinite;
          animation: passing 1.2s linear infinite; }
    .ft_newsletter form .condition, .ft_newsletter form .alert {
      margin: 10px 0 0;
      font-size: 13px;
      line-height: 24px;
      color: #ffffff;
      background: none;
      border: 0;
      padding: 0; }
      .ft_newsletter form .condition.alert-danger, .ft_newsletter form .alert.alert-danger {
        color: #ffffff; }
      .ft_newsletter form .condition.alert-success, .ft_newsletter form .alert.alert-success {
        color: #ffffff; }
    .ft_newsletter form .block_newsletter_alert {
      position: absolute;
      bottom: -60px;
      margin: 0; }

#gdpr_consent {
  margin-top: 30px; }

#posnewsletterpopup-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5103;
  opacity: 0;
  visibility: hidden; }
  #posnewsletterpopup-overlay.showed-popup {
    opacity: 1;
    visibility: visible; }

#posnewsletterpopup {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 5104;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center; }
  #posnewsletterpopup.showed-pnp {
    opacity: 1;
    visibility: visible; }
  #posnewsletterpopup .title-popup {
    margin-bottom: 30px; }
    #posnewsletterpopup .title-popup h2 {
      font-size: 24px;
      font-weight: 700; }
    #posnewsletterpopup .title-popup p {
      color: #757171;
      line-height: 18px;
      position: relative;
      margin: 10px 0 0 0; }
  #posnewsletterpopup .pnp-close {
    height: 36px;
    width: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: -40px;
    right: -40px;
    font-size: 24px;
    position: absolute;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer; }
  #posnewsletterpopup .pnp-content {
    max-width: 480px;
    text-align: center;
    padding: 40px; }
  #posnewsletterpopup .pnp-newsletter-form form {
    flex-direction: column; }
  #posnewsletterpopup .pnp-newsletter-form .newsletter-input {
    width: 100%;
    height: 54px;
    display: block;
    border: none;
    background: #f6f6f6;
    border-radius: 3px;
    margin-bottom: 20px;
    font-size: 13px; }
  #posnewsletterpopup .pnp-newsletter-form .pos-btn-newsletter {
    padding: 15.5px 30px;
    border: none;
    font-size: 14px;
    text-transform: capitalize;
    background: #184d47;
    color: #ffffff;
    height: 54px;
    display: inline-flex;
    align-items: center;
    border-radius: 3px;
    width: 100%;
    justify-content: center;
    font-weight: 700; }
    #posnewsletterpopup .pnp-newsletter-form .pos-btn-newsletter:after {
      content: "\e992";
      font-family: "roadthemes-icon";
      display: inline-block;
      margin-left: 5px;
      font-size: 17px;
      font-weight: 400;
      vertical-align: middle; }
    #posnewsletterpopup .pnp-newsletter-form .pos-btn-newsletter:hover {
      color: #ffffff !important; }
      #posnewsletterpopup .pnp-newsletter-form .pos-btn-newsletter:hover:after {
        -webkit-animation: passing 1.2s linear infinite;
        -moz-animation: passing 1.2s linear infinite;
        -ms-animation: passing 1.2s linear infinite;
        animation: passing 1.2s linear infinite; }
  #posnewsletterpopup .pnp-close-checkbox,
  #posnewsletterpopup .pos-close-popup {
    display: inline-block; }
  #posnewsletterpopup .pnp-close-checkbox {
    vertical-align: middle;
    font-size: 10px;
    margin-top: 30px;
    line-height: 1; }
  #posnewsletterpopup .pnp-close-checkbox > div {
    display: inline-block;
    vertical-align: middle; }
  #posnewsletterpopup .pnp-close-checkbox .custom-checkbox label {
    vertical-align: -3px;
    font-size: 13px; }
  #posnewsletterpopup .pnp-close-checkbox .custom-checkbox input[type=checkbox] + span {
    border-color: #dddddd; }

@media screen and (max-width: 991px) {
  #posnewsletterpopup,
  #posnewsletterpopup-overlay {
    display: none; } }
/* module end newletters */
/* popup newletters */
/* end popup newletters */
.section {
  position: relative;
  margin-bottom: 60px; }
  @media (max-width: 1199px) {
    .section {
      margin-bottom: 60px; } }
  @media (max-width: 767px) {
    .section {
      margin-bottom: 30px; } }

/* static */
.static-store a i {
  font-size: 21px;
  margin-right: 10px;
  vertical-align: -2px; }

@-webkit-keyframes prdmove {
  0% {
    -moz-transform: scale(1) translateX(0);
    -ms-transform: scale(1) translateX(0);
    -webkit-transform: scale(1) translateX(0);
    transform: scale(1) translateX(0); }
  25% {
    -moz-transform: scale(1.25) translateX(0);
    -ms-transform: scale(1.25) translateX(0);
    -webkit-transform: scale(1.25) translateX(0);
    transform: scale(1.25) translateX(0); }
  50% {
    -moz-transform: scale(1.25) translateX(30px);
    -ms-transform: scale(1.25) translateX(30px);
    -webkit-transform: scale(1.25) translateX(30px);
    transform: scale(1.25) translateX(30px); }
  75% {
    -moz-transform: scale(1.25) translateX(-30px);
    -ms-transform: scale(1.25) translateX(-30px);
    -webkit-transform: scale(1.25) translateX(-30px);
    transform: scale(1.25) translateX(-30px); }
  100% {
    -moz-transform: scale(1) translateX(0);
    -ms-transform: scale(1) translateX(0);
    -webkit-transform: scale(1) translateX(0);
    transform: scale(1) translateX(0); } }
@keyframes prdmove {
  0% {
    -moz-transform: scale(1) translateX(0);
    -ms-transform: scale(1) translateX(0);
    -webkit-transform: scale(1) translateX(0);
    transform: scale(1) translateX(0); }
  25% {
    -moz-transform: scale(1.25) translateX(0);
    -ms-transform: scale(1.25) translateX(0);
    -webkit-transform: scale(1.25) translateX(0);
    transform: scale(1.25) translateX(0); }
  50% {
    -moz-transform: scale(1.25) translateX(30px);
    -ms-transform: scale(1.25) translateX(30px);
    -webkit-transform: scale(1.25) translateX(30px);
    transform: scale(1.25) translateX(30px); }
  75% {
    -moz-transform: scale(1.25) translateX(-30px);
    -ms-transform: scale(1.25) translateX(-30px);
    -webkit-transform: scale(1.25) translateX(-30px);
    transform: scale(1.25) translateX(-30px); }
  100% {
    -moz-transform: scale(1) translateX(0);
    -ms-transform: scale(1) translateX(0);
    -webkit-transform: scale(1) translateX(0);
    transform: scale(1) translateX(0); } }
.banner-box {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 5px; }
  .banner-box img {
    width: 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; }
  .banner-box.animation:hover img {
    -webkit-animation: prdmove 2500ms linear forwards;
    -moz-animation: prdmove 2500ms linear forwards;
    -ms-animation: prdmove 2500ms linear forwards;
    -o-animation: prdmove 2500ms linear forwards;
    animation: prdmove 2500ms linear forwards; }
  .banner-box.no-animation:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(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; }
  .banner-box.hover-light-effect:before, .banner-box.hover-light-effect:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 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;
    z-index: 2; }
  .banner-box.hover-light-effect:hover:before, .banner-box.hover-light-effect:hover:after {
    background-color: rgba(255, 255, 255, 0.15); }
  .banner-box.hover-light-effect:hover:before {
    width: 0; }
  .banner-box.hover-light-effect:hover:after {
    height: 0; }
  .banner-box .text-banner {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 2;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    flex-wrap: wrap;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 30px;
    pointer-events: none; }
    .banner-box .text-banner.center {
      align-items: center; }
    .banner-box .text-banner.bottom {
      top: auto;
      bottom: 30px;
      transform: none; }
    .banner-box .text-banner.no-img {
      position: static;
      padding: 30px 0 0 0;
      transform: none; }
    .banner-box .text-banner > *:last-child {
      margin-bottom: 0; }
    .banner-box .text-banner p {
      margin-bottom: 0; }
    .banner-box .text-banner h3 {
      margin-bottom: 20px; }
      @media (max-width: 991px) {
        .banner-box .text-banner h3 {
          margin-bottom: 10px; } }
    .banner-box .text-banner a {
      display: inline-block;
      background: #ffffff;
      font-size: 12px;
      padding: 0 20px;
      line-height: 32px;
      background: #184d47;
      border-radius: 30px;
      pointer-events: auto;
      color: #ffffff;
      font-weight: 600;
      margin-top: 25px; }
      @media (max-width: 991px) {
        .banner-box .text-banner a {
          margin-top: 10px; } }
      .banner-box .text-banner a:after {
        content: "\e992";
        font-family: "roadthemes-icon";
        display: inline-block;
        margin-left: 5px;
        font-size: 17px;
        font-weight: 400;
        vertical-align: middle; }
      .banner-box .text-banner a:hover:after {
        -webkit-animation: passing 1.2s linear infinite;
        -moz-animation: passing 1.2s linear infinite;
        -ms-animation: passing 1.2s linear infinite;
        animation: passing 1.2s linear infinite; }

.custom-font {
  font-family: 'Dosis', sans-serif; }

.home-banner {
  position: relative;
  margin-bottom: 30px; }
  .home-banner:after {
    content: "";
    display: table;
    clear: both; }
  @media (max-width: 479px) {
    .home-banner .absolute-img > a, .home-banner .absolute-img .box-img {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0; }
      .home-banner .absolute-img > a img, .home-banner .absolute-img .box-img img {
        max-height: 100vh;
        min-height: 100%;
        width: auto;
        max-width: 100vw;
        min-width: 100%;
        position: relative;
        z-index: -1; }
    .home-banner .absolute-img .text-banner {
      position: static;
      transform: none;
      padding: 30px; } }

.not-grid-gap .row {
  margin: 0; }
  .not-grid-gap .row .col {
    padding: 0; }

.store_location .store_info .add {
  color: #1c1e22;
  margin-bottom: 1.5rem; }
  .store_location .store_info .add:last-child {
    margin-bottom: 0; }
  .store_location .store_info .add i {
    font-size: 20px;
    margin-right: 7px;
    vertical-align: -2px; }

.static_info {
  position: relative;
  padding: 20px 0;
  margin-bottom: 60px; }
  @media (max-width: 767px) {
    .static_info {
      margin-bottom: 30px; } }
  .static_info:after {
    content: '';
    border-bottom: 1px solid #e5e5e5;
    position: absolute;
    bottom: 0;
    left: -9999rem;
    right: -9999rem; }
  .static_info .col-info:nth-child(1) .icon_info {
    background: #e9f4ec;
    color: #376762; }
  .static_info .col-info:nth-child(2) .icon_info {
    background: #f7efed;
    color: #de7e5b; }
  .static_info .col-info:nth-child(3) .icon_info {
    background: #ece1eb;
    color: #8b2982; }
  .static_info .col-info:nth-child(4) .icon_info {
    background: #f5f1ec;
    color: #976c31; }
  .static_info .box_info {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 0; }
    .static_info .box_info:hover .icon_info {
      -webkit-animation: bounceIn  0.5s linear;
      -moz-animation: bounceIn  0.5s linear;
      -ms-animation: bounceIn  0.5s linear;
      animation: bounceIn  0.5s linear; }
  .static_info .icon_info {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    background: #f7f7f7;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    flex: 0 0 60px;
    margin: 0;
    margin-right: 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; }
  .static_info .txt_info {
    overflow: hidden;
    flex: 1; }
    .static_info .txt_info h2 {
      color: #1c1e22;
      font-size: 14px;
      font-weight: 600;
      text-transform: capitalize;
      line-height: 22px;
      margin-bottom: 0; }
    .static_info .txt_info p {
      line-height: 20px;
      margin: 0; }

/* end static */
/* item product */
.pos_title, .pos_title_column {
  position: relative;
  display: block;
  margin-block: 30px; }
  .pos_title.left, .pos_title_column.left {
    text-align: left; }
  .pos_title h2, .pos_title_column h2 {
    margin: 0;
    position: relative;
    text-transform: capitalize;
    font-weight: 700;
    line-height: 1;
    display: block; }
    @media (max-width: 1199px) {
      .pos_title h2, .pos_title_column h2 {
        font-size: 24px; } }

.pos_title_column {
  text-align: left; }

.desc_title {
  color: #757171;
  font-weight: 400;
  line-height: 18px;
  position: relative;
  margin-top: 10px;
  max-width: 88%; }

.product-flag {
  display: none;
  position: absolute;
  top: 20px !important;
  left: 20px;
  z-index: 1; }
  .product-flag .new,
  .product-flag .on-sale, .product-flag .pack {
    display: inline-block;
    color: #ffffff;
    background: #1c1e22;
    padding: 0 5px;
    min-width: 50px;
    text-align: center;
    line-height: 23px;
    height: 23px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 5px 0 5px 0;
    text-transform: uppercase;
    text-align: center; }

.product-flag .pack {
  z-index: 2; }

.product-flag .on-sale {
  z-index: 3; }

.product-flag .discount {
  display: none; }

.owl-dots {
  text-align: center;
  line-height: 1;
  margin-top: 30px; }
  .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 10px; }
    .owl-dots .owl-dot:last-child {
      margin-right: 0; }
    .owl-dots .owl-dot span {
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #1c1e22;
      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; }
      .owl-dots .owl-dot span:before {
        content: '';
        border: 2px solid transparent;
        position: absolute;
        left: -8px;
        right: -8px;
        bottom: -8px;
        top: -8px;
        border-radius: 50%;
        z-index: -1;
        display: block; }
    .owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
      -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:before, .owl-dots .owl-dot:hover span:before {
        border: 2px solid var(--hovercolor); }

.owl-nav > div {
  position: absolute;
  top: -45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  color: #1c1e22;
  width: 34px;
  height: 34px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  background: #ffffff;
  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;
  -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 > div:before {
    font-size: 15px;
    display: block;
    font-family: "roadthemes-icon"; }
  .owl-nav > div:hover {
    color: #ffffff;
    -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 > div.owl-prev {
    right: 44px; }
    .owl-nav > div.owl-prev:before {
      content: "\e991"; }
  .owl-nav > div.owl-next {
    right: 0; }
    .owl-nav > div.owl-next:before {
      content: "\e992"; }
@media (max-width: 767px) {
  .owl-nav {
    display: none; } }

.owl-carousel.not-margin .owl-nav > div.owl-prev {
  left: -25px; }
.owl-carousel.not-margin .owl-nav > div.owl-next {
  right: -25px; }

.pos_content {
  position: relative;
  margin: 0; }
  .pos_content .owl-carousel .owl-stage-outer {
    padding: 15px 0;
    margin: -15px 0; }
  .pos_content:hover .owl-nav > div {
    opacity: 1; }

@media (max-width: 767px) {
  .product_content.grid {
    margin: 0 -7.5px; }
    .product_content.grid .item-product {
      padding: 0 7.5px; } }

.lazyloading:not(iframe), .lazyload:not(iframe) {
  opacity: 1;
  transition: 100ms opacity;
  background: url(../img/lazy-load.svg) no-repeat;
  background-size: 23px auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #ffffff;
  min-height: 23px; }

.lazyloaded {
  opacity: 1;
  transition: 100ms opacity; }

/* style product */
.one_line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.firstActiveItem .js-product-miniature:after {
  left: 0; }

.js-product-miniature {
  position: relative;
  background: #ffffff;
  border: none;
  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; }
  .js-product-miniature:not(:first-child) {
    margin-top: -1px; }
  .js-product-miniature:after {
    content: '';
    position: absolute;
    left: -1px;
    right: 0;
    top: 0;
    bottom: 0;
    /*border: 1px solid #e5e5e5;*/
    pointer-events: 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;*/ }
  .js-product-miniature:hover {
    z-index: 3;
    border-color: 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-miniature:hover:after {
      border-color: #a8b2b5;
      /*box-shadow: 0px 5px 13.5px 1.5px rgba(0, 0, 0, 0.07);*/
      /*-webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear;*/
      border-radius: 5px;
      z-index: 4; }
  .js-product-miniature .img_block {
    position: relative;
    overflow: hidden; }
    .js-product-miniature .img_block img {
      width: 100%;
      margin: 0;
       /* La magia para el efecto de fondo */
      mix-blend-mode: darken;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear; }
  .first-image{
    /*filter: brightness(95%) sepia(0%);
    border-radius: 10px;*/
  }
  .img_block{padding: 10%;background: #F3F7F8;border-radius: 10px;}
  .js-product-miniature .product_desc {
    padding: 0px;
    background: #ffffff;
    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 .manufacturer a {
      font-size: 12px;
      text-transform: uppercase;
      color: #999999;
      line-height: 1;
      margin-bottom: 10px;
      display: none; }
      .js-product-miniature .product_desc .manufacturer a:hover {
        color: #1c1e22; }
    .js-product-miniature .product_desc h3 {
      font-weight: 400;
      margin: 0;
      line-height: 1;
      overflow: overlay; }
    .js-product-miniature .product_desc .product_name {
      line-height: 20px;
      display: block;
      margin-bottom: 10px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden; 
      font-weight: 500; }
      .js-product-miniature .product_desc .product_name.one_line {
        min-height: auto; }
    .js-product-miniature .product_desc .hook-reviews {
      line-height: 1;
      position: relative;
      /*display: inline-block;*/
      text-align: left;
      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; }
      .js-product-miniature .product_desc .hook-reviews .comments_note {
        direction: ltr !important;
        position: relative; }
      .js-product-miniature .product_desc .hook-reviews .star_content {
        display: inline-block; }
      .js-product-miniature .product_desc .hook-reviews .nb-comments {
        font-size: 13px;
        color: #adadad;
        display: none; }
    .js-product-miniature .product_desc .product-desc {
      display: none;
      color: #535456; }
      .js-product-miniature .product_desc .product-desc p {
        margin: 0; }
    .js-product-miniature .product_desc .availability {
      display: none;
      line-height: 1;
      margin-bottom: 30px; }
      .js-product-miniature .product_desc .availability .availability-list {
        font-size: 14px;
        text-transform: capitalize;
        color: #777777;
        line-height: 1;
        display: block; }
        .js-product-miniature .product_desc .availability .availability-list span {
          font-weight: 700; }
    .js-product-miniature .product_desc .variant-links {
      margin-top: 20px;
      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: 50%;
        width: 12px;
        height: 12px; }

.product-price-and-shipping {
  line-height: 20px;
  /*font-family: Dosis, sans-serif; */
  text-align: justify;}
  .product-price-and-shipping .sr-only {
    display: none; }
  .product-price-and-shipping .price {
    font-weight: 600; }
  .product-price-and-shipping .regular-price {
    color: #999999;
    font-weight: 400;
    text-decoration: line-through;
    margin-right: 2px; }

.product-price-and-shipping-top .discount-product {
  position: absolute;
  top: 0px;
  left: 0px;
  display: inline-block;
  color: #ffffff;
  background: #da2e1f;
  padding: 0 5px;
  min-width: 50px;
  text-align: center;
  line-height: 23px;
  height: 23px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 5px 0 5px 0;
  text-transform: uppercase;
  text-align: center;
  z-index: 4;
  font-family: "Dosis", sans-serif; }

button.add-to-cart.loading:before {
  content: "" !important;
  border: 1px solid;
  color: transparent;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border-color: #5f5f5f #797979 #ccc #fff;
  line-height: 1;
  -webkit-animation: spin .6s infinite linear;
  -moz-animation: spin .6s infinite linear;
  -ms-animation: spin .6s infinite linear;
  animation: spin .6s infinite linear;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px; }

/* end style product */
/* style_product_default */
.js-product-miniature.style_product_default: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; }
  .js-product-miniature.style_product_default:hover .add-to-links {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0) translateZ(0);
    transform: translateY(0) translateZ(0); }
  .js-product-miniature.style_product_default:hover .quick-view a.quick_view {
    opacity: 1;
    transform: translateY(0) translateZ(0);
    -webkit-transform: translateY(0) translateZ(0); }
.js-product-miniature.style_product_default .quick-view {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  pointer-events: none;
  z-index: 1; }
  .js-product-miniature.style_product_default .quick-view a.quick_view {
    display: block;
    background: rgba(255, 255, 255, 0.9);
    color: #1c1e22;
    font-size: 16px;
    padding: 0;
    border: none;
    line-height: 42px;
    padding: 0;
    text-align: center;
    text-transform: capitalize;
    pointer-events: visible;
    opacity: 0;
    transform: translateY(100%) translateZ(0);
    -webkit-transform: translateY(100%) translateZ(0); }
    .js-product-miniature.style_product_default .quick-view a.quick_view:hover {
      color: #ffffff; }
.js-product-miniature.style_product_default .inner_desc {
  position: relative; }
.js-product-miniature.style_product_default .add-to-links {
  position: absolute;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: #ffffff;
  padding: 0 5px;
  font-size: 0;
  visibility: hidden;
  opacity: 0;
  margin: 0;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  transform: translateY(25px) translateZ(0);
  -webkit-transform: translateY(25px) translateZ(0);
  perspective: 800px;
  -webkit-perspective: 800px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: opacity .3s ease,visibility .3s ease,transform .3s ease;
  -webkit-transition: opacity .3s ease,visibility .3s ease,-webkit-transform .3s ease;
  transition: opacity .3s ease,visibility .3s ease,-webkit-transform .3s ease;
  transition: opacity .3s ease,visibility .3s ease,transform .3s ease;
  transition: opacity .3s ease,visibility .3s ease,transform .3s ease,-webkit-transform .3s ease; }
  .js-product-miniature.style_product_default .add-to-links li {
    display: inline-flex;
    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; }
    .js-product-miniature.style_product_default .add-to-links li:last-child {
      margin: 0; }
    .js-product-miniature.style_product_default .add-to-links li a {
      display: inline-block;
      background: #ffffff;
      color: #1c1e22;
      padding: 0;
      border: none;
      line-height: 30px;
      height: 30px;
      width: 30px;
      padding: 0;
      font-size: 0;
      text-align: center;
      text-transform: capitalize; }
      .js-product-miniature.style_product_default .add-to-links li a:before {
        font-size: 20px;
        font-family: "roadthemes-icon";
        display: block; }
      .js-product-miniature.style_product_default .add-to-links li a: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; }
      .js-product-miniature.style_product_default .add-to-links li a.js-poscompare-add:before {
        content: "\e912"; }
      .js-product-miniature.style_product_default .add-to-links li a.js-poscompare-add.cmp_added {
        cursor: not-allowed; }
      .js-product-miniature.style_product_default .add-to-links li a.addToWishlist:before {
        content: "\e90b";
        font-weight: 400; }
    .js-product-miniature.style_product_default .add-to-links li.cart {
      flex: 1; }
      .js-product-miniature.style_product_default .add-to-links li.cart button.ajax_add_to_cart_button, .js-product-miniature.style_product_default .add-to-links li.cart span.ajax_add_to_cart_button {
        display: inline-block;
        background: #ffffff;
        color: #1c1e22;
        font-weight: 700;
        padding: 0;
        border: none;
        line-height: 26px;
        height: 26px;
        width: auto;
        cursor: pointer;
        font-size: 14px;
        text-transform: capitalize;
        position: relative;
        z-index: 1; }
        @media (min-width: 360px) and (max-width: 575px) {
          .js-product-miniature.style_product_default .add-to-links li.cart button.ajax_add_to_cart_button, .js-product-miniature.style_product_default .add-to-links li.cart span.ajax_add_to_cart_button {
            width: 34px;
            height: 34px;
            display: inline-block;
            align-items: center;
            justify-content: center;
            border: none;
            font-size: 0;
            letter-spacing: 0;
            font-weight: 400;
            display: inherit; }
            .js-product-miniature.style_product_default .add-to-links li.cart button.ajax_add_to_cart_button:before, .js-product-miniature.style_product_default .add-to-links li.cart span.ajax_add_to_cart_button:before {
              font-size: 20px;
              font-family: "roadthemes-icon";
              display: block;
              content: "\e907"; } }
        .js-product-miniature.style_product_default .add-to-links li.cart button.ajax_add_to_cart_button.loading:before, .js-product-miniature.style_product_default .add-to-links li.cart span.ajax_add_to_cart_button.loading:before {
          margin: 0; }
        .js-product-miniature.style_product_default .add-to-links li.cart button.ajax_add_to_cart_button i, .js-product-miniature.style_product_default .add-to-links li.cart span.ajax_add_to_cart_button i {
          font-size: 14px;
          margin-right: 5px;
          display: none; }
        .js-product-miniature.style_product_default .add-to-links li.cart button.ajax_add_to_cart_button.disabled, .js-product-miniature.style_product_default .add-to-links li.cart span.ajax_add_to_cart_button.disabled {
          opacity: 0.5;
          cursor: auto; }
        .js-product-miniature.style_product_default .add-to-links li.cart button.ajax_add_to_cart_button:hover, .js-product-miniature.style_product_default .add-to-links li.cart span.ajax_add_to_cart_button: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; }

/* end style_product_default */
/* style_product1 */
/*.js-product-miniature.style_product1: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; }*/
  .js-product-miniature.style_product1:hover .add-to-links li {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0) translateZ(0);
    transform: translateY(0) translateZ(0); }
  .js-product-miniature.style_product1:hover .cart {
    /*opacity: 1;*/
    /*-webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);*/
    visibility: visible;
    -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.style_product1 .img_block {
  text-align: center; margin-bottom: 10px; }
.js-product-miniature.style_product1 .inner_desc {
  position: relative;
  /*padding-right: 40px;*/ }
.js-product-miniature.style_product1 .add-to-links {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 20px;
  line-height: 1;
  text-align: center;
  font-size: 0;
  z-index: 2;
  margin: 0; }
  .js-product-miniature.style_product1 .add-to-links li {
    display: inline-flex;
    vertical-align: top;
    margin-right: 5px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(25px) translateZ(0);
    -webkit-transform: translateY(25px) translateZ(0);
    perspective: 800px;
    -webkit-perspective: 800px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden; }
    .js-product-miniature.style_product1 .add-to-links li:nth-child(1) {
      -webkit-transition: opacity .3s ease,visibility .3s ease,transform .3s ease;
      -webkit-transition: opacity .3s ease,visibility .3s ease,-webkit-transform .3s ease;
      transition: opacity .3s ease,visibility .3s ease,-webkit-transform .3s ease;
      transition: opacity .3s ease,visibility .3s ease,transform .3s ease;
      transition: opacity .3s ease,visibility .3s ease,transform .3s ease,-webkit-transform .3s ease; }
    .js-product-miniature.style_product1 .add-to-links li:nth-child(2) {
      -webkit-transition: opacity .5s ease,visibility .5s ease,transform .5s ease;
      -webkit-transition: opacity .5s ease,visibility .5s ease,-webkit-transform .5s ease;
      transition: opacity .5s ease,visibility .5s ease,-webkit-transform .5s ease;
      transition: opacity .5s ease,visibility .5s ease,transform .5s ease;
      transition: opacity .5s ease,visibility .5s ease,transform .5s ease,-webkit-transform .5s ease; }
    .js-product-miniature.style_product1 .add-to-links li:nth-child(3) {
      -webkit-transition: opacity .7s ease,visibility .7s ease,transform .7s ease;
      -webkit-transition: opacity .7s ease,visibility .7s ease,-webkit-transform .7s ease;
      transition: opacity .7s ease,visibility .7s ease,-webkit-transform .7s ease;
      transition: opacity .7s ease,visibility .7s ease,transform .7s ease;
      transition: opacity .7s ease,visibility .7s ease,transform .7s ease,-webkit-transform .7s ease; }
    .js-product-miniature.style_product1 .add-to-links li:nth-child(4) {
      -webkit-transition: opacity .9s ease,visibility .9s ease,transform .9s ease;
      -webkit-transition: opacity .9s ease,visibility .9s ease,-webkit-transform .9s ease;
      transition: opacity .9s ease,visibility .9s ease,-webkit-transform .9s ease;
      transition: opacity .9s ease,visibility .9s ease,transform .9s ease;
      transition: opacity .9s ease,visibility .9s ease,transform .9s ease,-webkit-transform .9s ease; }
    .js-product-miniature.style_product1 .add-to-links li:last-child {
      margin: 0; }
    .js-product-miniature.style_product1 .add-to-links li a {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      background: #ffffff;
      color: #1c1e22;
      padding: 0;
      border: none;
      height: 40px;
      width: 40px;
      padding: 0;
      font-size: 0;
      text-align: center;
      text-transform: capitalize;
      box-shadow: 0px 5px 13.5px 1.5px rgba(0, 0, 0, 0.12);
      border-radius: 100%; }
      @media (min-width: 360px) and (max-width: 575px) {
        .js-product-miniature.style_product1 .add-to-links li a {
          height: 34px;
          width: 34px; } }
      .js-product-miniature.style_product1 .add-to-links li a:before {
        font-size: 20px;
        font-family: "roadthemes-icon";
        display: block; }
      .js-product-miniature.style_product1 .add-to-links li a:hover {
        color: #ffffff;
        -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.style_product1 .add-to-links li a.js-poscompare-add:before {
        content: "\e912"; }
      .js-product-miniature.style_product1 .add-to-links li a.js-poscompare-add.cmp_added {
        cursor: not-allowed; }
      .js-product-miniature.style_product1 .add-to-links li a.addToWishlist:before {
        content: "\e90b";
        font-weight: 400; }
      .js-product-miniature.style_product1 .add-to-links li a.quick_view:before {
        content: "\e91f"; }
.js-product-miniature.style_product1 div.cart {
  position: absolute;
  bottom: -5px;
  right: 0;
  opacity: 1;
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  transform: scale(0.7);
  visibility: visible;
  -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.style_product1 div.cart button.ajax_add_to_cart_button, .js-product-miniature.style_product1 div.cart span.ajax_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1c1e22;
    color: #ffffff;
    font-weight: 400;
    padding: 0;
    border-radius: 25%;
    border: none;
    height: 35px;
    width: 35px;
    box-shadow: 0px 5px 13.5px 1.5px rgba(0, 0, 0, 0.12);
    font-size: 0;
    position: relative;
    z-index: 1;
    cursor: pointer; }
    @media (min-width: 360px) and (max-width: 575px) {
      .js-product-miniature.style_product1 div.cart button.ajax_add_to_cart_button, .js-product-miniature.style_product1 div.cart span.ajax_add_to_cart_button {
        height: 34px;
        width: 34px; } }
    .js-product-miniature.style_product1 div.cart button.ajax_add_to_cart_button:before, .js-product-miniature.style_product1 div.cart span.ajax_add_to_cart_button:before {
      /*font-size: 22px;
      font-family: "roadthemes-icon";*/
      display: block;
      content: "";
      width: 20px; /* Ajusta el ancho de tu icono */
      height: 20px; /* Ajusta la altura de tu icono */
      background-image: url('../img/shopping-cart-add.svg'); /* Ruta a tu imagen */
      background-repeat: no-repeat;
      background-size: contain; /* Para que la imagen se ajuste al tamaño del contenedor */
      background-position: center; /* Centra la imagen si es necesario */
    }
    .js-product-miniature.style_product1 div.cart button.ajax_add_to_cart_button.loading:before, .js-product-miniature.style_product1 div.cart span.ajax_add_to_cart_button.loading:before {
      margin: 0; }
    .js-product-miniature.style_product1 div.cart button.ajax_add_to_cart_button i, .js-product-miniature.style_product1 div.cart span.ajax_add_to_cart_button i {
      font-size: 14px;
      margin-right: 5px;
      display: none; }
    .js-product-miniature.style_product1 div.cart button.ajax_add_to_cart_button.disabled, .js-product-miniature.style_product1 div.cart span.ajax_add_to_cart_button.disabled {
      opacity: 0.5;
      cursor: auto; }
    .js-product-miniature.style_product1 div.cart button.ajax_add_to_cart_button:hover, .js-product-miniature.style_product1 div.cart span.ajax_add_to_cart_button:hover {
      color: #ffffff;
      -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 style_product1 */
/* style_product2 */
.js-product-miniature.style_product2: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; }
  .js-product-miniature.style_product2:hover .add-to-links {
    opacity: 1;
    visibility: visible; }
    .js-product-miniature.style_product2:hover .add-to-links li {
      -moz-transform: translateY(0);
      -webkit-transform: translateY(0);
      -o-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
      -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.style_product2 .product_desc {
  padding: 0; }
  .js-product-miniature.style_product2 .product_desc .inner_desc {
    background: #ffffff;
    padding: 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; }
.js-product-miniature.style_product2 .add-to-links {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  z-index: 5;
  opacity: 0;
  visibility: 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.style_product2 .add-to-links li {
    display: inline-flex;
    margin-bottom: 10px;
    -moz-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -o-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(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; }
    .js-product-miniature.style_product2 .add-to-links li:last-child {
      margin: 0; }
    .js-product-miniature.style_product2 .add-to-links li a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #ffffff;
      color: #1c1e22;
      padding: 0;
      height: 40px;
      width: 40px;
      box-shadow: 0px 5px 13.5px 1.5px rgba(0, 0, 0, 0.12);
      padding: 0;
      font-size: 0;
      border-radius: 50%; }
      @media (min-width: 360px) and (max-width: 575px) {
        .js-product-miniature.style_product2 .add-to-links li a {
          height: 34px;
          width: 34px; } }
      .js-product-miniature.style_product2 .add-to-links li a:before {
        font-size: 20px;
        font-family: "roadthemes-icon";
        display: block; }
      .js-product-miniature.style_product2 .add-to-links li a:hover {
        color: #ffffff;
        -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.style_product2 .add-to-links li a.js-poscompare-add:before {
        content: "\e912"; }
      .js-product-miniature.style_product2 .add-to-links li a.js-poscompare-add.cmp_added {
        cursor: not-allowed; }
      .js-product-miniature.style_product2 .add-to-links li a.addToWishlist:before {
        content: "\e90b";
        font-weight: 400; }
      .js-product-miniature.style_product2 .add-to-links li a.quick_view:before {
        content: "\e91f"; }
.js-product-miniature.style_product2 .cart {
  padding: 0 20px 30px 20px; }
  .js-product-miniature.style_product2 .cart button.ajax_add_to_cart_button, .js-product-miniature.style_product2 .cart span.ajax_add_to_cart_button {
    display: block;
    width: 100%;
    color: #ffffff;
    font-weight: 700;
    padding: 5px 10px;
    border: none;
    border-radius: 30px;
    line-height: 28px;
    height: 38px;
    cursor: pointer;
    font-size: 13px;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    text-align: center; }
    .js-product-miniature.style_product2 .cart button.ajax_add_to_cart_button:before, .js-product-miniature.style_product2 .cart span.ajax_add_to_cart_button:before {
      content: "\e907";
      font-family: "roadthemes-icon";
      font-weight: 400;
      display: inline-block;
      margin-right: 0;
      font-size: 0;
      opacity: 0;
      visibility: 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.style_product2 .cart button.ajax_add_to_cart_button:hover, .js-product-miniature.style_product2 .cart span.ajax_add_to_cart_button:hover {
      font-size: 0; }
      .js-product-miniature.style_product2 .cart button.ajax_add_to_cart_button:hover:before, .js-product-miniature.style_product2 .cart span.ajax_add_to_cart_button:hover:before {
        font-size: 25px;
        opacity: 1;
        visibility: visible; }
    .js-product-miniature.style_product2 .cart button.ajax_add_to_cart_button.disabled, .js-product-miniature.style_product2 .cart span.ajax_add_to_cart_button.disabled {
      opacity: 0.5;
      cursor: auto; }

/* end style_product2 */
/* style_product3 */
.js-product-miniature.style_product3 .img_block {
  overflow: visible; }
.js-product-miniature.style_product3: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; }
  .js-product-miniature.style_product3:hover .add-to-links li, .js-product-miniature.style_product3:hover .cart {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0) translateZ(0);
    transform: translateY(0) translateZ(0); }
.js-product-miniature.style_product3 .add-to-links {
  position: absolute;
  right: 20px;
  bottom: -20px;
  line-height: 1;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  font-size: 0;
  z-index: 2;
  margin: 0; }
  .js-product-miniature.style_product3 .add-to-links li {
    display: inline-flex;
    vertical-align: top;
    margin-bottom: 5px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-25px) translateZ(0);
    -webkit-transform: translateY(-25px) translateZ(0);
    perspective: 800px;
    -webkit-perspective: 800px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden; }
    .js-product-miniature.style_product3 .add-to-links li:nth-child(4) {
      -webkit-transition: opacity .3s ease,visibility .3s ease,transform .3s ease;
      -webkit-transition: opacity .3s ease,visibility .3s ease,-webkit-transform .3s ease;
      transition: opacity .3s ease,visibility .3s ease,-webkit-transform .3s ease;
      transition: opacity .3s ease,visibility .3s ease,transform .3s ease;
      transition: opacity .3s ease,visibility .3s ease,transform .3s ease,-webkit-transform .3s ease; }
    .js-product-miniature.style_product3 .add-to-links li:nth-child(3) {
      -webkit-transition: opacity .5s ease,visibility .5s ease,transform .5s ease;
      -webkit-transition: opacity .5s ease,visibility .5s ease,-webkit-transform .5s ease;
      transition: opacity .5s ease,visibility .5s ease,-webkit-transform .5s ease;
      transition: opacity .5s ease,visibility .5s ease,transform .5s ease;
      transition: opacity .5s ease,visibility .5s ease,transform .5s ease,-webkit-transform .5s ease; }
    .js-product-miniature.style_product3 .add-to-links li:nth-child(2) {
      -webkit-transition: opacity .7s ease,visibility .7s ease,transform .7s ease;
      -webkit-transition: opacity .7s ease,visibility .7s ease,-webkit-transform .7s ease;
      transition: opacity .7s ease,visibility .7s ease,-webkit-transform .7s ease;
      transition: opacity .7s ease,visibility .7s ease,transform .7s ease;
      transition: opacity .7s ease,visibility .7s ease,transform .7s ease,-webkit-transform .7s ease; }
    .js-product-miniature.style_product3 .add-to-links li:nth-child(1) {
      -webkit-transition: opacity .9s ease,visibility .9s ease,transform .9s ease;
      -webkit-transition: opacity .9s ease,visibility .9s ease,-webkit-transform .9s ease;
      transition: opacity .9s ease,visibility .9s ease,-webkit-transform .9s ease;
      transition: opacity .9s ease,visibility .9s ease,transform .9s ease;
      transition: opacity .9s ease,visibility .9s ease,transform .9s ease,-webkit-transform .9s ease; }
    .js-product-miniature.style_product3 .add-to-links li:last-child {
      margin: 0; }
    .js-product-miniature.style_product3 .add-to-links li a {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      color: #1c1e22;
      background: #ffffff;
      padding: 0;
      border: none;
      height: 40px;
      width: 40px;
      box-shadow: 0px 5px 13.5px 1.5px rgba(0, 0, 0, 0.12);
      padding: 0;
      font-size: 0;
      text-align: center;
      text-transform: capitalize;
      border-radius: 100%; }
      @media (min-width: 360px) and (max-width: 575px) {
        .js-product-miniature.style_product3 .add-to-links li a {
          height: 34px;
          width: 34px; } }
      .js-product-miniature.style_product3 .add-to-links li a:before {
        font-size: 18px;
        font-family: "roadthemes-icon";
        display: block; }
      .js-product-miniature.style_product3 .add-to-links li a:hover {
        color: #ffffff;
        -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.style_product3 .add-to-links li a.js-poscompare-add:before {
        content: "\e912"; }
      .js-product-miniature.style_product3 .add-to-links li a.js-poscompare-add.cmp_added {
        cursor: not-allowed; }
      .js-product-miniature.style_product3 .add-to-links li a.addToWishlist:before {
        content: "\e90b";
        font-weight: 400; }
      .js-product-miniature.style_product3 .add-to-links li a.quick_view:before {
        content: "\e91f"; }
    .js-product-miniature.style_product3 .add-to-links li.cart {
      visibility: visible;
      opacity: 1;
      transform: none; }
      .js-product-miniature.style_product3 .add-to-links li.cart button.ajax_add_to_cart_button, .js-product-miniature.style_product3 .add-to-links li.cart span.ajax_add_to_cart_button {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        color: #ffffff;
        font-size: 14px;
        font-weight: 400;
        padding: 0;
        border: none;
        height: 40px;
        width: 40px;
        box-shadow: 0px 5px 13.5px 1.5px rgba(0, 0, 0, 0.12) !important;
        padding: 0;
        cursor: pointer;
        font-size: 0;
        text-transform: capitalize;
        position: relative;
        z-index: 1;
        border-radius: 100%; }
        @media (min-width: 360px) and (max-width: 575px) {
          .js-product-miniature.style_product3 .add-to-links li.cart button.ajax_add_to_cart_button, .js-product-miniature.style_product3 .add-to-links li.cart span.ajax_add_to_cart_button {
            height: 34px;
            width: 34px; } }
        .js-product-miniature.style_product3 .add-to-links li.cart button.ajax_add_to_cart_button:before, .js-product-miniature.style_product3 .add-to-links li.cart span.ajax_add_to_cart_button:before {
          font-size: 22px;
          font-family: "roadthemes-icon";
          display: block;
          content: "\e907"; }
        .js-product-miniature.style_product3 .add-to-links li.cart button.ajax_add_to_cart_button.loading:before, .js-product-miniature.style_product3 .add-to-links li.cart span.ajax_add_to_cart_button.loading:before {
          margin: 0; }
        .js-product-miniature.style_product3 .add-to-links li.cart button.ajax_add_to_cart_button i, .js-product-miniature.style_product3 .add-to-links li.cart span.ajax_add_to_cart_button i {
          font-size: 14px;
          margin-right: 5px;
          display: none; }
        .js-product-miniature.style_product3 .add-to-links li.cart button.ajax_add_to_cart_button.disabled, .js-product-miniature.style_product3 .add-to-links li.cart span.ajax_add_to_cart_button.disabled {
          opacity: 0.5;
          cursor: auto; }
        .js-product-miniature.style_product3 .add-to-links li.cart button.ajax_add_to_cart_button:hover, .js-product-miniature.style_product3 .add-to-links li.cart span.ajax_add_to_cart_button:hover {
          color: #ffffff;
          -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 style_product3 */
/* end footer */
#footer {
  padding: 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat; }
  #footer img {
    margin: 0; }
  #footer .footer-container {
    margin: 0;
    padding: 0;
    overflow: visible;
    box-shadow: none; }
    #footer .footer-container.footer-layout1 .footer_top {
      position: relative;
      padding: 50px 0;
      background: #184d47; }
      @media (max-width: 767px) {
        #footer .footer-container.footer-layout1 .footer_top {
          padding: 30px 0;
          text-align: center; } }
      @media (min-width: 768px) {
        #footer .footer-container.footer-layout1 .footer_top .row {
          flex-wrap: wrap;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          align-items: center; } }
    #footer .footer-container.footer-layout1 .ft_newsletter {
      flex-wrap: wrap;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      align-items: center;
      margin: 0;
      border: none;
      padding: 0; }
      @media (max-width: 767px) {
        #footer .footer-container.footer-layout1 .ft_newsletter {
          justify-content: center; } }
      #footer .footer-container.footer-layout1 .ft_newsletter .pos_title {
        margin: 0;
        padding-left: 80px; }
        @media (min-width: 992px) {
          #footer .footer-container.footer-layout1 .ft_newsletter .pos_title {
            margin-right: 40px;
            max-width: 42%; } }
        #footer .footer-container.footer-layout1 .ft_newsletter .pos_title:before {
          font-size: 64px;
          font-family: "roadthemes-icon";
          content: "\e95a";
          color: #ffffff;
          position: absolute;
          left: 0;
          top: 50%;
          -webkit-transform: translateY(-50%);
          -moz-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          line-height: 1; }
      #footer .footer-container.footer-layout1 .ft_newsletter form {
        flex: 1;
        margin-right: 30px; }
        @media (max-width: 991px) {
          #footer .footer-container.footer-layout1 .ft_newsletter form {
            margin: 15px 0 0 0; } }
        @media (max-width: 767px) {
          #footer .footer-container.footer-layout1 .ft_newsletter form {
            flex: none;
            width: 100%;
            margin: 15px 0; } }
    #footer .footer-container.footer-layout1 .contact-footer {
      color: #ffffff;
      display: inline-flex;
      align-items: center;
      padding: 15px 35px;
      border-radius: 40px;
      background: #043c36; }
      @media (min-width: 992px) and (max-width: 1199px) {
        #footer .footer-container.footer-layout1 .contact-footer {
          padding: 15px; } }
      #footer .footer-container.footer-layout1 .contact-footer .icon_contact {
        font-size: 64px;
        margin-right: 15px; }
        @media (min-width: 992px) and (max-width: 1199px) {
          #footer .footer-container.footer-layout1 .contact-footer .icon_contact {
            font-size: 45px;
            margin-right: 10px; } }
      #footer .footer-container.footer-layout1 .contact-footer .txt_contact p {
        margin-bottom: 5px; }
      #footer .footer-container.footer-layout1 .contact-footer .txt_contact h2 {
        font-size: 26px;
        margin: 0;
        font-weight: 700;
        font-family: "Dosis", sans-serif; }
        @media (min-width: 992px) and (max-width: 1199px) {
          #footer .footer-container.footer-layout1 .contact-footer .txt_contact h2 {
            font-size: 20px; } }
        #footer .footer-container.footer-layout1 .contact-footer .txt_contact h2 a:not(:hover) {
          color: #ffffff; }
    #footer .footer-container.footer-layout2 .static_info:after {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      left: 0;
      right: 0; }
    #footer .footer-container.footer-layout2 .static_info .box_info {
      padding: 15px 18px; }
    #footer .footer-container.footer-layout2 .static_info .col-info .icon_info {
      background: transparent;
      width: auto;
      border-radius: 0;
      flex: 0 0 auto;
      font-size: 46px; }
    #footer .footer-container.footer-layout2 .static_info .txt_info h2 {
      color: #ffffff; }
    #footer .footer-container.footer-layout2 .our-store a:not(:hover) {
      color: inherit; }
    #footer .footer-container.footer-layout2 .our-store p {
      margin-bottom: 15px; }
      #footer .footer-container.footer-layout2 .our-store p:first-child a {
        text-decoration: underline; }
    #footer .footer-container.footer-layout2 .ft_newsletter .pos_title {
      margin: 0; }
      #footer .footer-container.footer-layout2 .ft_newsletter .pos_title h2 {
        display: none; }
    #footer .footer-container.footer-layout2 .ft_newsletter form {
      margin-top: 35px; }
      #footer .footer-container.footer-layout2 .ft_newsletter form .input-wrapper input {
        height: 50px;
        padding: 10px 80px 10px 20px; }
      #footer .footer-container.footer-layout2 .ft_newsletter form .input-wrapper input[type=email]:focus {
        border: none;
        padding: 10px 80px 10px 20px; }
      #footer .footer-container.footer-layout2 .ft_newsletter form .btn {
        position: absolute;
        top: 0;
        right: -2px;
        color: #1d1e22;
        background: #ffffff;
        font-size: 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;
        padding: 0 20px;
        border-radius: 0 30px 30px 0; }
        #footer .footer-container.footer-layout2 .ft_newsletter form .btn:hover {
          background: #184d47;
          box-shadow: 0 0 20px #ffffff !important;
          color: #ffffff;
          -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-layout2 .ft_newsletter p {
      color: inherit;
      margin: 0;
      padding: 0; }
    #footer .footer-container.footer-layout2 .footer_block .navbar-toggler {
      color: #ffffff; }
    #footer .footer-container.footer-layout2 .footer_bottom {
      border: none; }
      #footer .footer-container.footer-layout2 .footer_bottom .container {
        position: relative; }
        #footer .footer-container.footer-layout2 .footer_bottom .container:after {
          content: '';
          border-bottom: 1px solid rgba(255, 255, 255, 0.1);
          position: absolute;
          top: 0;
          left: 15px;
          right: 15px;
          display: block; }
      #footer .footer-container.footer-layout2 .footer_bottom .social_follow {
        margin: 0;
        text-align: right; }
        @media (max-width: 767px) {
          #footer .footer-container.footer-layout2 .footer_bottom .social_follow {
            text-align: center; } }
        #footer .footer-container.footer-layout2 .footer_bottom .social_follow li {
          margin-bottom: 0; }
    #footer .footer-container .footer_middle {
      padding-bottom: 50px; }
      @media (max-width: 767px) {
        #footer .footer-container .footer_middle {
          padding-bottom: 30px; } }
    #footer .footer-container .footer_bottom {
      line-height: 1;
      border-top: 1px solid #e5e5e5; }
      #footer .footer-container .footer_bottom .container {
        padding-top: 15px;
        padding-bottom: 15px; }
      @media (max-width: 991px) {
        #footer .footer-container .footer_bottom .footer_block {
          margin-bottom: 0; } }
      #footer .footer-container .footer_bottom .copyright {
        line-height: 2.230769230769231; }
        @media (max-width: 767px) {
          #footer .footer-container .footer_bottom .copyright {
            text-align: center; } }
        #footer .footer-container .footer_bottom .copyright a:hover {
          text-decoration: underline; }
      #footer .footer-container .footer_bottom .payment {
        text-align: right; }
        @media (max-width: 767px) {
          #footer .footer-container .footer_bottom .payment {
            text-align: center; } }
    #footer .footer-container .get_app .img_app {
      flex-wrap: wrap;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      align-items: center; }
      #footer .footer-container .get_app .img_app a {
        margin-bottom: 10px; }
        #footer .footer-container .get_app .img_app a:not(:last-child) {
          margin-right: 10px; }
    #footer .footer-container .footer_block {
      margin-bottom: 0; }
      @media (max-width: 991px) {
        #footer .footer-container .footer_block {
          margin-bottom: 15px; }
          #footer .footer-container .footer_block.not_title {
            margin: 0; } }
      @media (min-width: 768px) and (max-width: 991px) {
        #footer .footer-container .footer_block {
          width: 50%; }
          #footer .footer-container .footer_block.col-md-12 {
            width: 100%; } }
      @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.col-md-6 {
            width: 100%; } }
      #footer .footer-container .footer_block h3 {
        text-transform: uppercase;
        margin-bottom: 23px;
        position: relative;
        font-weight: 700; }
        @media (max-width: 767px) {
          #footer .footer-container .footer_block h3 {
            margin-bottom: 15px; } }
      #footer .footer-container .footer_block .navbar-toggler {
        position: absolute;
        right: 15px;
        top: -2px;
        width: auto;
        height: auto;
        color: #1c1e22; }
      #footer .footer-container .footer_block .footer_list {
        margin-bottom: 0;
        background: none; }
        @media (max-width: 767px) {
          #footer .footer-container .footer_block .footer_list {
            margin-bottom: 20px; } }
        #footer .footer-container .footer_block .footer_list > li, #footer .footer-container .footer_block .footer_list > ul > li {
          display: block;
          margin: 0;
          line-height: 1;
          border: 0;
          padding: 0;
          font-weight: 400;
          margin-bottom: 15px;
          background: none; }
          #footer .footer-container .footer_block .footer_list > li:last-child, #footer .footer-container .footer_block .footer_list > ul > li:last-child {
            margin-bottom: 0; }
          #footer .footer-container .footer_block .footer_list > li a, #footer .footer-container .footer_block .footer_list > ul > li a {
            line-height: 1.5;
            padding: 0;
            text-transform: capitalize;
            margin-bottom: 0px;
            display: inline-block;
            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; }
            #footer .footer-container .footer_block .footer_list > li a:hover, #footer .footer-container .footer_block .footer_list > ul > li a: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;
              -webkit-transform: translateX(10px);
              -moz-transform: translateX(10px);
              -ms-transform: translateX(10px);
              transform: translateX(10px); }

/* end footer */
/* breadcrumb */
.breadcrumb_container[data-depth="1"] {
  display: none; }

.breadcrumb_container {
  position: relative;
  margin-bottom: 30px; }
  .breadcrumb_container .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0; }
    .breadcrumb_container .breadcrumb ol {
      padding-left: 0;
      margin-bottom: 0; }
      .breadcrumb_container .breadcrumb ol li {
        display: inline; }
        .breadcrumb_container .breadcrumb ol li:after {
          color: #1c1e22;
          margin: 0 10px;
          vertical-align: -1px;
          content: "/";
          font-family: "roadthemes-icon";
          font-size: 15px; }
        .breadcrumb_container .breadcrumb ol li:last-child a, .breadcrumb_container .breadcrumb ol li:last-child span {
          opacity: 1;
          color: #76777a; }
        .breadcrumb_container .breadcrumb ol li:last-child:after {
          content: ""; }
        .breadcrumb_container .breadcrumb ol li a {
          display: inline-block;
          position: relative;
          color: #1c1e22; }
          .breadcrumb_container .breadcrumb ol li a:hover {
            opacity: 1; }
  .breadcrumb_container .breadcrumb-inner[data-depth="1"] {
    display: none; }

#category .page-title-wrapper {
  /*position: relative;
  background: url(../img/bg_breadcrumb.jpg);
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;*/
  padding-top: 50px;
  margin-bottom: 0px; }
  @media (max-width: 1919px) {
    #category .page-title-wrapper {
      padding: 4.3772798332vw 0; } }
  @media (max-width: 1199px) {
    #category .page-title-wrapper {
      margin-bottom: 30px; } }
  #category .page-title-wrapper .name_category {
    color: #1c1e22;
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
    text-transform: capitalize;
    margin-bottom: 15px;
    font-family: 'Anuphan'; }
    @media (max-width: 767px) {
      #category .page-title-wrapper .name_category {
        font-size: 5.2151238592vw; } }

#module-xipblog-archive .page-title-wrapper {
  background-color: #f5f9ee;
  margin-bottom: 60px; }
  @media (max-width: 1199px) {
    #module-xipblog-archive .page-title-wrapper {
      margin-bottom: 30px; } }
  #module-xipblog-archive .page-title-wrapper.bg-blog {
    position: relative;
    text-align: center;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    padding: 84px 0; }
    @media (max-width: 1919px) {
      #module-xipblog-archive .page-title-wrapper.bg-blog {
        padding: 4.3772798332vw 0; } }

#module-xipblog-single .page-title-wrapper.bg-single {
  position: relative;
  text-align: center;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  padding: 84px 0;
  margin-bottom: 60px; }
  @media (max-width: 1919px) {
    #module-xipblog-single .page-title-wrapper.bg-single {
      padding: 4.3772798332vw 0; } }
  @media (max-width: 1199px) {
    #module-xipblog-single .page-title-wrapper.bg-single {
      margin-bottom: 30px; } }

/* breadcrumb */
/* category */
#js-product-list-top.products-selection {
  background: #ffffff;
  margin-bottom: 30px; }
  @media (max-width: 575px) {
    #js-product-list-top.products-selection .sort-by-row {
      padding-top: 10px;
      /*justify-content: flex-start;*/ }
    .center-vertical{
      justify-content: space-between;
    }
    
    
  }
#js-product-list-top .total-products {
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
  #js-product-list-top .total-products p {
    margin: 0; }
    @media (max-width: 767px) {
      #js-product-list-top .total-products p {
        display: none; } }
  #js-product-list-top .total-products ul.display {
    display: inline-flex;
    margin-right: 25px;
    position: relative;
    z-index: 1;
    margin-bottom: 0; }
    #js-product-list-top .total-products ul.display li {
      margin-right: 15px;
      cursor: pointer;
      color: #1c1e22;
      background: transparent;
      display: inline-flex;
      align-items: 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; }
      #js-product-list-top .total-products ul.display li:last-child {
        margin-right: 0; }
      #js-product-list-top .total-products ul.display li:hover, #js-product-list-top .total-products ul.display li.selected {
        -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 .total-products ul.display li i {
        font-size: 20px; }
#js-product-list-top .sort-by-row .filter-button {
  width: auto; }
  #js-product-list-top .sort-by-row .filter-button button {
    font-size: inherit; }
    #js-product-list-top .sort-by-row .filter-button button.btn-secondary, #js-product-list-top .sort-by-row .filter-button button.btn-tertiary {
      padding: 0px 15px;
      background: transparent;
      color: #1c1e22;
      border: 1px #1c1e22 solid;
      width: 110px;
      line-height: 30px;
     }
      #js-product-list-top .sort-by-row .filter-button button.btn-secondary:before, #js-product-list-top .sort-by-row .filter-button button.btn-tertiary:before {
        content: "\e97f";
        font-family: "roadthemes-icon";
        font-size: 20px;
        display: inline-block;
        margin-right: 5px;
        vertical-align: -2px; }
#js-product-list-top .sort-by-row .sort-by {
  white-space: nowrap;
  display: none; }
  @media (max-width: 991px) {
    #js-product-list-top .sort-by-row .sort-by {
      display: none; } }
#js-product-list-top .sort-by-row .products-sort-order {
  max-width: 240px; }
  #js-product-list-top .sort-by-row .products-sort-order .select-title {
    border: #000 solid 1px;
    padding: 5px 15px;
    line-height: 24px;
    margin: 0;
    border-radius: 10px;
    color: #1c1e22;
    box-shadow: none;
    /*background: #fafafa;*/ }
  #js-product-list-top .sort-by-row .products-sort-order .dropdown-menu {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    right: 15px;
    left: 15px;
    width: auto;
    box-shadow: none;
    max-width: 100%;
    font-size: inherit; }
    #js-product-list-top .sort-by-row .products-sort-order .dropdown-menu .select-list {
      font-size: inherit;
      padding: 5px 15px;
      color: #1c1e22; }
      #js-product-list-top .sort-by-row .products-sort-order .dropdown-menu .select-list:hover {
        color: #ffffff; }

.block-category {
  padding: 0;
  min-height: auto;
  margin-bottom: 0;
  background: transparent; }
  .block-category #category-description p {
    margin: 0; }
  .block-category h1.h1 {
    line-height: 1;
    padding: 0 0 15px 0;
    margin: 0;
    border: none;
    text-transform: capitalize; }
  .block-category .category-cover {
    position: static;
    margin-bottom: 30px; }
    .block-category .category-cover img {
      width: auto;
      height: auto;
      margin-bottom: 30px; }

#subcategories {
  margin-bottom: 30px; }
  #subcategories .subcategory-heading {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    display: block;
    text-transform: uppercase; }
  #subcategories .subcategory-content {
    text-align: center;
    margin: 0 -15px;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center; }
    #subcategories .subcategory-content li {
      padding: 0 15px; }
    #subcategories .subcategory-content .subcategory-image a.subcategory-name {
      font-weight: 400; }

#products img, .featured-products img, .product-accessories img {
  margin: 0; }

.block-categories, #search_filters {
  box-shadow: none;
  padding-right: 15px;
  margin-bottom: 30px; }

.block-categories a.h6 {
  display: block;
  clear: both;
  color: #1c1e22;
  font-size: 15px;
  font-weight: 700;
  padding: 0;
  border: none;
  text-transform: uppercase;
  margin-bottom: 30px; }
.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: #555555; }
.block-categories .category-sub-menu li[data-depth="0"] > a {
  font-weight: 400;
  color: #535456;
  display: block;
  text-transform: capitalize;
  line-height: 35px;
  margin: 0;
  padding: 0;
  border: none; }
.block-categories .category-sub-menu li[data-depth="1"] {
  margin: 0; }
.block-categories .category-sub-menu li:last-child a {
  border-bottom: 0; }
.block-categories .category-sub-menu .category-sub-link {
  line-height: 35px;
  margin: 0;
  padding: 0 10px;
  display: block;
  color: #535456; }
.block-categories .collapse-icons {
  top: 7px;
  right: -5px;
  height: 20px;
  width: 20px;
  text-align: center;
  line-height: 20px; }
  .block-categories .collapse-icons i {
    font-size: 16px; }

.block-categories .category-sub-menu li:not([data-depth="0"]):not([data-depth="1"]):before {
  display: none; }

.search_filters_top {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 320px;
  padding: 60px 30px;
  background: #ffffff;
  z-index: 9999;
  max-width: 100%;
  min-width: auto;
  height: 100vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-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; }
  @media (min-width: 1920px) {
    .search_filters_top {
      width: 370px; } }
  .search_filters_top::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 8px; }
  .search_filters_top::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 2px solid white;
    /* should match background, can't be transparent */
    background-color: #cccccc; }
  .search_filters_top::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 8px; }
  .search_filters_top .close-filter {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    cursor: pointer; }
  .search_filters_top.opened {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(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; }
  .search_filters_top .navbar-toggler.collapse-icons {
    display: none; }

#search_filters {
  height: 100%; }

.search_filters_overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 14;
  cursor: ew-resize; }

.search_filters_overlay.opened {
  display: block; }

#search_filters_wrapper #search_filters .h6 {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: block; }

#search_filters_wrapper #search_filters .facet {
  padding-bottom: 20px; }
  #search_filters_wrapper #search_filters .facet .facet-title {
    display: block;
    clear: both;
    color: #1c1e22;
    font-size: 15px;
    font-weight: 700;
    padding: 0;
    border: none;
    text-transform: uppercase;
    margin-bottom: 30px; }
  #search_filters_wrapper #search_filters .facet .collapse {
    margin: 0; }
    #search_filters_wrapper #search_filters .facet .collapse li {
      line-height: 25px; }
  #search_filters_wrapper #search_filters .facet .custom-checkbox input[type="checkbox"] + span {
    margin: -3px 3px 0 0;
    width: 20px;
    height: 20px;
    border: 1px solid #e5e5e5;
    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; }
    #search_filters_wrapper #search_filters .facet .custom-checkbox input[type="checkbox"] + span.color {
      border: 0;
    border-radius: 15px; }
    #search_filters_wrapper #search_filters .facet .custom-checkbox input[type="checkbox"] + span .checkbox-checked {
      margin: 0; }
  #search_filters_wrapper #search_filters .facet .custom-radio {
    border: 2px solid #f0f0f0; }
  #search_filters_wrapper #search_filters .facet .facet-label {
    margin: 3px 0; }
    #search_filters_wrapper #search_filters .facet .facet-label a {
      color: #535456;
      margin-top: 0;
      line-height: 22px; }
    #search_filters_wrapper #search_filters .facet .facet-label:hover .custom-checkbox input[type="checkbox"] + span, #search_filters_wrapper #search_filters .facet .facet-label.active .custom-checkbox input[type="checkbox"] + span {
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear; }

.faceted-slider p {
  color: #535456; }

#search_filters .ui-slider-horizontal {
  height: 5px;
  border: none;
  margin-top: 20px;
  margin-bottom: 10px;
  margin-right: 15px;
  background: #dbdbdb; }

#search_filters .ui-slider .ui-slider-handle {
  top: -5px;
  width: 13px;
  height: 13px;
  border: none;
  border-radius: 100%;
  box-shadow: none; }

/* Drop-down list */
.facet-dropdown {
  color: #1c1e22;
  background: #ffffff;
  border: none;
  box-shadow: none; }

.facet-dropdown .select-title {
  border: 1px solid #e5e5e5;
  color: #1c1e22;
  padding: 5px 10px;
  border-radius: 3px;
  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='$color-white', endColorstr='#f3f3f3',GradientType=0 ); }

.facet-dropdown.open > .select-title {
  border: 1px solid #e5e5e5;
  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='$color-white', endColorstr='#f3f3f3',GradientType=0 ); }

.facet-dropdown .dropdown-menu {
  border: 1px solid #e5e5e5;
  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='$color-white', endColorstr='#f3f3f3',GradientType=0 );
  box-shadow: none; }

.facet-dropdown .select-list {
  display: block;
  color: #1c1e22;
  font-size: 14px;
  background: transparent;
  padding: 5px 10px; }

/* end Drop-down list */
/* page list */
.pagination .page-list {
  box-shadow: none;
  padding: 0;
  padding: 0 0 30px 0;
  text-align: center !important; }

.pagination {
  background: #ffffff;
  font-size: 14px;
  font-weight: 400;
  margin: 30px 0 60px 0;
  color: #1c1e22; }
  .pagination .previous, .pagination .next {
    float: none;
    width: auto;
    display: inline-block;
    padding: 0;
    font-size: 0;
    height: 36px;
    line-height: 36px;
    width: 36px; }
  .pagination a {
    font-weight: 400;
    color: #1c1e22;
    padding: 0;
    height: 36px;
    line-height: 36px;
    background: #f6f6f6;
    font-size: 14px;
    display: inline-block;
    width: 36px;
    border-radius: 100%;
    text-align: center;
    vertical-align: top; }
    .pagination a i {
      font-size: 18px; }
    .pagination a:hover {
      color: #ffffff; }
  .pagination .disabled {
    color: #1c1e22; }
  .pagination .current a {
    font-size: 14px;
    color: #ffffff; }
  .pagination .show_items {
    line-height: 28px;
    font-size: 14px; }
  .pagination > div:first-child {
    line-height: 36px; }

/* grid list */
#js-product-list-header.h2 {
  margin-bottom: 20px; }

@media (min-width: 1200px) {
  #category.layout-full-width #js-product-list .product_content.list .item-product {
    width: 50%; } }

#js-product-list .product_content {
  position: relative; }
  #js-product-list .product_content.list .js-product-miniature {
    padding: 20px;
    margin-top: -1px; }
    #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 .product_desc {
      padding-left: 30px;
      padding-top: 30px;
      padding-bottom: 20px;
      text-align: left;
      margin: 0 !important; }
      @media (max-width: 1199px) {
        #js-product-list .product_content.list .js-product-miniature .product_desc {
          padding-top: 0; } }
      @media (max-width: 479px) {
        #js-product-list .product_content.list .js-product-miniature .product_desc {
          padding: 20px 0; } }
      #js-product-list .product_content.list .js-product-miniature .product_desc .product_name {
        font-size: 16px;
        font-weight: 500; }
      #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-desc {
        display: block;
        padding: 25px 0;
        margin: 0; }
      #js-product-list .product_content.list .js-product-miniature .product_desc .variant-links {
        display: block; }
      #js-product-list .product_content.list .js-product-miniature .product_desc div.cart {
        opacity: 1;
        visibility: visible;
        -webkit-transform: none;
        transform: none;
        position: static;
        display: inline-block;
        padding: 0; }
        #js-product-list .product_content.list .js-product-miniature .product_desc div.cart button.ajax_add_to_cart_button,
        #js-product-list .product_content.list .js-product-miniature .product_desc div.cart span.ajax_add_to_cart_button {
          width: auto;
          height: auto;
          font-size: 13px;
          padding: 0 7px;
          line-height: 40px;
          height: 40px;
          border-radius: 30px;
          opacity: 1;
          visibility: visible;
          -webkit-transform: none;
          transform: none;
          text-transform: capitalize;
          position: static;
          font-weight: 700;
          box-shadow: none;
          color: #ffffff;
          min-width: 200px;
          box-shadow: none;
          border: none;
          cursor: pointer; }
          #js-product-list .product_content.list .js-product-miniature .product_desc div.cart button.ajax_add_to_cart_button:before,
          #js-product-list .product_content.list .js-product-miniature .product_desc div.cart span.ajax_add_to_cart_button:before {
            content: "\e907";
            font-family: "roadthemes-icon";
            font-weight: 400;
            display: inline-block;
            margin-right: 5px;
            font-size: 0;
            opacity: 0;
            visibility: 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-list .product_content.list .js-product-miniature .product_desc div.cart button.ajax_add_to_cart_button:hover,
          #js-product-list .product_content.list .js-product-miniature .product_desc div.cart span.ajax_add_to_cart_button:hover {
            font-size: 0; }
            #js-product-list .product_content.list .js-product-miniature .product_desc div.cart button.ajax_add_to_cart_button:hover:before,
            #js-product-list .product_content.list .js-product-miniature .product_desc div.cart span.ajax_add_to_cart_button:hover:before {
              font-size: 25px;
              opacity: 1;
              visibility: visible; }
      #js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links {
        opacity: 1;
        visibility: visible;
        -webkit-transform: none;
        transform: none;
        position: static;
        padding: 0;
        display: inline-flex; }
        #js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li {
          margin-right: 10px; }
    #js-product-list .product_content.list .js-product-miniature.style_product3 .add-to-links {
      bottom: 20px; }
      #js-product-list .product_content.list .js-product-miniature.style_product3 .add-to-links li.cart {
        display: none; }
    @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 {
        margin-inline: -10px; }
    #js-product-list .product_content.grid .item-product {
      padding: 0;
      margin-top: -1px;
      -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%; } }
    @media (min-width: 992px) {
      #js-product-list .product_content.grid .product_per_3:nth-child(3n+1) {
        clear: both; } }
    @media (min-width: 360px) and (max-width: 991px) {
      #js-product-list .product_content.grid .product_per_3:nth-child(2n+1) {
        clear: both; } }
    @media (max-width: 359px) {
      #js-product-list .product_content.grid .product_per_3 {
        clear: both; } }
    @media (min-width: 1200px) {
      #js-product-list .product_content.grid .product_per_4:nth-child(4n+1) {
        clear: both; 
      margin-bottom: 30px; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      #js-product-list .product_content.grid .product_per_4:nth-child(3n+1) {
        clear: both;
      margin-block-end: 30px; } }
    @media (min-width: 360px) and (max-width: 991px) {
      #js-product-list .product_content.grid .product_per_4:nth-child(2n+1) {
        clear: both; 
      margin-block-end: 30px;} }
    @media (max-width: 359px) {
      #js-product-list .product_content.grid .product_per_4 {
        clear: both;
      margin-block-end: 30px; } }
    @media (min-width: 1200px) {
      #js-product-list .product_content.grid .product_per_5 {
        width: 16.6%;
        /*margin-inline-end: 2%;*/
        margin-block-end: 30px; }
        #js-product-list .product_content.grid .product_per_5:nth-child(5n+1) {
          /*clear: both;*/
        margin-block-end: 30px; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      #js-product-list .product_content.grid .product_per_5:nth-child(3n+1) {
        /*clear: both;*/
      margin-block-end: 30px; } }
    @media (min-width: 340px) and (max-width: 991px) {
      #js-product-list .product_content.grid .product_per_5 {
        /*clear: both;*/
      margin-block-end: 30px; }
     }
    @media (max-width: 359px) {
      #js-product-list .product_content.grid .product_per_5 {
        /*clear: both;*/
      margin-block-end: 30px; } }

@media (min-width: 340px) and (max-width: 543px) {
  #js-product-list .product_content.grid .item-product {
    float: left;
    width: 50%; } }
/* end grid list */
/* end category */
/*  */
/* page */
.clearfix {
  clear: both; }

#wrapper, #notifications, #footer {
  display: block !important; }

.page-title-wrapper {
  padding: 30px 0;
  /*margin-bottom: 60px;*/
  /*background: #f5f9ee;*/ }
  @media (max-width: 1199px) {
    .page-title-wrapper {
      margin-bottom: 0px; } }
  .page-title-wrapper .page-header {
    line-height: 1; }
    .page-title-wrapper .page-header ~ .breadcrumb_container {
      margin-top: 15px; }

#checkout #wrapper {
  padding-top: 60px; }
  @media (max-width: 1199px) {
    #checkout #wrapper {
      padding-top: 30px; } }

#order-confirmation #main {
  margin-bottom: 60px; }
  @media (max-width: 1199px) {
    #order-confirmation #main {
      margin-bottom: 60px; } }
  @media (max-width: 767px) {
    #order-confirmation #main {
      margin-bottom: 30px; } }
#order-confirmation .card {
  border: 1px solid #e5e5e5; 
  border-radius: 10px;}

#wrapper {
  margin: 0;
  background: transparent;
  box-shadow: none;
  padding: 0; }

#index #wrapper {
  padding-top: 0; }
  #index #wrapper #main .page-footer {
    margin: 0; }

/* end page */
/* detail */
#product #content {
  max-width: 100%; }

.product-cover {
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  /*border: 1px solid #e5e5e5; */}
  .product-cover img {
    box-shadow: none; }

.images-container, .images-quickviews {
  max-width: 100%;
  margin: auto;
  position: relative;
  margin-bottom: 60px; }
  @media (max-width: 767px) {
    .images-container, .images-quickviews {
      margin-bottom: 30px; } }
.product-images {
  max-width: 440px;
  margin: auto; }
  .product-images .slick-prev:before, .product-images .slick-next:before {
    color: #000000; }
  .product-images .image-item {
    position: relative;
    cursor: pointer;
    margin: 0 5px;
    /*border: 1px solid #e5e5e5;*/
    border-radius: 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; }
    .product-images .image-item.is-active, .product-images .image-item: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; }
    .product-images .image-item img {
      width: 100%;
      border-radius: 25px; }

.images-quickviews .product-images .thumb-container {
  position: relative;
  cursor: pointer;
  margin: 0 5px;
  border: 1px solid #e5e5e5;
  -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-quickviews .product-images .thumb-container.slick-current, .images-quickviews .product-images .thumb-container: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-quickviews .product-images .thumb-container img {
    width: 100%; }

.left-vertical .product-images, .right-vertical .product-images {
  max-width: 100%;
  width: 98px; }
  @media (max-width: 1199px) {
    .left-vertical .product-images, .right-vertical .product-images {
      width: 60px; } }
  .left-vertical .product-images .image-item, .right-vertical .product-images .image-item {
    margin: 5px 0; }
.left-vertical .product-cover-container, .right-vertical .product-cover-container {
  overflow: hidden;
  position: relative; }

.left-vertical .product-images {
  float: left;
  margin: 0;
  margin-top: -5px;
  margin-right: 10px; }

.right-vertical .product-images {
  float: right;
  margin: 0;
  margin-top: -5px;
  margin-left: 10px; }

.product-cover-container {
  position: relative; }
  .product-cover-container .product-cover .slick-prev,
  .product-cover-container .product-cover .slick-next {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0px 5px 13.5px 1.5px rgba(0, 0, 0, 0.12);
    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; }
    .product-cover-container .product-cover .slick-prev:before,
    .product-cover-container .product-cover .slick-next:before {
      color: #1c1e22; }
    .product-cover-container .product-cover .slick-prev:hover:before,
    .product-cover-container .product-cover .slick-next:hover:before {
      color: #ffffff; }
  .product-cover-container .product-cover .slick-next {
    right: 45px; }
  .product-cover-container .product-cover .slick-prev {
    left: 45px; }
  .product-cover-container .product-cover:hover .slick-prev,
  .product-cover-container .product-cover:hover .slick-next {
    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; }

.grid .product-cover .cover-item {
  margin-bottom: 20px; }
.grid .product-cover.column-2 {
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-right: -10px;
  margin-left: -10px; }
  .grid .product-cover.column-2 .cover-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 10px;
    padding-right: 10px; }

@media (max-width: 767px) {
  .product-content-container.is-fixed {
    position: static !important; } }

.full-slider {
  max-width: none !important;
  padding: 0 15px; }
  @media (max-width: 1199px) {
    .full-slider {
      padding: 0 5px; } }
  .full-slider .product-cover .cover-item {
    padding-left: 10px;
    padding-right: 10px; }

#product.showcase-body .page-title-wrapper {
  margin: 0; }

.showcase-inner .product-cover {
  margin: 0; }
@media (min-width: 768px) {
  .showcase-inner .row-showcase {
    flex-wrap: wrap;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
    .showcase-inner .row-showcase.showcase-right {
      flex-direction: row-reverse; } }
@media (min-width: 1200px) {
  .showcase-inner #content, .showcase-inner [class*="col-"], .showcase-inner .images-container {
    position: static !important; }
  .showcase-inner .images-container.default .product-images {
    margin-top: 10px; }
  .showcase-inner .product-cover .slick-slide {
    line-height: 0; }
  .showcase-inner .row-showcase .left-vertical {
    margin: 0; }
    .showcase-inner .row-showcase .left-vertical .product-images {
      position: absolute;
      left: 30px;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      z-index: 1;
      width: 60px; }
  .showcase-inner .row-showcase .right-vertical {
    margin: 0; }
    .showcase-inner .row-showcase .right-vertical .product-images {
      position: absolute;
      right: 30px;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      z-index: 1;
      width: 60px; } }

.accordion .card {
  margin: 0; }
  .accordion .card:first-child .card-header {
    border-top: 1px solid #e5e5e5; }
  .accordion .card .card-header {
    background: none;
    padding: 0;
    border-bottom: 1px solid #e5e5e5; }
    .accordion .card .card-header a {
      display: block;
      font-size: 20px;
      padding: 15px 0;
      position: relative;
      cursor: pointer;
      text-transform: capitalize; }
      .accordion .card .card-header a:before {
        content: "\e92e";
        font-family: "roadthemes-icon";
        font-size: 14px;
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-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; }
      .accordion .card .card-header a.collapsed:before {
        content: "\e92b"; }
  .accordion .card .card-body {
    padding-top: 30px; }

.content_info {
  display: inline-block;
  width: 100%;
  margin-bottom: 60px; }

.h1.namne_details, .product_name_h1 {
  line-height: 30px;
  font-weight: 600;
  margin: 0 0 20px 0;
  overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; }

.reference {
  font-size: 14px;
  color: #1c1e22;
  font-weight: 700; }
  .reference span {
    font-weight: 400; }

.product-prices {
  margin: 10px 0px; }

.product-discount {
  display: inline-block; }

.product-discount .regular-price {
  font-weight: 400; }

.has-discount.product-price, .has-discount p {
  font-weight: 600;
  display: inline-block; }

.has-discount .discount {
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: #ffffff;
  padding: 0 10px 0 10px;
  background: #1c1e22;
  vertical-align: 4px;
  border-radius: 0;
  text-transform: capitalize; }

.product-information {
  font-weight: normal; }
  .product-information .control-label {
    color: #1c1e22;
    display: inline-block;
    width: auto;
    margin: 0 20px 0 0;
    font-weight: 600; }
  .product-information .product-desc {
    padding: 25px 0; }
  .product-information label {
    margin: 0; }
  .product-information .product-variants {
    margin-bottom: 10px; }

.product-customization label {
  margin-bottom: 10px; }

#product .product-description ul {
  display: block;
  list-style-type: disc;
  margin: 0;
  padding-inline-start: 20px; }

.product-actions {
  padding-top: 30px;
  display: inline-block; }

.bootstrap-touchspin, .product-variants > .product-variants-item select {
  box-shadow: none; }

.product-information .product-variants {
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap; }

.product-variants > .product-variants-item {
  margin: 0;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-bottom: 25px; }
  .product-variants > .product-variants-item:last-child {
    margin: 0; }
  .product-variants > .product-variants-item > * {
    margin-bottom: 0; }
  .product-variants > .product-variants-item .radio-label {
    box-shadow: none;
    border: 1px solid #e5e5e5;
    min-width: 36px;
    height: 36px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center; }
  .product-variants > .product-variants-item .input-color:checked + span,
  .product-variants > .product-variants-item .input-color:hover + span,
  .product-variants > .product-variants-item .input-radio:checked + span,
  .product-variants > .product-variants-item .input-radio:hover + span {
    border: 1px solid #1c1e22; }
  .product-variants > .product-variants-item .input-color {
    height: 20px;
    width: 20px;
    border-radius: 50%; }
  .product-variants > .product-variants-item .color, .product-variants > .product-variants-item .custom-checkbox input[type=checkbox] + span.color {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    margin: 0 10px 0 0;
    box-shadow: none; }
  .product-variants > .product-variants-item .color.active, .product-variants > .product-variants-item .color:hover,
  .product-variants > .product-variants-item .custom-checkbox input[type=checkbox] + span.color.active,
  .product-variants > .product-variants-item .custom-checkbox input[type=checkbox] + span.color:hover,
  .product-variants > .product-variants-item .facet-label.active .custom-checkbox span.color,
  .product-variants > .product-variants-item .custom-checkbox span.color,
  .product-variants > .product-variants-item .input-color:checked + span, .product-variants > .product-variants-item .input-color:hover + span {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05); }
    .product-variants > .product-variants-item .color.active:before, .product-variants > .product-variants-item .color:hover:before,
    .product-variants > .product-variants-item .custom-checkbox input[type=checkbox] + span.color.active:before,
    .product-variants > .product-variants-item .custom-checkbox input[type=checkbox] + span.color:hover:before,
    .product-variants > .product-variants-item .facet-label.active .custom-checkbox span.color:before,
    .product-variants > .product-variants-item .custom-checkbox span.color:before,
    .product-variants > .product-variants-item .input-color:checked + span:before, .product-variants > .product-variants-item .input-color:hover + span:before {
      content: '';
      position: absolute;
      left: -5px;
      right: -5px;
      top: -5px;
      bottom: -5px;
      border-radius: 50%;
      border: 1px solid #1c1e22;
      pointer-events: none; }

.blockreassurance_product {
  margin-bottom: 30px;
  display: none; }
  .blockreassurance_product .item-product {
    margin-right: 15px; }
  .blockreassurance_product .block-title {
    font-weight: 500;
    font-size: 15px; }

.product-prices div {
  margin: 0; }

.product-discounts {
  margin: 0; }

.product-quantity {
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 480px; }
  .product-quantity .qty {
    margin-right: 10px; }
  .product-quantity .add {
    flex: 1;
    margin-right: 10px; }

.product-quantity #quantity_wanted {
  height: 48px;
  width: 60px;
  border: 1px solid #e5e5e5; }

.product-quantity .btn-touchspin {
  height: 25px;
  border: 1px solid #e5e5e5; }

.product-actions .product-add-to-cart {
  line-height: 1;
  padding-top: 15px; }
  .product-actions .product-add-to-cart .control-label {
    display: none; }

.product-actions .add-to-cart {
  position: relative;
  line-height: 1.5;
  height: 48px;
  font-weight: 700;
  box-shadow: none;
  text-transform: capitalize;
  border-radius: 30px;
  min-width: 180px;
  color: #ffffff; }
  .product-actions .add-to-cart:hover {
    background: #184d47; }
  .product-actions .add-to-cart i {
    display: none; }

.quickview .social-sharing {
  margin-top: 10px; }

.social-sharing {
  margin-top: 10px;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap; }
  .social-sharing > span {
    display: inline-block;
    margin-right: 10px;
    line-height: 30px;
    font-weight: 600;
    color: #1c1e22;
    font-size: 14px;
    text-transform: capitalize; }
  .social-sharing ul {
    font-size: 0;
    margin: 0; }

.product-additional-info {
  padding-top: 20px;
  border-top: 1px solid #e5e5e5; }

.social-sharing li {
  box-shadow: none;
  height: auto;
  width: auto;
  border-radius: 0;
  margin: 0;
  display: inline-block;
  background: transparent !important;
  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:before {
    display: none; }
  .social-sharing li:first-child {
    margin: 0; }
  .social-sharing li a {
    display: inline-block;
    line-height: 30px;
    height: 30px;
    text-align: center;
    color: #1c1e22;
    margin-right: 20px;
    white-space: normal;
    text-indent: 0;
    overflow: hidden;
    font-size: 0;
    padding: 0; }
    @media (max-width: 479px) {
      .social-sharing li a {
        margin-right: 10px; } }
    .social-sharing li a:before {
      font-family: "roadthemes-icon";
      font-size: 16px;
      display: inline-block;
      background: transparent; }
  .social-sharing li.facebook a:before {
    content: "\e93c"; }
  .social-sharing li.twitter a:before {
    content: "\e932"; }
  .social-sharing li.googleplus a:before {
    content: "\e93d"; }
  .social-sharing li.pinterest a:before {
    content: "\e93e"; }

.tabs {
  margin-top: 30px;
  box-shadow: none;
  display: inline-block;
  width: 100%;
  padding: 0;
  position: relative;
  background: #ffffff;
  /*text-align: center;*/
  position: relative;
  margin-bottom: 60px; }
  @media (max-width: 1199px) {
    .tabs {
      margin-bottom: 60px; } }
  @media (max-width: 767px) {
    .tabs {
      margin-bottom: 30px; } }
  .tabs .nav-tabs {
    border-bottom: none;
    position: relative;
    display: block;
    margin: 0 0 40px 0;
    /*border-bottom: 1px solid #e5e5e5; */}
    .tabs .nav-tabs .nav-item {
      position: relative;
      display: inline-block;
      float: none; }
      .tabs .nav-tabs .nav-item .nav-link {
        background: #F3F7F8;
        border: 0;
        border-radius: 50px;
        /*text-transform: uppercase;*/
        padding: 10px 20px;
        margin: 0 10px;
        font-size: 15px;
        font-weight: 500;
        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;
        color: #1c1e22; }
        .tabs .nav-tabs .nav-item .nav-link:after {
          content: "";
          height: 2px;
          position: absolute;
          left: 0;
          right: 0;
          bottom: 0px;
          background: transparent !important;
          -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 {
          background-color: #26BAD9;
          color: #FFF;
          -webkit-transition: all 300ms linear;
          -moz-transition: all 300ms linear;
          -ms-transition: all 300ms linear;
          -o-transition: all 300ms linear;
          transition: all 300ms linear; }
        a:hover .tabs .nav-tabs .nav-item .nav-link:hover, .tabs .nav-tabs .nav-item .nav-link.active{
          color: #FFF;
        }

        .tabs .nav-tabs .nav-item .nav-link:nth-child(1){ 
          margin-left: 0;
        }
      @media (max-width: 639px) {
        .tabs .nav-tabs .nav-item {
          width: 100%; }
          .tabs .nav-tabs .nav-item:not(:last-child) {
            margin-bottom: 10px; }
          .tabs .nav-tabs .nav-item .nav-link {
            margin: 0; } }

      /*.tabs .tab-content {
        overflow: hidden;
        text-align: left;
      }*/

      .inner_desc .manufacturer, .inner_desc .hook-reviews{
        display: none;
      }

.tabs-left {
  text-align: left; }
  @media (min-width: 640px) {
    .tabs-left .nav-tabs {
      float: left;
      width: 250px; } }
  .tabs-left .nav-tabs .nav-item {
    display: block;
    margin-bottom: 15px; }
    .tabs-left .nav-tabs .nav-item .nav-link {
      padding: 10px 20px;
      margin: 0;
      border: 1px solid #e5e5e5; }
  .tabs-left .tab-content {
    padding: 0 30px; }

.product-manufacturer {
  margin-bottom: 30px; }

.quickview .modal-header {
  position: absolute;
  right: 0;
  top: 0; }

.quickview .images-quickviews {
  margin-bottom: 20px; }

.quickview .product-cover:before {
  display: none; }

.cart_button {
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  /*margin-top: 15px;*/ }
  .cart_button #wishlist_button, .cart_button .compare-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    color: #535456;
    background: transparent;
    margin-right: 30px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    border: none; }
    .cart_button #wishlist_button.cmp_added, .cart_button .compare-button.cmp_added {
      cursor: not-allowed; }
    .cart_button #wishlist_button i, .cart_button .compare-button i {
      font-size: 16px;
      margin-right: 5px; }

.quickview #product_comments_block_extra .comments_advices {
  display: none; }

.desc_contact {
  text-align: center;
  margin-bottom: 60px; }

@media (max-width: 767px) {
  #category #left-column #search_filters .facet {
    padding: 0 10px; }

  #category.layout-left-column .row-wrapper {
    flex-wrap: wrap;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column-reverse; } }
.brand {
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center; }
  .brand:not(:last-child) {
    margin-bottom: 20px; }
  .brand > div:not(:last-child) {
    margin-right: 30px; }
  .brand > div a {
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 600; }
    .brand > div a:not(:last-child) {
      margin-right: 30px; }

/* end detail */
.back-top {
  display: block;
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 10; }

@media (min-width: 1920px) {
  .back-top {
    right: 50px;
    bottom: 50px; } }
.back-top a {
  color: #ffffff;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  text-decoration: none;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out; }

.back-top a:hover {
  background: #1c1e22;
  color: #ffffff;
  box-shadow: 0 0 20px #ffffff; }

.back-top a:after {
  content: "\e92e";
  font-family: "roadthemes-icon";
  font-size: 18px; }

.cate_mobile .dropdown-backdrop {
  display: none; }

.cate_mobile .dropdown-menu {
  min-width: 200px; }

.cms-block, .cms-box {
  margin-bottom: 30px; }

@media (max-width: 767px) {
  #category #left-column #search_filters .facet .h6 {
    width: auto; }

  #category #left-column #search_filters .facet {
    border-bottom: 1px solid #eee; }

  #search_filters .ui-slider-horizontal {
    margin-bottom: 10px; } }
#main .page-footer {
  margin: 0; }

.contact-form h3, .contact-rich h4 {
  font-size: 28px;
  text-transform: capitalize; }

.alert {
  margin-top: 20px;
  width: 100%; }

/* custom page */
/* custom page */
.card {
  box-shadow: none;
  border: none;
  padding: 0; }
  .card .card-block {
    margin-bottom: 30px; }
  .card.page-content {
    margin-bottom: 60px; }
    @media (max-width: 1199px) {
      .card.page-content {
        margin-bottom: 60px; } }
    @media (max-width: 767px) {
      .card.page-content {
        margin-bottom: 30px; } }

.page-header h1, .card-block h1 {
  color: #1c1e22;
  font-size: 40px;
  line-height: 1;
  font-style: normal;
  text-transform: none;
  font-weight: 700;
  margin: 0; }
  @media (max-width: 767px) {
    .page-header h1, .card-block h1 {
      font-size: 5.2151238592vw; } }

@media (max-width: 479px) {
  .page-footer .account-link:not(:last-child) {
    margin-bottom: 15px; } }
.page-content.page-cms {
  padding: 0; }

.contact-form {
  color: #1c1e22;
  padding: 0; }

.form-control {
  background-color: #f5f5f5;
  color: #1c1e22;
  border: none;
  padding: 8px 15px;
  border: 1px solid #e5e5e5;
  border-radius: 10px; }

.form-control:focus {
  color: #1c1e22;
  border: 1px solid #bbbbbb;
  background-color: #f5f5f5; }

.form-control:focus, .input-group.focus {
  outline: 0; }

.form-control-label {
  text-align: left;
  color: #1c1e22; }

.forgotten-password .form-fields .center-email-fields button {
  padding: 0 20px; }

.input-group .input-group-btn > .btn {
  padding: 12.5px 20px; }

.sitemap h2 {
  color: #1c1e22;
  text-transform: capitalize;
  font-weight: 600;
  border-bottom: 1px solid #e5e5e5; }

.sitemap ul li:before {
  font-family: "roadthemes-icon";
  content: "\e92d";
  display: inline-block;
  margin-right: 5px;
  font-size: 9px;
  font-weight: 900;
  vertical-align: 2px; }

.bootstrap-touchspin .group-span-filestyle .btn-touchspin,
.group-span-filestyle .bootstrap-touchspin .btn-touchspin,
.group-span-filestyle .btn-default {
  background: #1c1e22; }

#stores .page-stores {
  width: 100%; }

#stores .page-stores .store-item {
  padding: 0; }

#stores .page-stores .store-item {
  border-bottom: 1px solid #e5e5e5; }
  #stores .page-stores .store-item:last-child {
    border-bottom: none; }
  #stores .page-stores .store-item .h3.card-title {
    color: #1c1e22;
    text-transform: capitalize; }

#stores .page-stores .store-item-container .store-description {
  color: #666; }

#stores .page-stores .store-item-container ul {
  margin-bottom: 0; }

#stores .page-stores .store-item-container .divide-left {
  color: #1c1e22; }
  #stores .page-stores .store-item-container .divide-left th {
    font-weight: 500; }

.page-addresses .address, .page-authentication #content {
  box-shadow: none;
  background: #ffffff;
  border: 1px solid #e5e5e5; }

.page-authentication #content {
  max-width: 100%; }

.page-customer-account #content {
  box-shadow: none;
  color: #1c1e22;
  padding: 30px;
  max-width: 800px;
  margin: auto; }

.form-footer {
  text-align: center; }
  .form-footer button {
    margin-top: 20px; }
    .form-footer button.float-xs-right {
      float: none !important; }

.page-order-detail .box {
  box-shadow: none;
  padding: 20px 30px;
  margin-bottom: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 10px; }

.page-customer-account #content .no-account {
  text-align: center; }

.custom-checkbox input[type=checkbox] + span {
  margin-top: 0; }

.label, label {
  color: #1c1e22; }

.page-my-account #content .links a span.link-item {
  box-shadow: none;
  border: 1px solid #e5e5e5; }

.separator {
  border-top: 1px solid #e5e5e5; }

.cart-grid-body {
  margin-bottom: 30px; }
  .cart-grid-body .cart-overview {
    padding: 0; }
  .cart-grid-body .card.cart-container {
    margin-bottom: 30px; }
  .cart-grid-body .has-discount .discount {
    display: none; }

@media (max-width: 767px) {
  .item-line-grid {
    flex-wrap: wrap;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center; } }
.cart-items-title {
  background: #e8e8e8;
  padding: 15px 20px;
  line-height: 20px;
  border-bottom: 1px solid #cccccc;
  color: #1c1e22;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px; }

.cart-summary, #js-checkout-summary {
  border: none;
  background: #f5f5f5;
  margin-bottom: 30px; }
  .cart-summary .card-block, #js-checkout-summary .card-block {
    margin: 0; }
  .cart-summary .cart-summary-line, #js-checkout-summary .cart-summary-line {
    line-height: 1.8; }
    .cart-summary .cart-summary-line .label, #js-checkout-summary .cart-summary-line .label {
      font-weight: 400; }
    .cart-summary .cart-summary-line.cart-total, #js-checkout-summary .cart-summary-line.cart-total {
      font-size: 20px; }

.separator {
  border-top: 1px solid #dddddd; }

.block-promo .cart-voucher h5 {
  padding: 10px 0px;
  /*border-bottom: 1px solid #cccccc;*/
  margin: 0; }
  .block-promo .promo-code form {
    flex-wrap: wrap;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center; }
    .block-promo .promo-code form .promo-input {
      border: 2px solid #1c1e22;
      width: auto;
      height: 44px;
      flex: 1;
      margin-right: 10px; }
    .block-promo .promo-code form .promo-input + button {
      margin: 0;
      background: #1c1e22;
      color: #ffffff; }
    .block-promo .promo-code form > * {
      margin: 5px 0; }
.block-promo .promo-name {
  margin: 0;
  color: #ff5c27;
  font-weight: 500;
  font-size: 20px;
  padding: 15px 20px; }
  .block-promo .promo-name .label {
    color: #1c1e22;
    font-weight: 400;
    font-size: 16px; }
  .block-promo .promo-name i {
    vertical-align: middle; }

.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; }

.product-line-info a.product_name {
  line-height: 20px;
  display: block;
  overflow: hidden;
  margin-bottom: 13px;
  color: #1c1e22; }

.product-line-info .regular-price {
  margin: 0 5px; }

.cart-summary-line .value {
  color: #1c1e22;
  font-weight: 600; }

.cart-summary-products p {
  font-weight: 600; }

.cart-grid {
  margin-bottom: 50px; }

.cart-grid-body .card-block {
  padding: 0; }

.cart-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 25px 0; }

body#checkout section.checkout-step {
  box-shadow: none;
  border: none;
  margin-bottom: 20px;
  padding: 0; }
  body#checkout section.checkout-step .tab-content {
    padding: 10px 0;
    border: none; }
  body#checkout section.checkout-step .content {
    padding: 10px 20px; }

body#checkout section.checkout-step .step-title {
  text-transform: capitalize;
  padding: 15px;
  font-size: 18px;
  border-bottom: 1px solid #cccccc;
  margin: 0 0 20px 0; }
  body#checkout section.checkout-step .step-title .step-number {
    padding: 0 10px;
    line-height: 20px; }
  body#checkout section.checkout-step .step-title i {
    font-size: 20px; }

#content-hook_order_confirmation .card-title {
  text-transform: capitalize;
  padding: 15px;
  font-size: 18px;
  border-bottom: 1px solid #cccccc;
  margin: 0 0 20px 0; }

.form-control-comment {
  font-size: 13px; }

body#checkout .custom-checkbox span {
  margin-top: 0; }

body#checkout section.checkout-step .address-item.selected {
  border: 1px solid #e5e5e5;
  padding-bottom: 20px; }
  body#checkout section.checkout-step .address-item.selected hr {
    display: none; }

body#checkout section.checkout-step .address-header {
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e8e8e8;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 20px; }
  body#checkout section.checkout-step .address-header .radio-block {
    margin: 0; }
  body#checkout section.checkout-step .address-header .address-footer i {
    display: none; }
  body#checkout section.checkout-step .address-header .add-address a {
    text-decoration: underline; }

body#addresses .address-body {
  width: 70%; }
body#addresses .address-footer {
  width: 30%;
  align-content: end;
 }
body#addresses .address-body address {
    margin: 0; }
body#addresses .address-header {
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e8e8e8;
  border-bottom: 1px solid #dddddd;
  padding: 15px 20px; }
  body#addresses .address-header h4 {
    margin: 0; }
  body#addresses .address-header .address-footer {
    padding: 0; }
    body#addresses .address-header .address-footer i {
      display: none; }
body#addresses .addresses-footer a {
  text-decoration: underline; }
  body#addresses .addresses-footer a span {
    vertical-align: inherit; }

body#checkout section.checkout-step .step-edit .edit {
  vertical-align: -2px; }

body#checkout section.checkout-step.-reachable.-complete h1 .step-number {
  display: inline-block; }

@media (max-width: 767px) {
  body#checkout section.checkout-step.-reachable.-complete h1 .step-edit {
    display: none; } }
.text-muted {
  color: #1c1e22 !important; }

body#checkout section.checkout-step .address-alias {
  vertical-align: -2px;
  margin-left: 5px;
  margin-bottom: 0; }

.custom-radio input[type="radio"]:checked + span {
  background-color: #1c1e22; }

body#checkout section.checkout-step .address {
  line-height: 1.8;
  font-size: 16px; }

body#checkout section.checkout-step.-reachable.-complete h1 .done {
  padding: 0 10px;
  margin-left: 10px;
  font-size: 29px;
  margin-top: -13px;
  line-height: 35px; }

.checkout-inner {
  border: 1px solid #e5e5e5; }

.page-addresses .address .address-footer {
  border-top: 1px solid #e5e5e5; }

.bootstrap-touchspin {
  display: inline-flex; }

body#checkout section.checkout-step .payment-options .payment-option {
  min-height: 80px;
  border-radius: 5px;
  border: 1px solid var(--Neutral-600, #DDE1E2);
  background: var(--Neutral-50, #FEFEFE);
  padding: 5px 10px;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center; }

body#checkout section.checkout-step .payment-options label {
  margin-bottom: 0; }

#conditions-to-approve ul li {
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: nowrap; }

#exportDataToCsv, #exportDataToPdf {
  margin-bottom: 10px;
  margin-top: 10px; }

.payment-detail {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 60px; }
  .payment-detail p {
    margin: 10px 0 0 0; }

    .zoom-img {
      transition: transform 0.5s ease;
    }
    
    .zoom-img:hover {
      transform: scale(1.08);
      z-index: 1;
    }

    #index .tabs {padding:0px}
    #index #home-page-tabs {margin-bottom: 50px; padding:10px 0px 0px 0px;}
    .mySwiper {
      width: 100%;
      padding-bottom: 50px;
      margin-bottom: 50px;
    }
    .swiper-wrapper{
      margin-bottom: 3rem;
    }
    .mySwiper .swiper-slide {
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .swiper-button-prev {
      color: #333;
      background: #f4f4f4;
      border-radius: 50%;
      width: 40px; 
      height: 40px;
      top: 95%;
      transform: translateY(-50%);
    }
    .swiper-button-next {
      color: #f4f4f4;
      background: #333;
      border-radius: 50%;
      width: 40px; 
      height: 40px;
      top: 95%;
      transform: translateY(-50%);
    }
    /*.swiper-pagination-bullet {
      background: #ccc;
      opacity: 0.7;
    }*/
    .swiper-button-prev{
      right: 12.5vw;
      left: auto;
      --swiper-navigation-size: 20px;
    }
    .swiper-button-next{
      right: 8.5vw;
      left: auto;
      --swiper-navigation-size: 20px;
    }

    .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal{
      bottom: 0px;
    }

    /* Todos los bullets ocupan el mismo espacio */
    .swiper-pagination-bullet {
      width: 20px;
      height: 20px;
      background-color: transparent;
      border-radius: 50%;
      margin: 0 6px;
      position: relative;
      display: inline-block;
    }

    /* Círculo gris dentro del bullet inactivo */
    .swiper-pagination-bullet::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 10px;
      height: 10px;
      background-color: #a1a1a1; /* gris claro */
      border-radius: 50%;
      transform: translate(-50%, -50%);
    }

    /* Bullet activo: donut */
    .swiper-pagination-bullet-active {
      border: 2px solid #0f0f0f;
    }

    .swiper-pagination-bullet-active::after {
      background-color: #0f0f0f; /* núcleo negro */
    }

    @media (max-width: 992px) { 
    .mySwiper .swiper-button-next,
    .mySwiper .swiper-button-prev {
        display: none !important;
    }
    }

    .product-price-and-shipping .price.price-sale{
      color: #FF4D4F;
    }



    /* En tu archivo CSS */
    .pos-special-products-grouped-by-category{
        display: inline-flex;
        gap: 25px;
    }

    .pos-special-products-grouped-by-category .category_special_block {
        background-color: #ffffff;
        border: 1px solid #e0e0e0; 
        border-radius: 8px; 
        padding: 20px;
        margin-bottom: 30px;
        /*box-shadow: 0 2px 8px rgba(0,0,0,0.08); */
        text-align: center; 
        width: 33%;
    }

    .pos-special-products-grouped-by-category .category_block_title {
        font-size: 1.6em; /* Tamaño del título de categoría */
        margin-top: 0;
        margin-bottom: 20px;
    }
    .pos-special-products-grouped-by-category .category_block_title a {
        text-decoration: none;
        color: #333333; /* Color del título de categoría */
    }
    .pos-special-products-grouped-by-category .category_block_title a:hover {
        color: {$accent_color}; /* Reemplaza {$accent_color} con el color de acento de tu tema */
    }


    .pos-special-products-grouped-by-category .product_list_by_category {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; /* Centra los productos si no llenan todo el espacio */
        gap: 20px; /* Espacio entre los contenedores de productos */
    }

    .pos-special-products-grouped-by-category .product_item_container {
        /* Para 2 productos por fila, como en imagen1 */
        width: calc(50% - 10px); /* (100% / 2 ) - (gap / 2) */
        /* Si quieres un máximo, por ejemplo, para que no se estiren demasiado en contenedores anchos */
        /* max-width: 280px; */
    }

    /* Ajustes para pantallas más pequeñas (ej. móviles) */
    @media (max-width: 767px) {
        .pos-special-products-grouped-by-category .product_item_container {
            width: calc(100% - 10px); /* Un producto por fila */
            max-width: 320px; /* O un ancho máximo que te guste para móviles */
            margin-left: auto;
            margin-right: auto;
        }
    }

    /* Si la miniatura de producto (.product-miniature) no se centra por sí misma */
    .pos-special-products-grouped-by-category .product-miniature {
        margin-left: auto;
        margin-right: auto;
    }

    /* Estilos para el contenedor de enlaces/botones del producto */
    .pos-special-products-grouped-by-category .product_item_container .add-to-links {
        list-style: none;
        padding: 0;
        margin-top: 10px; /* Espacio sobre los botones */
        display: flex;
        justify-content: center; /* Centra los botones si son menos que el ancho */
        gap: 10px; /* Espacio entre botones si hay más (como comparar) */
    }

    /* Estilo específico para el botón de añadir al carrito */
    .pos-special-products-grouped-by-category .product_item_container .add-to-links .cart .btn { /* Asumiendo que tu botón tiene la clase .btn */
        background-color: #28a745; /* Un color verde, ajusta al de imagen1 o tu tema */
        color: white;
        border-radius: 50%; /* Para hacerlo circular */
        width: 40px;       /* Ancho fijo para el círculo */
        height: 40px;      /* Alto fijo para el círculo */
        padding: 0;        /* Quita padding si interfiere con el tamaño */
        display: inline-flex; /* Para centrar el icono dentro */
        align-items: center;
        justify-content: center;
        border: none;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        transition: background-color 0.2s ease;
    }

    .pos-special-products-grouped-by-category .product_item_container .add-to-links .cart .btn:hover {
        background-color: #218838; /* Un verde más oscuro al pasar el ratón */
    }

    /* Si tu botón de carrito usa un <i> o <span> para el icono de carrito de FontAwesome o similar */
    .pos-special-products-grouped-by-category .product_item_container .add-to-links .cart .btn i.material-icons,
    .pos-special-products-grouped-by-category .product_item_container .add-to-links .cart .btn [class*="icon-shopping-cart"] { /* Ajusta la clase del icono */
        font-size: 20px; /* Tamaño del icono */
        margin: 0; /* Asegura que el icono se centre bien */
    }

    .pos-special-products-grouped-by-category .product_countdown_container {
    margin-top: 8px;    /* Espacio sobre el countdown */
    margin-bottom: 8px; /* Espacio debajo del countdown */
    color: #dc3545;     /* Color rojo para el texto */
    font-size: 0.9em;
    display: flex;      /* Para alinear el icono (si lo añades) y el texto */
    align-items: center;
    justify-content: center; /* Centra el countdown */
    }

    /* Si añades un icono (ej. Material Icons o Font Awesome) */
    .pos-special-products-grouped-by-category .product_countdown_container i {
        margin-right: 5px; /* Espacio entre el icono y el texto */
        font-size: 1.1em;  /* Ajusta el tamaño del icono si es necesario */
    }

    /* Ajustar padding dentro de la tarjeta de producto si es necesario */
      .pos-special-products-grouped-by-category .product_item_container .product-miniature .product_desc .inner_desc {
          padding: 5px 10px 10px 10px; /* Arriba, Derecha, Abajo, Izquierda */
      }

      /* Espacio debajo del nombre del producto */
      .pos-special-products-grouped-by-category .product_item_container .product_name {
          margin-bottom: 8px;
          min-height: 3em; /* Para intentar alinear nombres de producto de varias líneas */
      }

      /* Espacio debajo de la descripción corta (si es visible y antes del countdown) */
      .pos-special-products-grouped-by-category .product_item_container .product-desc {
          margin-bottom: 8px;
          min-height: 2.5em; /* Ajusta según necesidad */
      }

      /* Ajustar el bloque de precios */
      .pos-special-products-grouped-by-category .product_item_container .product-price-and-shipping {
          margin-top: 5px; /* Espacio sobre los precios (si el countdown está antes) */
          margin-bottom: 10px; /* Espacio debajo de los precios */
      }

      .category_offer_indicator {
          padding: 6px 12px;
          border-radius: 25px;
          font-weight: 500; /* Un poco menos bold que el título de categoría */
          font-size: 16px;
          margin-bottom: 15px; /* Espacio antes del título de la categoría */
          display: inline-block; /* Para que no ocupe todo el ancho si el texto es corto */
          border: 1px solid transparent; /* Borde base */
          line-height: 1.5;
      }

      .category_offer_indicator .category-offer-icon {
          font-size: 1.2em; /* Ajusta el tamaño del icono */
          vertical-align: text-bottom; /* O 'middle', prueba qué se ve mejor */
          margin-right: 4px;
      }

      /* Estilo para el countdown "Acaba en" (rojo como en imagen4) */
      .offer_type_countdown {
          background-color: #FFEDED;
          color: #0A0B0B;
      }
      .offer_type_countdown .category_countdown_timer {
          margin-left: 5px; 
          font-weight: 600;
      }

      /* Estilo para "Solo hoy" (amarillo como en imagen1) */
      .offer_type_today_only {
          background-color: #FEF7D9; /* Fondo amarillo claro */
          color: #0A0B0B;
      }

      /* Contenedor principal de la sección "Social" */
        .product-social-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            justify-content: right;
            width: 100%;
            margin: 15px 0;
            font-family: 'Instrument Sans', sans-serif; /* Asegúrate que esta fuente esté cargada */
        }

        /* Sección Izquierda: Precios y Descuento */
        .product-social-pricing {
            display: flex;
            align-items: center;
            gap: 10px; /* Espacio entre el bloque de precios y el badge de descuento */
        }

        /* Bloque de precios (regular y actual) */
        .product-social-pricing .price-block {
            display: flex; /* Para poner precio regular y actual en línea si es necesario, o uno encima de otro */
            align-items: baseline; /* Alinea las bases de los precios */
            gap: 8px; /* Espacio entre precio regular y actual si están en línea */
        }

        .product-social-pricing .price-block .regular-price {
            color: #5B6565;
            font-size: 16px;
            font-weight: 400;
            text-decoration: line-through;
            line-height: 1; /* Ajusta para alineación vertical */
        }

        .product-social-pricing .price-block .current-price {
            color: #0A0B0B;
            font-size: 26px;
            font-weight: 600;
            word-wrap: break-word;
            line-height: 1; /* Ajusta para alineación vertical */
        }

        /* Badge de Descuento */
        .product-social-pricing .discount-badge-social {
            padding: 5px 7px;
            background: #FF4D4F; /* Rojo */
            color: #FEFEFE;     /* Blanco */
            font-size: 12px;
            font-family: 'Instrument Sans', sans-serif;
            font-weight: 500;
            border-top-left-radius: 10px;
            border-bottom-right-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            line-height: 1;
        }

        /* Sección Derecha: Botones */
        .product-social-buttons {
            display: flex;
            align-items: center;
            gap: 8px; /* Espacio entre el botón de wishlist y el de compartir */
        }

        /* Estilo para el botón de Wishlist (del hook displayAfterButtonCart) */
        /* Necesitarás inspeccionar el HTML de tu botón de PosWishlist para obtener las clases exactas */
        .product-social-buttons .wishlist-action-wrapper .poswishlist_button, /* Ejemplo */
        .product-social-buttons .wishlist-action-wrapper .wishlistproduct { /* Otra clase común para el wrapper del botón de wishlist */
            height: 35px;
            padding: 0 16px;
            background: #F3F7F8;
            border-radius: 22.50px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            /* Importante: Quita márgenes que pueda tener por defecto para que 'gap' funcione bien */
            margin: 0 !important; 
        }
        /* Ajusta el selector si el texto está dentro de un span o directamente */
        .product-social-buttons .wishlist-action-wrapper .poswishlist_button span,
        .product-social-buttons .wishlist-action-wrapper .wishlistproduct a, /* Si el texto está en un <a> dentro */
        .product-social-buttons .wishlist-action-wrapper .wishlistproduct button {
            color: #0A0B0B !important; /* Sobreescribe el color si es necesario */
            font-size: 13px !important; /* Sobreescribe si es necesario */
            font-family: 'Instrument Sans', sans-serif !important;
            font-weight: 500 !important;
            line-height: normal !important; /* O ajusta para el centrado vertical */
            text-decoration: none !important;
        }
        /* Icono de Wishlist (si PosWishlist usa un <i> o similar) */
        .product-social-buttons .wishlist-action-wrapper .poswishlist_button i,
        .product-social-buttons .wishlist-action-wrapper .wishlistproduct i {
            /* Aquí puedes intentar estilizar el icono existente si es un icono de fuente */
            /* Si es un SVG o una imagen de fondo, necesitarás inspeccionarlo y ser más específico */
            /* Para replicar el div con borde de tu HTML: esto es complejo con CSS sobre un icono existente.
              Lo más fácil sería que PosWishlist use un icono de fuente y lo estilizas, o reemplazarlo.
              Por ahora, nos centramos en el contenedor.
            */
            width: 15px;
            height: 15px;
            /* Si es un icono de fuente, ajusta font-size */
        }


        /* Ocultar el botón de Comparar (PosCompare) que está en el mismo hook */
        /* Necesitas encontrar la clase o ID raíz del botón de PosCompare. Ejemplo: */
        .product-social-buttons .wishlist-action-wrapper .poscompare-add, /* Si comparte el wrapper */
        .product-social-buttons .wishlist-action-wrapper #poscompare-addto-compare { /* Otro ejemplo */
            display: none !important;
        }


        /* Estilo para el nuevo botón de Compartir */
        .product-social-buttons .share-button {
            width: 40px;
            height: 40px;
            padding: 0;
            background: #F3F7F8;
            border-radius: 22.50px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            border: none;
            cursor: pointer;
        }
        .product-social-buttons .share-button-icon {
            font-size: 15px;
            color: #0A0B0B;
            line-height: 1;
            font-family: 'Anuphan';
            font-size: 13px;
            font-weight: 600; 
        }

        .share-button.copied {
            background-color: #28a745 !important; /* Un verde de éxito */
            color: white !important;
            border-color: #28a745 !important;
            transition: background-color 0.3s ease;
        }

        /* product-variants-social.tpl styles */
        .product-variants-social {
            display: flex;
            flex-direction: column;
            gap: 15px; /* Espacio entre grupos de atributos si los divisores no son suficientes */
            margin: 15px 0; /* Espacio general para la sección de variantes */
        }

        .social-variant-divider {
            width: 100%; /* align-self: stretch; */
            height: 0px;
            border: none;
            border-top: 0.75px solid #B1BDC0; /* outline: 0.75px #B1BDC0 solid; */
            margin: 15px 0; /* Espacio alrededor del divisor */
        }

        .product-variant-group {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 15px; /* Espacio entre la etiqueta del grupo y la lista de opciones */
        }

        .variant-group-label {
            display: inline-flex; /* Para que label y value estén en línea */
            align-items: center;
            gap: 8px;
            width: 100%; /* align-self: stretch; */
            font-family: 'Anuphan', sans-serif; /* Asegúrate que esta fuente esté cargada */
        }
        .variant-group-label .label {
            color: #5B6565;
            font-size: 15px;
            font-weight: 500;
            line-height: 20px;
        }
        .variant-group-label .value {
            color: #0A0B0B;
            font-size: 15px;
            font-weight: 600;
            line-height: 20px;
        }

        .variant-options-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex; /* Para poner las opciones en línea */
            flex-wrap: wrap; /* Para que pasen a la siguiente línea si no caben */
            gap: 8px; /* Espacio entre opciones */
            width: 100%; /* align-self: stretch; */
        }

        .variant-option-item {
            /* Ocultar el input real, la interacción será con el display personalizado */
        }
        .variant-option-item input[type="radio"],
        .variant-option-item input[type="checkbox"] { /* Para el tipo color si es checkbox */
            display: none;
            /*margin: 10px;*/
        }

        /* Contenedor visual de cada opción */
        .variant-option-item .variant-option-display {
            /* flex: 1 1 0; No usar flex: 1 aquí si quieres que cada item tenga su propio ancho */
            /* width: auto; o un min-width */
            padding: 5px;
            background: #F3F7F8;
            border-radius: 5px;
            display: flex; /* inline-flex en tu HTML */
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            border: 1px solid transparent; /* Borde base */
            min-width: 70px; /* Un ancho mínimo para que se vea bien */
            height: auto; /* Altura fija como en tu ejemplo de "Más opciones" */
            box-sizing: border-box;
        }

        /* Imagen o swatch dentro de la opción */
        .variant-option-item .variant-color-swatch,
        .variant-option-item .variant-option-image,
        .variant-option-item .variant-option-image-placeholder {
            width: 60px;
            height: 60px;
            border-radius: 2px;
            background-size: cover; /* O 'contain' */
            background-position: center;
            background-repeat: no-repeat;
            display: block; /* Para que la imagen se comporte como bloque */
        }
        .variant-option-item .variant-color-swatch img.variant-option-image-placeholder,
        .variant-option-item .variant-option-image {
            background-color: #FEFEFE; /* Fondo para la imagen real si es más pequeña que el contenedor */
        }


        /* Texto debajo de la imagen/swatch */
        .variant-option-item .variant-option-label {
            text-align: center;
            color: #0A0B0B;
            font-size: 13px;
            font-family: 'Instrument Sans', sans-serif; /* Asegúrate que esta fuente esté cargada */
            font-weight: 400;
            line-height: 1.1em; /* Ajustado para dos líneas como "Más opciones" */
            word-wrap: break-word;
            max-width: 60px; /* Para que no se desborde mucho */
        }

        /* Estilo para opción seleccionada */
        .variant-option-item.selected .variant-option-display,
        .variant-option-item input:checked + .variant-option-display { /* Si el input está antes del display */
            outline: 1px solid #5B6565; /* Tu HTML tenía outline y background #F3F7F8 */
            /* background: #e0e0e0; /* O un color de fondo diferente para el seleccionado */
        }
        .variant-option-item.selected .variant-option-label,
        .variant-option-item input:checked + .variant-option-display .variant-option-label {
            font-weight: 500;
        }

        /* Estilo para opción agotada */
        .variant-option-item.out-of-stock .variant-option-display {
            opacity: 0.5; /* Tu HTML tenía 0.30 */
            outline: 1px solid #B1BDC0;
            cursor: not-allowed;
        }
        .variant-option-item.out-of-stock .variant-option-label {
            color: #5B6565;
        }

        /* Botón "Más opciones" */
        .variant-option-item.more-options-button .variant-option-display {
            /* background: #F3F7F8; ya heredado */
        }
        .variant-option-item.more-options-button .more-options-icon {
            width: 20px; /* Ajusta el tamaño del icono */
            height: 20px;
            padding: 6px; /* Tu HTML tenía esto para el contenedor del icono */
            background: white; /* Color de fondo del icono */
            border-radius: 50px; /* Para hacerlo circular */
            /* Aquí necesitarías un SVG o un icono de fuente para el "+" o "..." */
            /* Ejemplo con un simple "+": */
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: bold;
            color: #0A0B0B;
        }
        .variant-option-item.more-options-button .more-options-icon:before {
            content: "+"; /* Placeholder */
        }
        .variant-option-item.more-options-button .variant-option-label {
            color: #0A0B0B;
            font-weight: 500;
            line-height: 14.30px; /* Específico de tu HTML */
        }
      
        .variant-option-item .variant-color-swatch {
            width: 60px;  /* O el tamaño que desees para el swatch */
            height: 60px;
            border-radius: 2px; /* O 50% para hacerlo circular */
            display: inline-block; /* o block */
            border: 1px solid #ccc; /* Borde para que se vea si el color es blanco */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* product-actions-social-box.css */
          .product-actions-social-box {
              background: #FEFEFE;
              border-radius: 10px;
              box-shadow: 0px 0px 20px rgba(81.40, 81.40, 81.40, 0.10);
              padding: 20px;
              display: flex;
              flex-direction: column;
              gap: 20px; /* Era 25px y 15px en tu HTML, unifico a 20px, ajusta si es necesario */
              font-family: 'Instrument Sans', sans-serif; /* Asegúrate que esta fuente y Anuphan estén cargadas */
          }

          .social-box-top-section {
              display: flex;
              flex-direction: column;
              gap: 18px; /* Era 19px y 18px, unifico */
          }

          .price-and-discount-row {
              display: inline-flex; /* O flex */
              align-items: center;
              gap: 10px;
              padding: 10px 0; /* Tu HTML tenía padding-top/bottom */
          }
          .price-and-discount-row .price-block {
              display: flex;
              align-items: baseline;
              gap: 8px;
          }
          .price-and-discount-row .regular-price {
              color: #5B6565; font-size: 16px; font-weight: 400; text-decoration: line-through;
          }
          .price-and-discount-row .current-price {
              color: #0A0B0B; font-size: 24px; font-weight: 600;
          }
          .price-and-discount-row .discount-badge-social {
              padding: 5px 7px; background: #FF4D4F; color: #FEFEFE; font-size: 12px;
              font-weight: 500; border-top-left-radius: 10px; border-bottom-right-radius: 10px;
          }

          .social-divider {
              height: 0px; border: none; border-top: 1px solid #DDE1E2;
              width: 100%;
              margin-top: 0px;
          }

          .quantity-and-shipping-info {
              display: flex;
              flex-direction: column;
              gap: 10px; /* Era 18px, luego 10px interno */
          }
          .quantity-selector-row, .shipping-destination-row {
              display: inline-flex; /* O flex */
              justify-content: space-between;
              align-items: center;
              width: 100%; /* align-self: stretch */
          }
          .quantity-selector-row .control-label, .shipping-destination-row .label {
              color: #5B6565; font-size: 14px; font-weight: 400;
          }
          /* Estilos para el product-quantity de PrestaShop (botones + input) para que se parezca a tu HTML */
          .quantity-selector-row .product-quantity .qty {
              display: flex;
              border-radius: 3px;
              overflow: hidden; /* Para que los bordes redondeados afecten a los hijos */
          }
          .quantity-selector-row .product-quantity .qty input {
              border: none; /* Quitar bordes del input */
              text-align: center;
              width: 40px; /* Ajusta el ancho del número */
              background: #F3F7F8;
              color: #0A0B0B; font-size: 12px; font-weight: 500;
              padding: 8px 5px; /* Ajusta el padding */
              height: auto; /* Para que se ajuste al padding */
              line-height: normal;
          }
          .quantity-selector-row .product-quantity .qty .btn-touchspin {
              background: #F3F7F8;
              border: none;
              padding: 8px; /* Ajusta padding */
              width: 36px; /* Ancho para los botones +/- */
              height: auto;
              line-height: normal;
              display: flex;
              align-items: center;
              justify-content: center;
          }
          /* Iconos para +/- (necesitarás ponerlos o usar los de PrestaShop si son material-icons) */
          /* Tu HTML tenía divs con background black, aquí un ejemplo con texto */
          .quantity-selector-row .product-quantity .qty .bootstrap-touchspin-down::before {
              content: '-'; font-size: 16px; color: black;
          }
          .quantity-selector-row .product-quantity .qty .bootstrap-touchspin-up::before {
              content: '+'; font-size: 16px; color: black;
          }


          .shipping-destination-row .destination-value {
              display: flex; align-items: center; gap: 6px;
              color: #0A0B0B; font-size: 14px; font-weight: 500; text-decoration: underline; line-height: 21px;
          }
          /* Estilo para la flechita de "Enviar a" (tu HTML usa outline) */
          .shipping-destination-row .destination-value::after { /* Simula la flecha con CSS */
              content: ''; display: inline-block; width: 0; height: 0;
              border-left: 3px solid transparent; border-right: 3px solid transparent;
              border-top: 3px solid #0A0B0B; margin-left: 4px;
          }


          .delivery-estimation-box {
              padding: 10px 15px; background: rgba(233, 248, 251, 0.50); border-radius: 6px;
          }
          .delivery-estimation-box .delivery-text {
              font-size: 14px; line-height: 21px;
          }
          .delivery-estimation-box .text-normal { color: #0A0B0B; font-weight: 400; }
          .delivery-estimation-box .text-highlight { color: #26BAD9; font-weight: 600; }
          .delivery-estimation-box .text-bold { color: #0A0B0B; font-weight: 600; }

          .reassurance-section {
              display: flex; flex-direction: column; gap: 10px; /* Era 20px, luego 10px */
              font-size: 13px; color: #5B6565;
          }
          .reassurance-section .reassurance-item {
              display: inline-flex; align-items: center; gap: 10px;
          }
          .reassurance-section .reassurance-item .material-icons { /* Asumiendo que usas Material Icons */
              font-size: 14px; /* Tu HTML tenía divs de 10x10, esto es para un icono de fuente */
              color: #5B6565;
          }
          .reassurance-section .text-bold { font-weight: 600; }

          .product-add-to-cart-social {
              margin-top: 25px; /* Espacio antes del botón de carrito */
          }
          .add-to-cart-social-btn {
              width: 100%; /* align-self: stretch; */
              height: 45px;
              padding: 10px 15px;
              background: #0A0B0B;
              color: #FEFEFE;
              border-radius: 5px;
              justify-content: center;
              align-items: center;
              gap: 8px;
              display: inline-flex; /* O flex para ocupar todo el ancho */
              border: none;
              font-size: 15px;
              font-family: 'Satoshi', sans-serif; /* Asegúrate que esta fuente esté cargada */
              font-weight: 700;
              cursor: pointer;
          }
          .add-to-cart-social-btn:disabled {
              background: #ccc !important;
              cursor: not-allowed;
          }
          /* Icono de bolsa de carrito (tu HTML tenía un div con background) */
          .add-to-cart-social-btn .cart-icon-placeholder {
              width: 17px; height: 17px; background: #FEFEFE; /* Esto crea un cuadrado blanco, necesitarás un SVG o icono real */
              /* Para un icono de Material Icons: */
              /* content: 'shopping_cart'; font-family: 'Material Icons'; color: #FEFEFE; font-size: 17px; */
          }


          .progressive-discount-box {
            background: #FEFEFE;
            border-radius: 10px;
            box-shadow: 0px 0px 20px rgba(81.40, 81.40, 81.40, 0.10);
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            font-family: 'Instrument Sans', sans-serif;
            margin-top: 15px;
          }
          .progressive-discount-text {
              font-size: 15px; line-height: 21px;
          }
          .progressive-discount-text .text-normal { color: black; font-weight: 400; }
          .progressive-discount-text .text-highlight-orange { color: #FF9950; font-weight: 600; }

          .progress-bar-bg {
              width: 100%; /* Era 262px, lo hacemos responsive */
              height: 9px; background: #FFDFC9; border-radius: 43px;
              position: relative; /* Para la barra de progreso encima */
          }
          .progress-bar-fg {
              width: 82%; /* Ejemplo (216px de 262px es ~82%). Esto necesitaría ser dinámico con JS. */
              height: 9px; background: #FF9950; border-radius: 43px;
              position: absolute; top: 0; left: 0;
          }

          /* Para el bloque de disponibilidad y cantidad mínima de PrestaShop */
          .product-actions-social-box .product-availability {
              margin-top: 15px;
              font-size: 0.9em;
              color: #5B6565;
          }
          .product-actions-social-box .product-availability .in-stock-label { color: green; }
          .product-actions-social-box .product-availability .out-of-stock-label { color: red; }

          .product-actions-social-box .product-minimal-quantity {
              margin-top: 10px;
              font-size: 0.85em;
              color: #7a7a7a;
          }

          /* En tu archivo CSS principal */
          .product-actions-social-box .price-and-discount-row {
              display: flex;
              align-items: center;
              gap: 10px;
              font-family: 'Instrument Sans', sans-serif;
          }

          /* Estilo para el contenedor que genera product-prices.tpl (si es necesario) */
          .product-actions-social-box .price-and-discount-row .product-prices {
              display: flex;
              align-items: baseline; /* Alinea los precios si están uno al lado del otro */
              gap: 8px; /* Espacio entre precio regular y actual si el tema los pone juntos */
          }

          /* Precio Regular (tachado) */
          .product-actions-social-box .product-prices .product-discount .regular-price {
              color: #5B6565;
              font-size: 16px;
              font-weight: 400;
              text-decoration: line-through;
              line-height: 1;
              margin-right: 5px; /* Ajusta si es necesario */
          }

          /* Precio Actual (de oferta) */
          .product-actions-social-box .product-prices .current-price [itemprop="price"] {
              color: #0A0B0B;
              font-size: 26px;
              font-weight: 600;
              line-height: 1;
          }

          /* Badge de Descuento (el que genera product-prices.tpl) */
          .product-actions-social-box .product-prices .current-price .discount-percentage,
          .product-actions-social-box .product-prices .current-price .discount-amount {
              padding: 5px 7px;
              background: #FF4D4F; /* Rojo */
              color: #FEFEFE !important; /* Blanco, !important si el tema lo sobreescribe */
              font-size: 12px !important; /* !important si es necesario */
              font-family: 'Instrument Sans', sans-serif;
              font-weight: 500 !important;
              border-top-left-radius: 10px;
              border-bottom-right-radius: 10px;
              margin-left: 10px; /* Para separarlo del precio */
              line-height: 1;
              display: inline-block; /* Para que el padding y radios funcionen bien */
          }

          /* Contenedor de la fila "Cantidad" (label + input group) */
          .product-actions-social-box .quantity-selector-row {
              display: flex;
              justify-content: space-between;
              align-items: center;
              width: 100%;
              margin-bottom: 10px;
          }
          .product-actions-social-box .quantity-selector-row .control-label {
              color: #5B6565; font-size: 14px; font-family: 'Instrument Sans', sans-serif;
              font-weight: 400; margin-right: 10px;
          }

          /* El div.qty que ahora solo envuelve el input inicial y será modificado por TouchSpin */
          .product-actions-social-box .product-quantity .qty.social-qty-group,
          .product-actions-social-box .product-quantity .qty.social-qty-group .input-group.bootstrap-touchspin { /* El div que TouchSpin crea */
              display: flex;
              align-items: stretch;
              background: #F3F7F8;
              border-radius: 3px;
              overflow: hidden;
          }

          /* Contenedor que TouchSpin crea: input-group bootstrap-touchspin */
          .product-actions-social-box .product-quantity .qty .input-group.bootstrap-touchspin {
              display: flex;       /* Hacemos que este contenedor sea flex */
              align-items: stretch; /* Para que todos los elementos tengan la misma altura */
              background: #F3F7F8; /* Fondo común que estaba en .qty, ahora aquí o en .social-qty-group */
              border-radius: 3px;
              overflow: hidden;
              width: auto; /* Ajustar para que no ocupe el 100% si no es necesario */
              display: inline-flex; /* Para que el grupo no ocupe todo el ancho del contenedor padre */
          }

          /* El input numérico */
          .product-actions-social-box .product-quantity .qty input#quantity_wanted {
              order: 2;            /* Orden en el flex: Input en el medio */
              border: none;
              text-align: center;
              width: 40px;
              height: 36px;
              line-height: 36px;
              background: transparent;
              color: #0A0B0B;
              font-size: 12px;
              font-family: 'Instrument Sans', sans-serif;
              font-weight: 500;
              padding: 0 5px;
              margin: 0;
              box-shadow: none;
              min-width: 30px;
              -moz-appearance: textfield;
          }
          .product-actions-social-box .product-quantity .qty input#quantity_wanted::-webkit-outer-spin-button,
          .product-actions-social-box .product-quantity .qty input#quantity_wanted::-webkit-inner-spin-button {
              -webkit-appearance: none; margin: 0;
          }

          /* El span que contiene los botones de TouchSpin (antes vertical) */
          .product-actions-social-box .product-quantity .qty .input-group.bootstrap-touchspin .input-group-btn-vertical {
              display: contents; /* Esto hace que el span no afecte el layout flex de sus hijos directos con el padre.
                                    Los botones dentro se convertirán en flex items del .input-group.bootstrap-touchspin */
          }

          /* Botones generados por TouchSpin */
          .product-actions-social-box .product-quantity .qty .bootstrap-touchspin .btn.bootstrap-touchspin-down,
          .product-actions-social-box .product-quantity .qty .bootstrap-touchspin .btn.bootstrap-touchspin-up {
              background: transparent;
              border: none;
              color: #0A0B0B; /* Color del icono/texto */
              width: 30px;
              height: 36px;
              padding: 0;
              display: flex;
              align-items: center;
              justify-content: center;
              cursor: pointer;
              box-shadow: none;
          }

          /* Asignar orden con flexbox */
          .product-actions-social-box .product-quantity .qty .bootstrap-touchspin .btn.bootstrap-touchspin-down {
              order: 1; /* Botón de disminuir primero */
          }
          .product-actions-social-box .product-quantity .qty .bootstrap-touchspin .btn.bootstrap-touchspin-up {
              order: 3; /* Botón de aumentar al final */
          }

          /* Iconos de Material Icons dentro de los botones */
          .product-actions-social-box .product-quantity .qty .bootstrap-touchspin .btn i.material-icons {
              font-size: 20px; /* Ajusta el tamaño del icono */
              color: #0A0B0B;
              display: none;
          }
          
          
          .social-product-tabs-container {
              width: 100%;
              padding: 10px 25px; /* padding-left/right: 25px; padding-top/bottom: 10px; */
              background: rgba(243, 247, 248, 0.70);
              border-radius: 10px;
              display: flex; /* Era inline-flex, pero flex es más común para un bloque principal */
              flex-direction: column;
              justify-content: flex-start;
              align-items: flex-start;
              gap: 0; /* El HTML original no tenía gap aquí, sino en los hijos */
              margin-bottom: 20px; /* Espacio después de las pestañas */
              box-sizing: border-box;
          }

          .social-tabs-nav {
              align-self: stretch;
              border-bottom: 1px solid #B1BDC0;
              justify-content: flex-start;
              align-items: flex-start; /* Para que los bordes inferiores se alineen */
              gap: 30px;
              display: inline-flex; /* Para que los títulos estén en línea */
              width: 100%; /* Para que la barra de pestañas ocupe el ancho */
              margin-bottom: -1px; /* Para que el borde de la pestaña activa sobreescriba el borde general */
          }

          .social-tab-title {
              align-self: stretch;
              padding-top: 16px;
              padding-bottom: 16px;
              justify-content: center;
              align-items: center;
              gap: 10px;
              display: flex;
              cursor: pointer;
              border-bottom: 2px solid transparent; /* Borde base para todas las pestañas */
              margin-bottom: -1px; /* Compensa el borde inferior del nav para que el borde activo se una bien */
              transition: border-color 0.3s ease, color 0.3s ease;
          }

          .social-tab-title .social-tab-title-text {
              color: #5B6565; /* Color para pestañas inactivas */
              font-size: 18px;
              font-family: 'Anuphan', sans-serif; /* Asegúrate que la fuente esté cargada */
              font-weight: 400;
              line-height: 23.40px;
              word-wrap: break-word;
          }

          .social-tab-title.active {
              border-bottom: 2px solid #0A0B0B; /* Borde para la pestaña activa */
          }
          .social-tab-title.active .social-tab-title-text {
              color: #0A0B0B; /* Color para la pestaña activa */
              font-weight: 600;
          }
          .social-tab-title:not(.active):hover .social-tab-title-text {
              color: #2c3030; /* Un ligero cambio de color al pasar el ratón por pestañas inactivas */
          }

          .social-tabs-content-wrapper {
              align-self: stretch;
              /* padding-top: 28px; padding-bottom: 28px; El HTML original tenía esto aquí, lo movemos a cada panel si es necesario */
              /* border-bottom-right-radius: 10px; border-bottom-left-radius: 10px; */ /* Radios para el contenedor general */
          }

          .social-tab-pane {
              display: none; /* Ocultar todos los paneles por defecto */
              width: 100%; /* Para que ocupe todo el ancho del contenedor */
              padding: 28px 0; /* Padding interno para el contenido de la pestaña, ajusta si el padding de 25px del container principal es suficiente */
              font-family: 'Instrument Sans', sans-serif; /* Fuente base para el contenido */
              font-size: 15px;
              line-height: 24px;
              color: #0A0B0B;
          }
          .social-tab-pane.active {
              display: block; /* Mostrar solo el panel activo */
          }
          .social-tab-pane .product-description { /* Estilo para el contenido de descripción */
              color: #0A0B0B; /* Heredado, pero por si acaso */
          }

          /* Estilos para el contenido de la pestaña "Seguridad" */
          .social-tab-security-content {
              display: flex;
              flex-wrap: wrap; /* Para que los bloques se ajusten en pantallas pequeñas */
              justify-content: flex-start; /* O space-between si prefieres */
              align-items: flex-start;
              gap: 30px;
          }
          .social-tab-security-content .security-section {
              
              display: flex;
              flex-direction: column;
              gap: 15px;
          }
          .social-tab-security-content .security-section-title {
              color: #0A0B0B;
              font-size: 16px;
              font-family: 'Anuphan', sans-serif;
              font-weight: 600;
              line-height: 20.80px;
          }
          .social-tab-security-content .security-images-flex {
              align-self: stretch;
              justify-content: flex-start;
              align-items: flex-start;
              gap: 10px;
              display: flex; /* Para poner imágenes lado a lado */
          }
          .social-tab-security-content .security-image {
              flex: 1 1 0; /* Para que las imágenes compartan el espacio */
              width: auto; /* Permitir que flex controle el ancho */
              height: auto; /* Mantener proporción, o fija una altura: ej. 150px y object-fit:cover */
              max-height: 130px; /* Una altura máxima para que no sean gigantes */
              object-fit: cover;
              border-radius: 5px;
          }
          .social-tab-security-content .security-info-text {
              color: #0A0B0B;
              font-size: 14px;
              font-family: 'Instrument Sans', sans-serif;
              font-weight: 400;
              line-height: 19.60px;
              word-wrap: break-word;
          }


          /* Estilos para el contenido de la pestaña "Ficha Técnica" */
          .social-tab-ficha-tecnica-content {
              display: flex;
              flex-wrap: wrap;          /* Para que los items pasen a la siguiente línea */
              align-content: flex-start;/* Alinea las líneas al inicio si hay múltiples */
              align-items: flex-start;  /* Alinea los items al inicio de su línea */
              gap: 10px 30px;           /* Espacio vertical de 10px, horizontal de 30px entre items */
              width: 100%;
              font-family: 'Instrument Sans', sans-serif; /* Asegúrate que la fuente esté cargada */
          }

          .ficha-tecnica-item {
              display: flex;       /* Para alinear label, separador y valor en una línea */
              align-items: center; /* Centrar verticalmente los elementos del item */
              gap: 5px;            /* Espacio entre label, separador y valor */
              /* Ajusta el ancho de cada item si quieres un número específico de columnas.
                Por ejemplo, para 2 columnas, podrías usar:
                flex-basis: calc(50% - 15px); (considerando la mitad del gap de 30px)
                Por ahora, se ajustarán al contenido y al wrap.
              */
              flex: 0 0 auto; /* Para que no crezcan ni se encojan demasiado, manteniendo su ancho natural */
              padding: 5px 0; /* Un poco de padding vertical para cada línea de característica */
          }

          .images-section{
            width: 40%;
          }
          .manufacturer-info-section{
            width: 25%;
          }
          .responsible-info-section{
            width: 25%;
          }

          .ficha-tecnica-label {
              color: #0A0B0B;
              font-size: 15px;
              font-weight: 600; /* Label en negrita */
              line-height: 21px;
              word-wrap: break-word;
          }

          .ficha-tecnica-separator {
              color: #0A0B0B;
              font-size: 15px;
              font-weight: 600; /* Separador también en negrita */
              line-height: 21px;
          }

          .ficha-tecnica-value {
              color: #0A0B0B;
              font-size: 15px;
              font-weight: 400; /* Valor en normal */
              line-height: 21px;
              word-wrap: break-word;
          }
			#subcategories-slider-container .my-category-slider {
				width: 100%;
				box-sizing: border-box;
        margin-bottom: 2rem;
			}
			#subcategories-slider-container .swiper-slide {
				text-align: center;
				display: flex;
				justify-content: center;
				align-items: center;
				/* El ancho del slide será automático basado en slidesPerView: 'auto' o un número fijo */
				/* Si usas un número fijo de slidesPerView, Swiper calculará el ancho. */
				/* Para slidesPerView: 'auto', el contenido define el ancho del slide. */
				width: auto; /* Importante para slidesPerView: 'auto' si los items tienen anchos intrínsecos */
			}

      #subcategories-slider-container .swiper-slide { 
        background: #F3F7F8; 
        border-radius: 5px;
        width: fit-content !important;
        transition: background-color 0.3s ease;
      }
      #subcategories-slider-container .swiper-slide:hover { 
        background: #d0d5d6;
      }

      #subcategories-slider-container.subcategories-slider-icons .swiper-slide {
        background: #fff;
      }
      #subcategories-slider-container.subcategories-slider-icons .swiper-slide:hover {
        background: #fff;
      }

			#subcategories-slider-container .category-slide-image {
				display: block;
				width: 100px;  /* Ancho deseado del círculo de la imagen */
				height: 100px; /* Alto deseado del círculo de la imagen */
				object-fit: cover; /* 'cover' llenará el círculo, 'contain' mostrará la imagen completa dentro */
				border-radius: 50%;
				background-color: #fff; /* Fondo blanco para el círculo de la imagen */
				/* padding: 3px; */ /* Opcional: si quieres un efecto de borde blanco sutil */
				/* box-shadow: 0px 0px 8px rgba(255,255,255,0.2); */ /* Opcional: un brillo sutil */
			}

			/* Estilo básico para las flechas de Swiper (ajusta según tu tema) */
			#subcategories-slider-container .swiper-button-prev,
			#subcategories-slider-container .swiper-button-next {
				color: #fff; /* Color de las flechas */
				top: 50%;
				transform: translateY(-50%);
				/* Ajusta el tamaño si es necesario */
				width: calc(var(--swiper-navigation-size) / 44 * 27); /* Mantener relación de aspecto original */
				height: var(--swiper-navigation-size);
			}
			#subcategories-slider-container .swiper-button-prev:after,
			#subcategories-slider-container .swiper-button-next:after {
				font-size: 20px; /* Tamaño del icono de la flecha por defecto de Swiper */
				font-weight: bold;
			}

      .checkout-progress-bar-container {
          width: 100%;
          /* height: 100%; Tu HTML tenía esto, pero para una barra no es necesario height 100% */
          position: relative; /* Para las líneas conectoras si se posicionan absoluto */
          display: flex;
          justify-content: space-around; /* O space-between si quieres que las líneas llenen el espacio */
          align-items: flex-start; /* Alinea los items (círculo+título) por su parte superior */
          padding: 20px 0;
          margin-bottom: 30px;
          font-family: 'Instrument Sans', sans-serif; /* Asegúrate que la fuente esté cargada */
      }
      .checkout-step-bar {
          display: flex; /* Era inline-flex, pero flex funciona bien para un item */
          flex-direction: column;
          justify-content: flex-start;
          align-items: center;
          gap: 13px;
          text-align: center;
          position: relative; /* Para z-index si las líneas van por detrás */
          z-index: 1;
      }
      .step-number-circle {
          width: 40px;
          height: 40px;
          padding: 8px 16px; /* Ajusta padding para que el número quede bien */
          box-sizing: border-box;
          border-radius: 20px; /* 50% de width/height */
          outline: 1px solid #B1BDC0; /* Borde por defecto para inactivos */
          display: flex;
          justify-content: center;
          align-items: center;
      }
      .step-number-circle .step-number {
          font-size: 18px;
          font-weight: 400; 
          color: #B1BDC0; 
          word-wrap: break-word;
      }
      .step-title {
          font-size: 15px;
          font-weight: 600;
          color: #B1BDC0; 
          word-wrap: break-word;
      }

      /* Estilos para el paso activo */
      .checkout-step-bar.current-step .step-number-circle {
          outline: 1px solid #0A0B0B;
      }
      .checkout-step-bar.current-step .step-number-circle .step-number,
      .checkout-step-bar.current-step .step-title {
          color: #0A0B0B;
          font-weight: 600; 
      }

      .checkout-progress-bar-container hr.step-connector-line {
          flex-grow: 1;
          height: 1px; 
          border: none; 
          background-color: #B1BDC0; 
          margin: 20px 0 0 0; 
          max-width: 25%; 
      }

      .cart-products-header-social {
          display: flex;
          justify-content: flex-start; 
          align-items: center;
          margin-bottom: 20px;
      }
      .cart-products-header-social .select-all-products {
          display: flex;
          align-items: center;
          gap: 10px;
          font-family: 'Instrument Sans', sans-serif;
      }
      .select-all-label-text {
          color: #0A0B0B; font-size: 18px; font-weight: 500; cursor: pointer;
      }

      /* Estilo para checkboxes personalizados (básico) */
      .custom-checkbox-wrapper { display: inline-block; }
      .custom-checkbox-wrapper .custom-checkbox-input { display: none; } /* Ocultar checkbox real */
      .custom-checkbox-wrapper .custom-checkbox-label { cursor: pointer; display: inline-flex; align-items: center; }
      .custom-checkbox-wrapper .custom-checkbox-visual {
          width: 20px; height: 20px; border: 1px solid #B1BDC0; border-radius: 4px;
          display: inline-block; position: relative; margin-right: 5px; /* Ajusta si el label está separado */
          background-color: #fff; /* Fondo para cuando no está marcado */
      }
      .custom-checkbox-wrapper .custom-checkbox-input:checked + .custom-checkbox-label .custom-checkbox-visual {
          background-color: #0A0B0B; /* Fondo cuando está marcado */
          border-color: #0A0B0B;
      }
      /* Para el "tick" o marca de verificación (usando un pseudo-elemento) */
      .custom-checkbox-wrapper .custom-checkbox-input:checked + .custom-checkbox-label .custom-checkbox-visual::after {
          content: '';
          position: absolute;
          left: 6px; top: 2px; /* Ajusta para centrar el tick */
          width: 5px; height: 10px; /* Tamaño del tick */
          border: solid white; /* Color del tick */
          border-width: 0 2px 2px 0;
          transform: rotate(45deg);
      }


      .cart-products-list-social .cart-product-item-social {
          display: flex;
          align-items: center; 
          gap: 25px;
          padding: 20px 25px;
          border-radius: 10px;
          outline: 1px solid #B1BDC0;
          margin-bottom: 15px;
          background: white; /* Fondo blanco para cada item */
      }

      .cart-product-item-social {
          display: flex;
          align-items: stretch; 
          gap: 25px;
          padding: 20px 25px;
          border-radius: 10px;
          outline: 1px solid #B1BDC0;
          margin-bottom: 15px;
          background: white;
          position: relative;
      }

      .cart-product-item-social .product-item-details-social {
          flex-grow: 1; /* Para que ocupe el espacio disponible */
          display: flex;
          gap: 20px; /* Era 29px en tu HTML, ajusta */
          align-items: flex-start; /* O center si prefieres alinear verticalmente la imagen y la info */
      }
      .cart-product-item-social .product-item-image-social {
          width: 140px; /* Como en tu HTML */
          flex-shrink: 0; /* Para que no se encoja */
          position: relative; /* Para el badge de descuento */
      }
      .cart-product-item-social .product-item-image-social img {
          width: 100%; height: auto; border-radius: 10px; background: #F3F7F8;
      }
      .cart-product-item-social .cart-product-discount-badge {
          position: absolute; top: 0; left: 0;
          background: #FF4D4F; color: #FEFEFE; font-size: 12px; font-weight: 500;
          padding: 5px 7px; border-top-left-radius: 10px; border-bottom-right-radius: 10px;
      }


      .cart-product-item-social .product-item-info-social {
          flex-grow: 1;
          display: flex;
          flex-direction: column;
          justify-content: space-between; /* Para distribuir nombre/atributos y cantidad */
          align-self: stretch; /* Para que ocupe toda la altura disponible */
      }
      .product-item-info-social .info-main .product-name-social {
          color: #0A0B0B; font-size: 18px; font-family: 'Anuphan', sans-serif; font-weight: 600;
          line-height: 23.40px; display: block; margin-bottom: 5px; text-decoration: none;
      }
      .product-item-info-social .info-main .product-attributes-social {
          color: #5B6565; font-size: 13px; font-family: 'Instrument Sans', sans-serif;
          line-height: 16.90px;
      }
      .product-item-info-social .info-main .product-attributes-social span {
          display: block; /* O inline con margin-right */
      }

      /* Estilo para el selector de cantidad (hereda de tu product page o ajusta aquí) */
      .product-item-info-social .product-quantity-form-social .input-group.bootstrap-touchspin {
          /* Ya tienes estilos para esto de la página de producto, asegúrate que se apliquen o cópialos/ajústalos */
          background: #F3F7F8; border-radius: 3px; overflow:hidden; display:inline-flex;
      }
      .product-item-info-social .product-quantity-form-social input[name="quantity"] {
          /* ... estilos del input de cantidad ... */
          border:none; width:50px; text-align:center; background:transparent; height:30px; line-height:30px;
      }

      .product-item-info-social .product-quantity-form-social input::-webkit-outer-spin-button,
      .product-item-info-social .product-quantity-form-social input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
      }
      product-item-info-social .product-quantity-form-social input[type=number] {
        -moz-appearance: textfield;
      }

      .product-item-info-social .product-quantity-form-social .bootstrap-touchspin-down,
      .product-item-info-social .product-quantity-form-social .bootstrap-touchspin-up {
          /* ... estilos de los botones +/- ... */
          border:none; background:transparent; width:30px; height:30px; padding:0;
      }


      .cart-product-item-social .product-item-actions-price-social {
          width: 160px; /* Como en tu HTML */
          flex-shrink: 0;
          display: flex;
          flex-direction: column;
          justify-content: flex-end;
          align-items: flex-end; 
          height: 160px;
      }
      .product-item-actions-price-social .product-item-actions {
          display: flex; gap: 8px; margin-bottom:10px; /* Espacio hasta el precio */
      }
      .product-item-actions-price-social .product-item-actions .remove-from-cart {
          color: #B1BDC0; /* Color para el icono de eliminar */
          text-decoration: none;
      }
      .product-item-actions-price-social .product-item-actions .remove-from-cart .material-icons {
          font-size: 20px;
      }

      .product-item-actions-price-social .product-item-price-social{
        margin-bottom: 5px;
      }

      .product-item-actions-price-social .product-item-price-social .price {
          color: #0A0B0B; font-size: 18px; font-family: 'Instrument Sans', sans-serif; font-weight: 600;
      }
      .product-item-actions-price-social .product-item-price-social .regular-price-line-item {
          color: #5B6565; font-size: 12px; text-decoration: line-through; margin-inline-end: 10px;
      }

      /*.product-item-social{
        width: 160px;
      }*/

      .continue-shopping-btn-social {
          margin-top: 20px;
      }
      .continue-shopping-btn-social .material-icons {
          margin-right: 5px; vertical-align: middle;
      }

      .cart-product-item-social .product-item-top-actions-social {
          position: absolute;
          top: 15px; /* Ajusta según el padding de .cart-product-item-social */
          right: 15px; /* Ajusta según el padding de .cart-product-item-social */
          display: flex;
          gap: 10px; /* Espacio entre el icono de wishlist y el de eliminar */
          z-index: 5; /* Para asegurar que esté por encima de otros elementos */
      }

      .cart-product-item-social .product-item-top-actions-social a,
      .cart-product-item-social .product-item-top-actions-social .wishlist-action-placeholder { /* O la clase real del botón de wishlist */
          color: #B1BDC0; /* Un color gris para los iconos, como en tu HTML de ejemplo */
          text-decoration: none;
          cursor: pointer;
      }
      .cart-product-item-social .product-item-top-actions-social a:hover,
      .cart-product-item-social .product-item-top-actions-social .wishlist-action-placeholder:hover {
          color: #0A0B0B; /* Color al pasar el ratón */
      }

      .cart-product-item-social .product-item-top-actions-social .material-icons {
          font-size: 22px; /* Ajusta el tamaño del icono */
      } 

      .cart-grid-right {
          display: flex;
          flex-direction: column;
          gap: 15px;
          margin-block: 20px;
      }

      /* Bloque Resumen del Pedido */
      .cart-summary-social {
          background: #FEFEFE;
          border-radius: 10px;
          padding: 25px 30px; 
          display: flex;
          flex-direction: column;
          gap: 15px;
          box-shadow: 0px 0px 20px rgba(81.40, 81.40, 81.40, 0.10);
          font-family: 'Instrument Sans', sans-serif; 
          margin: 0;
      }
      .cart-summary-social-header .summary-title {
          color: #0A0B0B;
          font-size: 24px;
          font-family: 'Anuphan', sans-serif; 
          font-weight: 600;
          line-height: 31.20px;
          margin: 0 0 10px 0; /* Margen inferior para separar del cuerpo */
      }
      .cart-summary-social-body {
          display: flex;
          flex-direction: column;
          gap: 10px; /* Espacio entre líneas de resumen */
      }
      .summary-line, .summary-total-line {
          display: flex;
          justify-content: space-between;
          align-items: center;
      }
      .summary-line .label,
      .summary-total-line .total-label-group {
          color: #5B6565;
          font-size: 13px;
          font-weight: 400;
      }
      .summary-line .value,
      .summary-total-line .total-value {
          color: #0A0B0B;
          font-size: 15px;
          font-weight: 500;
          text-align: right;
      }
      .summary-line.voucher-line .label {
          display: flex;
          align-items: center;
          gap: 5px;
      }
      .summary-line.voucher-line .label .material-icons {
          font-size: 16px; /* Ajusta el tamaño del icono de cupón */
      }
      .summary-divider {
          border: none;
          border-top: 1px solid #DDE1E2;
          margin: 10px 0; /* Espacio alrededor del divisor */
      }
      .summary-total-line .total-label-group {
          display: flex;
          align-items: flex-end; /* Para alinear "Total" y "IVA incluido" */
          gap: 5px;
      }
      .summary-total-line .total-label-group .total-label {
          color: #0A0B0B;
          font-size: 18px;
          font-weight: 600;
      }
      .summary-total-line .total-label-group .tax-label {
          font-size: 13px;
          font-weight: 400;
          padding-bottom: 2px; /* Alinear con la base de "Total" */
      }
      .summary-total-line .total-value {
          font-size: 30px;
          font-weight: 600;
          line-height: 28px; /* Para que no sea demasiado alto */
      }
      .cart-summary-social-actions {
          margin-top: 10px; /* Espacio sobre el botón de checkout */
      }
      .checkout-button-social {
          display: inline-flex; /* O flex */
          justify-content: center;
          align-items: center;
          gap: 8px;
          width: 100%; /* align-self: stretch */
          height: 45px;
          padding: 10px 15px;
          background: #0A0B0B;
          color: #FEFEFE;
          border-radius: 5px;
          border: none;
          font-size: 15px;
          font-family: 'Satoshi', sans-serif; /* Asegúrate que la fuente esté cargada */
          font-weight: 700;
          cursor: pointer;
          text-decoration: none;
      }
      .checkout-button-social:hover {
          background: #333; /* Ejemplo de hover */
          color: #fff;
      }
      
      .checkout-button-social:disabled,
      .checkout-button-social.btn-disabled {
          background: #6c757d;
          color: #adb5bd;
          cursor: not-allowed;
          opacity: 0.7;
      }
      
      .checkout-button-social:disabled:hover,
      .checkout-button-social.btn-disabled:hover {
          background: #6c757d;
          color: #adb5bd;
      }
      
      .checkout-button-social .checkout-button-icon { /* Para la flecha */
          font-size: 17px; /* Ajusta si usas Material Icons */
          /* Tu HTML para el icono de flecha era un div con background. Reemplaza con un icono real. */
      }


      /* Bloque Código Promocional */
      .cart-voucher-social-container {
          background: #FEFEFE;
          border-radius: 10px;
          padding: 25px 30px;
          box-shadow: 0px 0px 20px rgba(81.40, 81.40, 81.40, 0.10);
          font-family: 'Instrument Sans', sans-serif;
      }
      /* Necesitarás estilizar los elementos internos de cart-voucher.tpl.
        Inspecciona el HTML que genera y aplica estilos. Ejemplo: */
      .cart-voucher-social-container .cart-voucher h4, /* Título "¿Tienes un código promocional?" */
      .cart-voucher-social-container .cart-voucher .promo-code-label { /* O el label si usa uno */
          color: #0A0B0B;
          font-size: 13px;
          font-weight: 500;
          line-height: 16.90px;
          margin-bottom: 10px; /* Espacio antes del input */
          /* Añade el icono de ticket aquí si lo deseas */
      }
      .cart-voucher-social-container .cart-voucher form { /* El form de cart-voucher.tpl */
          display: flex;
          gap: 5px;
          align-items: center;
      }
      .cart-voucher-social-container .cart-voucher input[name="discount_name"] {
          flex-grow: 1;
          height: 35px;
          padding: 0 15px;
          border-radius: 5px;
          outline: 1px solid #B1BDC0;
          border: none; /* Quitar borde por defecto del input */
          color: #0A0B0B;
          font-size: 13px;
          font-weight: 400;
      }
      .cart-voucher-social-container .cart-voucher button[name="submitAddDiscount"] { /* El botón "Añadir" */
          width: 35px;
          height: 35px;
          padding: 0;
          background: #0A0B0B;
          border-radius: 5px;
          border: none;
          display: flex;
          justify-content: center;
          align-items: center;
          cursor: pointer;
          /* Aquí va el icono de "agregar" (tu HTML tenía un div con fondo blanco) */
      }
      .cart-voucher-social-container .cart-voucher button[name="submitAddDiscount"] .material-icons, /* Si usa icono */
      .cart-voucher-social-container .cart-voucher button[name="submitAddDiscount"] i {
          color: #FEFEFE;
          font-size: 18px;
      }


      /* Bloque Descuento Progresivo */
      .progressive-discount-social-container {
          background: #FEFEFE;
          border-radius: 10px;
          padding: 25px 30px;
          box-shadow: 0px 0px 20px rgba(81.40, 81.40, 81.40, 0.10);
          font-family: 'Instrument Sans', sans-serif;
          display: flex;
          flex-direction: column;
          gap: 14px;
      }
      .progressive-discount-social-container .progressive-discount-text {
          font-size: 15px;
          line-height: 21px;
      }
      .progressive-discount-social-container .text-normal { color: #0A0B0B; font-weight: 400; }
      .progressive-discount-social-container .text-highlight-orange { color: #FF9950; font-weight: 600; }

      .progressive-discount-social-container .progress-bar-container-social {
          width: 100%; /* El HTML tenía width: 334px, lo hacemos responsive */
      }
      .progressive-discount-social-container .progress-bar-bg-social {
          height: 9px; background: #FFDFC9; border-radius: 43px;
          position: relative; /* Para la barra de progreso encima */
      }
      .progressive-discount-social-container .progress-bar-fg-social {
          /* El width debe ser dinámico con JS. Ejemplo: style="width: 82%;" */
          height: 9px; background: #FF9950; border-radius: 43px;
      }


      /* Estilos para la sección de Código Promocional */
      .cart-voucher-social-container {
          background: #FEFEFE;
          border-radius: 10px;
          padding: 25px 30px; /* Tu HTML tenía padding-left/right: 30px; padding-top/bottom: 25px */
          display: flex;
          flex-direction: column;
          gap: 15px;
          font-family: 'Instrument Sans', sans-serif; /* Asegúrate que la fuente esté cargada */
          box-shadow: 0px 0px 20px rgba(81.40, 81.40, 81.40, 0.10); /* Sombra de tu HTML */
      }

      .promo-title-row {
          display: flex; /* Era inline-flex, pero flex es más común para ocupar ancho */
          justify-content: flex-start; /* Alinea al inicio */
          align-items: center;
          gap: 5px;
          width: 100%; /* align-self: stretch */
          cursor: pointer; /* Si quieres que sea un desplegable */
      }
      .promo-icon-leading {
          width: 15px; height: 15px;
          display: flex; align-items: center; justify-content: center;
          /* Tu HTML tenía un div con background #0A0B0B, usa un icono aquí */
      }
      .promo-icon-leading .material-icons { font-size: 15px; color: #0A0B0B; }

      .promo-title-text {
          flex: 1 1 0; /* Para que ocupe el espacio y empuje la flecha a la derecha */
          color: #0A0B0B;
          font-size: 13px;
          font-weight: 500;
          line-height: 16.90px;
      }
      .promo-arrow-icon {
          width: 11px; height: 11px;
          display: flex; align-items: center; justify-content: center;
          /* Tu HTML tenía un div con transform: rotate(90deg) y background. Usa un icono aquí. */
          /* transition: transform 0.3s ease; Para animar la flecha si es un desplegable */
      }
      .promo-arrow-icon .material-icons { font-size: 18px; color: #0A0B0B; } /* keyboard_arrow_down o keyboard_arrow_up */

      /* Contenedor del formulario (input y botón) */
      .promo-form-wrapper {
          width: 100%; /* align-self: stretch */
      }
      .promo-code-form-social .promo-input-and-button {
          display: flex; /* Era inline-flex */
          justify-content: flex-start;
          align-items: flex-start; /* O center si quieres alinear verticalmente input y botón */
          gap: 5px;
          width: 100%;
      }

      .promo-input-container { /* Equivalente a tu div que envuelve el input visual */
          flex: 1 1 0; /* Para que el input ocupe el espacio disponible */
          height: 35px;
          padding: 0 15px; /* Padding interno del campo visual */
          border-radius: 5px;
          outline: 1px solid #B1BDC0;
          display: flex;
          align-items: center;
          background-color: #fff; /* Fondo para el input visual */
      }
      .promo-input-social { /* El input real */
          width: 100%;
          border: none;
          outline: none;
          background: transparent;
          color: #0A0B0B;
          font-size: 13px;
          font-family: 'Instrument Sans', sans-serif;
          font-weight: 400;
          height: 100%;
      }
      .promo-input-social::placeholder {
          color: #7f8585; /* Un color más claro para el placeholder */
      }

      .promo-submit-button-social {
          width: 35px;
          height: 35px;
          padding: 0; /* Quitamos padding para que el icono se ajuste */
          background: #0A0B0B;
          border-radius: 5px;
          display: flex;
          justify-content: center;
          align-items: center;
          border: none;
          cursor: pointer;
      }
      .promo-submit-button-social .promo-submit-icon .material-icons {
          color: #FEFEFE; /* Color del icono de añadir */
          font-size: 18px; /* Ajusta el tamaño */
      }

      /* Estilos para mensajes de error de cupones */
      .voucher-errors {
          list-style: none;
          padding: 0;
          margin: 10px 0 0 0;
      }
      .voucher-errors li {
          font-size: 0.9em;
      }

      /* Estilos para la sección de código promocional basada en cart-voucher.tpl */
      .cart-voucher-social-container { /* El contenedor que pusimos en cart.tpl */
          background: #FEFEFE;
          border-radius: 10px;
          padding: 25px 30px;
          margin-top: 20px;
          box-shadow: 0px 0px 20px rgba(81.40, 81.40, 81.40, 0.10);
          font-family: 'Instrument Sans', sans-serif;
      }

      /* Título que genera cart-voucher.tpl (si tiene uno, ej. 'Código Promocional') */
      .cart-voucher-social-container .promo-code > .label, /* Ejemplo de selector si hay un label */
      .cart-voucher-social-container .cart-voucher h4 { /* Ejemplo si hay un h4 */
          display: flex;
          align-items: center;
          gap: 5px;
          color: #0A0B0B;
          font-size: 13px;
          font-family: 'Instrument Sans', sans-serif; /* Ya está en el contenedor */
          font-weight: 500;
          line-height: 16.90px;
          margin-bottom: 15px; /* Espacio antes del formulario */
      }
      /* Icono para el título (necesitarías añadirlo o usar ::before) */
      .cart-voucher-social-container .promo-code > .label::before {
          content: 'confirmation_number'; /* Material Icon name */
          font-family: 'Material Icons';
          font-size: 15px;
          color: #0A0B0B;
          margin-right: 5px;
      }

      /* El formulario dentro de cart-voucher.tpl */
      .cart-voucher-social-container .cart-voucher form {
          display: flex;
          gap: 5px;
          align-items: center;
      }

      /* El input de texto para el código */
      .cart-voucher-social-container .cart-voucher form input[name="discount_name"] {
          flex: 1 1 0;
          height: 35px;
          padding: 0 15px;
          border-radius: 5px;
          outline: 1px solid #B1BDC0;
          border: none;
          color: #0A0B0B;
          font-size: 13px;
          font-weight: 400;
          background-color: #fff; /* Asegurar fondo si el outline no es suficiente */
      }

      /* El botón de aplicar cupón */
      .cart-voucher-social-container .cart-voucher form button[type="submit"] {
          width: 35px;
          height: 35px;
          padding: 0;
          background: #0A0B0B;
          border-radius: 5px;
          border: none;
          display: flex;
          justify-content: center;
          align-items: center;
          cursor: pointer;
          color: #FEFEFE; /* Color del icono/texto del botón */
      }
      .cart-voucher-social-container .cart-voucher form button[type="submit"] .material-icons,
      .cart-voucher-social-container .cart-voucher form button[type="submit"] i { /* Si usa <i> */
          font-size: 18px; /* Ajusta */
      }

      /* Lista de cupones aplicados (si cart-voucher.tpl la genera) */
      .cart-voucher-social-container .cart-voucher ul { /* Usualmente es una lista */
          list-style: none;
          padding: 0;
          margin-top: 15px;
      }
      .cart-voucher-social-container .cart-voucher ul li {
          display: flex;
          justify-content: space-between;
          align-items: center;
          font-size: 13px;
          padding: 5px 0;
      }
      .cart-voucher-social-container .cart-voucher ul li .cart-summary-line__label, /* Clases comunes */
      .cart-voucher-social-container .cart-voucher ul li .label {
          color: #0A0B0B;
      }
      .cart-voucher-social-container .cart-voucher ul li .cart-summary-line__value,
      .cart-voucher-social-container .cart-voucher ul li .value {
          /* Estilo para el valor del descuento si se muestra */
      }
      .cart-voucher-social-container .cart-voucher ul li .js-remove-voucher .material-icons {
          font-size: 18px;
          color: #B1BDC0;
      }
      .cart-voucher-social-container .cart-voucher ul li .js-remove-voucher:hover .material-icons {
          color: #0A0B0B;
      }


      /* Estilos específicos para la página de Checkout */
      .checkout-page-progress .checkout-step-bar.completed-step .step-number-circle.completed {
          background-color: #0A0B0B; /* Fondo oscuro para completado */
          outline: 1px solid #0A0B0B;
      }
      .checkout-page-progress .checkout-step-bar.completed-step .step-number-circle.completed .material-icons { /* Estilo para el icono de check */
          color: #FEFEFE; /* Icono blanco */
          font-size: 24px; /* Ajusta el tamaño del icono de check */
      }
      .checkout-page-progress .checkout-step-bar.completed-step .step-title.completed {
          color: #0A0B0B;
          font-weight: 600;
      }

      .checkout-page-progress .checkout-step-bar.current-step .step-number-circle.current {
          outline: 1px solid #0A0B0B; /* Borde oscuro para activo (como en tu HTML) */
      }
      .checkout-page-progress .checkout-step-bar.current-step .step-number-circle.current .step-number,
      .checkout-page-progress .checkout-step-bar.current-step .step-title.current {
          color: #0A0B0B; /* Texto oscuro para activo */
          font-weight: 600;
      }

      /* Los pasos pendientes (inactive) ya deberían estar estilizados por el CSS base del carrito
        (outline gris, texto gris) */
      .checkout-page-progress .step-number-circle.inactive .step-number,
      .checkout-page-progress .step-title.inactive {
          color: #B1BDC0;
          font-weight: 400; /* Tu HTML tenía 400 para número inactivo, 600 para título inactivo */
      }
      .checkout-page-progress .step-title.inactive {
          font-weight: 600; /* Mantenemos semibold para todos los títulos, solo cambia color */
      }


      .checkout-page-progress hr.step-connector-line {
          flex-grow: 1; height: 1px; border: none;
          background-color: #B1BDC0; /* Línea inactiva por defecto */
          margin: 20px 0 0 0; 
          max-width: 25%;
      }
      .checkout-page-progress hr.step-connector-line.active-connector {
          background-color: #0A0B0B; /* Línea activa */
      }


      /* Estilos para los pasos del checkout - ej. personal-information.tpl */
      .social-checkout-step-content-wrapper {
          /* background: #F9F9F9; /* Fondo gris claro si el contenedor del paso no lo tiene */
          /* border-radius: 10px; */ /* Si el .checkout-step no lo tiene */
          /* padding: 25px; */ /* Si el .checkout-step no lo tiene */
          display: flex;
          flex-direction: column;
          gap: 20px; /* Era 30px en tu HTML general, ajusta */
          font-family: 'Anuphan', sans-serif; /* Asegúrate que la fuente esté cargada */
      }

      .social-checkout-step-content-wrapper .social-step-section-title { /* Para títulos como "Datos Personales" si los añades manualmente */
          color: #0A0B0B;
          font-size: 22px;
          font-weight: 600;
          line-height: 28.60px;
      }

      /* Divisor, si lo usas dentro del contenido del paso */
      .social-checkout-step-content-wrapper .social-divider-light {
          height: 0px; border: none; border-top: 0.75px solid #DDE1E2;
          width: 100%; margin: 10px 0; /* Ajusta el margen */
      }

      /* Mensaje de error general del paso */
      .social-checkout-step-content-wrapper .social-error-message-box {
          display: flex; /* Era inline-flex */
          align-items: center;
          gap: 10px;
          padding: 10px;
          background: #FFEDED; /* Rojo muy claro */
          border-radius: 5px;
          width: 100%; /* align-self: stretch */
      }
      .social-checkout-step-content-wrapper .error-icon-box {
          width: 20px; height: 20px;
          background: #FF4D4F; /* Rojo */
          display: flex; align-items: center; justify-content: center;
          border-radius: 2px; /* O 50% si quieres círculo */
      }
      .social-checkout-step-content-wrapper .error-icon-box .material-icons {
          color: white; font-size: 16px;
      }
      .social-checkout-step-content-wrapper .error-text {
          color: #0A0B0B; /* O un rojo más oscuro como #FF4D4F */
          font-size: 13px;
          font-family: 'Instrument Sans', sans-serif;
          font-weight: 500;
          line-height: 16.90px;
      }

      /* Filas de campos de formulario */
      .social-checkout-step-content-wrapper .social-form-field-row {
          display: flex;
          flex-direction: column;
          gap: 8px; /* Era 10px en tu HTML, ajusta */
          margin-bottom: 15px; /* Espacio entre filas de campos */
      }
      .social-checkout-step-content-wrapper .social-form-label {
          color: #0A0B0B;
          font-size: 13px;
          font-family: 'Instrument Sans', sans-serif;
          font-weight: 500;
          line-height: 16.90px;
      }
      .social-checkout-step-content-wrapper .social-form-label .required-asterisk {
          color: #FF4D4F; /* Color para el asterisco de requerido */
          margin-left: 2px;
      }

      .social-checkout-step-content-wrapper .social-form-input-wrapper {
          display: flex; /* Para el botón de mostrar contraseña si existe */
          width: 100%; /* align-self: stretch */
      }
      .social-checkout-step-content-wrapper .social-form-input {
          flex-grow: 1; /* flex: 1 1 0; */
          padding: 12px 20px; /* Era py-3.5 (14px) px-5 (20px) */
          background: #FEFEFE;
          border-radius: 5px;
          border: 1px solid #DDE1E2; /* outline: 1px #DDE1E2 solid; outline-offset: -1px; */
          color: #0A0B0B;
          font-size: 13px;
          font-family: 'Instrument Sans', sans-serif;
          font-weight: 400;
          height: auto; /* Para que el padding defina la altura */
      }
      .social-checkout-step-content-wrapper .social-form-input::placeholder {
          color: #B1BDC0; /* Un gris más claro para el placeholder */
          font-weight: 400;
      }
      .social-checkout-step-content-wrapper .social-form-input:focus {
          border-color: #0A0B0B; /* outline: 1px #0A0B0B solid; */
          box-shadow: none; /* Quitar cualquier sombra por defecto */
      }
      .social-checkout-step-content-wrapper .social-form-input.input-error {
          border-color: #FF4D4F !important; /* Borde rojo para error */
          color: #FF4D4F; /* Color de texto para error */
      }
      .social-checkout-step-content-wrapper .social-form-input.input-error::placeholder {
          color: #FF4D4F;
          opacity: 0.7;
      }

      /* Para el texto de ayuda o errores por campo */
      .social-checkout-step-content-wrapper .form-field-errors {
          margin-top: 5px;
          padding-left: 0; /* Quitar padding de ul */
          list-style: none; /* Quitar viñetas */
      }
      .social-checkout-step-content-wrapper .form-field-errors li {
          color: #FF4D4F;
          font-size: 12px;
      }
      .social-checkout-step-content-wrapper .social-form-custom-text {
          font-size: 12px;
      }

      /* Botones de acción del formulario (ej. "Guardar datos personales") */
      /* PrestaShop suele ponerlos en $customer_form.action_buttons */
      /* Estos selectores son genéricos para los botones dentro del paso */
      .social-checkout-step-content-wrapper form button[type="submit"],
      .social-checkout-step-content-wrapper .social-continue-btn {
          /* Estilos para tus botones principales de continuar/guardar en el paso */
          background-color: #0A0B0B;
          color: white;
          border-radius: 5px;
          padding: 10px 20px;
          font-size: 15px;
          font-family: 'Satoshi', sans-serif; /* Asegúrate que la fuente esté cargada */
          font-weight: 700;
          border: none;
          cursor: pointer;
          /* ...otros estilos que necesites ... */
      }
      .social-checkout-step-content-wrapper form button[type="submit"] i.material-icons,
      .social-checkout-step-content-wrapper .social-continue-btn i.material-icons {
          vertical-align: middle;
          margin-left: 5px;
      }

      /* checkout.tpl - Estilos Generales para los Pasos del Checkout "Social" */

      /* Contenedor de cada paso del checkout (ej. <section id="checkout-personal-information-step"...>) */
      #checkout-personal-information-step,
      #checkout-addresses-step,
      #checkout-delivery-step,
      #checkout-payment-step {
          background: #F9F9F9 !important; /* Fondo general del paso */
          border-radius: 10px !important;
          padding: 25px !important;
          margin-bottom: 30px !important; /* Espacio entre pasos */
          font-family: 'Anuphan', sans-serif; /* Fuente base para los títulos dentro del paso */
      }

      /* Título principal del paso (el h1 que viene de checkout-step.tpl) */
      #checkout-personal-information-step .step-title,
      #checkout-addresses-step .step-title,
      #checkout-delivery-step .step-title,
      #checkout-payment-step .step-title {
          color: #0A0B0B;
          font-size: 22px; /* Como tu "Datos personales" */
          font-family: 'Anuphan', sans-serif;
          font-weight: 600;
          line-height: 28.60px;
          margin-bottom: 20px; /* Espacio después del título del paso */
          padding-bottom: 15px; /* Espacio antes del divisor */
          border-bottom: 0.75px solid #DDE1E2; /* Divisor después del título del paso */
          display: flex; /* Para alinear número y texto */
          align-items: center;
      }
      /* Ocultar el número y check por defecto si no los quieres en este estilo de título */
      #checkout-personal-information-step .step-title .step-number,
      #checkout-addresses-step .step-title .step-number,
      #checkout-delivery-step .step-title .step-number,
      #checkout-payment-step .step-title .step-number,
      #checkout-personal-information-step .step-title .material-icons.done,
      #checkout-addresses-step .step-title .material-icons.done,
      #checkout-delivery-step .step-title .material-icons.done,
      #checkout-payment-step .step-title .material-icons.done {
          /* display: none; Descomenta si quieres ocultar el número y el check por defecto del título del paso */
      }
      #checkout-personal-information-step .step-title .step-edit,
      #checkout-addresses-step .step-title .step-edit,
      #checkout-delivery-step .step-title .step-edit,
      #checkout-payment-step .step-title .step-edit {
          /* display: none; Descomenta si quieres ocultar el botón "editar" del título del paso */
      }


      /* Subtítulos dentro de un paso (ej. "Mi dirección") */
      .social-checkout-subtitle {
          color: #0A0B0B;
          font-size: 18px;
          font-family: 'Anuphan', sans-serif;
          font-weight: 600;
          line-height: 23.40px;
          margin-top: 20px; /* Espacio si viene después de otro bloque */
          margin-bottom: 10px; /* Espacio antes de los campos o divisor */
      }

      /* Divisor ligero (si lo añades manualmente en el TPL del paso) */
      .social-divider-light {
          height: 0px;
          border: none;
          border-top: 0.75px solid #DDE1E2;
          width: 100%; 
          margin: 20px 0;
      }

      /* Estilo para los grupos de campos de formulario estándar de PrestaShop (.form-group) */
      .checkout-step .form-group {
          display: flex;
          flex-direction: column; /* Pone la etiqueta encima del input */
          gap: 8px; /* Espacio entre etiqueta e input (era 10px en tu HTML) */
          margin-bottom: 18px; /* Espacio entre campos */
          /* width: 370px; No fijar ancho aquí, dejar que el grid del tema lo maneje o usar clases de columna */
      }

      /* Etiquetas de los campos */
      .checkout-step .form-group label.form-control-label {
          color: #0A0B0B;
          font-size: 13px;
          font-family: 'Instrument Sans', sans-serif; /* Asegúrate que la fuente esté cargada */
          font-weight: 500;
          line-height: 16.90px;
          margin-bottom: 0; /* El gap del .form-group ya da espacio */
          text-align: left; /* Asegurar alineación */
          width: auto; /* Resetear anchos de columna de Bootstrap si es necesario */
          padding-left:0; /* Resetear padding de columna de Bootstrap si es necesario */
      }
      .checkout-step .form-group label.form-control-label .form-control-comment {
          font-weight: 400;
          font-size: 0.9em;
          display: block; /* Para que el comentario se ponga debajo de la etiqueta */
      }

      /* Contenedor del input (si PrestaShop envuelve el input en un div como .col-md-X) */
      .checkout-step .form-group > div[class*="col-"] {
          padding-left: 0; /* Resetear padding de columna de Bootstrap si es necesario */
          padding-right: 0;
          width: 100%; /* Para que ocupe el ancho del .form-group */
      }

      /* Inputs, selects, textareas */
      .checkout-step .form-group .form-control {
          background: #FEFEFE;
          border-radius: 5px;
          border: 1px solid #DDE1E2; /* Era outline, usamos border que es más estándar */
          padding: 12px 20px; /* Era py-3.5 (14px) px-5 (20px), ajustado un poco */
          color: #0A0B0B;
          font-size: 13px;
          font-family: 'Instrument Sans', sans-serif;
          font-weight: 400;
          width: 100%; /* Para que ocupe el contenedor */
          box-shadow: none; /* Quitar sombras por defecto */
          height: auto; /* Altura basada en padding y contenido */
          line-height: 1.5; /* Mejorar altura de línea para el padding */
      }
      .checkout-step .form-group .form-control:focus {
          border-color: #0A0B0B;
          box-shadow: none; /* O una sombra sutil si prefieres: 0 0 0 0.2rem rgba(10, 11, 11, 0.25) */
      }
      .checkout-step .form-group .form-control::placeholder {
          color: #B1BDC0; /* Un gris para el placeholder */
          font-weight: 400;
      }

      /* Estilo para campos con error (PrestaShop añade la clase .has-error al .form-group) */
      .checkout-step .form-group.has-error label.form-control-label {
          color: #FF4D4F !important; /* Rojo para la etiqueta */
      }
      .checkout-step .form-group.has-error .form-control {
          border-color: #FF4D4F !important; /* Borde rojo */
          color: #FF4D4F; /* Color del texto dentro del input con error */
      }
      .checkout-step .form-group.has-error .form-control::placeholder {
          color: #FF4D4F;
          opacity: 0.7;
      }
      .checkout-step .form-group .help-block ul { /* Errores debajo del campo */
          list-style: none;
          padding-left: 0;
          margin-top: 5px;
      }
      .checkout-step .form-group .help-block ul li {
          color: #FF4D4F;
          font-size: 12px;
      }

      /* Mensaje de error general del paso "¡Ups!..." */
      .social-checkout-error-box {
          display: flex;
          align-items: center;
          gap: 10px;
          padding: 10px;
          background: #FFEDED;
          border-radius: 5px;
          width: 100%;
          margin: 10px 0; /* Espacio arriba/abajo */
      }
      .social-checkout-error-box .error-icon-wrapper {
          width: 20px; height: 20px;
          background: #FF4D4F;
          display: flex; align-items: center; justify-content: center;
          border-radius: 2px; /* O 50% para círculo */
      }
      .social-checkout-error-box .error-icon-wrapper .material-icons {
          color: white; font-size: 16px;
      }
      .social-checkout-error-box .error-text-content {
          color: #0A0B0B; /* O un rojo más oscuro */
          font-size: 13px;
          font-family: 'Instrument Sans', sans-serif;
          font-weight: 500;
          line-height: 16.90px;
      }

    #left-column{border-right: 1px #DDE1E2 solid; padding-right: 60px;}




    /* Estilos para _mobile_user_info*/
      .user-info-block-social {
          width: 100%;
          display: flex; 
          flex-direction: column;
          justify-content: flex-start;
          align-items: flex-start;
          gap: 15px; 
          padding: 20px; 
      }

      .user-account-section-mobile .user-account-title {
          align-self: stretch;
          color: #0A0B0B;
          font-size: 18px;
          font-family: 'Anuphan', sans-serif; 
          font-weight: 600;
          word-wrap: break-word;
          margin-bottom: 20px; 
      }

      .user-account-section-mobile .user-account-links {
          align-self: stretch;
          display: flex;
          flex-direction: column;
          justify-content: flex-start;
          align-items: flex-start;
          gap: 20px; 
      }

      .user-account-section-mobile .user-account-link-item {
          width: 100%;
      }

      .user-account-section-mobile .account-link {
          color: #0A0B0B;
          font-size: 15px;
          font-family: 'Instrument Sans', sans-serif; 
          font-weight: 500;
          word-wrap: break-word;
          text-decoration: none;
          display: block; 
          padding: 5px 0; 
      }
      .user-account-section-mobile .account-link:hover {
          text-decoration: underline; 
      }
      .user-account-section-mobile .user-account-link-item.has-arrow .account-link {
          display: flex;
          justify-content: space-between;
          align-items: center;
      }
      .user-account-section-mobile .user-account-link-item.has-arrow .account-link::after {
        content: '';
        display: inline-block;
        width: 8px;
        height: 4px;
        border-width: 0 1.5px 1.5px 0; 
        border-left: 1.5px solid #0A0B0B;
        border-bottom: 1.5px solid #0A0B0B;
        transform: rotate(-45deg);
        width: 6px; height: 6px; margin-top: -4px;
      }
      .user-login-register-section-mobile {
          width: 100%;
          text-align: center;
      }
      .user-login-register-section-mobile .user-action-link {
          color: #0A0B0B;
          font-size: 15px;
          font-family: 'Instrument Sans', sans-serif;
          font-weight: 500;
          text-decoration: none;
          padding: 8px 10px;
      }
      .user-login-register-section-mobile .user-action-link:hover {
          text-decoration: underline;
      }
      .user-login-register-section-mobile .link-separator {
          margin: 0 5px;
          color: #5B6565;
      }

      #_desktop_user_info .user-info-mobile-view,
      #_mobile_user_info .user-info-mobile-view { 
          display: block; 
      }
      #_desktop_user_info .user-info-desktop-view,
      #_mobile_user_info .user-info-desktop-view {
          display: none; 
      }

      @media (min-width: 992px) { 
          #_desktop_user_info .user-info-desktop-view {
              display: block; 
          }
          #_desktop_user_info .user-info-mobile-view {
              display: none;
          }

          #_mobile_user_info .user-info-desktop-view {
              display: none !important;
          }
          #_mobile_user_info .user-info-mobile-view {
              display: block !important; 
          }
      }

      @media (max-width: 992px) { 
        #_mobile_user_info .user-info-desktop-view {
              display: none;
          }
          #_mobile_user_info .user-info-mobile-view {
              display: block;
          }
      }

      .user-info-desktop-view .user-info-block {
          display: flex;
          align-items: center;
          gap: 10px;
      }
      .user-info-desktop-view .user-info-block a {
          text-decoration: none;
          color: #333; 
      }
      .user-info-desktop-view .link-separator-desktop {
          margin: 0 5px;
      }

      /* accepted-payments-block.css */

      .accepted-payments-block {
          background: rgba(255, 255, 255, 0.10); 
          padding: 15px;
          margin: -20px -15px; 
          border-radius: 5px; 
          display: flex;
          flex-direction: column; 
          align-items: flex-start; 
      }

      .accepted-payments-block .accepted-payments-title {
          width: 100%;
          margin-bottom: 15px; 
          font-size: 18px; 
          font-family: 'Instrument Sans', sans-serif; 
          font-weight: 700; 
          color: #0A0B0B; 
      }

      .accepted-payments-block .payment-logos-container {
          width: 100%;
          display: flex;
          justify-content: space-between; /* Distribuye los logos en escritorio */
          align-items: center;
          gap: 5px; /* Pequeño gap por si se envuelven o para estética */
          flex-wrap: nowrap; /* Evita que se envuelvan en escritorio si son muchos */
      }

      .accepted-payments-block .payment-logo-item {
          background: #FEFEFE;
          border-radius: 2px;
          padding: 5px; /* Padding general, ajusta si es necesario */
          display: inline-flex; /* Para alinear el contenido interno si lo hubiera */
          justify-content: center;
          align-items: center;
          width: 35px; /* Ancho base de cada cajita de logo */
          height: 22px; /* Alto base */
          box-sizing: border-box;
      }

      .accepted-payments-block .payment-logo-item img.payment-logo {
          max-width: 100%;
          max-height: 100%;
          object-fit: contain; /* Para que la imagen se ajuste sin deformarse */
      }

      /* Estilos específicos para el logo de contrareembolso si es necesario */
      .accepted-payments-block .payment-logo-item.contrareembolso-item {
          width: auto; 
          padding: 3px 5px; 
          gap: 2px; 
          flex-direction: row; 
          align-items: center;
      }
      .accepted-payments-block .payment-logo-item.contrareembolso-item .payment-logo.contrareembolso-icon {
          width: 8px;  
          height: 9px;
          margin-right: 3px;
      }
      .accepted-payments-block .payment-logo-item.contrareembolso-item .contrareembolso-text {
          display: flex;
          flex-direction: column; 
          color: #0A0B0B;
          font-size: 6px;
          font-family: 'Instrument Sans', sans-serif; 
          font-weight: 400;
          line-height: 1; 
          text-align: left;
      }

      .copyright{
            text-align: right;
          }

      #privacity{
        justify-content: flex-start; 
        align-items: center; 
        gap: 20px; 
        display: flex;
      }
      /* --- Estilos para Móvil --- */
      @media (max-width: 768px) {
          .accepted-payments-block {
              flex-direction: row; 
              justify-content: space-between; 
              align-items: center; 
              padding: 10px 15px;
              margin-block: 20px;
          }

          .accepted-payments-block .accepted-payments-title {
              width: auto;
              margin-bottom: 0 !important;
              font-size: 15px; 
              color: #FEFEFE;
          }

          .accepted-payments-block .payment-logos-container {
              width: auto;
              justify-content: flex-start; 
              gap: 10px; 
              flex-wrap: nowrap; 
          }
          .accepted-payments-block .payment-logo-item.contrareembolso-item .contrareembolso-text {
              font-family: 'Satoshi', sans-serif; 
          }
          .copyright{
            text-align: center;
            margin-block: 20px;
          }
          #privacity{
            justify-content: space-between;
            align-items: center; 
            gap: 20px; 
            display: flex;
          }
      }

      /* home-banner-usp.css */
        .home-banner-usp {
            display: flex; 
            justify-content: space-around; 
            align-items: center;
            background: #F3F7F8; 
            border-radius: 10px;
            padding: 15px 25px; 
            /*margin: 20px 0; */
            gap: 15px; 
            flex-wrap: nowrap; 
        }

        .home-banner-usp .usp-item {
            display: flex;
            flex-direction: row; 
            align-items: center;
            justify-content: center; 
            gap: 10px; 
            flex: 1 1 0;
            min-width: 180px;
            padding: 10px; 
            text-align: left;
        }

        .home-banner-usp .usp-icon {
            width: 39px;  
            height: 39px; 
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .home-banner-usp .usp-icon img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .home-banner-usp .usp-text {
            color: #0a0b0b;
            font-size: 14px; 
            font-family: 'Instrument Sans', sans-serif; 
            font-weight: 500;
            word-wrap: break-word;
            line-height: 1.3;
        }

        /* --- Estilos para el Slider en Móvil --- */
        @media (max-width: 768px) {
            .home-banner-usp {
                padding: 15px 0;
                overflow: hidden; 
                margin-left: -15px; 
                margin-right: -15px;
                position: relative; 
                background: #FFF;
            }

            .home-banner-usp .swiper-wrapper {
                /* Swiper añade esta clase automáticamente */
            }

            .home-banner-usp .usp-item { 
                width: auto; /* Para slidesPerView: 'auto' */
                min-width: 250px; /* Un ancho mínimo para los slides */
                max-width: 80%;   /* Un máximo para que no sea un solo slide muy ancho */
                flex-shrink: 0; /* Importante para Swiper */
                
                flex-direction: row; /* Icono y texto siguen en fila como en tu HTML móvil */
                justify-content: center; /* Centrar contenido del slide */
                background: #F3F7F8; /* Fondo de cada slide */
                border-radius: 10px;
                padding: 17px;
                gap: 15px; 
                text-align: center; /* Texto centrado en el slide */
            }
            .home-banner-usp .usp-item .usp-text {
                width: auto; /* Permitir que el texto se ajuste */
                flex-grow: 1; /* Para que ocupe espacio si es necesario */
                text-align: center; /* Tu HTML móvil tenía texto centrado */
            }

            /* Ocultar las flechas de navegación de Swiper (como pediste para móvil/tablet) */
            .home-banner-usp .swiper-button-next,
            .home-banner-usp .swiper-button-prev {
                display: none !important;
            }
            /* Estilos para la paginación de Swiper (dots) si la usas */
            .home-banner-usp .swiper-pagination-bullet {
                background: #0A0B0B; /* O el color que desees para los dots */
                opacity: 0.5;
            }
            .home-banner-usp .swiper-pagination-bullet-active {
                opacity: 1;
            }
        }

        @media (max-width: 767.98px) {
            .pos-special-products-grouped-by-category {
                flex-direction: column;
                gap: 25px;
            }

            .pos-special-products-grouped-by-category .category_special_block{
              width: 100%;
              box-shadow: none;
              border: none;
              border-radius: 0;
              border-bottom: 1px solid #e0e0e0;
            }

            .category_special_block {
                /* Hacemos que cada bloque ocupe el ancho disponible */
                width: 100%;
                max-width: 100%;
                padding: 20px 15px; /* Ajuste de padding para móvil */
            }

            /* Fila del encabezado de categoría (título + oferta) */
            .category_special_block .category-header-row {
                display: flex;
                justify-content: space-between; /* Título a la izquierda, oferta a la derecha */
                align-items: center;
                width: 100%; /* align-self: stretch */
                margin-bottom: 20px; /* gap: 20px */
            }

            .category_special_block .category_block_title {
                font-family: 'Anuphan', sans-serif;
                font-size: 16px;
                font-weight: 600;
                line-height: 1.2;
                color: #0A0B0B;
                text-align: left; 
                margin: 0;
            }
            .category_special_block .category_block_title a {
                color: inherit;
            }

            .category_special_block .category_offer_indicator {
                margin-bottom: 0; 
                padding: 6px 10px;
                border-radius: 50px; 
                font-size: 13px;
                position: relative;
                top: -30px;
                left: 100px;
            }

            .category_special_block .offer_type_countdown {
                background: #FFEDED; 
            }
            .category_special_block .offer_type_today_only {
                background: #FEF7D9; 
            }
            .category_special_block .category_offer_indicator span,
            .category_special_block .category_offer_indicator img {
                vertical-align: middle;
            }

            
            .category_special_block .product_list_by_category {
                justify-content: space-between; 
                gap: 15px; 
            }
            .category_special_block .product_item_container {
                width: calc(50% - 8px);
                min-width: 140px;
            }

            .category_special_block .product-miniature .img_block img {
                height: 170px; 
                object-fit: contain;
            }
            .category_special_block .product-miniature .product_desc {
                padding: 5px 0; 
            }
            .category_special_block .product-miniature .product_name {
                font-size: 14px;
                line-height: 19.60px;
                font-weight: 500;
                min-height: 58px; 
            }
            
            .category_special_block .product-miniature .product-price-and-shipping {
                flex-direction: column;
                align-items: flex-start; 
                gap: 0;
            }
            .category_special_block .product-miniature .regular-price {
                font-size: 10px;
            }
            .category_special_block .product-miniature .price {
                font-size: 16px;
                color: #FF4D4F;
            }
            .category_special_block .product-miniature .cart {
                /* Estilo para el botón de carrito pequeño */
                width: 35px;
                height: 35px;
                /* ... etc. ... */
            }
        }

        /* Estilos para el bloque "Secciones que te encantarán" */
        .secciones-encantaran-container {
            max-width: 1290px; /* Ancho máximo como en tu HTML */
            margin-left: auto;
            margin-right: auto;
            padding: 30px 15px; /* Padding para que no se pegue a los bordes en pantallas más pequeñas */
        }

        .secciones-encantaran-title {
            color: #0a0b0b;
            font-size: 26px;
            font-family: 'Anuphan', sans-serif; /* Asegúrate que la fuente esté cargada */
            font-weight: 600;
            line-height: 33.80px;
            margin-bottom: 35px;
            text-align: left; /* O center si lo prefieres */
        }

        /* --- 1. Icons Categories --- */
        /* Vista de Escritorio */
        .icons-categories-block {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 35px;
        }
        .icons-categories-block .swiper-wrapper { /* En escritorio, el wrapper también es flex */
            display: flex;
            justify-content: space-between;
            width: 100%;
        }
        .icons-categories-block .icon-category-item {
            display: flex; /* Era inline-flex */
            flex-direction: column;
            align-items: center;
            gap: 13px;
            text-decoration: none;
            width: 98px;
            cursor: pointer;
        }
        .icons-categories-block .icon-circle {
            width: 98px;
            height: 98px;
            background: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px; /* Para que el icono no llene todo el círculo */
            box-sizing: border-box;
            transition: transform 0.3s ease;
        }
        .icons-categories-block .icon-category-item:hover .icon-circle {
            transform: scale(1.05);
        }
        .icons-categories-block .icon-circle img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        .icons-categories-block .icon-title {
            text-align: center;
            color: black;
            font-size: 15px;
            font-family: 'Anuphan', sans-serif;
            font-weight: 600;
            line-height: 1.2;
        }
        .icons-categories-block .swiper-pagination {
            display: none; /* Ocultar paginación en escritorio */
        }

        .cards-categories-block {
            display: flex; /* Era inline-flex */
            flex-wrap: wrap; /* Para que se ajusten */
            justify-content: flex-start; /* O center */
            gap: 20px; /* Era 16px en tu HTML */
        }
        .cards-categories-block .card-category-item {
            width: calc(33.333% - 14px); /* Para 3 columnas con gap de 20px */
            height: 320px; /* Tu HTML tenía 320px */
            padding: 30px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;
            position: relative; /* Para la imagen absoluta */
            overflow: hidden; /* Para que la imagen no se desborde */
            text-decoration: none;
            color: #FEFEFE;
            box-sizing: border-box;
            transition: transform 0.3s ease;
        }
        .cards-categories-block .card-category-item:hover {
            transform: translateY(-5px);
        }
        .cards-categories-block .card-category-item .card-text-content {
            /* ... */
        }
        .cards-categories-block .card-category-item .card-subtitle {
            font-size: 15px;
            font-family: 'Anuphan', sans-serif;
            font-weight: 400;
            text-transform: uppercase;
            line-height: 19.50px;
            letter-spacing: 2.25px;
            margin-bottom: 10px;
        }
        .cards-categories-block .card-category-item .card-title {
            font-size: 22px;
            font-family: 'Anuphan', sans-serif;
            font-weight: 600;
            line-height: 28.60px;
        }
        .cards-categories-block .card-category-item .card-image {
            position: absolute;
            right: -20px; /* Ajusta la posición de la imagen */
            bottom: -20px;
            max-width: 50%;
            max-height: 100%;
            transition: transform 0.4s ease;
        }
        .cards-categories-block .card-category-item:hover .card-image {
            transform: scale(1.1);
        }
        .cards-categories-block .card-category-item .card-button {
            height: 45px;
            border-radius: 5px;
            border: 1px solid #FEFEFE;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            padding: 10px 15px;
            font-size: 15px;
            font-family: 'Instrument Sans', sans-serif;
            font-weight: 500;
            background-color: transparent;
            color: #fefefe;
            transition: background-color 0.2s ease, color 0.2s ease;
        }
        .cards-categories-block .card-category-item:hover .card-button {
            background-color: #FEFEFE;
            color: #0A0B0B;
        }

        /* ========== Estilos para Móvil ========== */
        @media (max-width: 768px) {
            .secciones-encantaran-container {
                padding: 20px 0; /* Padding ajustado para móvil */
            }
            .secciones-encantaran-title {
                padding: 0 15px; /* Padding para el título en móvil */
                text-align: center;
                font-size: 22px;
            }

            /* --- 1. Icons Categories: AHORA ES UN SLIDER --- */
            .icons-categories-block {
                /* Los estilos base de Swiper se aplicarán. Podemos ajustar aquí. */
                margin-left: -15px; /* Para que el slider llegue a los bordes */
                margin-right: -15px;
                padding: 0 15px; /* Padding para que el primer slide no se pegue */
                justify-content: flex-start; /* Ya no space-between */
            }
            .icons-categories-block .swiper-wrapper {
                justify-content: flex-start; /* Los slides se alinean al inicio */
            }
            .icons-categories-block .icon-category-item {
                /* El width será manejado por Swiper */
                width: 98px; /* O 'auto' si usas slidesPerView:'auto' */
                flex-shrink: 0; /* Importante para que Swiper no encoja los slides */
            }
            .icons-categories-block .swiper-pagination {
                display: block; /* Mostrar paginación en móvil */
                position: relative; /* O static, si va debajo */
                bottom: auto;
                margin-top: 20px;
            }
            .icons-categories-block .swiper-pagination-bullet-active {
                background: #0a0b0b; /* Color para el dot activo */
            }


            /* --- 2. Cards de Categorías: AHORA APILADAS --- */
            .cards-categories-block {
                flex-direction: column; /* Apilar las tarjetas */
                align-items: center;    /* Centrar las tarjetas apiladas */
                gap: 25px; /* Espacio entre tarjetas apiladas */
            }
            .cards-categories-block .card-category-item {
                width: 100%; /* Cada tarjeta ocupa todo el ancho disponible */
                max-width: 400px; /* Un ancho máximo para que no se vea gigante en tablets */
                height: 320px; /* O ajusta a 'auto' */
            }
            .cards-categories-block .card-category-item .card-image {
                /* Ajustar la posición y tamaño de la imagen para el layout vertical si es necesario */
                max-width: 45%;
                right: 10px;
                bottom: 10px;
            }

            #main-slider {
              height: 370px;
              margin-bottom: 0;
              padding-bottom: 50px;
            }

            .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal{
              bottom: 10px;
            }

    /* Opcional pero recomendado:
       Asegura que las imágenes dentro del slider llenen la nueva altura sin deformarse. */
    .mySwiper .swiper-slide img {
        height: 100%; /* La imagen ocupa toda la altura del slide */
        object-fit: cover; /* La imagen cubre el espacio, recortándose si es necesario para mantener la proporción */
        /* Si prefieres que se vea toda la imagen sin recortar, usa: object-fit: contain; */
    }
        }

        /* --- Vista de ESCRITORIO (ej. > 991px) --- */
          @media (min-width: 992px) {
              /* 1. Botón "Filtrar" móvil no se ve en escritorio */
              #pos_search_filter_toggler {
                  display: none !important;
              }
              
              /* 2. La columna izquierda siempre es visible y estática en escritorio */
              #left-column {
                  display: block !important;
                  position: static !important;
                  left: auto !important;
                  width: auto !important; /* El grid de Bootstrap se encarga del ancho */
                  /* ... y reseteamos cualquier otro estilo de panel */
                  height: auto !important;
                  background: none !important;
                  box-shadow: none !important;
                  padding: 0 !important;
                  overflow: visible !important;
                  z-index: auto !important;
                  transition: none !important;
              }

              /* 3. El contenido del filtro es un bloque normal */
              #search_filters_wrapper {
                  position: static !important;
              }

              /* 4. Ocultamos el overlay y el botón de cerrar en escritorio */
              .search_filters_overlay,
              #left-column .close-filter {
                  display: none !important;
              }

              #products-list-subcategories{
                width:80%;
                padding-left: 30px; 
                padding-right: 0;
              }
            }
            
          /* @media (min-width: 1252px) {
            #products-list-subcategories{
              width:80%;
            }
          } */
          @media (min-width: 992px) {
            #products-list-subcategories{
              width:75%;
            }
          }
          
          @media (max-width: 992px) {
            #products-list-subcategories{
              width:100%;
            }

          }

          #products-list #left-column {
            width: 25% !important;
          }
          @media (max-width: 767px) {
            #category #left-column {
                width: 100% !important;
            }
          }

          #products-list #products-list-subcategories {
            width: 75%;
          }

          @media (max-width: 992px) {
            #products-list #products-list-subcategories{
              width:100%;
            }
          }


          /* --- Vista MÓVIL (ej. < 992px) --- */
          @media (max-width: 991.98px) {
              /* 1. Botón de filtros visible */
              #pos_search_filter_toggler {
                  display: inline-flex !important; 
              }

              /* 2. La columna izquierda es el panel desplegable. Oculta por defecto. */
              #left-column {
                  display: block !important; /* Importante para que JS pueda actuar sobre él */
                  position: fixed;
                  top: 0;
                  left: 0;
                  transform: translateX(-100%); /* Lo ocultamos moviéndolo fuera de la pantalla a la izquierda */
                  width: 300px; /* Ancho del panel */
                  max-width: 85%; /* Máximo por si la pantalla es muy estrecha */
                  height: 100%;
                  background-color: white;
                  z-index: 1050;
                  overflow-y: auto;
                  padding: 20px;
                  padding-top: 50px;
                  transition: transform 0.3s ease-in-out; /* Animación suave */
              }

              /* 3. Cuando JS añade la clase, el panel se desliza a la vista */
              #left-column.filter-panel-opened {
                  transform: translateX(0); /* Lo movemos a su posición visible */
              }

              /* 4. El contenido del filtro (#search_filters_wrapper) es estático dentro del panel */
              #search_filters_wrapper {
                  position: static !important;
                  padding: 0 !important;
                  box-shadow: none !important;
              }
              
              /* 5. El overlay (fondo oscuro) */
              .search_filters_overlay {
                  position: fixed;
                  top: 0;
                  left: 0;
                  width: 100vw;
                  height: 100vh;
                  background: rgba(0, 0, 0, 0.5);
                  z-index: 1040;
                  opacity: 0;
                  visibility: hidden;
                  transition: opacity 0.3s ease;
              }

              /* 6. Cuando el body tiene la clase activa, se muestra el overlay y se bloquea el scroll */
              body.filter-panel-active {
                  overflow: hidden; /* Evita que el fondo de la página haga scroll */
              }
              body.filter-panel-active .search_filters_overlay {
                  opacity: 1;
                  visibility: visible;
              }

              /* 7. El botón de cerrar dentro del panel */
              #left-column .close-filter {
                  display: block !important;
                  position: absolute;
                  top: 10px;
                  right: 15px;
                  cursor: pointer;
                  font-size: 24px;
                  color: #333;
                  border: 0;
              }

              #products-list-subcategories{
                padding-left: 0px; 
                padding-right: 0;
              }

              .products-selection .sort-by-row{
                justify-content: space-between;
              }
        }


        /* Estilos para el bloque de cupones de descuento - Diseño "Social" */

        /* Contenedor principal que envuelve el include de cart-voucher.tpl */
        /* En tu cart.tpl, le pusimos la clase .cart-voucher-social-container */
        .cart-voucher-social-container {
            background: #FEFEFE;
            border-radius: 10px;
            padding: 25px 30px;
            margin-top: 20px;
            box-shadow: 0px 0px 20px rgba(81, 81, 81, 0.10);
            display: flex;
            flex-direction: column;
            gap: 15px; /* Espacio entre el título y el formulario */
            font-family: 'Instrument Sans', sans-serif; /* Asegúrate que la fuente esté cargada */
        }

        /* El div.cart-voucher es el wrapper que pone PrestaShop */
        .cart-voucher-social-container .cart-voucher {
            /* Aquí podemos agrupar la fila del título y la del formulario */
            display: flex;
            flex-direction: column;
            gap: 10px; /* Espacio entre título, lista de cupones aplicados y formulario */
        }

        /* Título de la sección: "¿Tienes un código promocional?" */
        /* El h5 o el .label dentro de cart-voucher.tpl se convierte en nuestra fila de título */
        .cart-voucher-social-container .cart-voucher h5,
        .cart-voucher-social-container .cart-voucher .promo-code-label {
          justify-content: space-between;
          display: flex;
          align-items: center;
          color: #0A0B0B;
          font-size: 13px;
          font-family: 'Instrument Sans', sans-serif;
          font-weight: 500;
          line-height: 16.90px;
        }

        .label-cart-voucher {
            display: flex;
            align-items: center;
            gap: 1rem;
            justify-content: start;
        }
        .label-cart-voucher h5 {
          padding-left: 25px !important;
        }

        /* Añadir iconos al título usando pseudo-elementos ::before y ::after */
        #icon-porcentaje {
            position: absolute;
            width: 20px;
            height: 20px;
            margin-right: -95px;
            background-image: url('../img/insignia-porcentaje-descuento.svg');
            background-repeat: no-repeat;
            background-position: center;
        }



        /* Formulario de cupón */
        .cart-voucher-social-container .cart-voucher .promo-code form {
            display: flex; /* Para poner el input y el botón en línea */
            gap: 5px;
            width: 100%; /* align-self: stretch */
        }

        /* Input para el código */
        .cart-voucher-social-container .cart-voucher .promo-code input.promo-input {
            flex: 1 1 0; /* Para que ocupe el espacio disponible */
            height: 35px;
            padding: 0 15px;
            background: white;
            border-radius: 5px;
            border: 1px solid #B1BDC0; /* Usamos border en lugar de outline para mejor compatibilidad */
            color: #0A0B0B;
            font-size: 13px;
            font-family: 'Instrument Sans', sans-serif;
            font-weight: 400;
        }
        .cart-voucher-social-container .cart-voucher .promo-code input.promo-input:focus {
            border-color: #0A0B0B; /* Borde más oscuro al hacer focus */
            box-shadow: none;
        }

        /* Botón para aplicar el cupón */
        .cart-voucher-social-container .cart-voucher .promo-code button.btn {
            width: 35px;
            height: 35px;
            flex-shrink: 0; /* Para que el botón no se encoja */
            padding: 0;
            background: #0A0B0B;
            border-radius: 5px;
            border: none;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            color: #FEFEFE; /* Color del icono del botón */
            background-image: url('../img/vocuher-add-icon.svg');
            background-repeat: no-repeat;
            background-position: center;
        }
        .cart-voucher-social-container .cart-voucher .promo-code button.btn .material-icons,
        .cart-voucher-social-container .cart-voucher .promo-code button.btn i {
            font-size: 18px; /* Ajusta el tamaño del icono de "añadir" */
            color: inherit;
        }
        /* Ocultar el texto "Apply" o "Añadir" del botón estándar de PrestaShop si solo quieres el icono */
        .cart-voucher-social-container .cart-voucher .promo-code button.btn span {
            display: none;
        }

        /* Lista de cupones ya aplicados (si cart-voucher.tpl los muestra) */
        .cart-voucher-social-container .cart-voucher .promo-name {
            list-style: none;
            padding: 0;
            margin-top: 10px; /* Espacio después del formulario */
        }
        .cart-voucher-social-container .cart-voucher .promo-name .cart-summary-line {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }
        .cart-voucher-social-container .cart-voucher .promo-name .cart-summary-line .label {
            /* Estilos para el nombre del cupón aplicado */
        }
        .cart-voucher-social-container .cart-voucher .promo-name .cart-summary-line a[data-link-action="remove-voucher"] {
            margin-left: 10px; /* Espacio entre el valor del descuento y el botón de borrar */
            color: #B1BDC0;
            text-decoration: none;
        }
        .cart-voucher-social-container .cart-voucher .promo-name .cart-summary-line a[data-link-action="remove-voucher"]:hover {
            color: #FF4D4F; /* Color al pasar el ratón por encima */
        }

        /* CSS para layout de formularios del checkout */
        /* 1. Contenedor Flex para los campos */
        .form-fields-container-flex {
            display: flex;
            flex-wrap: wrap; /* Permite que los campos pasen a la siguiente línea */
            gap: 0 20px; /* 0 de espacio vertical (lo da el margin-bottom de cada campo), 20px de espacio horizontal entre columnas */
        }

        /* 2. Estilo base para cada campo (heredado de tu CSS anterior) */
        .form-fields-container-flex .form-group {
            display: flex;
            flex-direction: column; /* Etiqueta encima del input */
            gap: 8px;
            margin-bottom: 18px;
        }
        /* ... (el resto de tus estilos para .form-control-label, .form-control, etc. siguen igual) ... */


        /* 3. LÓGICA DE ANCHO DE COLUMNAS (La parte clave) */

        /* Campos que ocuparán el 100% del ancho (1 columna) */
        .form-fields-container-flex .form-group.field-id_gender, /* Tratamiento */
        .form-fields-container-flex .form-group.field-address1, /* Dirección 1 */
        .form-fields-container-flex .form-group.field-address2, /* Dirección 2 */
        .form-fields-container-flex .form-group.field-phone,      /* Teléfono */
        .form-fields-container-flex .form-group.field-psgdpr,  /* Checkbox de GDPR */
        .form-fields-container-flex .form-group.field-newsletter, /* Checkbox de Newsletter */
        .form-fields-container-flex .form-group.field-optin { /* Checkbox de ofertas */
            flex-basis: 100%; /* Ocupa todo el ancho */
        }


        /* Campos que ocuparán el 50% del ancho (2 columnas) */
        .form-fields-container-flex .form-group.field-firstname, /* Nombre */
        .form-fields-container-flex .form-group.field-lastname,  /* Apellidos */
        .form-fields-container-flex .form-group.field-email,     /* Email */
        .form-fields-container-flex .form-group.field-password,  /* Contraseña */
        .form-fields-container-flex .form-group.field-birthday,  /* Fecha de nacimiento */
        .form-fields-container-flex .form-group.field-postcode,  /* Código Postal */
        .form-fields-container-flex .form-group.field-city,      /* Ciudad */
        .form-fields-container-flex .form-group.field-id_state,   /* Provincia/Estado */
        .form-fields-container-flex .form-group.field-id_country, /* País */
        .form-fields-container-flex .form-group.field-company, /* Compañía, si existe */
        .form-fields-container-flex .form-group.field-dni {       /* DNI/CIF/NIF */

            /* Calculamos el ancho para 2 columnas considerando el gap de 20px:
              (100% de ancho total - 20px de gap) / 2 columnas */
            flex-basis: calc(50% - 10px);
            /*flex-grow: 1; /* Permite que crezcan si hay espacio */
        }


        /* --- Responsividad para Móvil --- */
        /* En pantallas pequeñas, hacemos que TODOS los campos ocupen el 100% del ancho */
        @media (max-width: 767.98px) {
            .form-fields-container-flex {
                flex-direction: column; /* Apilar todo verticalmente */
                gap: 0; /* Quitar gap horizontal */
            }

            /* Todos los campos ahora ocupan el 100% */
            .form-fields-container-flex .form-group {
                flex-basis: 100% !important; /* !important para asegurar que sobreescribe el 50% */
                width: 100% !important;
            }
        }

        /* order-confirmation.tpl - Estilos "Social" */
        .order-confirmation-social-container {
            background: #F9F9F9;
            border-radius: 10px;
            padding: 40px 50px; /* Ajustado para pantallas más grandes */
            display: flex;
            flex-direction: column;
            gap: 35px; /* Era 50px, lo ajusto un poco */
            margin: auto;
            max-width: 800px;
            box-sizing: border-box;
        }
        .order-confirmation-main-title {
            max-width: 600px;
            color: #0A0B0B;
            font-size: 34px;
            font-family: 'Anuphan', sans-serif;
            font-weight: 600;
            line-height: 44.20px;
        }
        .order-confirmation-customer-message {
            color: #0A0B0B;
            font-size: 18px;
            font-family: 'Instrument Sans', sans-serif;
            line-height: 28.80px;
        }
        .order-confirmation-customer-message .text-normal { font-weight: 400; }
        .order-confirmation-customer-message .text-bold { font-weight: 600; }

        .order-confirmation-section-title {
            color: #0A0B0B;
            font-size: 22px;
            font-family: 'Anuphan', sans-serif;
            font-weight: 600;
            line-height: 28.60px;
            margin-bottom: 15px; /* Espacio antes de la lista/bloque */
        }

         /* Direcciones */
        .order-confirmation-addresses {
            display: flex;
            flex-wrap: wrap; /* Para que se apilen en móvil */
            gap: 30px;
            width: 100%; /* align-self: stretch */
        }
        .order-confirmation-addresses .address-column {
            flex: 1 1 300px; /* Cada columna crece y se encoge con una base de 300px */
        }
        .order-confirmation-addresses .address-card {
            background: #FEFEFE;
            border-radius: 5px;
            padding: 20px 30px;
        }
        .order-confirmation-addresses .address-card address {
            font-style: normal;
            color: #0A0B0B; font-size: 16px; /* era 18px, pero puede ser muy grande. Ajusta */
            font-family: 'Instrument Sans', sans-serif;
            font-weight: 400;
            line-height: 25px; /* era 27px */
        }
        .order-confirmation-addresses .address-card address strong { font-weight: 600; } /* Para el nombre en la dirección formateada */

        /* Fecha */
        .order-confirmation-date {
            font-size: 18px; /* era 22px, lo ajusto un poco */
            font-family: 'Anuphan', sans-serif;
            line-height: 28.60px;
        }
        .order-confirmation-date .text-normal { font-weight: 300; }
        .order-confirmation-date .text-bold { font-weight: 600; }

        /* Estilos para los hooks (mantienen el estilo de tarjeta por defecto) */
        #content-hook_payment_return.card,
        #content-hook-order-confirmation-footer {
            width: 100%;
            margin-top: 20px;
        }

        

        /* Lista de productos en la confirmación */
/* CSS final para la estructura de producto en order-confirmation.tpl */

.order-confirmation-product-item {
    display: flex;
    align-items: stretch; /* Para que las columnas tengan la misma altura */
    gap: 25px;
    padding: 20px;
    background: #FEFEFE;
    border-radius: 10px;
    margin-bottom: 15px;
}
.product-image-container {
    width: 140px;
    flex-shrink: 0;
}
.product-image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    /*background: #F3F7F8;*/
}
.info-main{
  height: 140px;
}
.product-info-container{
  width: 100%;
}

.product-price-container{
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.product-price-container .price-block{
  color: #0A0B0B;
  font-size: 18px;
  font-family: Anuphan;
  font-weight: 600;
  line-height: 23.40px;
  word-wrap: break-word;
}

.product-details-and-price-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Para separar nombre de precio/qty */
}
.product-name {
    color: #0A0B0B; font-size: 18px; font-family: 'Anuphan', sans-serif;
    font-weight: 600; line-height: 1.3;
}
.product-attributes {
    color: #5B6565; font-size: 13px; font-family: 'Instrument Sans', sans-serif;
    margin-top: 5px;
}
.product-price-and-qty-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
.product-quantity-info {
    color: #0A0B0B; font-size: 15px; font-family: 'Instrument Sans', sans-serif; display: flex;
}
.product-price-info {
    color: #0A0B0B; font-size: 18px; font-family: 'Instrument Sans', sans-serif; font-weight: 600;
}

.car-icon{
  background-image: url('../img/carrito-de-compra-confirmacion.svg');
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
}

/* --- VISTA MÓVIL (< 768px) --- */
@media (max-width: 767.98px) {
    .order-confirmation-product-item {
        gap: 10px;
        padding: 15px;
        align-items: flex-start;
    }
    .product-image-container {
        width: 118px;
        height: 118px;
    }
    .product-image-container img {
        height: 100%;
        object-fit: contain;
    }
    .product-details-and-price-wrapper {
        gap: 8px; /* Espacio vertical entre los bloques de info y precio/qty */
    }
    .product-name { font-size: 13px; line-height: 1.2; }
    .product-attributes { font-size: 10px; line-height: 1.3; }
    
    .product-quantity-info {
        background: #F3F7F8;
        padding: 5px 8px;
        border-radius: 3px;
        font-size: 12px;
        font-weight: 500;
    }
    .product-price-info { font-size: 16px; }
    .info-main{ height: 90px;}
}

       
/* Estilos para el selector de direcciones en el checkout */
.address-selector-social {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espacio entre las tarjetas de dirección */
}

.address-item-social {
    background: #FEFEFE;
    border-radius: 10px;
    border: 1px solid #E0E2E3; /* Un borde sutil por defecto */
    transition: all 0.2s ease-in-out;
}
.address-item-social:hover {
    border-color: #0A0B0B; /* Resaltar al pasar el ratón */
}
.address-item-social.selected {
    border-color: #0A0B0B; /* Borde más oscuro para la seleccionada */
    box-shadow: 0 0 0 1px #0A0B0B; /* Un efecto de "doble borde" o resplandor */
}

/* La etiqueta que hace todo clickeable */
.address-item-social label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    cursor: pointer;
    width: 100%;
    margin: 0;
}

/* Ocultar el radio button real */
.address-item-social .custom-radio-social input[type="radio"] {
    display: none;
}

/* Estilo para el indicador visual (el círculo/cuadrado) */
.address-item-social .custom-radio-social .radio-visual {
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #B1BDC0; /* Borde gris por defecto */
    border-radius: 50%; /* Para hacerlo un círculo, usa 4px para un cuadrado redondeado */
    flex-shrink: 0;
    margin-top: 5px; /* Alinear verticalmente con la primera línea de texto */
    position: relative; /* Para el punto interior */
}

/* Cuando el radio button está seleccionado, cambiamos el indicador visual */
.address-item-social .custom-radio-social input[type="radio"]:checked + .radio-visual {
    background-color: #0A0B0B;
    border-color: #0A0B0B;
}
/* Y añadimos el punto interior blanco */
.address-item-social .custom-radio-social input[type="radio"]:checked + .radio-visual::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px; /* Tamaño del punto interior */
    height: 8px;
    border-radius: 50%;
    background-color: #FEFEFE;
}

/* Contenedor de la dirección formateada */
.address-details-social {
    flex-grow: 1;
    font-family: 'Instrument Sans', sans-serif;
    color: #0A0B0B;
    font-size: 15px; 
    line-height: 1.6; 
    text-align: justify;
}
.address-details-social .address-customer-name {
    font-weight: 600; /* Negrita para el nombre */
    margin-bottom: 5px;
}
.address-details-social .address-formatted {
    font-weight: 400;

}

/* Contenedor para los enlaces de Editar/Borrar */
.address-actions-social {
    display: flex;
    gap: 15px;
    margin-left: auto;
    align-self: baseline;
}
.address-actions-social a {
    color: #5B6565;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
}
.address-actions-social a:hover {
    color: #0A0B0B;
    text-decoration: underline;
}
.address-actions-social a .material-icons {
    font-size: 16px;
}

/* Estilos para la página "Mi Cuenta" */
.account-header-social {
    color: #0A0B0B; font-size: 30px; font-family: 'Satoshi', sans-serif; font-weight: 700;
    margin-bottom: 20px;
}
.account-container-social {
    background: #F9F9F9; /* Fondo gris claro como en tu diseño de checkout */
    border-radius: 10px;
    padding: 25px;
}

.account-navigation-social{
    display: flex;
    margin-bottom: 25px;
    /*flex-direction: column; /* Apilar los enlaces verticalmente */
    gap: 10px;
}

.account-nav-link {
    /*display: block;*/
    padding: 12px 20px;
    font-size: 16px;
    font-family: 'Anuphan', sans-serif;
    font-weight: 400;
    color: #5B6565;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px; /* Para que el borde activo se superponga */
    transition: all 0.2s ease;
}
.account-nav-link:hover {
    color: #0A0B0B;
    border-bottom: 1px #0A0B0B solid;
}

.account-nav-link.active {
    color: #0A0B0B;
    font-weight: 600;
    border-bottom-color: #0A0B0B;
}

.account-back-button-mobile {
    display: none;
}

/* Contenido de la pestaña "Mis Datos" */
.identity-info-social {
    border-radius: 5px;
    padding: 20px 0;
}
.identity-info-social .info-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}
.identity-info-social .info-row .info-group {
    flex: 1 1 0;
}
.identity-info-social .info-row-single {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.identity-info-social .info-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #0A0B0B;
}
.identity-info-social .info-value {
    font-size: 15px;
    color: #5B6565;
    padding: 10px 15px;
    width: 300px;
    border-radius: 5px;
    background: #F6F6F6;
}

.account-logout-link-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 40px;
    background-color: #0A0B0B;
    color: white;
    border-radius: 50px; /* Redondeado como en tu ejemplo de cerrar sesión */
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Satoshi', sans-serif;
}

.logout-icon{
  background-image: url('../img/logout.svg');
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
}

.account-tab-content-social{
  background: #FBFBFB;
  padding: 45px 75px;
  border-radius: 10px;
}

.footer-account{
  max-width: 800px;
  margin: 10px auto;
  text-align: center;
  padding-block: 50px;
  border-top: 1px #000 solid;
}

.account-addresses{
  max-width: 800px;
  margin: 10px auto;
  padding: 20px;
}

.address-item-account{
  display: flex;
  justify-content: space-between;
  background: #FEFEFE;
  border-radius: 10px;
  border: 1px solid #E0E2E3;
  padding: 30px;
  margin: 20px 0;
}


/* Estilos para la página de Historial de Pedidos "Social" */
.order-history-social {
    margin-top: 20px; /* Espacio después de las pestañas */
}

.order-item-social {
    display: flex;
    flex-wrap: wrap; /* Para que en móvil los botones se pongan debajo */
    justify-content: space-between;
    align-items: center; /* Alinear verticalmente el contenido */
    padding: 17px 19px;
    border: 1px solid #E4E7E7; /* Borde sutil como en tu ejemplo */
    border-radius: 10px; /* Era rounded-3, que es ~8px. 10px se ve bien */
    margin-bottom: 20px;
    background: white;
}

.order-item-main-content {
    flex: 1 1 60%; /* Ocupa la mayor parte del espacio */
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap; /* Para que se ajuste en pantallas pequeñas */
}

.order-item-details {
    flex: 1 1 300px; /* Permite crecer, con una base de 300px */
}

.order-status-and-date {
    margin-bottom: 20px;
    font-size: 16px;
    font-family: 'Satoshi', sans-serif; /* Fuente de tu ejemplo */
}
.order-status-and-date .order-status {
    /* El color se aplica en línea desde Smarty. Aquí definimos el peso. */
    font-weight: 700; /* Para que el estado resalte */
}
.order-status-and-date .order-date {
    color: #0A0B0B;
    font-weight: 500;
}

.order-product-thumbnails {
    display: flex;
    align-items: center;
    gap: 8px;
}
.order-product-thumbnails .thumbnail-item {
    width: 90px;
    height: 90px;
    /*background-color: #F3F7F8;*/
    border-radius: 4px;
    overflow: hidden;
}
.order-product-thumbnails .thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.order-product-thumbnails .thumbnail-item.more-items {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #5B6565;
    background-color: #E4E7E7;
}

.order-total-price {
    font-size: 22px; /* fs-4 es ~1.5rem */
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    color: #0A0B0B;
    white-space: nowrap;
}

.order-details-price{
  display: block;
  align-self: baseline;
}

.order-details-link {
    font-size: 14px;
    font-family: 'Instrument Sans', sans-serif; /* Fuente de tu ejemplo */
    font-weight: 400;
    margin-bottom: 60%;
}
.order-details-link a {
    color: #0A0B0B;
    text-decoration: underline;
}

.order-item-actions {
    display: flex;
    flex-direction: column; /* Apilar botones */
    gap: 10px;
    flex-shrink: 0; /* Para que no se encoja */
    margin-left: 15px;
    align-items: end;
    margin-bottom: 40px;
}
.order-item-actions .track-order-btn {
    padding: 10px 15px;
    background: #0A0B0B;
    color: #FEFEFE;
    border-radius: 50px;
    font-size: 13px; /* fs-6 en tu ejemplo */
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    border: 1px solid #0A0B0B;
    text-align: center;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.order-item-actions .track-order-btn:hover {
    background: #333;
}
.order-item-actions .reorder-btn {
    /* Estilos para un botón secundario si lo quieres */
}




/* Estilos para la página "Mis cupones de descuento" */
.vouchers-list-social {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espacio entre las tarjetas de cupón */
}

.voucher-card-social {
    display: flex;
    flex-wrap: wrap; /* Para que en móvil se ajuste */
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f0f2f5; /* Un gris muy claro, como tu bg-light */
    border-radius: 10px; /* Tu HTML usaba rounded-3 que es ~8px */
    border: 1px solid #e9ecef; /* Un borde sutil */
}

.voucher-main-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 3 1 300px; /* Permitir que esta sección ocupe más espacio */
}

.voucher-icon-container {
    /* Estilo para el contenedor del icono '%' o '€' */
}

.voucher-icon-container .voucher-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 5px; /* Tu HTML tenía rounded-1 que es ~4px */
    font-size: 24px; /* fs-1 es muy grande, ajustado a 24px */
    font-weight: normal;
    font-family: 'Satoshi', sans-serif; /* Fuente de tu ejemplo */
    color: #0A0B0B;
}

.voucher-description {
    margin: 0;
    color: #0A0B0B;
    font-size: 16px; /* fs-5 es ~1.25rem, ajustado a 16px */
    font-family: 'Satoshi', sans-serif;
    font-weight: 400; /* normal */
}
/* Para resaltar partes del texto si es necesario */
.voucher-description .highlight {
    font-weight: 600;
    color: var(--bs-primary); /* O el color de tu tema */
    text-decoration: underline;
}

.voucher-code-info {
    flex: 2 1 100px;
}
.voucher-code-label {
    color: #6c757d;
    font-size: 14px; 
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    margin: 0 0 5px 0;
}
.voucher-code-value {
    display: flex;
    align-items: center;
    gap: 10px;
}
.voucher-code-value p {
    margin: 0;
    color: #0A0B0B;
    font-size: 20px;
    line-height: 28px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 4px;
}

.copy-voucher-code{
  width: 50px;
  height: 50px;
  background-image: url('../img/content_copy.svg');
  background-repeat: no-repeat;
  background-position: center;
}

#wishlist_button {
  background: #F3F7F8;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
}

#wishlist_button i {
margin-right: 5px;
font-size: 15px;
}

.share-action-wrapper .share-icon {
  font-size: 19px;
}

  .breadcrumb-title-full {
    display: inline; 
}
.breadcrumb-title-truncated-middle {
    display: none; 
}
.breadcrumb-title-truncated {
    display: inline; 
}

    .product-sticky-bar-mobile {
        display: none !important;
    }


/* Responsividad para Móvil */
@media (max-width: 768px) {

  .product-actions-social-box{
    display: none;
  }

  .progressive-discount-box{
    display: none;
  }

  .breadcrumb-title-full {
        display: none;
    }

    .breadcrumb-title-truncated {
        display: inline;
    }
    .breadcrumb-title-truncated-middle {
    display: inline; 
    }

    .order-item-main-content {
        align-items: flex-start;
        width: 100%;
        gap: 10px;
        flex-basis: 100%;
        margin-bottom: 15px; /* Espacio antes de los botones de acción */
    }
    .order-item-details {
        width: 100%;
        margin-bottom: 30px;
    }
    .order-total-price {
        order: 3; 
        position: relative;
        bottom: -60px;
        right: 15px;
      }
    .order-details-link {
        order: 2; /* Mover el enlace de detalle en medio */
    }

    .order-item-actions {
        flex-basis: 100%; /* Ocupa todo el ancho */
        margin-left: 0;
        flex-direction: row;
        justify-content: flex-end;
    }

    .voucher-card-social {
        flex-direction: column; 
        align-items: flex-start;
        gap: 15px;
        background: #FFF;
    }
    .voucher-code-info {
        padding-left: 0;
        width: 100%;
        padding-top: 10px;
        border-top: 1px #EDEDED solid;
        display: flex;
        gap: 10px;
        align-items: center;
    }
    .voucher-main-info {
        flex-basis: 100%;
    }
    .voucher-description {
        font-size: 14px;
    }
    .voucher-icon-container .voucher-icon {
      width: 50px;
      height: 50px;
      background: #F6F6F6;
    }
    .copy-voucher-code{
      width: 25px;
      height: 25px;
    }

    .address-item-account{
      display: block;
    }

    body#addresses .address-footer{
      width: 100%;
      margin-top: 10px;
      border-top: 1px #F6F6F6 solid;
      padding-top: 25px;
      text-align: center;
    }

    .account-tab-content-social{
      padding: 0;
      background: transparent;
    }

    .address-actions-account{
      border: 1px #000 solid;
      border-radius: 15px;
      margin: 20px;
      padding: 10px 20px;
    }

    .breadcrumb_container{
      margin-bottom: 20px;
    }

    .order-details-price{
      position: absolute;
      right: 30px;
    }

    .order-history-social .order-item-social .order-item-main-content
    .order-item-details .order-product-thumbnails .thumbnail-item{
      width: 50px;
      height: 50px;
    }

    .identity-info-social .info-row{
      display: block;
    }

    .identity-info-social .info-value{
      width: 100%;
      margin-bottom: 20px;
    }

   .account-navigation-social {
        flex-direction: column;
    }
    
    .account-navigation-social.is-on-subpage {
        margin-bottom: 10px;
    }

    .account-navigation-social.is-on-subpage .account-nav-link {
        display: none; /* Ocultamos TODOS los enlaces de navegación */
    }
    .account-navigation-social.is-on-subpage .account-nav-link.active {
        display: block; 
        text-align: center;
        border: none;
    }
    
    /* Y mostramos el botón de "Volver" */
    .account-navigation-social.is-on-subpage .account-back-button-mobile {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        color: #5B6565;
        text-decoration: none;
        font-family: 'Instrument Sans', sans-serif;
        font-weight: 500;
        margin-bottom: 15px; /* Espacio antes del título de la sección activa */
    }
    .account-back-button-mobile .material-icons {
        font-size: 18px;
    }

    .account-nav-link{
      border-radius: 10px;
      background: #F6F6F6;
      transition: none;
    }

    .account-nav-link:hover{
      border: none;
    }

    .order-status-and-date{
      width: 250px;
    }

    .product-item-checkbox-social{
      display: none;
    }

    .cart-products-list-social .cart-product-item-social{
      display: block;
      padding: 0;
      outline: none;
    }

    .cart-product-item-social .product-item-top-actions-social{
      top: 120px;
      right: 0px;
    }

    .cart-product-item-social .product-item-info-social{
      display: block;
    }

    .cart-product-item-social .product-item-actions-price-social{
      width: auto;
      height: auto;
      align-items: center;
      margin-top: -20px;
    }

    /* Estilos para el banner fijo de producto en móvil */
.product-sticky-bar-mobile {
    /* --- Posicionamiento y Visibilidad --- */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999; /* Para que esté por encima de otro contenido */
    
    /* Estado inicial: oculto (desplazado hacia abajo) */
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;

    /* Transición suave para que aparezca y desaparezca */
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s;

    /* Estilos visuales del banner */
    background-color: #FEFEFE;
    padding: 10px 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

/* Estado visible: cuando JS añada la clase .visible */
.product-sticky-bar-mobile.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Contenido del banner */
.product-sticky-bar-mobile .sticky-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    max-width: 1200px; /* Limitar el ancho en pantallas muy grandes si fuera necesario */
    margin: 0 auto;
}

/* Sección del precio */
.product-sticky-bar-mobile .sticky-bar-price {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sticky-bar-price .current-price {
    color: #0A0B0B;
    font-size: 18px; /* Era 16px en tu HTML */
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
}
.sticky-bar-price .discount-badge {
    background: #FF4D4F; /* Rojo de descuento */
    color: white;
    padding: 4px 8px;
    border-radius: 15px; /* Redondeado como en tu HTML */
    font-size: 12px;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 500;
}

/* Sección del botón */
.product-sticky-bar-mobile .sticky-bar-button {
    flex-shrink: 0; /* Para que el botón no se encoja */
}
.sticky-bar-button .add-to-cart-sticky {
    background-color: #0A0B0B;
    color: white;
    border-radius: 5px; /* Era rounded-1 */
    padding: 10px 15px;
    font-size: 14px; /* Era fs-6 */
    font-family: 'Satoshi', sans-serif; /* Fuente de tu HTML */
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

    .product-sticky-bar-mobile {
        display: block !important;
    }

}

.featured-products .all-product-link{
  margin: 0 auto;
  margin-top: 20px;
  border-radius: 5px;
  background: var(--Neutral-900, #0A0B0B);
  display: flex;
  width: fit-content;
  height: 45px;
  padding: 10px 75px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--Neutral-50, #FEFEFE);
  text-align: center;
  font-family: var(--font-family-body, "Instrument Sans");
  font-size: var(--font-size-size-15, 15px);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}


#main-slider .swiper-slide{
  height: 100%;
  object-fit: cover;
  position: relative;
}

#main-slider .swiper-slide .slide-caption{
  position: absolute;
  top: 30%;
  right:0;
  left:0;
  text-align: center;
  color: #FFF;
}
#main-slider .swiper-slide .slide-caption .desc-item:nth-child(1){
  font-size: 34px;
  font-weight: 600;
  line-height: 42.5px;
  margin-bottom: 1rem;
}
#main-slider .swiper-slide .slide-caption .desc-item:nth-child(2){
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 1rem;
}
#main-slider .swiper-slide .slide-caption .desc-item:nth-child(3){
  border-radius: 5px;
  border: 1px solid #FEFEFE;
  display: flex;
  height: 45px;
  padding: 0px 15px;
  justify-content: center;
  font-weight: 500;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 1rem;
  font-size: 15px;
}

/* Login page */

.login-tabs-wrapper {
  margin-bottom: 32px;
  margin-top: 24px;
}
.login-tabs {
  display: flex;
  border-bottom: 2px solid #eee;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
}
.login-tab {
  width: 50%;
  text-align: center;
  font-size: 1.7rem;
  font-family: inherit;
  font-weight: 600;
  color: #d3d3d3;
  background: none;
  border: none;
  padding: 0 0 12px 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}

@media (max-width: 767px) {
  .login-tab {
    font-size: 1.2rem;
  }
  .page-customer-account #content { 
    padding: 0;
  }
}

.login-tab-active,
.login-tab.active {
  color: #111;
  border-bottom: 2.5px solid #111;
  cursor: default;
}
.register-tab {
  color: #d3d3d3;
}
.register-tab:hover {
  color: #111;
}

#login-form {
  margin: 0 auto;
}
#login-form > section {
  display: flex;
  flex-direction: column;
}
#login-form label {
  font-weight: 500;
  color: #222;
  margin-bottom: 6px;
}
#login-form input[type="email"],
#login-form input[type="password"], 
#login-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1.1rem;
  margin-bottom: 18px;
  background: #fff;
  transition: border 0.2s;
}
#login-form input[type="email"]:focus,
#login-form input[type="password"]:focus {
  border-color: #111;
  outline: none;
}
#login-form > section > div.form-group.field-password [data-action="show-password"] {
  background: transparent;
    color: black;
    margin-bottom: 18px;
}

#login-form .form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#login-form .form-group > * {
  width: 100%;
}

.forgot-password {
  margin-bottom: 18px;
  font-size: 0.98rem;
  color: #222;
}
.forgot-password a {
  color: #111;
  font-weight: 500;
}
.form-footer {
  margin-top: 12px;
  margin-bottom: 18px;
}
.login-btn {
  width: 100%;
  background: #111;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 12px 0;
  border: none;
  transition: background 0.2s;
}
.login-btn:hover {
  background: #222;
}
.login-separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 32px 0 18px 0;
  color: #888;
  font-size: 1rem;
}
.login-separator span {
  flex: none;
  padding: 0 16px;
  background: #fff;
  position: relative;
  z-index: 1;
}
.login-separator:before,
.login-separator:after {
  content: '';
  flex: 1;
  border-bottom: 1.5px solid #eee;
  margin: 0 8px;
  position: relative;
  top: 0.5em;
}
.login-social-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 12px;
}
.btn-social {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 1.08rem;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  transition: box-shadow 0.2s, border 0.2s;
  min-width: 220px;
  justify-content: center;
}
.btn-social:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border-color: #bbb;
}
.btn-google .icon-google {
  width: 22px;
  height: 22px;
  display: inline-block;
  background: url('data:image/svg+xml;utf8,<svg width="22" height="22" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"><g><path fill="#4285F4" d="M24 9.5c3.54 0 6.7 1.22 9.19 3.61l6.85-6.85C35.91 2.69 30.36 0 24 0 14.82 0 6.73 5.82 2.69 14.09l7.99 6.2C12.13 13.98 17.56 9.5 24 9.5z"/><path fill="#34A853" d="M46.1 24.55c0-1.64-.15-3.22-.42-4.74H24v9.01h12.42c-.54 2.9-2.18 5.36-4.65 7.01l7.19 5.59C43.27 37.27 46.1 31.39 46.1 24.55z"/><path fill="#FBBC05" d="M10.68 28.29c-1.01-2.98-1.01-6.18 0-9.16l-7.99-6.2C.86 17.1 0 20.45 0 24c0 3.55.86 6.9 2.69 10.07l7.99-6.2z"/><path fill="#EA4335" d="M24 48c6.36 0 11.71-2.1 15.61-5.73l-7.19-5.59c-2.01 1.35-4.59 2.15-8.42 2.15-6.44 0-11.87-4.48-13.32-10.59l-7.99 6.2C6.73 42.18 14.82 48 24 48z"/><path fill="none" d="M0 0h48v48H0z"/></g></svg>') no-repeat center center;
  background-size: contain;
}
.btn-facebook .icon-facebook {
  width: 22px;
  height: 22px;
  display: inline-block;
  background: url('data:image/svg+xml;utf8,<svg width="22" height="22" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"><path fill="#1877F3" d="M24 4C12.95 4 4 12.95 4 24c0 9.68 7.16 17.68 16.5 19.54V30.89h-4.97v-6.89h4.97v-5.25c0-4.92 2.93-7.64 7.42-7.64 2.15 0 4.4.38 4.4.38v4.83h-2.48c-2.44 0-3.2 1.52-3.2 3.08v3.6h5.44l-.87 6.89h-4.57v12.65C36.84 41.68 44 33.68 44 24c0-11.05-8.95-20-20-20z"/></svg>') no-repeat center center;
  background-size: contain;
}

/* Mostrar/ocultar contraseña (si implementas el icono real, añade aquí el CSS extra) */
.input-group .input-group-append .input-group-text {
  background: none;
  border: none;
  cursor: pointer;
}


/* Registro en dos columnas */
.register-form-columns {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 0;
}
.register-form-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.register-form-col .form-group {
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .register-form-columns {
    flex-direction: column;
    gap: 0;
  }
  .register-form-col {
    width: 100%;
  }
}

#footer  {
  margin-top: 3rem;
}


.register-form .form-group .form-control-label,.register-form .form-group > div {
  width: 100%;
}


.featured-products .h2 {
  color: var(--Neutral-900, #0A0B0B);
  font-family: var(--font-family-headings, Anuphan);
  font-size: var(--font-size-size-22, 22px);
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  text-align: left;
  text-transform: unset;
}
.wishlist-featured-products .thumbnail-container  {
  width: auto;
}

li.quick-view {
  display: none !important;
} 

.active_filters .filter-block {
  box-shadow: unset;
  border-radius: 5px;
  font-weight: 500;
}

#category .page-title-wrapper {
  padding-bottom: 3rem;
}

@media (max-width: 992px) {
  #category .page-title-wrapper {
    padding-bottom: 0.5rem;
  }
}

#content-wrapper {
  padding-right: 20px;
  padding-left: 20px;
}

#maincat_search h3 {
  font-size: 26px;
}

.checkout-button-text {
  text-transform: none;
}


#checkout-payment-step .modal-dialog {
  background: white;
}
#checkout-payment-step .modal-dialog .modal-content {
  width: 85%;
  border: 0;
  background: transparent; 
}

#conditions-to-approve div.condition-label {
  margin-left: .5rem;
  font-size: 16px;
  font-weight: 400;
}

.header-layout2 .header-top .col-right{ 
  display: flex;
      flex-direction: row;
      width: 100%;
      flex-wrap: nowrap;
      justify-content: space-between;
      gap: 10px;
}

#_desktop_user_info{ 
  min-width: 162px;
}

#header .logo {
  max-width: 180px;
}

#pos_search_top input:focus {
  outline: 0.80px #B1BDC0 solid !important;
}
#google_translate_element {
  /* width: 71px; */
}


/* brands section distribution */
#tab-content.home-tabs-hooks {
  display: flex;
  flex-direction: column;
}
#tab-content.home-tabs-hooks .pos_title_brands {
  order: 1;
}
#tab-content.home-tabs-hooks .pos-brands-products-grouped {
  order: 2;
}
#tab-content.home-tabs-hooks .section-recommendations-title {
  margin-bottom: 20px;
  order: 3;
}
#tab-content.home-tabs-hooks #home-page-tabs {
  order: 4;
}

#tab-content.home-tabs-hooks .featured-products {
  order: 5;
}

    /* end custom page */ 

/*# sourceMappingURL=custom.css.map */
