@charset "UTF-8";
@charset "UTF-8";



/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

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

@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

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

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

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

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  66.6% {
    -webkit-transform: skewX(-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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

  66.6% {
    -webkit-transform: skewX(-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 heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceIn {
  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-duration: 0.75s;
  animation-duration: 0.75s;
  -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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

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

/* 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;
}

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

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

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

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

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

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

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

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

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

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

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;margin:0 0 -4px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left;padding:0}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin:0;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:#fff;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected],.select2-results__option[data-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff}.select2-hidden-accessible{border:0!important;clip:rect(0 0 0 0)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none;margin:5px 5px 0 0}.select2-container--default .select2-selection--multiple .select2-selection__rendered li:before{content:"";display:none}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline,.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder{float:right}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid #000 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--above .select2-selection--single{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--below .select2-selection--single{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:0 0;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true],.select2-container--default .select2-results__option[data-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected],.select2-container--default .select2-results__option--highlighted[data-selected]{background-color:#0073aa;color:#fff}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:linear-gradient(to bottom,#fff 50%,#eee 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--single:focus{border:1px solid #0073aa}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:linear-gradient(to bottom,#eee 50%,#ccc 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #0073aa}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:0 0;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:linear-gradient(to bottom,#fff 0,#eee 50%);background-repeat:repeat-x}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:linear-gradient(to bottom,#eee 50%,#fff 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #0073aa}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{float:right}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #0073aa}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected],.select2-container--classic .select2-results__option--highlighted[data-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#0073aa}

html {
  font-size: 1rem;
}

/* WordPress Core */
body {
  position: relative;
  color: #999999;
  font-size: 15px;
  line-height: 1.5;
  /* Text meant only for screen readers. */
}
body .alignnone {
  margin: 5px 20px 20px 0;
}
body .aligncenter, body div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}
body .alignright {
  float: right;
  margin: 5px 0 20px 20px;
  clear: right;
}
body .alignleft {
  float: left;
  margin: 5px 20px 20px 0;
  clear: left;
}
body .wp-caption {
  background: #fff;
  max-width: 100%;
  /* Image does not overflow the content area */
  text-align: center;
  margin-bottom: 20px;
}
body .wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
body .wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
body .wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
body .wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
}
body .wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}
body ins {
  text-decoration: none !important;
}
body .gallery-caption {
  display: block;
}
body .bypostauthor {
  display: inline-block;
}
body .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
body .screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
body.customize-partial-edit-shortcuts-shown .theme.css button.customize-partial-edit-shortcut-button {
  padding: 0;
  border-radius: 100% !important;
  background: rgba(0, 0, 0, 0.3) !important;
  border: 2px solid #0073aa;
  box-shadow: none;
  color: #0073aa;
}
body.customize-partial-edit-shortcuts-shown .theme.css button.customize-partial-edit-shortcut-button:hover {
  background-color: #0073aa !important;
}
body.box-shadow {
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
body.has-offcanvas--overlay {
  overflow: hidden;
}

a {
  color: #232529;
}
a:hover {
  color: #f33c3c;
  text-decoration: none;
}
a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: #232529;
  font-weight: 600;
}

svg {
  max-width: 100%;
  display: inline-block;
  height: auto;
}
svg.fm-icon {
  width: 15px;
  height: 15px;
}
svg.fm-icon.fill:not(.stroke) {
  stroke: none !important;
}
svg.fm-icon.stroke:not(.fill) {
  fill: none !important;
}

.hidden {
  display: none;
}

.img-responsive {
  max-width: 100%;
}

*:focus {
  outline: none !important;
}

.familab_theme em {
  font-size: 0.8125rem;
}

.hover_dropdown_wrapper {
  position: relative;
}
.hover_dropdown_wrapper .dropdown_content {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 340;
  background-color: #FFF;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  margin: -10px 0 0;
  padding: 15px;
  -webkit-transform: translateY(15px) translateZ(0);
  transform: translateY(15px) translateZ(0);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  pointer-events: none;
}
.header-left-control .hover_dropdown_wrapper .dropdown_content {
  left: 0;
  right: auto;
}
.hover_dropdown_wrapper:hover .dropdown_content {
  visibility: visible;
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  pointer-events: unset;
}

td, th {
  border-color: #e4e4e4;
  border-style: solid;
  border-width: 1px;
  padding: 10px;
}

/* Button Default */
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce button.button.alt, .woocommerce input.button {
  padding: 10px 20px;
  font-size: 16px;
  line-height: 22px;
}
.woocommerce #respond input#submit.btn-flat, .woocommerce a.button.btn-flat, .woocommerce button.button.btn-flat, .woocommerce button.button.alt.btn-flat, .woocommerce input.button.btn-flat {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.woocommerce #respond input#submit.btn-advance, .woocommerce a.button.btn-advance, .woocommerce button.button.btn-advance, .woocommerce button.button.alt.btn-advance, .woocommerce input.button.btn-advance {
  background: #f33c3c;
}
.woocommerce #respond input#submit.btn-advance:hover, .woocommerce #respond input#submit.btn-advance:focus, .woocommerce a.button.btn-advance:hover, .woocommerce a.button.btn-advance:focus, .woocommerce button.button.btn-advance:hover, .woocommerce button.button.btn-advance:focus, .woocommerce button.button.alt.btn-advance:hover, .woocommerce button.button.alt.btn-advance:focus, .woocommerce input.button.btn-advance:hover, .woocommerce input.button.btn-advance:focus {
  background-color: #f33c3c;
}

/* Button WooCommerce */
.familab_theme #respond input#submit.disabled, .familab_theme #respond input#submit:disabled[disabled], .familab_theme a.button:disabled, .familab_theme a.button:disabled[disabled], .familab_theme button.button:disabled, .familab_theme button.button:disabled[disabled], .familab_theme input.button:disabled, .familab_theme input.button:disabled[disabled], .familab_theme #respond input#submit.alt, .familab_theme a.button.alt, .familab_theme button.button.alt, .familab_theme input.button.alt {
  padding: 10px 20px;
  font-size: 12px;
  line-height: 22px;
}

/* Form Style */
input[type=email], input[type=search], input[type=number], input[type=url], input[type=tel], input[type=text], input[type=password] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  outline: none !important;
  width: 100%;
  max-width: 100%;
  border: 1px solid #e4e4e4;
  background-color: transparent;
  font-size: 14px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-shadow: none;
  -webkit-transition: border-color 0.5s linear 0s;
  -moz-transition: border-color 0.5s linear 0s;
  -ms-transition: border-color 0.5s linear 0s;
  -o-transition: border-color 0.5s linear 0s;
  transition: border-color 0.5s linear 0s;
  vertical-align: middle;
  padding: 0 20px;
  height: 50px;
}
input[type=email]:focus, input[type=search]:focus, input[type=number]:focus, input[type=url]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=password]:focus {
  outline: none;
  border-color: #232529;
  color: #232529;
  -webkit-transition: border-color 0.4s linear 0s;
  -moz-transition: border-color 0.4s linear 0s;
  -ms-transition: border-color 0.4s linear 0s;
  -o-transition: border-color 0.4s linear 0s;
  transition: border-color 0.4s linear 0s;
}
input[type=radio], input[type=checkbox] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin-top: 0;
  margin-right: 5px;
  vertical-align: middle;
}
input[type=search] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=number] {
  padding: 0;
  text-align: center;
}
input[type=number]::-webkit-search-cancel-button, input[type=number]::-webkit-search-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
  border-color: #e4e4e4;
  -webkit-text-fill-color: #868686;
}
input:focus:-webkit-autofill {
  border-color: #e4e4e4;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 100%;
  border: 1px solid #e4e4e4;
  background-color: transparent;
  font-size: 14px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-shadow: none;
  -webkit-transition: border-color 0.5s linear 0s;
  -moz-transition: border-color 0.5s linear 0s;
  -ms-transition: border-color 0.5s linear 0s;
  -o-transition: border-color 0.5s linear 0s;
  transition: border-color 0.5s linear 0s;
  vertical-align: middle;
  padding: 0 20px;
  height: 50px;
  padding: 10px 15px;
  min-height: 190px;
  overflow: auto;
}
textarea:focus {
  outline: none;
  border-color: #232529;
  color: #232529;
  -webkit-transition: border-color 0.4s linear 0s;
  -moz-transition: border-color 0.4s linear 0s;
  -ms-transition: border-color 0.4s linear 0s;
  -o-transition: border-color 0.4s linear 0s;
  transition: border-color 0.4s linear 0s;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 100%;
  border: 1px solid #e4e4e4;
  background-color: transparent;
  font-size: 14px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-shadow: none;
  -webkit-transition: border-color 0.5s linear 0s;
  -moz-transition: border-color 0.5s linear 0s;
  -ms-transition: border-color 0.5s linear 0s;
  -o-transition: border-color 0.5s linear 0s;
  transition: border-color 0.5s linear 0s;
  vertical-align: middle;
  padding: 0 20px;
  height: 50px;
  padding-right: 30px;
  background-position: right 10px top 50%;
  background-size: auto 16px;
  background-repeat: no-repeat;
  background-image: url(//www.mspvn.com/wp-content/themes/cide/assets/images/select_icon.svg);
  padding-left: 15px;
  padding-right: 15px;
}
select:focus {
  outline: none;
  border-color: #232529;
  color: #232529;
  -webkit-transition: border-color 0.4s linear 0s;
  -moz-transition: border-color 0.4s linear 0s;
  -ms-transition: border-color 0.4s linear 0s;
  -o-transition: border-color 0.4s linear 0s;
  transition: border-color 0.4s linear 0s;
}
select::-ms-expand {
  display: none;
}

.familab_theme .select2-container--default .select2-selection {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #e4e4e4;
  -webkit-transition: border-color 0.4s linear 0s;
  -moz-transition: border-color 0.4s linear 0s;
  -ms-transition: border-color 0.4s linear 0s;
  -o-transition: border-color 0.4s linear 0s;
  transition: border-color 0.4s linear 0s;
  background-color: transparent;
  min-width: 60px;
}
.familab_theme .select2-container--default .select2-selection:focus {
  outline: none;
  border-color: #232529;
  color: #232529;
  -webkit-transition: border-color 0.4s linear 0s;
  -moz-transition: border-color 0.4s linear 0s;
  -ms-transition: border-color 0.4s linear 0s;
  -o-transition: border-color 0.4s linear 0s;
  transition: border-color 0.4s linear 0s;
}
.familab_theme .select2-container--default .select2-selection--single {
  position: relative;
  text-align: left;
  font-size: 14px;
  padding: 0 15px;
  height: 50px;
  line-height: 48px;
}
.familab_theme .select2-container--default .select2-selection--single > .select2-selection__arrow {
  height: 100%;
}
.familab_theme .select2-container--default .select2-selection--single > .select2-selection__rendered {
  display: inline;
  padding-left: 0 !important;
  color: inherit;
  line-height: inherit;
  display: block;
}

/* Form Round & Circle */
.form_style_circle input[type=text], .form_style_circle input[type=email], .form_style_circle input[type=password], .form_style_circle input[type=search], .form_style_circle input[type=number], .form_style_circle input[type=url], .form_style_circle input[type=tel], .form_style_circle input[type=date], .form_style_circle select, .form_style_circle textarea {
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
}
.form_style_round input[type=text], .form_style_round input[type=email], .form_style_round input[type=password], .form_style_round input[type=search], .form_style_round input[type=number], .form_style_round input[type=url], .form_style_round input[type=tel], .form_style_round input[type=date], .form_style_round select, .form_style_round textarea {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.select2-container--default .select2-selection .form_style_circle.familab_theme {
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
}
.select2-container--default .select2-selection .form_style_round.familab_theme {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

body.site_layout_boxed,
body.site_layout_framed {
  margin-left: auto;
  margin-right: auto;
  background: none;
}

.site-content {
  overflow-x: hidden;
}

#content {
  padding: 50px 0;
}
.home:not(.blog) #content, #content.content-only {
  padding: 0;
}

@media (min-width: 992px) {
  #content .sidebar-left {
    flex-direction: row;
  }
  #content .sidebar-right {
    flex-direction: row-reverse;
  }

  .familab_theme .page-title-404 {
    font-size: 200px;
    font-weight: 600;
  }
}
.site-header {
  position: relative;
  z-index: 100;
}
.site-header.fmc-transparent-header {
  width: 100vw;
  max-width: 100%;
  z-index: 10;
  position: absolute;
}
.site-header.fmc-transparent-header.header-wrapper {
  position: static;
}
.cide-mobile .site-header.fmc-transparent-header {
  position: static;
}

.header-container {
  max-width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.header-control-wrap {
  display: flex;
  align-items: center;
}
.header-control-wrap.header-left-control {
  justify-content: flex-start;
}
.header-control-wrap.header-right-control {
  justify-content: flex-end;
}

.site-branding .site-logo {
  display: inline-block;
}
.site-branding .site-logo img, .site-branding .site-logo .logo-img {
  width: 100%;
}
.site-branding .site-logo.has-sticky-logo .sticky-logo {
  display: none;
}
.site-branding .logo.text {
  text-decoration: none;
}

@media (min-width: 768px) {
  .site-header.fmc-transparent-header {
    position: absolute;
    z-index: 99999;
  }

  .wpadminbar ~ .site-header.fmc-transparent-header {
    z-index: 99999;
  }
}
.fmc-announcement-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.5rem 0;
  -webkit-transition: height ease 0.25s, opacity ease 0.25s, padding ease 0.25s;
  -moz-transition: height ease 0.25s, opacity ease 0.25s, padding ease 0.25s;
  -ms-transition: height ease 0.25s, opacity ease 0.25s, padding ease 0.25s;
  -o-transition: height ease 0.25s, opacity ease 0.25s, padding ease 0.25s;
  transition: height ease 0.25s, opacity ease 0.25s, padding ease 0.25s;
}
.fmc-announcement-box.layout1 {
  justify-content: center;
}
.fmc-announcement-box.closed {
  height: 0;
  opacity: 0;
  padding: 0;
  visibility: hidden;
}
.fmc-announcement-box > * {
  margin: 0 0.5rem;
}
.fmc-announcement-box .announcement-msg-after-time p,
.fmc-announcement-box .announcement-msg p {
  margin-bottom: 0;
}
.fmc-announcement-box button.close {
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none !important;
  border: none !important;
  opacity: 0.8;
}
.fmc-announcement-box button.close svg.fm-icon {
  width: 15px;
  height: 15px;
}
.fmc-announcement-box button.close:not(:disabled):not(.disabled):hover, .fmc-announcement-box button.close:not(:disabled):not(.disabled):focus {
  opacity: 1;
}
.site-footer ~ .fmc-announcement-box {
  position: fixed;
  bottom: 0;
  top: auto;
  width: 100%;
}
.fmc-announcement-box .fm-countdown-time {
  display: flex;
}
.fmc-announcement-box .fm-countdown-time .box-count {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  align-content: center;
  background: #f33c3c;
  color: #FFF;
  margin: 0 4px;
  padding: 3px 8px;
}
.fmc-announcement-box .fm-countdown-time .box-count .num {
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
}
.fmc-announcement-box .fm-countdown-time .box-count .text {
  line-height: 12px;
  font-size: 11px;
}
.fmc-announcement-box .announcement_btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.familab_theme .fmc-announcement-box .announcement_btn a {
  font-size: 10px;
  text-transform: uppercase;
  height: 36px;
  padding: 0 25px;
  line-height: 36px;
  font-weight: 600;
}

.top-bar {
  color: inherit;
  width: 100%;
  position: relative;
  z-index: 3;
}
.top-bar > .header-container {
  display: flex;
  align-items: center;
  height: 100%;
}
.top-bar ul.ul_topbar {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.top-bar ul.ul_topbar li {
  line-height: 12px;
}
.top-bar ul.ul_topbar li > a, .top-bar ul.ul_topbar li > * {
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 12px;
}
.top-bar ul.ul_topbar li + li {
  padding-left: 12px;
  margin-left: 12px;
  border-left-width: 1px;
  border-left-style: solid;
}
.top-bar.top-bar-layout1 > .header-container {
  justify-content: space-between;
}
.top-bar.top-bar-layout1 .top-bar-left-control {
  display: flex;
}
.top-bar.top-bar-layout1 .top-bar-left-control .header-element {
  margin: 0 1rem 0 0;
}
.top-bar.top-bar-layout1 .top-bar-left-control .header-element.html_topbar_left * {
  margin-bottom: 0;
}
.top-bar.top-bar-layout1 .top-bar-right-control {
  display: flex;
}
.top-bar.top-bar-layout1 .top-bar-right-control .header-element {
  margin: 0 0 0 1.25rem;
  position: relative;
}
.top-bar.top-bar-layout1 .top-bar-right-control .header-element ~ .header-element {
  padding-left: 1.25rem;
}
.top-bar.top-bar-layout1 .top-bar-right-control .header-element ~ .header-element:before {
  content: "";
  height: 20px;
  width: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #d9d9d9;
}
.top-bar.top-bar-layout1 .top-bar-right-control .header-element.html_topbar_right * {
  margin-bottom: 0;
}
.top-bar.top-bar-layout2 > .header-container {
  align-items: center;
  justify-content: space-between;
}
.top-bar.top-bar-layout2 .top-bar-control {
  flex: 1;
  display: flex;
  align-items: center;
}
.top-bar.top-bar-layout2 .top-bar-control .header-element.html_topbar_left *, .top-bar.top-bar-layout2 .top-bar-control .header-element.html_topbar_center *, .top-bar.top-bar-layout2 .top-bar-control .header-element.html_topbar_right * {
  margin-bottom: 0;
}
.top-bar.top-bar-layout2 .top-bar-control.top-bar-left-control {
  text-align: left;
  justify-content: flex-start;
}
.top-bar.top-bar-layout2 .top-bar-control.top-bar-left-control .header-element {
  margin: 0 1rem 0 0;
}
.top-bar.top-bar-layout2 .top-bar-control.top-bar-center-control {
  text-align: center;
  justify-content: center;
}
.top-bar.top-bar-layout2 .top-bar-control.top-bar-center-control .header-element {
  margin: 0 0.5rem;
}
.top-bar.top-bar-layout2 .top-bar-control.top-bar-right-control {
  text-align: right;
  justify-content: flex-end;
}
.top-bar.top-bar-layout2 .top-bar-control.top-bar-right-control .header-element {
  margin: 0 0 0 1rem;
}
.top-bar.dark *, .top-bar.dark a, .top-bar.dark p {
  color: #232529;
}
.top-bar.dark *:hover, .top-bar.dark a:hover, .top-bar.dark p:hover {
  color: #f33c3c;
}
.top-bar.dark svg.fm-icon {
  fill: #232529;
}
.top-bar.dark svg.fm-icon:hover {
  fill: #f33c3c;
}
.top-bar.light *, .top-bar.light a, .top-bar.light p {
  color: #FFFFFF;
}
.top-bar.light svg.fm-icon {
  fill: #FFFFFF;
}
.top-bar.light.top-bar-layout1 .top-bar-control.top-bar-left-control .header-element:before, .top-bar.light.top-bar-layout1 .top-bar-control.top-bar-right-control .header-element:before {
  background-color: rgba(255, 255, 255, 0.3);
}

.header-layout .header-main {
  position: relative;
}
.header-layout .header-main .header-container {
  display: flex;
  align-items: center;
  height: inherit;
}
.header-layout.header-layout1 .header-main .header-container {
  justify-content: flex-start;
}
.header-layout.header-layout1 .header-right-control {
  margin-left: auto;
}
.header-layout.header-layout1 #site-navigation.nav-center + .header-right-control {
  margin-left: unset;
}
.header-layout.header-layout1 #site-navigation.nav-right + .header-right-control {
  margin-left: 50px;
}
.header-layout.header-layout2 .header-main .header-container {
  display: flex;
  justify-content: space-between;
}
.header-layout.header-layout2 .header-main .header-container .hamburger-menu-wrap {
  width: 200px;
}
.header-layout.header-layout3 .header-main {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.header-layout.header-layout3 .header-main .header-container {
  display: grid;
  grid-template-columns: 1fr 250px 1fr;
}
.header-layout.header-layout3 .header-bottom {
  height: 68px;
}
.header-layout.header-layout3 .header-bottom #site-navigation {
  justify-content: center;
}
.header-layout.header-layout3 .site-branding {
  width: 100%;
  text-align: center;
}
.header-layout.header-layout3 + .header-space .header-bottom {
  height: 50px;
}
.header-layout.header-layout4 .header-main .header-container {
  justify-content: space-between;
}
.header-layout.header-layout5 .header-main .header-container {
  display: grid;
  grid-template-columns: 1fr 250px 1fr;
}
.header-layout.header-layout5 .site-branding {
  width: 100%;
  text-align: center;
}
.header-layout.header-layout6 .header-main .header-container {
  display: grid;
  grid-template-columns: 1fr 250px 1fr;
}
.header-layout.header-layout6 .site-branding {
  width: 100%;
  text-align: center;
}
.header-layout.header-layout7 .header-main .header-container {
  justify-content: space-between;
}
.header-layout.header-layout8 .header-main .header-container {
  justify-content: space-between;
}
.header-layout.header-layout9 .header-main .header-container {
  justify-content: space-between;
}
.header-layout.header-layout10 .header-main .header-container {
  justify-content: space-between;
}
.header-layout.header-layout11 .header-content .header-container {
  justify-content: space-between;
}
.header-layout.header-layout11 .header-bottom #site-navigation {
  margin-right: auto;
}
.header-layout.header-layout11 .header-bottom .header-container {
  display: flex;
  align-items: center;
  height: inherit;
}

.fm-header-sticky {
  position: fixed;
  width: 100%;
  z-index: 2;
}
#topbar + .fm-header-sticky {
  position: absolute;
}
.fmc-announcement-box ~ .site-content .fm-header-sticky {
  position: absolute;
}
.fm-header-sticky.headroom {
  will-change: transform;
  -webkit-transition: -webkit-transform 250ms linear;
  transition: transform 250ms linear, background-color 250ms linear;
}
.fm-header-sticky.headroom--pinned {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}
.fm-header-sticky.headroom--pinned.headroom--not-top {
  position: fixed;
  top: 0;
  border-bottom: none;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.07);
}
.fm-header-sticky.headroom--pinned.headroom--not-top.fromTop {
  visibility: hidden;
}
#topbar + .fm-header-sticky.headroom--pinned.headroom--not-top {
  position: fixed;
}
.admin-bar .fm-header-sticky.headroom--pinned.headroom--not-top {
  top: 0px;
}
.fm-header-sticky.headroom--pinned.header-layout .header-main {
  -webkit-transition: height 250ms linear;
  transition: height 250ms linear;
}
.fm-header-sticky.headroom--not-top .has-sticky-logo img, .fm-header-sticky.headroom--not-top .has-sticky-logo .logo-text {
  display: none;
}
.fm-header-sticky.headroom--not-top .has-sticky-logo .sticky-logo {
  display: block;
}
.fm-header-sticky.headroom--unpinned {
  top: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.header-bottom {
  height: 50px;
  position: relative;
}
.header-layout10 .header-bottom .header-container, .header-layout8 .header-bottom .header-container, .header-layout3 .header-bottom .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  position: relative;
}
.header-layout10 .header-bottom #site-navigation, .header-layout8 .header-bottom #site-navigation, .header-layout3 .header-bottom #site-navigation {
  justify-content: center;
  margin: 0 auto;
}
.header-layout10 .header-bottom:before {
  display: inline-block;
  width: 100%;
  border-top: 1px solid rgba(122, 122, 122, 0.15);
  content: "";
  position: absolute;
  top: 0;
}

.currency.list-dropdown, .language.list-dropdown {
  align-items: center;
  font-weight: 600;
}
.currency.list-dropdown .dropdown > .current, .language.list-dropdown .dropdown > .current {
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 90px;
  -moz-border-radius: 90px;
  border-radius: 90px;
  padding: 5px 18px;
  letter-spacing: 1px;
  font-size: 13px;
}
.currency.list-dropdown .dropdown > .current svg.fm-icon, .language.list-dropdown .dropdown > .current svg.fm-icon {
  margin-left: 6px;
}

.header-layout.header-layout3 .currency.list-dropdown .dropdown > .current, .header-layout.header-layout3 .language.list-dropdown .dropdown > .current, .header-layout.header-layout6 .currency.list-dropdown .dropdown > .current, .header-layout.header-layout6 .language.list-dropdown .dropdown > .current {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.header-layout.headroom--pinned.headroom--not-top .currency.list-dropdown .dropdown > .current, .header-layout.headroom--pinned.headroom--not-top .language.list-dropdown .dropdown > .current, .header-layout.header-layout2 .currency.list-dropdown .dropdown > .current, .header-layout.header-layout2 .language.list-dropdown .dropdown > .current {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

@media (min-width: 1200px) {
  .header-layout .header-main {
    max-width: 1920px;
  }
}
@media (min-width: 1500px) {
  .header-layout .header-main {
    margin: 0 auto;
  }
  .header-layout .header-main .header-right-control {
    align-items: stretch;
    position: absolute;
    top: 0;
    right: 0;
    bottom: -1px;
    height: auto !important;
  }
  .header-layout .header-main .header-right-control .header-element {
    display: flex;
  }
  .header-layout .header-main .header-right-control .header-element.cart_box a.cart-btn .mini-cart-contents .cart-counter > span {
    width: 22px;
    height: 22px;
    font-size: 13px;
    top: 16%;
  }
  .header-layout .header-main .header-right-control .header-element.search_box > a {
    padding: 0 55px 0 54px;
    background-color: #f33c3c;
  }
  .header-layout .header-main .header-right-control .header-element.search_box > a svg.fm-icon {
    fill: #fff !important;
  }
  .header-layout .header-main .header-right-control .header-element.search_box > a:hover {
    opacity: 0.8;
  }
  .header-layout.header-layout2 .header-main .header-container .hamburger-menu-wrap {
    width: auto;
  }
  .header-layout.header-layout2 .header-main .header-container .site-branding {
    width: 100%;
    text-align: center;
  }
  .header-layout.header-layout2 .header-main .header-container .header-right-control .header-element.search_box > a {
    padding: 0 54px 0 55px;
  }
  .header-layout.headroom--pinned.headroom--not-top .header-main .header-right-control {
    bottom: 0;
  }
}
.main-navigation {
  text-align: left;
}
.main-navigation.nav-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.main-navigation.nav-right {
  text-align: right;
  margin-left: auto;
}
.header-layout1 .main-navigation.nav-right + .header-right-control {
  margin-left: 50px;
}
.main-navigation.logo-center-menu {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.main-navigation.logo-center-menu > .site-branding {
  text-align: center;
}
.header-bottom .main-navigation {
  text-align: center;
}

.header-element {
  font-size: inherit;
}
.header-element.search_box.button {
  position: relative;
}
.header-element.search_box.button .search-btn.search-btn-dropdown {
  position: relative;
}
.header-element.search_box.button .search-btn.search-btn-dropdown:after {
  display: inline-block;
  content: "";
  width: 100%;
  height: 25px;
  position: absolute;
  bottom: -100%;
  left: 0;
}
.header-element.search_box.button .search_form_wrapper.dropdown {
  position: absolute;
  top: calc( 100% + 15px );
  right: 0;
  z-index: 340;
  background-color: #FFF;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  margin: -10px 0 0;
  padding: 15px;
  -webkit-transform: translateY(15px) translateZ(0);
  transform: translateY(15px) translateZ(0);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  pointer-events: none;
}
.header-element.search_box.button .search_form_wrapper.dropdown::before {
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: -25px;
  z-index: 5;
  content: "";
  right: 20px;
}
.header-left-control .header-element.search_box.button .search_form_wrapper.dropdown {
  left: 0;
  right: auto;
}
.header-right-control .header-element.search_box.button .search_form_wrapper.dropdown {
  left: auto;
  right: 0;
}
.header-element.search_box.button .search_form_wrapper .wc_search_form {
  display: flex;
}
.header-element.search_box.button .search_form_wrapper .wc_search_form.style2 .search_categories {
  order: -1;
}
.header-element.search_box.button:hover .search_form_wrapper.dropdown {
  visibility: visible;
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  pointer-events: unset;
}
.header-element.cart_box > a {
  position: relative;
}
.header-element.cart_box > a .cart-counter {
  font-size: 0;
  /* position: absolute; */
}
.header-element.cart_box .cart_box_content {
  width: 20rem;
}
.header-element.cart_box .cart_box_content li.woocommerce-mini-cart-item > a {
  display: inline-block;
}
.header-element.cart_box .cart_box_content li.woocommerce-mini-cart-item img.attachment-woocommerce_thumbnail {
  max-width: 100%;
  height: auto;
}
.fm-header-sticky .header-element.cart_box .cart_box_content.dropdown_content {
  max-height: 600px;
  overflow-y: auto;
}
.header-element.html_right_1 *, .header-element.html_left_1 *, .header-element.html_topbar_center *, .header-element.html_topbar_left *, .header-element.html_topbar_right * {
  margin-bottom: 0;
}
.header-left-control .header-element:not(.cart_box):not(.wishlist-box):not(.search_box):not(.my-account-box) {
  margin-right: 0.5rem;
}
.header-right-control .header-element:not(.cart_box):not(.wishlist-box):not(.search_box):not(.my-account-box) {
  margin-left: 0.5rem;
}
.header-center-control .header-element:not(.cart_box):not(.wishlist-box):not(.search_box):not(.my-account-box) {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

#hamburger-canvas {
  width: 560px;
  z-index: 100000;
}
#hamburger-canvas .hamburger-screen-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  overflow-y: auto;
  overflow-x: hidden;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-head {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 25px;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-head .hm-logo {
  display: flex;
  justify-content: center;
  width: 100%;
  display: none;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-head .hm-logo .site-logo {
  max-width: 100%;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-head .hm-logo .site-logo .sticky-logo {
  display: none;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-content {
  padding: 0 15px;
  width: 100%;
  display: flex;
  align-items: self-start;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-content .hamburger-navigation {
  width: 100%;
  padding-left: 8em;
  padding-right: 8em;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-content .hamburger-navigation ul.menu > li {
  padding: 11.5px 0;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-content .hamburger-navigation ul.menu > li > a {
  font-size: 25px;
  font-weight: 500;
  transition: all 0.5s ease 0s;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-content .hamburger-navigation ul.menu > li .sub-menu {
  margin-top: 8px;
  margin-bottom: 2px;
  padding-left: 0;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-content .hamburger-navigation ul.menu > li .sub-menu li {
  padding: 2.5px 0;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-content .hamburger-navigation ul.menu > li .sub-menu li a {
  font-size: 15px;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-content .hamburger-navigation ul.menu > li .sub-menu li a:not(:hover) {
  color: #909297;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-content .hamburger-navigation ul.menu > li .sub-menu li a:not(:hover):before {
  width: 0;
  margin-right: 0;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-content .hamburger-navigation ul.menu > li .sub-menu li a:before {
  content: "";
  height: 1px;
  width: 20px;
  display: inline-block;
  vertical-align: top;
  margin: 11px 9px 0 0;
  background-color: #f33c3c;
  transition: all 0.5s ease 0s;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-content .hamburger-navigation ul.menu > li.menu-item-has-children {
  padding-bottom: 1px;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-bottom {
  margin-top: auto;
  margin-bottom: 1px;
  padding: 0 8em;
  display: flex;
  flex-direction: column;
  width: 100%;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-bottom .social-links:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 56px;
  height: 1px;
  margin-right: 13px;
  background-color: #232529;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-bottom .social-links a {
  margin-right: 12px;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-bottom .social-links a svg.fm-icon {
  width: 16px;
  height: 16px;
}

.currency.list-dropdown, .language.list-dropdown {
  display: flex;
}
.currency.list-dropdown > span.label, .language.list-dropdown > span.label {
  margin-right: 6px;
  display: none;
}
.currency.list-dropdown .dropdown, .language.list-dropdown .dropdown {
  position: relative;
}
.currency.list-dropdown .dropdown .current svg.fm-icon, .language.list-dropdown .dropdown .current svg.fm-icon {
  width: 0.875rem;
  height: 0.875rem;
}
.currency.list-dropdown .dropdown ul, .language.list-dropdown .dropdown ul {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  background-color: #f8f8f8;
  list-style: none;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
  -moz-transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
  -ms-transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
  -o-transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
  transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
}
.currency.list-dropdown .dropdown ul li, .language.list-dropdown .dropdown ul li {
  min-width: 68px;
  padding: 5px 0;
  background: #ffffff;
  text-align: center;
}
.currency.list-dropdown .dropdown ul li:hover, .language.list-dropdown .dropdown ul li:hover {
  background: #f4f4f4;
}
.currency.list-dropdown .dropdown ul li a, .language.list-dropdown .dropdown ul li a {
  display: inline-block;
  height: 24px;
  line-height: 24px;
  width: 100%;
  color: #232529;
}
.currency.list-dropdown .dropdown:hover ul, .language.list-dropdown .dropdown:hover ul {
  visibility: visible;
  opacity: 1;
}
.top-bar-left-control .currency.list-dropdown > .dropdown > ul, .top-bar-left-control .language.list-dropdown > .dropdown > ul {
  left: 0;
  right: auto;
  z-index: 9;
}

/* # Footer  */
.site-footer {
  clear: both;
}
.site-footer .footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.site-footer .footer-wrap {
  display: flex;
  flex-direction: column;
}
.site-footer .footer-section > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer .footer-section .footer-items.footer-center {
  margin: 0 auto;
}

/* # Global Elements - FM Theme */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999;
  background: #fff;
}
.preloader .preloader-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
}
.preloader .loading {
  display: inline-block;
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid;
  border-top-color: transparent;
  -webkit-animation: spin infinite 1s linear;
  animation: spin infinite 1s linear;
}
.no-js .preloader, .wp-embed-responsive .preloader {
  display: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.widget .widget-title {
  font-size: 1.25rem;
}
.footer_widget .widget .widget-title {
  margin-bottom: 0.5rem;
  display: block;
}
.footer_widget .widget ul {
  padding-left: 0;
  list-style: none;
}
.cide-sidebar-content .widget {
  margin-bottom: 2rem;
}

/* Element - Page heading */
.page-heading-content {
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
}
.page-heading-content .page-heading-title {
  line-height: 1;
}
.page-heading-content .woocommerce-breadcrumb,
.page-heading-content .woocommerce-breadcrumb > a,
.page-heading-content .page-heading-title {
  color: #fff;
  font-size: 45px;
  font-weight: normal;
  position: relative;
  padding-bottom: 28px;
  margin-bottom: 17px;
}
.page-heading-content .page-heading-title:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  width: 61px;
  height: 3px;
  margin: auto;
  background-color: #fff;
}
.page-heading-content.heading-color-dark {
  color: #232529;
}
.page-heading-content.heading-color-dark .woocommerce-breadcrumb,
.page-heading-content.heading-color-dark .page-heading-title {
  color: #232529;
}
.page-heading-content.heading-color-dark .woocommerce-breadcrumb:after,
.page-heading-content.heading-color-dark .page-heading-title:after {
  background-color: #232529;
}
.page-heading-content.heading-color-dark .woocommerce-breadcrumb > a {
  color: #232529;
}
.page-heading-content.heading-color-dark .woocommerce-breadcrumb > a:hover, .page-heading-content.heading-color-dark .woocommerce-breadcrumb > a:not(:hover) {
  color: #232529;
}
.page-heading-content.heading-color-dark .trail-items .trail-item:not(.trail-end):after {
  border-color: #232529;
}
.page-heading-content.heading-color-dark .trail-items .trail-item > a {
  color: #232529;
}
.page-heading-content.heading-color-dark .trail-items .trail-item > a:hover, .page-heading-content.heading-color-dark .trail-items .trail-item > a:not(:hover) {
  color: #232529;
}
.page-heading-content .page-heading-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.page-heading-content .page-heading-container {
  position: relative;
}
.page-heading-content.heading-left {
  text-align: left;
  justify-content: flex-start;
}
.page-heading-content.heading-center {
  text-align: center;
  justify-content: center;
}
.page-heading-content.heading-right {
  text-align: right;
  justify-content: flex-end;
}

/* Element - Swiper Button */
.familab_theme .swiper-button-next,
.familab_theme .swiper-button-prev {
  background-image: none;
}
.familab_theme .swiper-button-next:after,
.familab_theme .swiper-button-prev:after {
  display: none;
}
.familab_theme .swiper-button-next svg.fm-icon,
.familab_theme .swiper-button-prev svg.fm-icon {
  width: 15px;
  height: 15px;
}
.familab_theme .swiper-button-next.swiper-button-disabled,
.familab_theme .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

.cide-carousel-wrap {
  position: relative;
}
.related.products .cide-carousel-wrap .swiper-button-next,
.related.products .cide-carousel-wrap .swiper-button-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #ffffff;
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.07);
  color: #232529;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -moz-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -ms-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -o-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
}
.related.products .cide-carousel-wrap .swiper-button-next svg,
.related.products .cide-carousel-wrap .swiper-button-prev svg {
  fill: #232529;
  -webkit-transition: fill 0.25s linear 0s;
  -moz-transition: fill 0.25s linear 0s;
  -ms-transition: fill 0.25s linear 0s;
  -o-transition: fill 0.25s linear 0s;
  transition: fill 0.25s linear 0s;
  width: 12px;
  height: 12px;
}
.related.products .cide-carousel-wrap .swiper-button-next:hover,
.related.products .cide-carousel-wrap .swiper-button-prev:hover {
  border-color: #f33c3c;
  background: #f33c3c;
  color: #ffffff;
}
.related.products .cide-carousel-wrap .swiper-button-next:hover svg,
.related.products .cide-carousel-wrap .swiper-button-prev:hover svg {
  fill: #ffffff;
}
.related.products .cide-carousel-wrap .swiper-button-next, .related.products .cide-carousel-wrap.swiper-container-rtl .swiper-button-prev {
  right: -25px;
}
.related.products .cide-carousel-wrap .swiper-button-prev, .related.products .cide-carousel-wrap.swiper-container-rtl .swiper-button-next {
  left: -25px;
}

@media (max-width: 767px) {
  .related.products .cide_navigation_wrap {
    display: none;
  }
}
/* Element - Search Box */
#fm-search-modal {
  z-index: 105000;
}
#fm-search-modal .search-modal.modal-dialog {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}
#fm-search-modal .modal-content {
  transition: none;
  width: 100vw;
  height: 100vh;
  padding-top: 0;
  top: 0;
  position: fixed;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: #FFF;
}
#fm-search-modal .modal-header {
  justify-content: center;
  border: none;
  flex-direction: column-reverse;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  width: 100%;
  max-width: 1440px;
}
#fm-search-modal .modal-header button.close {
  margin: auto;
  position: static;
}
#fm-search-modal .modal-header button.close svg.fm-icon {
  width: 2rem;
  height: 2rem;
}
#fm-search-modal .product-cats {
  transition: all 0.5s ease 0.5s;
  transform: translateY(30px);
  text-align: center;
  margin-bottom: 100px;
  opacity: 0;
}
#fm-search-modal .search_form_content {
  transition: transform 0.5s ease 0.6s, opacity 0.5s ease 0.6s, border 0.5s;
  transform: translateY(60px);
  position: relative;
  padding: 10px 60px;
  opacity: 0;
}
#fm-search-modal .search_form_content .fm-search-form {
  margin: auto;
}
#fm-search-modal .search_form_content .fm-search-form .twitter-typeahead {
  width: 100%;
}
#fm-search-modal .search_result {
  margin-top: 60px;
}
#fm-search-modal.show .product-cats,
#fm-search-modal.show .search_form_content {
  transform: translateY(0);
  opacity: 1;
}
#fm-search-modal .empty-message {
  text-align: center;
  display: inline-block;
  width: 100%;
}

.js-offcanvas-close {
  background: none !important;
  position: absolute;
  right: 0;
}
.js-offcanvas-close svg.fm-icon {
  width: 1rem;
  height: 1rem;
}

.fm-search-form {
  display: flex;
  position: relative;
  height: 44px;
}
.fm-search-form .twitter-typeahead {
  width: 100%;
}
.fm-search-form .search_text_input {
  height: 100%;
  border: 1px solid #e4e4e4;
  border-right: none;
  box-sizing: border-box;
}
.site-header .fm-search-form .search_text_input {
  min-width: 180px;
}
.btn-woo-circle .fm-search-form .search_text_input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.fm-search-form .btn_clear_text {
  display: none;
  align-items: center;
  height: 100%;
}
.fm-search-form .btn_clear_text svg {
  width: 12px;
  height: 12px;
}
.fm-search-form .btn_clear_text.show {
  display: flex;
  position: absolute;
  z-index: 9999;
  right: 50px;
}
.fm-search-form .search_categories {
  border: none;
  height: 100%;
  line-height: 100%;
  width: 100px;
  padding: 0 15px 0 0;
}
.fm-search-form button[type=submit] {
  margin-top: 0;
  font-size: 0;
  height: 100%;
  padding: 0 10px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border: none;
}
.fm-search-form.style2 .search_categories {
  order: -1;
}
.widget_search .fm-search-form {
  max-width: 100%;
}
.error404 .site-main .fm-search-form {
  margin: 10px auto 80px auto;
  min-width: 500px;
}
.error404 .site-main .fm-search-form .search_text_input {
  border: none;
  background-color: #f0f1f4 !important;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.error404 .site-main .fm-search-form button[type=submit] {
  width: 80px;
  color: #ffffff;
  letter-spacing: 0;
  background-color: #f33c3c;
}
.error404 .site-main .fm-search-form button[type=submit]:hover {
  opacity: 0.8;
}
.error404 .site-main .fm-search-form button[type=submit] svg {
  fill: #ffffff;
}

/* Element -  Navigation */
.comment-navigation, .posts-navigation, .post-navigation {
  overflow: hidden;
}
.comment-navigation .nav-previous, .posts-navigation .nav-previous, .post-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-previous svg, .posts-navigation .nav-previous svg, .post-navigation .nav-previous svg {
  margin-right: 20px;
}
.comment-navigation .nav-next, .posts-navigation .nav-next, .post-navigation .nav-next {
  float: right;
  width: 50%;
  text-align: right;
}
.comment-navigation .nav-next svg, .posts-navigation .nav-next svg, .post-navigation .nav-next svg {
  margin-left: 20px;
}
.comment-navigation a, .posts-navigation a, .post-navigation a {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}
.comment-navigation a:hover, .posts-navigation a:hover, .post-navigation a:hover {
  color: #f33c3c;
}

.post-navigation {
  clear: both;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
  padding: 5px 0;
}
.post-navigation .nav-next {
  float: right;
  width: 50%;
  text-align: center;
  border-left: 2px solid #e4e4e4;
}
.single-portfolio .post-navigation {
  padding-top: 60px;
  padding-bottom: 60px;
  border-bottom: 0;
}
.single-portfolio .post-navigation .nav-previous {
  text-align: right;
  padding-right: 70px;
}
.single-portfolio .post-navigation .nav-next {
  text-align: left;
  padding-left: 70px;
}
.post-navigation .single-post {
  padding-bottom: 0;
  border-bottom: none;
}

.ajax-navigation {
  text-align: center;
  padding-top: 50px;
}
.ajax-navigation .button-text {
  transition: 0.5s;
  color: #FFFFFF;
  opacity: 1;
}
.ajax-navigation .loading-icon {
  transition: 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}
.ajax-navigation a {
  font-size: 14px;
  font-size: 1.4rem;
  text-transform: capitalize;
}
.ajax-navigation.loading a {
  cursor: wait;
}
.ajax-navigation.loading a .button-text {
  opacity: 0;
}
.ajax-navigation.loading a .loading-icon {
  opacity: 1;
}

.comments-pagination {
  text-align: center;
  padding: 0 0 30px;
}
.comments-pagination a, .comments-pagination span {
  font-weight: 500;
  margin: 0 15px;
}

/* Element -  Pagination */
.pagination {
  display: block;
  clear: both;
  margin: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.pagination .nav-links {
  display: inline-block;
  width: 100%;
}
.pagination .nav-links ul.page-numbers {
  display: flex;
  list-style: none;
  padding-left: 0;
}
.pagination-align-left .pagination .nav-links ul.page-numbers {
  justify-content: flex-start;
}
.pagination-align-center .pagination .nav-links ul.page-numbers {
  justify-content: center;
}
.pagination-align-right .pagination .nav-links ul.page-numbers {
  justify-content: flex-end;
}
.pagination .nav-links ul.page-numbers li .page-numbers {
  margin: 3px;
  color: #909297;
  font-size: 16px;
  display: inline-block;
  font-weight: 500;
  width: 45px;
  height: 45px;
  line-height: 45px;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  text-align: center;
  transition: all 0.5s;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #d8dce6;
}
.pagination .nav-links ul.page-numbers li .page-numbers:first-child {
  margin-left: 0;
}
.pagination .nav-links ul.page-numbers li .page-numbers:last-child {
  margin-right: 0;
}
.pagination .nav-links ul.page-numbers li .page-numbers svg.fm-icon {
  width: 17px;
  height: 17px;
  fill: #909297;
  stroke: #909297;
}
.pagination-style1 .pagination .nav-links ul.page-numbers li .page-numbers {
  background-color: #FFF;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin: 3px;
}
.pagination-style1 .pagination .nav-links ul.page-numbers li .page-numbers.next, .pagination-style1 .pagination .nav-links ul.page-numbers li .page-numbers.prev {
  font-size: 0;
}
.pagination-style1 .pagination .nav-links ul.page-numbers li .page-numbers.current, .pagination-style1 .pagination .nav-links ul.page-numbers li .page-numbers:hover {
  color: #232529;
  border-color: #232529;
}
.pagination-style1 .pagination .nav-links ul.page-numbers li .page-numbers.current svg.fm-icon, .pagination-style1 .pagination .nav-links ul.page-numbers li .page-numbers:hover svg.fm-icon {
  fill: #232529;
  stroke: #232529;
}
.pagination-style2 .pagination .nav-links ul.page-numbers li .page-numbers {
  margin: 3px;
}
.pagination-style2 .pagination .nav-links ul.page-numbers li .page-numbers.next {
  width: 45px;
  padding: 0 17px 0 20px;
}
.pagination-style2 .pagination .nav-links ul.page-numbers li .page-numbers.prev {
  padding: 0 20px 0 17px;
  width: 45px;
}
.pagination-style2 .pagination .nav-links ul.page-numbers li .page-numbers.current, .pagination-style2 .pagination .nav-links ul.page-numbers li .page-numbers:hover {
  color: #232529;
  border-color: #232529;
}
.pagination-style2 .pagination .nav-links ul.page-numbers li .page-numbers.current svg.fm-icon, .pagination-style2 .pagination .nav-links ul.page-numbers li .page-numbers:hover svg.fm-icon {
  fill: #232529;
  stroke: #232529;
}

.woocommerce nav.woocommerce-pagination ul {
  border: none;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: none;
  box-sizing: border-box;
  margin: 0 3px 3px 3px;
}
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
  color: #909297;
  min-width: 45px;
  width: 45px;
  height: 44px;
  line-height: 42px;
  background-color: #ffffff;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.woocommerce nav.woocommerce-pagination ul li a svg.fm-icon, .woocommerce nav.woocommerce-pagination ul li span svg.fm-icon {
  width: 12px;
  height: 12px;
  fill: #909297;
}
.woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li a.current, .woocommerce nav.woocommerce-pagination ul li span:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
  background-color: #232529;
  border-color: #232529;
  color: #ffffff;
}
.woocommerce nav.woocommerce-pagination ul li a:hover svg.fm-icon, .woocommerce nav.woocommerce-pagination ul li a.current svg.fm-icon, .woocommerce nav.woocommerce-pagination ul li span:hover svg.fm-icon, .woocommerce nav.woocommerce-pagination ul li span.current svg.fm-icon {
  fill: #ffffff;
}
.woocommerce nav.woocommerce-pagination ul li a.prev, .woocommerce nav.woocommerce-pagination ul li span.prev {
  width: auto;
  padding: 0 15px 0 12px;
}
.woocommerce nav.woocommerce-pagination ul li a.next, .woocommerce nav.woocommerce-pagination ul li span.next {
  width: auto;
  padding: 0 12px 0 12px;
}
.pagination-style1 nav.woocommerce-pagination ul li a, .pagination-style1 nav.woocommerce-pagination ul li span {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.pagination-style2 nav.woocommerce-pagination ul li a, .pagination-style2 nav.woocommerce-pagination ul li span {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.pagination-align-left.woocommerce nav.woocommerce-pagination {
  text-align: left;
}
.pagination-align-center.woocommerce nav.woocommerce-pagination {
  text-align: center;
}
.pagination-align-right.woocommerce nav.woocommerce-pagination {
  text-align: right;
}

.cide_woof_pagination_trigger {
  position: relative;
}
.cide_woof_pagination_trigger .page-numbers {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
.cide_woof_pagination_trigger.scroll .cide_woof_pagination_trigger_action {
  display: none !important;
}

/* Element -  Menu Navigation */
.nav-menu, .nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li {
  margin: 0 15px;
  display: inline-block;
  position: relative;
}
.nav-menu li.menu-item-mega:not(.menu-item-custom-width) {
  position: static;
}
.nav-menu li > ul {
  box-shadow: 0 4px 10px 0 rgba(3, 3, 3, 0.1);
  position: absolute;
  top: 100%;
  left: -40px;
  padding: 30px 0;
  min-width: 166px;
  display: none;
  z-index: 99;
  background-color: #fff;
  white-space: nowrap;
}
.nav-menu li > ul:before {
  position: absolute;
  top: -8px;
  left: 0;
  content: "";
  width: 100%;
  height: 40px;
  background-color: transparent;
}
.nav-menu li > ul.mega-menu-container ul {
  transform: translate(0);
}
.nav-menu li li {
  display: block;
  margin: 0;
  padding: 8px 25px;
}
.nav-menu li li a {
  font-weight: 400;
  text-transform: none;
  line-height: 1.4;
  font-size: 14px;
}
.nav-menu li li .elementor-section a {
  font-size: unset;
  font-weight: unset;
  line-height: unset;
}
.nav-menu li li.mega-content-post {
  padding: 0;
  width: 100%;
}
.nav-menu li li.menu-level-1 > a:not(:hover) {
  color: #232529;
}
.nav-menu > li:last-child {
  margin-right: 0;
}
.nav-menu a {
  position: relative;
  display: block;
}
.nav-menu a.fmtpl-button-default {
  display: inline-flex;
}
.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: #fff;
  text-align: left;
  padding: 20px 0px;
  z-index: 9999;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-shadow: 7px 6px 40px 0px rgba(204, 204, 223, 0.16);
  -moz-box-shadow: 7px 6px 40px 0px rgba(204, 204, 223, 0.16);
  box-shadow: 7px 6px 40px 0px rgba(204, 204, 223, 0.16);
  display: block;
}
.nav-menu .sub-menu .sub-menu {
  top: -21px !important;
  left: 100%;
}
.nav-menu .sub-menu.mega-menu-container {
  display: flex;
  flex-wrap: wrap;
}
.nav-menu .sub-menu.mega-menu-container .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 0 !important;
}
.nav-menu .sub-menu.mega-menu-wrap {
  /*position: fixed;*/
  position: absolute;
  padding: 0;
  left: 0;
  right: 0;
  background: #FFF;
  -webkit-box-shadow: 7px 6px 40px 0px rgba(204, 204, 223, 0.16);
  -moz-box-shadow: 7px 6px 40px 0px rgba(204, 204, 223, 0.16);
  box-shadow: 7px 6px 40px 0px rgba(204, 204, 223, 0.16);
}
.nav-menu .sub-menu.mega-menu-wrap .mega-menu-container {
  margin: 0 auto;
  background: #fff;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.nav-menu .sub-menu.mega-menu-wrap .mega-menu-container .mega-menu-content {
  position: static;
  display: flex;
  box-shadow: none;
  background: transparent;
  transform: translateY(0);
}
.nav-menu .menu-item:not(:hover) > .sub-menu {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -o-transform: translateY(15px);
  transform: translateY(15px);
}
.nav-menu .menu-item.menu-item-mega:hover > .sub-menu, .nav-menu .menu-item.menu-item-mega:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: calc(100% + 25px);
}
.nav-menu .menu-item.menu-item-mega.menu-item-custom-width > .sub-menu {
  top: calc(100% + 25px);
}
.nav-menu .menu-item.menu-item-mega.menu-item-custom-width > .sub-menu:before {
  top: -25px;
}
.nav-menu .menu-item.menu-item-mega.menu-item-mega:not(.menu-item-custom-width) .container-fluid:before {
  position: absolute;
  top: -35px;
  left: 0;
  content: "";
  width: 100%;
  height: 40px;
  background-color: transparent;
}
.nav-menu .menu-item.menu-item-has-children > .sub-menu {
  top: calc(100% + 25px);
}
.nav-menu .menu-item.menu-item-has-children > .sub-menu:before {
  top: -25px;
}
.nav-menu .menu-item:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.nav-menu .menu-item:hover .sub-menu .sub-menu {
  /*top: 100%;*/
  top: -21px !important;
}
.nav-menu > .menu-item:nth-last-child(1) .sub-menu .menu-item:not(:hover) .sub-menu,
.nav-menu > .menu-item:nth-last-child(2) .sub-menu .menu-item:not(:hover) .sub-menu,
.nav-menu > .menu-item:nth-last-child(3) .sub-menu .menu-item:not(:hover) .sub-menu,
.nav-menu > .menu-item:nth-last-child(4) .sub-menu .menu-item:not(:hover) .sub-menu {
  -webkit-transform: translateX(15px);
  -moz-transform: translateX(15px);
  -ms-transform: translateX(15px);
  -o-transform: translateX(15px);
  transform: translateX(15px);
}

.site-navigation a:after {
  display: none;
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  transition: all 0.5s;
  width: 0;
  height: 2px;
  background-color: #f33c3c;
}
.site-navigation a i {
  margin-right: 5px;
}
.site-navigation li.current-menu-item > a:after,
.site-navigation li.current-menu-ancestor > a:after,
.site-navigation li:hover > a:after {
  width: 100%;
  left: 0;
}
.site-navigation li li a:after {
  display: none;
}
.site-navigation .mega-menu-container {
  padding: 0;
}
.site-header .site-navigation .mega-menu-container .menu-item-has-children > a, .site-header .site-navigation .mega-menu-container .menu-item-has-children > span {
  font-size: 11.25px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  display: block;
}
.site-navigation .mega-sub-menu {
  margin: 15px 0;
  position: static;
}
.site-navigation .mega-sub-menu:first-child {
  padding-left: 20px;
}
.site-navigation .mega-sub-menu:last-child {
  padding-right: 20px;
}
.site-navigation .mega-sub-menu.menu-item-title-hidden > a,
.site-navigation .mega-sub-menu.menu-item-title-hidden > span {
  text-indent: -9999px;
}
.site-navigation .mega-sub-menu .sub-menu {
  transform: translate(0);
  box-shadow: none;
  display: block !important;
  opacity: 1 !important;
  position: static;
  min-width: 0;
  padding: 0;
  margin: 16px 0 0 0;
  background-color: transparent;
}
.site-navigation .mega-sub-menu > .sub-menu > li:last-child {
  margin-bottom: 0;
}
.site-navigation .mega-sub-menu li {
  padding: 0;
  margin-bottom: 12px;
}
.site-navigation .mega-sub-menu li + .menu-item-has-children {
  padding-top: 10px;
}

.default-nav-menu ul.menu, .default-nav-menu .menu.default-nav-menu ul {
  list-style: none;
  padding: 0.5rem 0;
}
.default-nav-menu ul.menu li.menu-item, .default-nav-menu ul.menu li.page_item, .default-nav-menu .menu.default-nav-menu ul li.menu-item, .default-nav-menu .menu.default-nav-menu ul li.page_item {
  position: relative;
  line-height: 1.5rem;
  padding: 0.5rem 0;
}
.default-nav-menu ul.menu li.menu-item ul.sub-menu, .default-nav-menu ul.menu li.menu-item ul.children, .default-nav-menu ul.menu li.page_item ul.sub-menu, .default-nav-menu ul.menu li.page_item ul.children, .default-nav-menu .menu.default-nav-menu ul li.menu-item ul.sub-menu, .default-nav-menu .menu.default-nav-menu ul li.menu-item ul.children, .default-nav-menu .menu.default-nav-menu ul li.page_item ul.sub-menu, .default-nav-menu .menu.default-nav-menu ul li.page_item ul.children {
  list-style: none;
  padding: 0;
  padding-left: 0.75rem;
  visibility: hidden;
  opacity: 0;
  height: 0;
  -webkit-transition: height 0.35s linear 0s;
  -moz-transition: height 0.35s linear 0s;
  -ms-transition: height 0.35s linear 0s;
  -o-transition: height 0.35s linear 0s;
  transition: height 0.35s linear 0s;
}
.default-nav-menu ul.menu li.menu-item ul.sub-menu li:last-child, .default-nav-menu ul.menu li.menu-item ul.children li:last-child, .default-nav-menu ul.menu li.page_item ul.sub-menu li:last-child, .default-nav-menu ul.menu li.page_item ul.children li:last-child, .default-nav-menu .menu.default-nav-menu ul li.menu-item ul.sub-menu li:last-child, .default-nav-menu .menu.default-nav-menu ul li.menu-item ul.children li:last-child, .default-nav-menu .menu.default-nav-menu ul li.page_item ul.sub-menu li:last-child, .default-nav-menu .menu.default-nav-menu ul li.page_item ul.children li:last-child {
  padding-bottom: 0;
}
.default-nav-menu ul.menu li.menu-item a.toggle-submenu, .default-nav-menu ul.menu li.page_item a.toggle-submenu, .default-nav-menu .menu.default-nav-menu ul li.menu-item a.toggle-submenu, .default-nav-menu .menu.default-nav-menu ul li.page_item a.toggle-submenu {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 100%;
  font-size: 1.5rem;
  text-align: center;
}
.default-nav-menu ul.menu li.menu-item a.toggle-submenu .toggle-icon, .default-nav-menu ul.menu li.page_item a.toggle-submenu .toggle-icon, .default-nav-menu .menu.default-nav-menu ul li.menu-item a.toggle-submenu .toggle-icon, .default-nav-menu .menu.default-nav-menu ul li.page_item a.toggle-submenu .toggle-icon {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  justify-content: flex-end;
}
.default-nav-menu ul.menu li.menu-item a.toggle-submenu .toggle-icon::before, .default-nav-menu ul.menu li.page_item a.toggle-submenu .toggle-icon::before, .default-nav-menu .menu.default-nav-menu ul li.menu-item a.toggle-submenu .toggle-icon::before, .default-nav-menu .menu.default-nav-menu ul li.page_item a.toggle-submenu .toggle-icon::before {
  content: "";
  display: inherit;
  width: 7px;
  height: 7px;
  border: 1px solid #b2b2b2;
  border-width: 1px 1px 0 0;
  transform: rotate(45deg);
}
.default-nav-menu ul.menu li.menu-item a.toggle-submenu .toggle-icon::after, .default-nav-menu ul.menu li.page_item a.toggle-submenu .toggle-icon::after, .default-nav-menu .menu.default-nav-menu ul li.menu-item a.toggle-submenu .toggle-icon::after, .default-nav-menu .menu.default-nav-menu ul li.page_item a.toggle-submenu .toggle-icon::after {
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid #b2b2b2;
  border-width: 1px 1px 0 0;
  transform: rotate(-45deg);
  display: none;
}
.default-nav-menu ul.menu li.menu-item.open > a.toggle-submenu .toggle-icon::before, .default-nav-menu ul.menu li.page_item.open > a.toggle-submenu .toggle-icon::before, .default-nav-menu .menu.default-nav-menu ul li.menu-item.open > a.toggle-submenu .toggle-icon::before, .default-nav-menu .menu.default-nav-menu ul li.page_item.open > a.toggle-submenu .toggle-icon::before {
  display: none;
}
.default-nav-menu ul.menu li.menu-item.open > a.toggle-submenu .toggle-icon::after, .default-nav-menu ul.menu li.page_item.open > a.toggle-submenu .toggle-icon::after, .default-nav-menu .menu.default-nav-menu ul li.menu-item.open > a.toggle-submenu .toggle-icon::after, .default-nav-menu .menu.default-nav-menu ul li.page_item.open > a.toggle-submenu .toggle-icon::after {
  display: inline-block;
}
.default-nav-menu ul.menu li.menu-item.open > ul.sub-menu, .default-nav-menu ul.menu li.menu-item.open > ul.children, .default-nav-menu ul.menu li.page_item.open > ul.sub-menu, .default-nav-menu ul.menu li.page_item.open > ul.children, .default-nav-menu .menu.default-nav-menu ul li.menu-item.open > ul.sub-menu, .default-nav-menu .menu.default-nav-menu ul li.menu-item.open > ul.children, .default-nav-menu .menu.default-nav-menu ul li.page_item.open > ul.sub-menu, .default-nav-menu .menu.default-nav-menu ul li.page_item.open > ul.children {
  visibility: visible;
  opacity: 1;
  height: auto;
}

/* Element -  Modal Dialog */
.modal-dialog .cide-close-btn {
  font-size: 0 !important;
  background: none !important;
  border: none !important;
}
.modal-dialog .cide-close-btn:hover {
  background: none !important;
}
.modal-dialog.account-modal .account_form_content .nav {
  justify-content: center;
}

/* Element -  Canvas  */
.js-offcanvas .cide-close-btn {
  background: none !important;
  border: none !important;
  padding: 0;
}
.js-offcanvas .account_form_content .tab-content h2 {
  display: none;
}
.js-offcanvas .account_form_content .tab-content .woocommerce-form {
  padding: 15px 20px;
}
.js-offcanvas .account_form_content .tab-content .woocommerce-form > .form-row {
  margin-left: 0;
  margin-right: 0;
}
.js-offcanvas .cart_box_content {
  padding: 0 15px;
  margin: 0;
  height: calc(100% - 110px);
}
.js-offcanvas .cart_box_content .widget_shopping_cart_content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.js-offcanvas .cart_box_content .widget_shopping_cart_content ul.cart_list {
  padding-left: 0;
  list-style: none;
}
.js-offcanvas .cart_box_content .widget_shopping_cart_content ul.cart_list .woocommerce-mini-cart-item img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 10/10;
  object-fit: cover;
}
.js-offcanvas .cart_box_content .widget_shopping_cart_content ul.cart_list .woocommerce-mini-cart-item .quantity {
  clear: left;
  display: inline-block;
}
.js-offcanvas .cart_box_content .widget_shopping_cart_content .woocommerce-mini-cart__buttons {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.cide-breadcrumbs .trail-items {
  padding: 0;
  margin: 0;
}
.page-heading-content .cide-breadcrumbs .trail-items {
  margin: 0;
}
.cide-breadcrumbs .trail-items .trail-item {
  display: inline-block;
}
.cide-breadcrumbs .trail-items .trail-item > a:not(:hover) {
  color: #fff;
}
.cide-breadcrumbs .trail-items .trail-item > a:hover {
  color: #fff;
}
.cide-breadcrumbs .trail-items .trail-item:not(.trail-end)::after {
  display: inline-block;
  vertical-align: middle;
  margin: 0 9px 0 7px;
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid #fff;
  transform: rotate(45deg);
  border-width: 1px 1px 0 0;
}

@media (min-width: 1440px) {
  .cide-breadcrumbs .trail-items .trail-item {
    display: inline-block;
  }
  .cide-breadcrumbs .trail-items .trail-item:not(.trail-end)::after {
    margin: 0 12px 0 11px;
  }

  /* Element - Swiper Button */
  .related.products .cide-carousel-wrap .swiper-button-next, .related.products .cide-carousel-wrap.swiper-container-rtl .swiper-button-prev {
    right: -25px;
  }
  .related.products .cide-carousel-wrap .swiper-button-prev, .related.products .cide-carousel-wrap.swiper-container-rtl .swiper-button-next {
    left: -25px;
  }

  .error404 .site-main .fm-search-form {
    margin-bottom: 180px;
  }
}
/* # WooCommerce Style */
.woocommerce .woocommerce-error, .woocommerce-page .woocommerce-error, .woocommerce .woocommerce-info, .woocommerce-page .woocommerce-info, .woocommerce .woocommerce-message, .woocommerce-page .woocommerce-message {
  padding: 0.5rem 1rem;
  color: #232529;
  border-style: solid;
  border-width: 0 0 0 2px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.woocommerce .woocommerce-error .button, .woocommerce-page .woocommerce-error .button, .woocommerce .woocommerce-info .button, .woocommerce-page .woocommerce-info .button, .woocommerce .woocommerce-message .button, .woocommerce-page .woocommerce-message .button {
  float: none;
  margin: 0;
  order: 2;
  background: #232529;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
}
.woocommerce .woocommerce-error .button:hover, .woocommerce-page .woocommerce-error .button:hover, .woocommerce .woocommerce-info .button:hover, .woocommerce-page .woocommerce-info .button:hover, .woocommerce .woocommerce-message .button:hover, .woocommerce-page .woocommerce-message .button:hover {
  background-color: #f33c3c;
}
.woocommerce .woocommerce-error::before, .woocommerce-page .woocommerce-error::before, .woocommerce .woocommerce-info::before, .woocommerce-page .woocommerce-info::before, .woocommerce .woocommerce-message::before, .woocommerce-page .woocommerce-message::before {
  display: none;
}
.woocommerce-NoticeGroup-checkout .woocommerce-error, .woocommerce-NoticeGroup-checkout .woocommerce-info, .woocommerce-NoticeGroup-checkout .woocommerce-message {
  flex-direction: column;
  align-items: flex-start;
}

.woocommerce-message {
  border-color: #6dc22e;
}

.woocommerce-error {
  border-color: #aa0000;
}

#add_payment_method table.cart td.actions .coupon .input-text, .woocommerce-cart table.cart td.actions .coupon .input-text, .woocommerce-checkout table.cart td.actions .coupon .input-text {
  border-color: #e4e4e4;
}
#add_payment_method table.cart td.actions .coupon .input-text :hover, #add_payment_method table.cart td.actions .coupon .input-text :focus, .woocommerce-cart table.cart td.actions .coupon .input-text :hover, .woocommerce-cart table.cart td.actions .coupon .input-text :focus, .woocommerce-checkout table.cart td.actions .coupon .input-text :hover, .woocommerce-checkout table.cart td.actions .coupon .input-text :focus {
  border-color: #232529;
}

/* WooCommerce Form */
.woocommerce form .form-row, .woocommerce-page form .form-row {
  position: relative;
  margin-bottom: 15px;
}
.woocommerce form .form-row label, .woocommerce-page form .form-row label {
  font-size: 15px;
  color: #777;
  position: absolute;
  left: 8px;
  top: 0;
  transform: translateY(-50%);
  margin: 0;
  background: #ffffff;
  padding: 0 8px;
  line-height: 20px;
  z-index: 1;
  -webkit-transition: top 0.25s linear 0s;
  -moz-transition: top 0.25s linear 0s;
  -ms-transition: top 0.25s linear 0s;
  -o-transition: top 0.25s linear 0s;
  transition: top 0.25s linear 0s;
}
.woocommerce form .form-row label.woocommerce-form__label-for-checkbox, .woocommerce form .form-row label.woocommerce-form-login__rememberme, .woocommerce-page form .form-row label.woocommerce-form__label-for-checkbox, .woocommerce-page form .form-row label.woocommerce-form-login__rememberme {
  position: static;
  background: none;
  transform: translateY(0);
  width: auto;
}
.woocommerce form .form-row label .required, .woocommerce-page form .form-row label .required {
  color: inherit;
  font-size: inherit;
  font-weight: normal;
}
.woocommerce form .form-row .input-text#billing_address_1::placeholder, .woocommerce form .form-row .input-text #shipping_address_1::placeholder, .woocommerce form .form-row .input-text#billing_email::placeholder, .woocommerce form .form-row .input-text#shipping_country::placeholder, .woocommerce-page form .form-row .input-text#billing_address_1::placeholder, .woocommerce-page form .form-row .input-text #shipping_address_1::placeholder, .woocommerce-page form .form-row .input-text#billing_email::placeholder, .woocommerce-page form .form-row .input-text#shipping_country::placeholder {
  opacity: 0;
}
.woocommerce form .form-row .input-text#billing_email, .woocommerce-page form .form-row .input-text#billing_email {
  font-size: 0;
}
.woocommerce form .form-row .input-text#billing_email:focus, .woocommerce-page form .form-row .input-text#billing_email:focus {
  font-size: 15px;
}
.woocommerce form .woocommerce-input-wrapper, .woocommerce-page form .woocommerce-input-wrapper {
  width: 100%;
}
.woocommerce form.woocommerce-form-track-order .form-row > label, .woocommerce-page form.woocommerce-form-track-order .form-row > label {
  top: 0;
  color: #232529;
}
.woocommerce form.woocommerce-form-track-order button[type=submit], .woocommerce-page form.woocommerce-form-track-order button[type=submit] {
  width: 100%;
}

#fm-account-modal form.woocommerce-form.woocommerce-form-register .form-row, #fm-account-modal form.woocommerce-form.woocommerce-form-login .form-row, .woocommerce-account form.woocommerce-form.woocommerce-form-register .form-row, .woocommerce-account form.woocommerce-form.woocommerce-form-login .form-row {
  position: relative;
  margin-bottom: 15px;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
#fm-account-modal form.woocommerce-form.woocommerce-form-register .form-row label, #fm-account-modal form.woocommerce-form.woocommerce-form-login .form-row label, .woocommerce-account form.woocommerce-form.woocommerce-form-register .form-row label, .woocommerce-account form.woocommerce-form.woocommerce-form-login .form-row label {
  font-size: 15px;
  color: #999999;
  position: absolute;
  left: 8px;
  top: 2px;
  transform: translateY(-50%);
  margin: 0;
  background: #ffffff;
  padding: 0 8px;
  line-height: 20px;
  z-index: 1;
  -webkit-transition: top 0.25s linear 0s;
  -moz-transition: top 0.25s linear 0s;
  -ms-transition: top 0.25s linear 0s;
  -o-transition: top 0.25s linear 0s;
  transition: top 0.25s linear 0s;
}
#fm-account-modal form.woocommerce-form.woocommerce-form-register .form-row label[for=billing_country], #fm-account-modal form.woocommerce-form.woocommerce-form-register .form-row label[for=order_comments], #fm-account-modal form.woocommerce-form.woocommerce-form-login .form-row label[for=billing_country], #fm-account-modal form.woocommerce-form.woocommerce-form-login .form-row label[for=order_comments], .woocommerce-account form.woocommerce-form.woocommerce-form-register .form-row label[for=billing_country], .woocommerce-account form.woocommerce-form.woocommerce-form-register .form-row label[for=order_comments], .woocommerce-account form.woocommerce-form.woocommerce-form-login .form-row label[for=billing_country], .woocommerce-account form.woocommerce-form.woocommerce-form-login .form-row label[for=order_comments] {
  top: 0;
  color: #232529;
}
#fm-account-modal form.woocommerce-form.woocommerce-form-register .form-row label.woocommerce-form__label-for-checkbox, #fm-account-modal form.woocommerce-form.woocommerce-form-register .form-row label.woocommerce-form-login__rememberme, #fm-account-modal form.woocommerce-form.woocommerce-form-login .form-row label.woocommerce-form__label-for-checkbox, #fm-account-modal form.woocommerce-form.woocommerce-form-login .form-row label.woocommerce-form-login__rememberme, .woocommerce-account form.woocommerce-form.woocommerce-form-register .form-row label.woocommerce-form__label-for-checkbox, .woocommerce-account form.woocommerce-form.woocommerce-form-register .form-row label.woocommerce-form-login__rememberme, .woocommerce-account form.woocommerce-form.woocommerce-form-login .form-row label.woocommerce-form__label-for-checkbox, .woocommerce-account form.woocommerce-form.woocommerce-form-login .form-row label.woocommerce-form-login__rememberme {
  position: static;
  background: none;
  transform: translateY(0);
  width: auto;
}
#fm-account-modal form.woocommerce-form.woocommerce-form-register .form-row label .required, #fm-account-modal form.woocommerce-form.woocommerce-form-login .form-row label .required, .woocommerce-account form.woocommerce-form.woocommerce-form-register .form-row label .required, .woocommerce-account form.woocommerce-form.woocommerce-form-login .form-row label .required {
  color: inherit;
  font-size: inherit;
}
#fm-account-modal form.woocommerce-form.woocommerce-form-register .form-row .input-text::placeholder, #fm-account-modal form.woocommerce-form.woocommerce-form-login .form-row .input-text::placeholder, .woocommerce-account form.woocommerce-form.woocommerce-form-register .form-row .input-text::placeholder, .woocommerce-account form.woocommerce-form.woocommerce-form-login .form-row .input-text::placeholder {
  opacity: 0;
}
#fm-account-modal form.woocommerce-form.woocommerce-form-register .form-row .input-text:focus ~ label, #fm-account-modal form.woocommerce-form.woocommerce-form-register .form-row .input-text.has-content ~ label, #fm-account-modal form.woocommerce-form.woocommerce-form-login .form-row .input-text:focus ~ label, #fm-account-modal form.woocommerce-form.woocommerce-form-login .form-row .input-text.has-content ~ label, .woocommerce-account form.woocommerce-form.woocommerce-form-register .form-row .input-text:focus ~ label, .woocommerce-account form.woocommerce-form.woocommerce-form-register .form-row .input-text.has-content ~ label, .woocommerce-account form.woocommerce-form.woocommerce-form-login .form-row .input-text:focus ~ label, .woocommerce-account form.woocommerce-form.woocommerce-form-login .form-row .input-text.has-content ~ label {
  top: 0;
  color: #232529;
  width: auto;
}
#fm-account-modal form.woocommerce-form.woocommerce-form-register .form-row .show-password-input ~ label, #fm-account-modal form.woocommerce-form.woocommerce-form-register .form-row .password-input ~ label, #fm-account-modal form.woocommerce-form.woocommerce-form-login .form-row .show-password-input ~ label, #fm-account-modal form.woocommerce-form.woocommerce-form-login .form-row .password-input ~ label, .woocommerce-account form.woocommerce-form.woocommerce-form-register .form-row .show-password-input ~ label, .woocommerce-account form.woocommerce-form.woocommerce-form-register .form-row .password-input ~ label, .woocommerce-account form.woocommerce-form.woocommerce-form-login .form-row .show-password-input ~ label, .woocommerce-account form.woocommerce-form.woocommerce-form-login .form-row .password-input ~ label {
  display: none;
}

.woocommerce-checkout.woocommerce-page form .form-row label[for=billing_country], .woocommerce-checkout.woocommerce-page form .form-row label[for=order_comments], .woocommerce-checkout.woocommerce-page form .form-row label[for=shipping_country] {
  top: 0;
  color: #232529;
  width: auto;
}
.woocommerce-checkout.woocommerce-page form .form-row label.woocommerce-form__label-for-checkbox, .woocommerce-checkout.woocommerce-page form .form-row label.woocommerce-form-login__rememberme {
  position: static;
  background: none;
  transform: translateY(0);
}
.woocommerce-checkout.woocommerce-page form .form-row label .required {
  color: inherit;
  font-weight: inherit;
}
.woocommerce-checkout.woocommerce-page form .form-row .input-text {
  font-size: 14px;
}
.woocommerce-checkout.woocommerce-page form .form-row .input-text#billing_address_1::placeholder, .woocommerce-checkout.woocommerce-page form .form-row .input-text#billing_email::placeholder, .woocommerce-checkout.woocommerce-page form .form-row .input-text#shipping_country::placeholder {
  opacity: 0;
}
.woocommerce-checkout.woocommerce-page form .form-row .input-text#billing_email {
  font-size: 0;
}
.woocommerce-checkout.woocommerce-page form .form-row .input-text#billing_email:focus, .woocommerce-checkout.woocommerce-page form .form-row .input-text#billing_email.has-content {
  font-size: 15px;
}
.woocommerce-checkout.woocommerce-page form .form-row .input-text:focus ~ label, .woocommerce-checkout.woocommerce-page form .form-row .input-text.has-content ~ label {
  top: 0;
  color: #232529;
}

/* WooCommerce Cart Title */
.woocommerce .cart-collaterals .cart_totals > h2,
.woocommerce-page .cart-collaterals .cart_totals > h2,
.woocommerce-cart-form > h3,
#order_review_heading,
#customer_details .woocommerce-billing-fields > h3,
#customer_details .woocommerce-additional-fields > h3,
h2.woocommerce-order-details__title,
h2.woocommerce-column__title {
  color: #232529;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
}

.woocommerce table.shop_table {
  border: 1px solid #e4e4e4;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.woocommerce table.shop_table thead {
  display: none;
}
.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tbody td, .woocommerce table.shop_table tfoot th, .woocommerce table.shop_table tfoot td {
  border-style: solid;
  border-color: #e4e4e4;
  border-width: 0 0 1px 0;
  color: #232529;
  padding: 15px;
}
table.shop_table td.product-name a {
  color: #232529;
}
table.shop_table .product-subtotal, table.shop_table .order-total {
  text-align: right;
}
table.shop_table .product-subtotal > th, table.shop_table .order-total > th {
  text-align: left;
}

#add_payment_method table.cart img, .woocommerce-cart table.cart img, .woocommerce-checkout table.cart img {
  width: 100px;
}
.woocommerce table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text, .woocommerce #content table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text {
  min-width: 98px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.woocommerce a.remove {
  display: block;
  height: 1.5rem;
  width: 1.5rem;
  text-align: center;
  line-height: 1.125rem;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  color: #444 !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.5rem;
  border: 0;
  transition: background-color 0.15s;
}
.woocommerce a.remove:hover {
  background-color: transparent;
}

.woocommerce-cart .entry-content > .woocommerce:after, .woocommerce-cart .entry-content > .woocommerce:before {
  content: "";
  display: table;
  clear: both;
}

.woocommerce-cart-form, .woocommerce .col2-set, .woocommerce-page .col2-set {
  width: 100%;
  float: left;
  margin-right: 0;
}

/* # WooCommerce - Morden Checkout Style */
.fmc-checkout-step {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  max-width: 555px;
  margin: 0px auto 50px;
  padding: 0;
  position: relative;
  overflow-x: auto;
  /* Checkout style Cide  */
}
.fmc-checkout-step .step {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.fmc-checkout-step .step a.step-link {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fmc-checkout-step .step a.step-link:hover {
  color: #232529;
}
.fmc-checkout-step .step span.step-icon {
  display: flex;
  width: 24px;
  height: 24px;
  border: 2px solid #ccc;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
  color: #232529;
  background: #ffffff;
  margin-top: -12px;
  margin-bottom: 5px;
}
.fmc-checkout-step .step span.label {
  font-size: 15px;
  font-weight: 500;
}
.fmc-checkout-step .step span.label:not(:hover) {
  color: #aaaaaa;
}
.fmc-checkout-step .step::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #cccccc;
}
.fmc-checkout-step .step.active a.step-link, .fmc-checkout-step .step.finish a.step-link {
  color: #232529;
}
.fmc-checkout-step .step.active span.step-icon, .fmc-checkout-step .step.finish span.step-icon {
  background: #f33c3c;
  color: #FFF;
  border-color: #f33c3c;
}
.fmc-checkout-step .step.active span.step-icon svg, .fmc-checkout-step .step.finish span.step-icon svg {
  fill: #ffffff;
}
.fmc-checkout-step .step.active span.label, .fmc-checkout-step .step.finish span.label {
  color: #232529;
}
.fmc-checkout-step .step.active::before, .fmc-checkout-step .step.finish::before {
  background: #f33c3c;
}
.fmc-checkout-step .step.finish span.step-icon {
  background: #ffffff;
  color: #f33c3c;
  border-color: #f33c3c;
}
.fmc-checkout-step .step.finish span.step-icon svg {
  width: 13px;
  height: 13px;
  fill: #f33c3c;
}
.theme-cide .fmc-checkout-step {
  max-width: 100%;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.theme-cide .fmc-checkout-step .step {
  flex: none;
  margin: 0 20px 0 0;
}
.theme-cide .fmc-checkout-step .step a.step-link:hover {
  color: #232529;
}
.theme-cide .fmc-checkout-step .step span.step-icon {
  display: none;
}
.theme-cide .fmc-checkout-step .step span.label {
  font-size: 24px;
  position: relative;
  padding-bottom: 8px;
}
.theme-cide .fmc-checkout-step .step span.label::after {
  display: inline-block;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: transparent;
}
.theme-cide .fmc-checkout-step .step::before {
  display: none;
}
.theme-cide .fmc-checkout-step .step.finish span.label:not(:hover) {
  color: #999999;
}
.theme-cide .fmc-checkout-step .step.finish.step-order span.label {
  color: #232529;
}
.theme-cide .fmc-checkout-step .step.finish.step-order span.label::after {
  background: #000000;
}

.woocommerce-form-coupon-toggle, .woocommerce-form-login-toggle {
  padding: 20px 15px;
  background-color: #f2f2f2;
  max-width: 680px;
  margin: 0 auto 30px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.woocommerce-form-coupon-toggle .woocommerce-info, .woocommerce-form-login-toggle .woocommerce-info {
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  flex-wrap: wrap;
  font-size: 12px;
  color: #999999;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  font-weight: 600;
}
.woocommerce-form-coupon-toggle .woocommerce-info a, .woocommerce-form-login-toggle .woocommerce-info a {
  color: #232529;
  margin-left: 3px;
}
.woocommerce-form-coupon-toggle svg, .woocommerce-form-login-toggle svg {
  fill: #232529;
  width: 20px;
  height: 20px;
  margin: 0 15px 0 0;
}

.woocommerce-checkout .woocommerce-form-login-toggle ~ .woocommerce-form-login, .woocommerce-checkout .woocommerce-form-coupon-toggle ~ .woocommerce-form-coupon {
  max-width: 700px;
  margin: 0 auto 30px auto;
  padding: 0;
  text-align: center;
  border: none;
  font-size: 15px;
  color: #232529;
}
.woocommerce-checkout .woocommerce-form-login-toggle ~ .woocommerce-form-login p.form-row, .woocommerce-checkout .woocommerce-form-coupon-toggle ~ .woocommerce-form-coupon p.form-row {
  text-align: left;
}

.woocommerce-checkout form.woocommerce-form-coupon .form-row-first {
  display: inline-block;
  width: calc(100% - 170px);
  margin-right: 10px;
}
.woocommerce-checkout form.woocommerce-form-coupon .form-row-first input.input-text {
  color: #999999;
  font-size: 15px;
  height: 50px;
  line-height: 20px;
  padding: 15px;
}
.woocommerce-checkout form.woocommerce-form-coupon .form-row-last {
  display: inline-block;
  width: 160px;
}
.woocommerce-checkout form.woocommerce-form-coupon .form-row-last button.button {
  height: 50px;
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  padding: 15px;
  min-width: 160px;
  letter-spacing: 2px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.woocommerce-checkout .woocommerce-notices-wrapper, .woocommerce-cart .woocommerce-notices-wrapper {
  max-width: 680px;
  margin: 0 auto 30px auto;
}
.woocommerce-notices-wrapper .woocommerce-message a.button {
  height: 50px;
  line-height: 1.3;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  min-width: 80px;
  justify-content: center;
  letter-spacing: 1px;
  text-align: center;
  font-weight: 500;
  font-size: 11px;
}

/* WooCommerce - Shoping Cart */
.woocommerce-cart .woocommerce-cart-form {
  margin-bottom: 50px;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents {
  border-style: solid;
  border-width: 1px;
  border-color: #e6e6e6;
  margin-bottom: 0;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents tr:not(.woocommerce-cart-form__cart-item) > td {
  padding: 20px 15px;
  border-bottom: 1px solid #e6e6e6;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents tr:not(.woocommerce-cart-form__cart-item) > td.actions {
  border-bottom: none;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents tr.woocommerce-cart-form__cart-item {
  border-top: 1px solid #e6e6e6;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td {
  padding: 20px 15px 20px 0;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td dl.variation {
  font-size: 13px;
  font-weight: 400;
  color: #232529;
  display: flex;
  flex-wrap: wrap;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td dl.variation dt {
  color: #aaaaaa;
  font-weight: inherit;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td dl.variation dt::after {
  content: ":";
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td dl.variation dd + dt {
  margin-left: 6px;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td dl.variation dd + dt::before {
  content: "/";
  color: #999999;
  margin-right: 6px;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-remove a.remove {
  color: #aaaaaa !important;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-remove a.remove svg {
  fill: #aaaaaa;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-remove a.remove:hover {
  color: #232529;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-remove a.remove:hover svg {
  fill: #232529;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-price {
  font-size: 15px;
  font-weight: 500;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-quantity .quantity {
  min-width: 50px;
  padding: 0 15px;
  position: relative;
  display: inline-block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-quantity .quantity .quantity-group-buttons > a {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-quantity .quantity .quantity-group-buttons > a > svg {
  fill: #aaaaaa;
  width: 15px;
  height: 15px;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-quantity .quantity .quantity-group-buttons > a:hover > svg {
  fill: #232529;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-quantity .quantity .quantity-plus {
  right: 0;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-quantity .quantity .quantity-minus {
  left: 0;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-quantity .quantity .input-text {
  font-size: 15px;
  font-weight: 500;
  border: none;
  width: 60px;
  text-align: center;
  -moz-appearance: textfield;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-quantity .quantity .input-text::-webkit-inner-spin-button, .woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-quantity .quantity .input-text::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-subtotal {
  font-size: 15px;
  font-weight: 500;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.actions .coupon #coupon_code {
  min-width: 200px;
  padding-left: 10px;
  margin-right: 10px;
  font-size: 14px;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.actions .coupon #coupon_code :not(:focus) {
  color: #999999;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.actions > button.button[disabled] {
  color: #ffffff;
  background: #8a8a8a;
  text-transform: uppercase;
  font-size: 14px;
}
.woocommerce-cart .woocommerce-cart-form button.button {
  height: 50px;
  border: none;
  background: #232529;
  color: #FFF;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  line-height: 22px;
  padding: 14px 30px;
  min-width: 165px;
  font-weight: 500;
  letter-spacing: 2px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.woocommerce-cart .woocommerce-cart-form button.button:hover {
  background: #f33c3c;
}
.woocommerce-cart .cart-collaterals {
  margin-bottom: 50px;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table {
  margin: 0;
  border: none;
  background: #f8f8f8;
  padding: 15px 15px 0 15px;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table th, .woocommerce-cart .cart-collaterals .cart_totals .shop_table td {
  border: none;
  padding: 20px 0;
  font-size: 15px;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table tr.cart-subtotal td {
  font-weight: 500;
  text-align: right;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals td ul#shipping_method > li {
  margin-bottom: 15px;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals td ul#shipping_method input.shipping_method + label {
  color: #aaaaaa;
  font-weight: 400;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals td ul#shipping_method input.shipping_method[checked=checked] + label {
  color: #232529;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table tr.order-total th, .woocommerce-cart .cart-collaterals .cart_totals .shop_table tr.order-total td {
  border-top: 1px solid #e4e4e4;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table tr.order-total td {
  font-size: 24px;
  font-weight: 500;
}
.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-button {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  padding-bottom: 25px;
}
.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator button.button {
  height: 50px;
  border: none;
  background: #232529;
  color: #FFF;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  line-height: 22px;
  padding: 15px 30px;
  min-width: 150px;
}
.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator button.button:hover {
  background: #f33c3c;
}
.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout {
  padding: 0 15px 15px 15px;
  margin: 0;
  border: none;
  background: #f8f8f8;
}
.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout a.checkout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border: none;
  width: 100%;
  background: #232529;
  color: #FFF;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  padding: 0 15px;
  margin: 0;
  letter-spacing: 2px;
  font-weight: 500;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout a.checkout-button:hover {
  background-color: #f33c3c;
}
.woocommerce-cart input[type=email], .woocommerce-cart input[type=search], .woocommerce-cart input[type=number], .woocommerce-cart input[type=url], .woocommerce-cart input[type=tel], .woocommerce-cart input[type=text], .woocommerce-cart input[type=password] {
  height: 50px;
  background: #ffffff;
}
.woocommerce-cart.familab_theme .select2-container--default {
  max-width: 100%;
}
.woocommerce-cart.familab_theme .select2-container--default .select2-selection--single {
  height: 50px;
  line-height: 50px;
  background: #ffffff;
}
.woocommerce-cart.familab_theme .select2-container--default .select2-selection--single > .select2-selection__arrow {
  height: 50px;
  top: 0;
}

/* WooCommerce - Checkout */
.woocommerce-checkout form.woocommerce-checkout .form-row-first, .woocommerce-checkout .woocommerce-checkout .form-row-last {
  width: calc(50% - 15px);
}
.woocommerce-checkout #order_review_heading {
  display: none;
}
.woocommerce-checkout .woocommerce-form-login .lost_password {
  margin: 0;
}
.woocommerce-checkout .woocommerce-form-login .lost_password a {
  color: #232529;
}
.woocommerce-checkout .site-main form.checkout {
  display: inline-block;
  width: 100%;
}
.woocommerce-checkout .site-main form.checkout input[type=email], .woocommerce-checkout .site-main form.checkout input[type=search], .woocommerce-checkout .site-main form.checkout input[type=number], .woocommerce-checkout .site-main form.checkout input[type=url], .woocommerce-checkout .site-main form.checkout input[type=tel], .woocommerce-checkout .site-main form.checkout input[type=text], .woocommerce-checkout .site-main form.checkout input[type=password] {
  height: 50px;
  background: #ffffff;
}
.woocommerce-checkout .site-main form.checkout .select2-container--default {
  max-width: 100%;
}
.woocommerce-checkout .site-main form.checkout .select2-container--default .select2-selection--single {
  height: 50px;
  line-height: 50px;
  background: #ffffff;
}
.woocommerce-checkout .site-main form.checkout .select2-container--default .select2-selection--single > .select2-selection__arrow {
  height: 50px;
  top: 0;
}
.woocommerce-checkout .site-main form.checkout button.button {
  height: 50px;
  border: none;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  line-height: 22px;
  padding: 14px 30px;
  min-width: 150px;
}
.woocommerce-checkout .woocommerce-checkout-review-order {
  float: left;
  width: 100%;
}
.woocommerce-checkout #order_review {
  border: 1px solid #000000;
  padding: 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table {
  display: flex;
  flex-direction: column;
  border: none;
  margin-bottom: 0;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table thead {
  display: flex;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table thead th:not(.product-name) {
  display: none;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table thead th.product-name {
  font-size: 12px;
  padding: 0;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  padding-bottom: 20px;
  border: none;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table > * {
  flex: 0 0 100%;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tbody {
  margin-bottom: 30px;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td {
  border: none;
  padding: 0;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name {
  display: flex;
  align-items: flex-start;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product-thumbnail {
  width: 50px;
  margin-right: 15px;
  border: 1px solid #dddddd;
  flex: 0 0 50px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product_info .product_item_name_wrap {
  font-size: 15px;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product_info .product_item_name_wrap .produc_item_name {
  color: #232529;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product_info .product_item_name_wrap .product-quantity {
  color: #000000;
  line-height: 24px;
  height: 24px;
  display: inline-block;
  font-weight: 400;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product_info dl.variation {
  font-size: 13px;
  font-weight: 400;
  color: #232529;
  display: flex;
  flex-wrap: wrap;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product_info dl.variation dt {
  color: #aaaaaa;
  font-weight: inherit;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product_info dl.variation dt::after {
  content: ":";
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product_info dl.variation dd + dt {
  margin-left: 6px;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product_info dl.variation dd + dt::before {
  content: "/";
  content: #999999;
  margin-right: 6px;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-total .amount {
  font-size: 15px;
  color: #232529;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item + .cart_item {
  margin-top: 20px;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tfoot {
  background: #FFF;
  border: none;
  padding: 0;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tfoot tr {
  display: flex;
  width: 100%;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tfoot tr td, .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tfoot tr th {
  border: none;
  padding: 0;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tfoot tr th {
  flex: 0 0 120px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tfoot tr td {
  flex: 0 0 calc(100% - 120px);
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal {
  padding-bottom: 25px;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td {
  font-weight: 500;
  font-size: 15px;
  text-align: right;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals th, .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals td {
  border-top: 1px solid #e4e4e4;
  padding-top: 25px;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals td ul#shipping_method > li {
  margin-bottom: 15px;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals td ul#shipping_method input.shipping_method + label {
  color: #aaaaaa;
  font-weight: 400;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals td ul#shipping_method input.shipping_method[checked=checked] + label {
  color: #232529;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tfoot tr.order-total th, .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tfoot tr.order-total td {
  border-top: 1px solid #e4e4e4;
  padding-top: 28px;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tfoot tr.order-total td {
  font-size: 18px;
  font-weight: 500 !important;
}
.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tfoot ul#shipping_method {
  margin-bottom: 25px;
}
.woocommerce-checkout #order_review #payment {
  padding: 0;
}
.woocommerce-checkout #order_review #payment .wc_payment_methods {
  margin-top: 30px;
  border: 1px solid #e4e4e4;
  padding: 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.woocommerce-checkout #order_review #payment .place-order {
  padding: 25px 0 0 0;
  margin: 0;
}
.woocommerce-checkout #order_review #payment a {
  color: #f33c3c;
}
.woocommerce-checkout #order_review #payment a:hover {
  text-decoration: underline;
}
.woocommerce-checkout #order_review #payment button#place_order {
  margin-top: 8px;
  width: 100%;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 500;
}
.woocommerce-checkout section.woocommerce-customer-details {
  display: flex;
}
.woocommerce-checkout section.woocommerce-customer-details section.addresses {
  width: 100%;
  margin-right: 0;
}
.woocommerce-checkout section.woocommerce-customer-details section.addresses .woocommerce-column {
  width: 100%;
  flex: 100%;
  max-width: 100%;
  padding: 0;
}
.woocommerce-checkout section.woocommerce-customer-details section.addresses .woocommerce-column address {
  padding: 15px;
  border: 1px solid #e4e4e4 !important;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
  background-color: #ffffff;
}
#add_payment_method #payment ul.payment_methods li, .woocommerce-cart #payment ul.payment_methods li, .woocommerce-checkout #payment ul.payment_methods li {
  color: #232529;
}
#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
  margin: 0 0 10px 0;
  font-size: inherit;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  line-height: 1.5;
  background-color: #FFF;
  color: #999999;
  padding: 0;
}
#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before {
  display: none;
}

@media (max-width: 767px) {
  .woocommerce form .form-row, .woocommerce-page form .form-row {
    margin-bottom: 24px;
  }

  .woocommerce-checkout form.woocommerce-checkout .form-row-first, .woocommerce-checkout .woocommerce-checkout .form-row-last {
    width: 100%;
  }
}
#add_payment_method #payment ul.payment_methods .stripe-card-group, .woocommerce-checkout #payment ul.payment_methods .stripe-card-group,
.wc-stripe-elements-field, .wc-stripe-iban-element-field {
  width: 100%;
}

.woocommerce-checkout form .payment_method_stripe .form-row label {
  padding: 0;
  position: static;
  transform: translateY(0);
}

/* Checkout style 02  */
.checkout_layout_style_02 .woocommerce-notices-wrapper:empty {
  margin: 0;
}
.checkout_layout_style_02 .fmc_checkout_style_bg {
  display: none;
}
.checkout_layout_style_02 form.woocommerce-checkout {
  margin-top: 20px;
}

@media (min-width: 768px) {
  /* Checkout style Cide  */
  .fmc-checkout-step {
    flex-wrap: wrap;
  }
  .theme-cide .fmc-checkout-step {
    justify-content: center;
    overflow: unset;
  }
  .theme-cide .fmc-checkout-step .step span.label {
    font-size: 30px;
  }
  .theme-cide .fmc-checkout-step .step span.label:hover::after {
    background: #000000;
  }
  .theme-cide .fmc-checkout-step .step.active span.label::after {
    background: #000000;
  }

  /* Checkout - two column default  */
  .woocommerce .col2-set,
.woocommerce-page .col2-set {
    width: 65%;
    margin-right: 30px;
  }

  .cart-collaterals {
    display: flex;
    flex-direction: column-reverse;
  }
  .woocommerce-page .cart-collaterals {
    width: 100%;
  }
  .woocommerce-page.checkout-layout-default .cart-collaterals .cart_totals {
    width: 100%;
  }

  .woocommerce .cart-collaterals .cross-sells,
.woocommerce-page .cart-collaterals .cross-sells,
.woocommerce .cart-collaterals .cross-sells ~ .cart_totals,
.woocommerce-page .cart-collaterals .cross-sells ~ .cart_totals {
    width: 100%;
  }

  .woocommerce-page .cart-collaterals .cart_totals {
    width: 100%;
  }

  #order_review, .woocommerce-checkout-review-order {
    width: calc(40% - 30px);
  }

  #customer_details {
    width: 60%;
  }

  .woocommerce table.shop_table tbody th, .woocommerce table.shop_table tbody td, .woocommerce table.shop_table tfoot th, .woocommerce table.shop_table tfoot td {
    padding: 15px 20px;
  }

  .woocommerce-checkout #order_review {
    padding: 12px 15px 5px 15px;
  }
  .woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product-thumbnail {
    margin-right: 15px;
  }
  .woocommerce-checkout #customer_details .woocommerce-billing-fields > h3 {
    margin-bottom: 35px;
  }
  .woocommerce-checkout.woocommerce-page form .form-row {
    margin-bottom: 30px;
  }
  .woocommerce-checkout section.woocommerce-customer-details section.addresses .woocommerce-column {
    width: 49%;
    flex: 49%;
    max-width: 490%;
  }

  .woocommerce-cart .woocommerce-cart-form > h3 {
    display: none;
  }
  .woocommerce-cart .woocommerce-cart-form table.shop_table.woocommerce-cart-form__contents thead {
    display: table-header-group;
  }
  .woocommerce-cart .woocommerce-cart-form table.shop_table.woocommerce-cart-form__contents thead th {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: #232529;
    line-height: 30px;
    border-color: #e6e6e6;
    border-style: solid;
    border-width: 0 1px 1px 0;
  }
  .woocommerce-cart .woocommerce-cart-form table.shop_table.woocommerce-cart-form__contents thead th.product-subtotal, .woocommerce-cart .woocommerce-cart-form table.shop_table.woocommerce-cart-form__contents thead th.product-remove {
    border-right: none;
  }
  .woocommerce-cart .woocommerce-cart-form table.shop_table.woocommerce-cart-form__contents td.product-thumbnail {
    padding-left: 15px;
    width: 145px;
  }
  .woocommerce-cart .woocommerce-cart-form table.shop_table.woocommerce-cart-form__contents td.product-quantity .quantity {
    border: 2px solid #e6e6e6;
  }
  .woocommerce-cart .woocommerce-cart-form table.shop_table.woocommerce-cart-form__contents td.product-quantity .quantity .quantity-group-buttons > a > svg {
    width: 11px;
    height: 11px;
  }
  .woocommerce-cart .woocommerce-cart-form table.shop_table.woocommerce-cart-form__contents td.product-quantity .quantity .quantity-minus {
    left: 10px;
  }
  .woocommerce-cart .woocommerce-cart-form table.shop_table.woocommerce-cart-form__contents td.product-quantity .quantity .quantity-plus {
    right: 10px;
  }
  .woocommerce-cart .woocommerce-cart-form table.shop_table.woocommerce-cart-form__contents td.product-quantity .quantity .input-text {
    width: 110px !important;
    height: 38px;
  }
  .woocommerce-cart .cart-collaterals .cart_totals > h2 {
    background: #e9e9e9;
    margin: 0;
    line-height: 20px;
    padding: 15px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
  }
  .woocommerce-cart .cart-collaterals .cart_totals.calculated_shipping .shop_table th, .woocommerce-cart .cart-collaterals .cart_totals.calculated_shipping .shop_table td {
    padding: 10px 0;
  }
  .woocommerce-cart .cart-collaterals .cart_totals.calculated_shipping .shop_table .shipping-calculator-button {
    font-size: 16px;
    font-weight: 500;
    color: #232529;
  }
  .woocommerce-cart .cart-collaterals .cart_totals.calculated_shipping .shop_table tbody th {
    font-size: 16px;
    font-weight: 500;
    width: 45%;
  }
  .woocommerce-cart .cart-collaterals .cart_totals.calculated_shipping .shop_table tr.order-total td, .woocommerce-cart .cart-collaterals .cart_totals.calculated_shipping .shop_table tr.order-total th {
    padding-top: 30px;
  }
  .woocommerce-cart .cart-collaterals .cart_totals.calculated_shipping .shop_table tr.order-total strong {
    font-weight: 500;
  }
  .woocommerce-cart .cart-collaterals .cart_totals.calculated_shipping .shop_table .woocommerce-shipping-destination strong {
    font-weight: 400;
  }
}
@media (min-width: 992px) {
  /* Checkout style Cide  */
  .theme-cide .fmc-checkout-step .step {
    margin: 0 20px;
  }

  .checkout_layout_style_02 .site-header .header-wrapper > *:not(.header-layout) {
    display: none !important;
  }
  .checkout_layout_style_02 .site-header .header-main {
    height: 100px;
  }
  .checkout_layout_style_02 .header-layout {
    position: static !important;
    box-shadow: none !important;
    border: none !important;
  }
  .checkout_layout_style_02 .header-layout .header-main .header-container > *:not(.site-branding) {
    display: none !important;
  }
  .checkout_layout_style_02 #content {
    padding-bottom: 50px !important;
  }
  .checkout_layout_style_02 .fmc-checkout-step, .checkout_layout_style_02 .site-footer {
    display: none;
  }
  .checkout_layout_style_02 .fmc_checkout_style_bg {
    z-index: 100;
    position: fixed;
    top: 0;
    height: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    overflow: hidden;
  }
  .checkout_layout_style_02 .fmc_checkout_style_bg > .container .col2-set {
    margin: 0;
    width: 65%;
  }
  .checkout_layout_style_02 .fmc_checkout_style_bg > .container .col-right {
    position: relative;
    float: right;
    height: 100%;
    width: 35%;
    flex: 0 0 35%;
    max-width: 35%;
  }
  .checkout_layout_style_02 .fmc_checkout_style_bg > .container .col-right::before {
    content: "";
    background: #f4f4f4;
    display: inline-block;
    width: 800px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
  .checkout_layout_style_02 form.woocommerce-checkout {
    z-index: 101;
    position: relative;
  }
  .checkout_layout_style_02 form.woocommerce-checkout > *:not(#order_review) {
    z-index: 101;
  }
  .checkout_layout_style_02 form.woocommerce-checkout #customer_details {
    margin: 0;
    padding-right: 30px;
    width: 65%;
  }
  .checkout_layout_style_02 form.woocommerce-checkout #order_review {
    width: 35%;
    max-width: 360px;
    transform: translateY(-100px);
    float: right;
    padding: 0 0 0 15px;
    margin: 0;
    border: none;
  }
  .checkout_layout_style_02 form.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tfoot {
    background: none;
    border-top: 1px solid #dedede;
    padding-top: 30px;
  }
  .checkout_layout_style_02 form.woocommerce-checkout #order_review #payment.woocommerce-checkout-payment {
    border: none;
    background: none;
  }
  .checkout_layout_style_02 form.woocommerce-checkout #order_review #payment.woocommerce-checkout-payment .wc_payment_methods {
    background: #ffffff;
    border: none;
  }
  .checkout_layout_style_02 .woocommerce-form-coupon-toggle,
.checkout_layout_style_02 .woocommerce-form-login-toggle,
.checkout_layout_style_02 .woocommerce-form-login,
.checkout_layout_style_02 .woocommerce-form-coupon {
    z-index: 101;
    position: relative;
    margin-left: 0 !important;
    max-width: calc(65% - 30px);
    width: calc(65% - 30px);
  }

  #order_review, .woocommerce-checkout-review-order {
    width: calc(35% - 30px);
  }

  #customer_details {
    width: 65%;
  }

  .woocommerce-cart-form {
    width: 65%;
    margin-right: 30px;
  }

  .woocommerce-page .cart-collaterals {
    width: calc(35% - 30px);
    float: right;
  }
}
@media (min-width: 1200px) {
  /* Checkout style Cide  */
  .theme-cide .fmc-checkout-step .step {
    margin: 0 30px;
  }

  .woocommerce-checkout #order_review {
    padding: 25px 40px 40px 40px;
  }
  .woocommerce-cart .cart-collaterals {
    width: calc(35% - 90px);
  }
  .woocommerce-cart .cart-collaterals .cart_totals.calculated_shipping {
    padding-bottom: 35px;
  }
  .woocommerce-cart .cart-collaterals .cart_totals.calculated_shipping > h2 {
    padding-left: 30px;
  }
  .woocommerce-cart .cart-collaterals .cart_totals.calculated_shipping .shop_table {
    padding-left: 30px;
    padding-right: 30px;
  }

  .checkout_layout_style_02 #content #primary {
    margin-top: 30px;
  }
  .checkout_layout_style_02 .woocommerce-form-coupon-toggle,
.checkout_layout_style_02 .woocommerce-form-login-toggle,
.checkout_layout_style_02 .woocommerce-form-login,
.checkout_layout_style_02 .woocommerce-form-coupon {
    margin-left: calc((65% - 710px)/2) !important;
    max-width: calc(65% - 30px);
    width: 680px;
  }
}
@media (min-width: 1440px) {
  /* Checkout style Cide  */
  .theme-cide .fmc-checkout-step {
    margin-top: 75px;
    margin-bottom: 75px;
  }

  .woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents .woocommerce-cart-form__cart-item td.product-remove {
    width: 25px;
  }
  .woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents .woocommerce-cart-form__cart-item td.product-thumbnail {
    width: 145px;
  }
  .woocommerce-cart .cart-collaterals {
    padding-left: 30px;
  }
  .woocommerce-cart .cart-collaterals .cart_totals .shop_table {
    padding: 30px 30px 0 30px;
  }
  .woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout {
    padding: 0 30px 30px 30px;
  }

  .woocommerce-checkout form.woocommerce-form-coupon .form-row-last {
    width: 220px;
  }
  .woocommerce-checkout form.woocommerce-form-coupon .form-row-last button.button {
    width: 100%;
    line-height: 1.2;
    padding: 15px;
  }
  .woocommerce-checkout form.woocommerce-form-coupon .form-row-first {
    width: calc(100% - 230px);
  }
}
@media (max-width: 991px) {
  .checkout_layout_style_02 .fmc_checkout_style_bg > .container {
    max-width: 100%;
  }

  /* woocommerce-checkout */
  #order_review table.woocommerce-checkout-review-order-table tfoot {
    padding: 15px 15px 0 15px;
  }
  #order_review #payment {
    padding: 0 15px 15px 15px;
  }

  .woocommerce-cart .woocommerce-cart-form table.shop_table.woocommerce-cart-form__contents thead {
    display: none;
  }
}
@media (max-width: 767px) {
  .fmc-checkout-step {
    margin: -13px auto 30px;
  }

  .woocommerce-cart .woocommerce table.cart tr td.product-quantity {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  .woocommerce-cart.woocommerce-page table.cart tr td.actions .coupon #coupon_code, .woocommerce-cart.woocommerce-page table.cart tr td.actions .coupon button.button {
    width: 100% !important;
    margin-bottom: 0.5rem;
  }

  /* page woocommerce-cart */
  .woocommerce-cart .woocommerce-cart-form > h3 {
    display: none;
  }
  .woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents tr:not(.woocommerce-cart-form__cart-item) > td {
    padding: 30px 15px;
  }
  .woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents tr.woocommerce-cart-form__cart-item {
    border-bottom: 1px solid #e6e6e6;
    border-top: none;
  }
  .woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td {
    padding: 8px 15px;
    border: none;
  }
  .woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-quantity .quantity .input-text {
    background: none;
  }
  .woocommerce-cart .cart-collaterals .cart_totals .shop_table tr td {
    padding: 10px 0;
    background: none;
  }
  .woocommerce-cart .cart-collaterals .cart_totals .shop_table tr td.woocommerce-shipping-destination-wrap p, .woocommerce-cart .cart-collaterals .cart_totals .shop_table tr td.woocommerce-shipping-calculator-wrap p {
    text-align: left;
  }
  .woocommerce-cart .cart-collaterals .cart_totals .shop_table tr td.woocommerce-shipping-destination-wrap::before, .woocommerce-cart .cart-collaterals .cart_totals .shop_table tr td.woocommerce-shipping-calculator-wrap::before {
    display: none;
  }

  /* page woocommerce-checkout */
  #customer_details {
    margin-bottom: 30px;
  }
}
/* WooCommerce - My Account */
.woocommerce-account .woocommerce h2 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  height: 40px;
  line-height: 40px;
  padding: 0 30px;
  z-index: 1;
  width: auto;
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 1px;
  letter-spacing: 2px;
}
.woocommerce-account .woocommerce h2::before, .woocommerce-account .woocommerce h2::after {
  content: "";
  display: block;
  position: absolute;
}
.woocommerce-account .woocommerce h2::before {
  width: 100px;
  height: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  z-index: -1;
}
.woocommerce-account .woocommerce h2::after {
  width: 200px;
  height: 1px;
  background: #232529;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  z-index: -1;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  padding: 0 15px 0 0;
  width: 25%;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style-type: none;
  padding-left: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation li > a {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5;
  color: #999999;
  margin: 0 0 14px;
  padding: 0;
  border-bottom: 1px solid transparent;
}
.woocommerce-account .woocommerce-MyAccount-navigation li:hover > a {
  color: #232529;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active > a {
  border-color: #e4e4e4;
  color: #232529;
}
.woocommerce-account .woocommerce-MyAccount-content legend {
  padding-top: 15px;
  color: #232529;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row label {
  top: 0;
}
.woocommerce-account .woocommerce-customer-details .col2-set.addresses {
  width: 100%;
}
.woocommerce-account .woocommerce-customer-details .col2-set.addresses > .woocommerce-column {
  flex: 0 0 48%;
  max-width: 48%;
}

.woocommerce-lost-password .woocommerce {
  max-width: 500px;
  margin: 50px auto;
}
.woocommerce-lost-password .woocommerce p {
  font-size: 15px;
}
.woocommerce-lost-password .woocommerce form .form-row {
  width: 100%;
}
.woocommerce-lost-password .woocommerce button.button {
  height: 50px;
  border: none;
  background: #232529;
  color: #FFF;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  line-height: 22px;
  padding: 15px 30px;
  width: 100%;
  margin: 0;
}
.woocommerce-lost-password .woocommerce button.button:hover {
  background: #f33c3c;
}
.woocommerce-lost-password .woocommerce .input-text {
  height: 50px;
  background: #ffffff;
  margin-bottom: 10px;
}

.woocommerce-MyAccount-content .password-input {
  width: 100%;
}

/* WooCommerce - Login */
.woocommerce-form-login #username {
  margin-bottom: 10px;
}
.woocommerce-account .woocommerce-form-login #username, #fm-account-modal .woocommerce-form-login #username {
  margin-bottom: 0;
}
.woocommerce-form-login .woocommerce-LostPassword {
  transform: translateY(-10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
}
.woocommerce-form-login .woocommerce-LostPassword .woocommerce-form-login__rememberme {
  margin: 0;
}
.woocommerce-form-login .woocommerce-LostPassword .woocommerce-form-login__rememberme #rememberme {
  margin-top: -3px;
}
.woocommerce-account .woocommerce-form-login .woocommerce-LostPassword {
  transform: translateY(0);
}
.woocommerce-form-login .acount-form-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
}
.woocommerce-form-login .acount-form-switch a {
  margin-left: 5px;
  color: #232529;
}
.woocommerce-form-login .acount-form-switch a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #232529;
  opacity: 0;
  -webkit-transition: opacity 0.3s linear 0s;
  -moz-transition: opacity 0.3s linear 0s;
  -ms-transition: opacity 0.3s linear 0s;
  -o-transition: opacity 0.3s linear 0s;
  transition: opacity 0.3s linear 0s;
}
.woocommerce-form-login .acount-form-switch a:hover::after {
  opacity: 1;
}
.woocommerce-account .woocommerce-form-login.woocommerce-form {
  padding: 50px 25px 30px 25px;
  border: 1px solid #e4e4e4;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  float: none;
  margin: 0 auto;
  max-width: 450px;
}
.woocommerce .woocommerce-form-login .password-input {
  width: 100%;
}
.woocommerce-page .woocommerce-form-login .input-text, #account-canvas .woocommerce-form-login .input-text {
  height: 50px;
  background: #ffffff;
}
.woocommerce-page .woocommerce-form-login .password-input, #account-canvas .woocommerce-form-login .password-input {
  width: 100%;
}
.woocommerce-page .woocommerce-form-login .password-input .show-password-input, #account-canvas .woocommerce-form-login .password-input .show-password-input {
  top: 15px;
}
.woocommerce-page .woocommerce-form-login button.woocommerce-form-login__submit, #account-canvas .woocommerce-form-login button.woocommerce-form-login__submit {
  height: 50px;
  border: none;
  background: #232529;
  color: #FFF;
  text-align: center;
  line-height: 22px;
  padding: 15px 30px;
  width: 100%;
  margin: 0;
  letter-spacing: 2px;
}
.woocommerce-page .woocommerce-form-login button.woocommerce-form-login__submit:hover, #account-canvas .woocommerce-form-login button.woocommerce-form-login__submit:hover {
  background: #f33c3c;
}
.woocommerce-checkout .woocommerce-form-login .woocommerce-form-login__rememberme {
  margin-bottom: 20px;
  margin-top: -10px;
  padding: 0;
}
.woocommerce-checkout .woocommerce-form-login .form-row-first, .woocommerce-checkout .woocommerce-form-login .form-row-last {
  margin-bottom: 10px;
  margin-top: 15px;
}
.woocommerce-checkout .woocommerce-form-login #username {
  margin-bottom: 0;
}

.woocommerce-form-register > p {
  margin-bottom: 5px;
}
#account-canvas .woocommerce-form-register .form-row .required {
  display: none;
}
.woocommerce-form-register #reg_username, .woocommerce-form-register #reg_email, .woocommerce-form-register #reg_password {
  margin-bottom: 10px;
}
.woocommerce-account .woocommerce-form-register #reg_username, #fm-account-modal .woocommerce-form-register #reg_username, .woocommerce-account .woocommerce-form-register #reg_email, #fm-account-modal .woocommerce-form-register #reg_email, .woocommerce-account .woocommerce-form-register #reg_password, #fm-account-modal .woocommerce-form-register #reg_password {
  margin-bottom: 0;
}
.woocommerce-form-register .woocommerce-LostPassword {
  transform: translateY(-10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
}
.woocommerce-form-register .woocommerce-LostPassword .woocommerce-form-login__rememberme {
  margin: 0;
}
.woocommerce-form-register .acount-form-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
}
.woocommerce-form-register .acount-form-switch a {
  margin-left: 5px;
  color: #232529;
}
.woocommerce-form-register .acount-form-switch a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #232529;
  opacity: 0;
}
.woocommerce-form-register .acount-form-switch a:hover::after {
  opacity: 1;
}
.woocommerce-form-register .woocommerce-privacy-policy-text {
  color: #999999;
  margin-bottom: 25px;
}
.woocommerce-form-register .woocommerce-privacy-policy-text a {
  color: #f33c3c;
}
.woocommerce-account .woocommerce-form-register.woocommerce-form {
  padding: 50px 25px 30px 25px;
  border: 1px solid #e4e4e4;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  float: none;
  margin: 0 auto;
  max-width: 450px;
}
.woocommerce .woocommerce-form-register .password-input {
  width: 100%;
}
.woocommerce-page .woocommerce-form-register .input-text {
  height: 50px;
  background: #ffffff;
}
.woocommerce-page .woocommerce-form-register .password-input {
  width: 100%;
}
.woocommerce-page .woocommerce-form-register .password-input .show-password-input {
  top: 15px;
}
.woocommerce-page .woocommerce-form-register button.woocommerce-form-register__submit {
  height: 50px;
  border: none;
  background: #232529;
  color: #FFF;
  text-align: center;
  line-height: 22px;
  padding: 15px 30px;
  width: 100%;
  margin: 0;
}
.woocommerce-page .woocommerce-form-register button.woocommerce-form-register__submit:hover {
  background: #f33c3c;
}

@media (min-width: 1200px) {
  .woocommerce-lost-password .woocommerce {
    margin: 100px auto;
  }
}
/* # WooCommerce - Products List - Columns Process */
.woocommerce ul.products:before, .woocommerce ul.products:after {
  content: none;
}
.woocommerce ul.products li.product.cide-product-item .product-item-wrap {
  display: block;
  position: relative;
}
.woocommerce ul.products li.product.cide-product-item .product-item-wrap .product-thumbnail {
  position: relative;
  overflow: hidden;
}
.woocommerce ul.products li.product.cide-product-item .product-item-wrap .product-thumbnail .product-thumbnail-zoom {
  display: block;
}
.woocommerce ul.products li.product.cide-product-item .product-item-wrap .product-thumbnail img {
  margin-bottom: 0;
  background: #f6f6f6;
}
.woocommerce ul.products li.product.cide-product-item .product-item-wrap .product-thumbnails--hover img {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.woocommerce ul.products li.product.cide-product-item .product-item-wrap .product-thumbnails--hover .hover-image {
  position: absolute;
  top: 0;
  opacity: 0;
}
.woocommerce ul.products li.product.cide-product-item .product-item-wrap:hover .hover-image {
  opacity: 1;
}
.woocommerce div:not(.swiper-container) > ul.products li.product.cide-product-item {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (min-width: 1025px) {
  .woocommerce ul.products.columns-1 li.product {
    width: 100%;
  }
  .woocommerce ul.products.columns-1.product-item-border li.product {
    padding-left: 0;
    padding-right: 0;
  }
  .woocommerce ul.products.columns-2 li.product {
    width: 50%;
  }
  .woocommerce ul.products.columns-2.product-item-border li.product {
    width: calc(50% - 1px);
    padding-left: 0;
    padding-right: 0;
  }
  .woocommerce ul.products.columns-3 li.product {
    width: 33.3333333333%;
  }
  .woocommerce ul.products.columns-3.product-item-border li.product {
    width: calc(33.3333333333% - 1px);
    padding-left: 0;
    padding-right: 0;
  }
  .woocommerce ul.products.columns-4 li.product {
    width: 25%;
  }
  .woocommerce ul.products.columns-4.product-item-border li.product {
    width: calc(25% - 1px);
    padding-left: 0;
    padding-right: 0;
  }
  .woocommerce ul.products.columns-5 li.product {
    width: 20%;
  }
  .woocommerce ul.products.columns-5.product-item-border li.product {
    width: calc(20% - 1px);
    padding-left: 0;
    padding-right: 0;
  }
  .woocommerce ul.products.columns-6 li.product {
    width: 16.6666666667%;
  }
  .woocommerce ul.products.columns-6.product-item-border li.product {
    width: calc(16.6666666667% - 1px);
    padding-left: 0;
    padding-right: 0;
  }
  .woocommerce div:not(.swiper-container) > ul.products {
    margin-left: -10px;
    margin-right: -10px;
  }
  .woocommerce div:not(.swiper-container) > ul.products li.product {
    padding-left: 10px;
    padding-right: 10px;
  }
  .woocommerce:not(.swiper-container) > ul.products {
    margin-left: -10px;
    margin-right: -10px;
  }
  .woocommerce:not(.swiper-container) > ul.products li.product {
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 0;
  }

  .shop-page-layout-full-width.woocommerce ul.products {
    margin-left: -10px;
    margin-right: -10px;
  }
  .shop-page-layout-full-width.woocommerce ul.products li.product {
    padding-left: 10px;
    padding-right: 10px;
  }
  .shop-page-layout-full-width.woocommerce ul.products.columns-2 li.product {
    width: 50%;
  }
  .shop-page-layout-full-width.woocommerce ul.products.columns-2.product-item-border li.product {
    width: calc(50% - 1px);
    padding-left: 0;
    padding-right: 0;
  }
  .shop-page-layout-full-width.woocommerce ul.products.columns-3 li.product {
    width: 33.3333333333%;
  }
  .shop-page-layout-full-width.woocommerce ul.products.columns-3.product-item-border li.product {
    width: calc(33.3333333333% - 1px);
    padding-left: 0;
    padding-right: 0;
  }
  .shop-page-layout-full-width.woocommerce ul.products.columns-4 li.product {
    width: 25%;
  }
  .shop-page-layout-full-width.woocommerce ul.products.columns-4.product-item-border li.product {
    width: calc(25% - 1px);
    padding-left: 0;
    padding-right: 0;
  }
  .shop-page-layout-full-width.woocommerce ul.products.columns-5 li.product {
    width: 20%;
  }
  .shop-page-layout-full-width.woocommerce ul.products.columns-5.product-item-border li.product {
    width: calc(20% - 1px);
    padding-left: 0;
    padding-right: 0;
  }
  .shop-page-layout-full-width.woocommerce ul.products.columns-6 li.product {
    width: 16.6666666667%;
  }
  .shop-page-layout-full-width.woocommerce ul.products.columns-6.product-item-border li.product {
    width: calc(16.6666666667% - 1px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .woocommerce ul.products.medium-columns-1 li.product {
    width: 100%;
  }
  .woocommerce ul.products.medium-columns-1.product-item-border li.product {
    padding-left: 0;
    padding-right: 0;
  }
  .woocommerce ul.products.medium-columns-2 li.product {
    width: 50%;
  }
  .woocommerce ul.products.medium-columns-2.product-item-border li.product {
    width: calc(50% - 1px);
    padding-left: 0;
    padding-right: 0;
  }
  .woocommerce ul.products.medium-columns-3 li.product {
    width: 33.3333333333%;
  }
  .woocommerce ul.products.medium-columns-3.product-item-border li.product {
    width: calc(33.3333333333% - 1px);
    padding-left: 0;
    padding-right: 0;
  }
  .woocommerce ul.products.medium-columns-4 li.product {
    width: 25%;
  }
  .woocommerce ul.products.medium-columns-4.product-item-border li.product {
    width: calc(25% - 1px);
    padding-left: 0;
    padding-right: 0;
  }
  .woocommerce div:not(.swiper-container) > ul.products, .woocommerce:not(.swiper-container) > ul.products {
    margin-left: -10px;
    margin-right: -10px;
  }
  .woocommerce div:not(.swiper-container) > ul.products li.product, .woocommerce:not(.swiper-container) > ul.products li.product {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .woocommerce ul.products.small-columns-1 li.product {
    width: 100%;
  }
  .woocommerce ul.products.small-columns-2 li.product {
    width: 50%;
  }
  .woocommerce div:not(.swiper-container) > ul.products, .woocommerce:not(.swiper-container) > ul.products {
    margin-left: -10px;
    margin-right: -10px;
  }
  .woocommerce div:not(.swiper-container) > ul.products li.product, .woocommerce:not(.swiper-container) > ul.products li.product {
    padding-left: 7.5px;
    padding-right: 7.5px;
    margin-bottom: 15px;
  }
}
.no-results.not-found {
  text-align: center;
}
.no-results.not-found .fm-search-form {
  display: inline-flex;
}
.no-results.not-found .fm-search-form button[type=submit] {
  line-height: initial;
}

.error404 #content {
  padding-top: 90px;
}
.error404 ul.products {
  margin-top: 20px;
}

.woocommerce-wishlist table.wishlist_table td.product-remove a.remove_from_wishlist:hover {
  background: none !important;
  color: #f33c3c !important;
}
.woocommerce-wishlist table.wishlist_table td.product-name a.button.yith-wcqv-button {
  color: #ffffff;
  margin-left: 10px;
}
.woocommerce-wishlist table.wishlist_table td.product-name a.button.yith-wcqv-button svg.fm-icon {
  margin-right: 6px;
}

.tinv-wishlist .tinv-header > h2 {
  text-transform: capitalize;
}
.tinv-wishlist table.tinvwl-table-manage-list tr {
  border-top: 1px solid #e4e4e4;
}
.tinv-wishlist table.tinvwl-table-manage-list th {
  padding: 20px 15px;
  color: #232529;
  font-size: 15px;
  font-weight: 700;
}
.tinv-wishlist table.tinvwl-table-manage-list th.product-date {
  display: none;
}
.tinv-wishlist table.tinvwl-table-manage-list td {
  font-weight: 500;
  font-size: 14px;
  padding: 20px 15px;
}
.tinv-wishlist table.tinvwl-table-manage-list td.product-name {
  font-size: 15px;
  font-weight: 500;
}
.tinv-wishlist table.tinvwl-table-manage-list td.product-stock {
  font-size: 11px;
  font-weight: bold;
}
.tinv-wishlist table.tinvwl-table-manage-list td.product-stock span:not(.tinvwl-txt) {
  display: none;
}
.tinv-wishlist table.tinvwl-table-manage-list td.product-stock .tinvwl-txt {
  line-height: 9px;
  text-transform: uppercase;
  border: 2px solid #232529;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;
  padding: 6px 15px;
  color: #232529;
}
.tinv-wishlist table.tinvwl-table-manage-list td.product-action {
  min-width: 250px;
}
.tinv-wishlist table.tinvwl-table-manage-list td.product-action button.button {
  padding: 8px 20px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 2px;
  height: 50px;
  text-transform: uppercase;
  font-weight: 500;
  color: #ffffff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.tinv-wishlist table.tinvwl-table-manage-list td.product-action button.button:hover {
  background: #f33c3c;
}
.tinv-wishlist table.tinvwl-table-manage-list td.product-date {
  display: none;
}
.tinv-wishlist table.tinvwl-table-manage-list td button.button {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 8px 20px;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 24px;
  height: 50px;
  text-transform: uppercase;
  font-weight: 500;
  color: #ffffff;
  background: #232529;
}
.tinv-wishlist table.tinvwl-table-manage-list td button.button:hover {
  background: #f33c3c;
}
.tinv-wishlist table.tinvwl-table-manage-list td .tinvwl-input-group-btn {
  padding-bottom: 0;
}
.tinv-wishlist table.tinvwl-table-manage-list td .social-buttons {
  color: #232529;
}
.tinv-wishlist table.tinvwl-table-manage-list tfoot > tr {
  border-bottom: 1px solid #e4e4e4;
}

.tinv-modal.tinv-modal-open .icon_big_heart_check {
  width: 30px;
  height: 30px;
  font-size: 0;
  line-height: 0;
}
.tinv-modal.tinv-modal-open .icon_big_heart_check:before {
  position: static;
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(//www.mspvn.com/wp-content/themes/cide/assets/images/check.svg);
}
.tinv-modal.tinv-modal-open .icon_big_times {
  width: 25px;
  height: 25px;
  font-size: 0;
  line-height: 0;
}
.tinv-modal.tinv-modal-open .icon_big_times:before {
  position: static;
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url(//www.mspvn.com/wp-content/themes/cide/assets/images/close.svg);
}
.tinv-modal.tinv-modal-open button.tinvwl_button_close, .tinv-modal.tinv-modal-open button.tinvwl_button_view {
  background: #232529;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  padding: 14px 20px;
  -webkit-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -moz-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -ms-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -o-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
}
.tinv-modal.tinv-modal-open button.tinvwl_button_close i, .tinv-modal.tinv-modal-open button.tinvwl_button_view i {
  line-height: 19px;
  margin-top: -6px;
  display: none;
}
.tinv-modal.tinv-modal-open button.tinvwl_button_close:hover, .tinv-modal.tinv-modal-open button.tinvwl_button_view:hover {
  background: #f33c3c;
}

@media (min-width: 768px) {
  .familab_theme .elementor-element.contact_icon_border .elementor-icon-box-wrapper .elementor-icon-box-icon {
    margin-right: 25px !important;
  }
}
@media (max-width: 640px) {
  .tinv-wishlist .tinv-header > h2 {
    text-align: center;
    font-size: 22px;
  }
}
/* # Blog Style */
blockquote {
  margin: 0 0 1rem 0;
  border-style: solid;
  font-size: 20px;
  line-height: 28px;
  color: #606060;
  background-position: 0 20px;
  background-size: 30px 20px;
  background-repeat: no-repeat;
  border-width: 0px 0 0px 5px !important;
  border-color: #606060;
  padding: 0.5rem 1.5rem;
}
blockquote cite, blockquote cite strong, blockquote h2, blockquote h3, blockquote h4, blockquote h5, blockquote h6 {
  font-size: 11px;
  text-transform: uppercase;
  color: #232529;
  font-weight: 600;
  letter-spacing: 2px;
}
blockquote.wp-block-quote {
  border-color: #606060;
}
blockquote.wp-block-quote.has-text-align-right {
  border-color: #606060;
  border-right: 5px solid !important;
}

body .cide-sidebar-content aside.widget ul:not(.woof_list) {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
body .cide-sidebar-content aside.widget ul:not(.woof_list) li {
  padding: 8px 0;
}
body .cide-sidebar-content aside.widget ul:not(.woof_list) li a {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  margin-left: 0;
  margin-right: auto;
}
body .cide-sidebar-content aside.widget ul:not(.woof_list) li ul {
  padding-left: 12px;
}
body .cide-sidebar-content aside.widget ul:not(.woof_list) li ul li:first-child {
  margin-top: 8px;
}
body .cide-sidebar-content aside.widget ul:not(.woof_list) li:last-child {
  padding-bottom: 0;
}
body .cide-sidebar-content aside.widget.widget_calendar table.wp-calendar-table {
  width: 100%;
}
body .cide-sidebar-content aside.widget.widget_calendar table.wp-calendar-table thead, body .cide-sidebar-content aside.widget.widget_calendar table.wp-calendar-table tbody {
  border-left: 1px solid #e4e4e4;
}
body .cide-sidebar-content aside.widget.widget_calendar table.wp-calendar-table thead tr, body .cide-sidebar-content aside.widget.widget_calendar table.wp-calendar-table tbody tr {
  border-bottom: 1px solid #e4e4e4;
}
body .cide-sidebar-content aside.widget.widget_calendar table.wp-calendar-table thead th, body .cide-sidebar-content aside.widget.widget_calendar table.wp-calendar-table thead td, body .cide-sidebar-content aside.widget.widget_calendar table.wp-calendar-table tbody th, body .cide-sidebar-content aside.widget.widget_calendar table.wp-calendar-table tbody td {
  border-right: 1px solid #e4e4e4;
  border-top: 1px solid #e4e4e4;
  text-align: center;
  vertical-align: middle;
  padding: 8px;
}
body .cide-sidebar-content aside.widget.widget_text strong {
  font-weight: 500;
  color: #232529;
}
body .cide-sidebar-content aside.widget.widget_text img {
  max-width: 100%;
  height: auto;
}
body .cide-sidebar-content aside.widget.widget_rss .widget-title {
  margin-bottom: 16px;
}
body .cide-sidebar-content aside.widget.widget_rss .rss-date {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  color: #f33c3c;
  margin-bottom: 5px;
  letter-spacing: 2px;
}
body .cide-sidebar-content aside.widget.widget_rss cite {
  color: #555;
}
body .cide-sidebar-content aside.widget.widget_recent_comments {
  margin-bottom: 17px;
}
body .cide-sidebar-content aside.widget.widget_recent_comments #recentcomments li.recentcomments {
  padding: 6px 0;
  line-height: 1.3;
}
body .cide-sidebar-content aside.widget.widget_recent_comments #recentcomments li.recentcomments .comment-author-link {
  font-style: italic;
}
body .cide-sidebar-content aside.widget.widget_recent_comments #recentcomments li.recentcomments .comment-author-link a {
  color: #999999;
}
body .cide-sidebar-content aside.widget.widget_recent_comments #recentcomments li.recentcomments a {
  display: inline;
}
body .cide-sidebar-content aside.widget.widget_pages ul li {
  padding: 7px 0;
}
body .cide-sidebar-content aside.widget.widget_pages ul li a:before {
  margin-right: 8px;
  content: "";
  display: block;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #f33c3c;
}
body .cide-sidebar-content aside.widget.widget_pages ul li a:hover {
  color: #f33c3c;
}
body .cide-sidebar-content aside.widget.widget_pages ul li a:hover:before {
  border--left-color: #f33c3c;
}
body .cide-sidebar-content aside.widget.widget_pages ul li ul li:first-child {
  margin-top: 7px;
}
body .wp-caption-text {
  font-size: 13px;
  font-style: italic;
  padding-top: 10px;
}
body .site-header .header-layout.header-layout1 .header-main .header-container .site-branding {
  display: flex;
  min-height: 80px;
  align-items: center;
}
body .site-header .header-layout.header-layout1 .header-main .header-container .site-navigation {
  /*height: inherit;*/
  align-items: center;
  display: flex;
}
body .site-main article.post.sticky .entry-title {
  margin-bottom: 1rem;
}
body .site-main article.post.sticky .entry-title > a {
  padding-left: 15px;
  border-left: 3px solid #f33c3c;
  height: max-content;
}
body .site-footer .footer-section.footer_main {
  border-top: 1px solid #e4e4e4;
}
body .site-footer .footer-section.footer_main .footer-items {
  flex: 1;
}
body .site-footer .footer-section.footer_main .footer-items .footer-copyright {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 30px 15px;
}
body .post-password-form input[type=submit] {
  background: #232529;
  color: #FFF;
  height: 49px;
  padding: 10px 20px;
  line-height: 22px;
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  min-width: 100px;
  letter-spacing: 2px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
body .post-password-form input[type=submit]:hover {
  background: #f33c3c;
}
body .entry-content > table {
  margin-bottom: 1rem;
}
body.familab_theme .wp-block-button {
  margin-bottom: 20px;
}
body.familab_theme .wp-block-button.is-style-squared .wp-block-button__link {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
body.familab_theme .wp-block-button__link {
  color: #ffffff;
  background-color: #32373c;
}
body.familab_theme .wp-block-button__link:hover {
  color: #ffffff;
}
body.familab_theme .is-style-outline .wp-block-button__link, body.familab_theme .wp-block-button__link.is-style-outline {
  color: #32373c;
  background-color: transparent;
}
body.familab_theme .is-style-outline .wp-block-button__link:hover, body.familab_theme .wp-block-button__link.is-style-outline:hover {
  color: #32373c;
}
body.familab_theme section.wp-block-cover-image h2 a, body.familab_theme section.wp-block-cover-image h2 a:hover, body.familab_theme section.wp-block-cover-image h2 a:focus, body.familab_theme section.wp-block-cover-image h2 a:active, body.familab_theme .wp-block-cover-image-text a, body.familab_theme .wp-block-cover-image-text a:hover, body.familab_theme .wp-block-cover-image-text a:focus, body.familab_theme .wp-block-cover-image-text a:active, body.familab_theme .wp-block-cover-text a, body.familab_theme .wp-block-cover-text a:hover, body.familab_theme .wp-block-cover-text a:focus, body.familab_theme .wp-block-cover-text a:active {
  color: #fff;
}
body.familab_theme .entry-content > *.alignfull, body.familab_theme .entry-summary > *.alignfull, body.familab_theme .entry-summary > .wp-block-group > .wp-block-group__inner-container > *.alignfull, body.familab_theme .entry-content > .wp-block-group > .wp-block-group__inner-container > *.alignfull {
  position: relative;
  left: -1rem;
  width: calc(100% + (2*1rem));
  max-width: calc(100% + (2*1rem));
  clear: both;
}
body.familab_theme .sidebar-right .entry-content > *.alignfull, body.familab_theme .sidebar-right .entry-summary > *.alignfull, body.familab_theme .sidebar-right .entry-summary > .wp-block-group > .wp-block-group__inner-container > *.alignfull, body.familab_theme .sidebar-right .entry-content > .wp-block-group > .wp-block-group__inner-container > *.alignfull, body.familab_theme .sidebar-right .entry-content > *.alignfull, body.familab_theme .sidebar-right .entry-summary > *.alignfull, body.familab_theme .sidebar-right .entry-summary > .wp-block-group > .wp-block-group__inner-container > *.alignfull, body.familab_theme .sidebar-right .entry-content > .wp-block-group > .wp-block-group__inner-container > *.alignfull {
  max-width: 100%;
  left: 0;
}
body .wp-block-cover .wp-block-cover-text {
  color: #ffffff;
}
body table caption {
  caption-side: top;
  background: #f8f8f8;
  padding: 10px 15px;
  text-transform: capitalize;
  font-weight: 500;
  color: #232529;
  border-style: solid;
  border-width: 1px 1px 0 1px;
  border-color: #e4e4e4;
}
body table th, body table b, body table strong {
  font-weight: 500;
}
body .calendar_wrap table.wp-calendar-table caption {
  text-align: center;
}
body .calendar_wrap nav.wp-calendar-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}
body.search .page-title {
  margin-bottom: 30px;
}
body.search .site-main {
  min-height: 75vh;
}

.single-post .wp-block-group.has-background,
.single-post .wp-block-media-text,
.single-post table {
  margin-bottom: 1rem;
}
.single-post .wp-block-gallery figcaption, .single-post .blocks-gallery-grid figcaption {
  flex-grow: unset;
}

.single-post #comments, .page:not(.woocommerce-page) #comments {
  clear: both;
}

article.type-page .entry-content img {
  max-width: 100%;
  height: auto;
}
article.type-post img {
  max-width: 100%;
  height: auto;
}
article.type-post .gallery {
  display: flex;
  flex-wrap: wrap;
}
article.type-post .gallery .gallery-item {
  margin: 0.8em 0;
  padding: 0 0.8em;
  width: 100%;
}
article.type-post .gallery.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
article.type-post .gallery.gallery-columns-3 .gallery-item {
  max-width: 33.3333333333%;
}
article.type-post .gallery.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
article.type-post .gallery.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
article.type-post .gallery.gallery-columns-6 .gallery-item {
  max-width: 16.6666666667%;
}
article.type-post .gallery.gallery-columns-7 .gallery-item {
  max-width: 14.2857142857%;
}
article.type-post .gallery.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
article.type-post .gallery.gallery-columns-9 .gallery-item {
  max-width: 11.1111111111%;
}

@media only screen and (min-width: 768px) {
  body.familab_theme .entry-content > *.alignfull, body.familab_theme .entry-summary > *.alignfull, body.familab_theme .entry-summary > .wp-block-group > .wp-block-group__inner-container > *.alignfull, body.familab_theme .entry-content > .wp-block-group > .wp-block-group__inner-container > *.alignfull {
    margin-top: calc(2*1rem);
    margin-bottom: calc(2*1rem);
    left: calc(-12.5% - 75px);
    width: calc(125% + 150px);
    max-width: calc(125% + 150px);
  }

  body.familab_theme .entry-content > figure.alignleft {
    margin-top: -2px;
  }
}
@media (min-width: 992px) {
  .single-post .cide-sidebar-content {
    width: 32%;
    flex: 0 0 32%;
    max-width: 32%;
  }
  .single-post .cide-sidebar-content + #primary, .single-post .cide-sidebar-content + .post-content-area {
    width: 68%;
    flex: 0 0 68%;
    max-width: 68%;
  }
}
@media (min-width: 1025px) {
  .single-post .wp-caption.alignleft,
.single-post img.alignleft,
.single-post .wp-caption.alignright,
.single-post img.alignright, .single-post h2, .single-post h3, .single-post h4, .single-post h5, .single-post p, .single-post pre, .single-post address, .single-post figure,
.single-post .wp-caption,
.single-post .wp-block-categories,
.single-post blockquote > * + *,
.single-post .entry-content > table,
.single-post .wp-block-group.has-background,
.single-post .wp-block-media-text,
.single-post .wp-block-image,
.single-post img.wp-post-image,
.single-post .site-main article.single-post .entry-content figure.wp-block-gallery {
    margin-bottom: 1.4rem;
  }
  .single-post blockquote, .single-post blockquote.alignleft, .single-post blockquote.alignright {
    margin: 1.8rem 0;
  }
}
@media (min-width: 1200px) {
  body.blog .page-heading-wrap + .header-breadcrumb-wrap > .container,
body.blog #content > .container, body.archive.category .page-heading-wrap + .header-breadcrumb-wrap > .container,
body.archive.category #content > .container, body.single .page-heading-wrap + .header-breadcrumb-wrap > .container,
body.single #content > .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1500px) {
  body.archive:not(.woocommerce) .cide-sidebar-content.cide-sidebar-right + #primary, body.blog .cide-sidebar-content.cide-sidebar-right + #primary {
    padding-right: 30px;
  }
  body.archive:not(.woocommerce) .cide-sidebar-content.cide-sidebar-left + #primary, body.blog .cide-sidebar-content.cide-sidebar-left + #primary {
    padding-left: 30px;
  }
  body.archive:not(.woocommerce) .cide-sidebar-content aside.widget.widget_search .wp-block-search__inside-wrapper .wp-block-search__button, body.blog .cide-sidebar-content aside.widget.widget_search .wp-block-search__inside-wrapper .wp-block-search__button {
    width: 110px;
    flex: 0 0 110px;
  }

  .single-post .cide-sidebar-content.cide-sidebar-right + .post-content-area {
    padding-right: 30px;
  }
  .single-post .cide-sidebar-content.cide-sidebar-left + .post-content-area {
    padding-left: 30px;
  }
}
.cide-mobile .site-header.fmc-transparent-mobile-header {
  position: absolute;
}
.cide-mobile .site-header .header-mobile.fmc-transparent-mobile-dark > .container svg {
  fill: #232529;
}
.cide-mobile .site-header .header-mobile.fmc-transparent-mobile-dark.header-mobile-sticky.headroom--pinned.headroom--not-top {
  background-color: #FFFFFF;
}
.cide-mobile .site-header .header-mobile.fmc-transparent-mobile-light > .container svg {
  fill: #FFFFFF;
}
.cide-mobile .site-header .header-mobile.fmc-transparent-mobile-light.header-mobile-sticky.headroom--pinned.headroom--not-top {
  background-color: #232529;
}
.cide-mobile .site-header .header-mobile.fmc-transparent-mobile-light .header-element.cart_box a.cart-btn .mini-cart-contents .cart-counter > span {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.cide-mobile.blog .site-header.fmc-transparent-mobile-header .header-mobile, .cide-mobile.page.page-template-default .site-header.fmc-transparent-mobile-header .header-mobile, .cide-mobile.woocommerce-shop .site-header.fmc-transparent-mobile-header .header-mobile {
  border-bottom: solid 1px;
}
.cide-mobile.blog .site-header.fmc-transparent-mobile-header .header-mobile.fmc-transparent-mobile-light, .cide-mobile.page.page-template-default .site-header.fmc-transparent-mobile-header .header-mobile.fmc-transparent-mobile-light, .cide-mobile.woocommerce-shop .site-header.fmc-transparent-mobile-header .header-mobile.fmc-transparent-mobile-light {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.cide-mobile.blog .site-header.fmc-transparent-mobile-header .header-mobile.fmc-transparent-mobile-dark, .cide-mobile.page.page-template-default .site-header.fmc-transparent-mobile-header .header-mobile.fmc-transparent-mobile-dark, .cide-mobile.woocommerce-shop .site-header.fmc-transparent-mobile-header .header-mobile.fmc-transparent-mobile-dark {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.header-mobile > .container,
.header-container,
#content > .container,
.site-content .page-heading-wrap .page-heading-container,
.header-breadcrumb-wrap > .container {
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .header-mobile > .container,
.header-container,
#content > .container,
.site-content .page-heading-wrap .page-heading-container,
.page-heading-wrap > .container,
.header-breadcrumb-wrap > .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  /* Announcement bar  */
  .cide-announcement-box {
    padding: 0.25rem 0;
  }
  .cide-announcement-box.layout1 {
    justify-content: center;
    flex-direction: column;
  }
  .cide-announcement-box.layout2 {
    justify-content: space-between;
    padding-left: 50px;
    padding-right: 50px;
  }
  .cide-announcement-box > * {
    margin: 0.25rem 0;
  }
  .cide-announcement-box button.close {
    top: 0;
    margin-top: 0;
  }

  /* Page header */
  .page-heading-wrap .page-heading-content, .page-heading-wrap .blog-heading-content {
    min-height: 120px;
  }
  .page-heading-content .page-heading-title, .blog-heading-content .page-heading-title {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .header-layout ~ .header-mobile.not_mobile_hidden, .header-layout ~ .header-mobile-spacer.not_mobile_hidden {
    display: none !important;
  }

  .not_mobile_hidden:not(.header-mobile, .header-mobile-spacer) {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  .header-layout ~ .header-mobile.not_device_hidden, .header-layout ~ .header-mobile-spacer.not_device_hidden {
    display: none !important;
  }

  .not_device_hidden:not(.header-mobile, .header-mobile-spacer) {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .hidden_on_device {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hidden_on_mobile {
    display: none !important;
  }
}
header:not(.fmc-transparent-header) .header-mobile {
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.header-mobile {
  height: 66px;
}
.header-mobile > .container {
  height: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
}
.header-mobile > .container svg {
  fill: #000000;
}
.header-mobile > .container .mobile-nav-btn > a {
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 15px;
  height: 20px;
  width: 20px;
  position: relative;
  display: block;
}
.header-mobile > .container .mobile-nav-btn > a svg {
  width: 24px;
  height: 24px;
}
.header-mobile > .container .header-element.cart_box a.cart-btn > span.c-button__text {
  display: flex;
  align-items: center;
}
.header-mobile.header-mobile-layout1 > .container {
  justify-content: space-between;
}
.header-mobile.header-mobile-layout1 > .container > div {
  flex: 1;
}
.header-mobile.header-mobile-layout1 .site-branding {
  text-align: center;
  padding: 0;
}
.header-mobile.header-mobile-layout1 .header-mobile-right-control > .header-element {
  margin-left: 12px;
}
.header-mobile.header-mobile-layout2 > .container {
  justify-content: flex-end;
}
.header-mobile.header-mobile-layout2 .site-branding {
  margin-left: 0;
  margin-right: auto;
}
.header-mobile.header-mobile-layout2 .mobile-nav-btn {
  margin-left: 1rem;
}
.header-mobile.header-mobile-layout2 .header-mobile-right-control > .header-element {
  margin-left: 1rem;
}
.header-mobile.header-mobile-layout3 > .container {
  justify-content: flex-start;
}
.header-mobile.header-mobile-layout3 .site-branding {
  margin-left: 0;
  margin-right: auto;
}
.header-mobile.header-mobile-layout3 .mobile-nav-btn {
  margin-right: 1rem;
}
.header-mobile.header-mobile-layout3 .header-mobile-right-control {
  margin-right: 0;
  margin-left: auto;
}
.header-mobile.header-mobile-layout3 .header-mobile-right-control > .header-element {
  margin-left: 1rem;
}
.header-mobile .header-control-wrap.header-mobile-right-control {
  justify-content: flex-end;
}
.header-mobile.header-mobile-sticky + .header-mobile-spacer {
  height: 66px;
}
.header-mobile.header-mobile-sticky.headroom--pinned.headroom--not-top {
  box-shadow: 8px 6px 30px 0 rgba(0, 0, 0, 0.06);
  background-color: #fff;
}
.home .header-mobile.header-mobile-sticky.headroom--pinned.headroom--not-top {
  border-bottom: none;
}
.header-mobile.header-mobile-sticky.headroom--pinned.headroom--not-top.fmc-transparent-mobile-light {
  background-color: #232529;
}
.header-mobile.fmc-transparent-mobile-light > .container svg {
  fill: #FFFFFF;
}

.js-offcanvas-close.cide-close-btn[aria-controls=mobile-header-canvas] {
  padding: 6px;
}

#mobile-header-canvas {
  width: 300px;
  z-index: 100000;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-title {
  display: flex;
  height: 50px;
  flex: 0 0 50px;
  width: 100%;
  padding: 0 20px;
  justify-content: space-between;
  align-items: center;
  background-color: #fefefe;
  border-bottom: 1px solid #e4e4e4;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-title h3 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #232529;
  font-weight: 600;
  margin: 0;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-title .js-offcanvas-close {
  position: static;
  right: 15px;
  top: 15px;
  line-height: 24px;
  height: auto;
  width: auto;
  padding: 0;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-title .js-offcanvas-close > .c-button__text {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-title .js-offcanvas-close .button-title {
  display: inline-block;
  font-weight: 400;
  font-size: 10px;
  text-transform: uppercase;
  color: #232529;
  display: none;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-title .js-offcanvas-close .button-title:hover {
  color: #f33c3c;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-title .js-offcanvas-close svg.fm-icon {
  width: 14px;
  height: 14px;
  margin-left: 3px;
  fill: #232529;
  padding: 2px;
  -webkit-border-radius: 90px;
  -moz-border-radius: 90px;
  border-radius: 90px;
  border: 1px solid #232529;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-title .js-offcanvas-close:hover svg.fm-icon {
  fill: #f33c3c;
  border-color: #f33c3c;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-navigation {
  width: 100%;
  padding: 0 20px;
  height: calc(100% - 150px);
  overflow-y: auto;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-navigation ul.menu {
  margin-bottom: 0;
  padding-bottom: 0;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-navigation ul.menu li {
  line-height: 24px;
  padding: 0.5rem 0;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-navigation ul.menu li .sub-menu li {
  padding: 5px 0;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-navigation ul.menu li .sub-menu li:last-child {
  padding-bottom: 0;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-navigation ul.menu li.open {
  padding-bottom: 0;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-navigation ul.menu > li > a {
  font-weight: 500;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-bottom {
  border-top: 1px solid #e4e4e4;
  margin-top: auto;
  margin-bottom: 1px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (max-width: 575px) {
  #search-canvas {
    height: 100vh;
  }
  #search-canvas .offcanvas-content > h2 {
    margin-bottom: 10px;
  }
  #search-canvas .offcanvas-content .search_form_wrapper {
    width: 100%;
  }
  #search-canvas .offcanvas-content .search_form_wrapper .search_form_content {
    width: 100%;
  }
  #search-canvas .offcanvas-content .search_form_wrapper .search_form_content .twitter-typeahead {
    width: 100%;
  }
  #search-canvas .offcanvas-content .search_form_wrapper .search_form_content .fm-search-form {
    height: max-content;
  }
  #search-canvas .offcanvas-content .search_form_wrapper .search_form_content .fm-search-form .search_text_input {
    width: 100%;
    padding: 0;
    font-size: 14px;
    height: 40px;
  }
  #search-canvas .offcanvas-content .search_form_wrapper .search_form_content .fm-search-form button[type=submit] {
    height: 40px;
    top: 0;
    width: 40px;
    padding-right: 0;
  }
  #search-canvas .offcanvas-content .search_form_wrapper .search_form_content .fm-search-form .btn_clear_text {
    right: 36px;
  }
  #search-canvas .ajax_search .fm-search-results {
    max-width: 100%;
    padding: 20px 0;
    margin: 0;
    height: 350px;
    width: 100%;
    min-width: 100%;
  }
  #search-canvas .ajax_search .fm-search-results .fm-dataset .search-result-item {
    flex: 0 0 33.3333%;
    padding: 0;
  }
}
body.admin-bar aside.c-offcanvas .is-open {
  top: 32px;
}

@media screen and (max-width: 782px) {
  html body.admin-bar aside.c-offcanvas.is-open {
    top: 0px;
    z-index: 99999;
  }
  html body.admin-bar .fm-header-sticky.headroom--pinned.headroom--not-top {
    top: 0px;
  }
}
.elementor-widget:not(:last-child) {
  margin-bottom: 0 !important;
}

#topbar .header-container {
  max-width: 100%;
}

.header-layout .header-content .header-container {
  max-width: 100%;
}
.header-layout .header-content .header-container.header-bottom > .header-container {
  position: relative;
}
.header-layout .header-content .header-container.header-bottom > .header-container:before {
  display: inline-block;
  width: calc(100% - 30px);
  border-top: 1px solid rgba(122, 122, 122, 0.25);
  content: "";
  position: absolute;
  top: 0;
}
.header-layout.header-layout9 .site-branding + .header-control-wrap {
  margin-left: 0;
  margin-right: auto;
}
.header-layout.header-layout9 .site-branding + .header-control-wrap .fm-search-form {
  flex-direction: row-reverse;
}
.header-layout.header-layout9 .site-branding + .header-control-wrap .fm-search-form .search_text_input {
  border: none;
  padding-left: 0;
}
.header-layout.header-layout9 .site-branding + .header-control-wrap .fm-search-form button[type=submit] {
  background: none;
  border: none;
}
.header-layout.header-layout:not(.header-layout7):not(.header-layout8) .search_box.form .fm-search-form {
  flex-direction: row-reverse;
}
.header-layout.header-layout:not(.header-layout7):not(.header-layout8) .search_box.form .fm-search-form .search_text_input {
  border: none;
  padding-left: 0;
}
.header-layout.header-layout:not(.header-layout7):not(.header-layout8) .search_box.form .fm-search-form button[type=submit] {
  background: none;
  padding-left: 0;
}
.header-layout.header-layout:not(.header-layout7):not(.header-layout8) .header-right-control .search_box.form .fm-search-form {
  flex-direction: row;
}
.header-layout.header-layout:not(.header-layout7):not(.header-layout8) .header-right-control .search_box.form .fm-search-form .search_text_input {
  text-align: right;
}
.header-layout.header-layout7 .fm-search-form, .header-layout.header-layout8 .fm-search-form {
  border: 1px solid rgba(122, 122, 122, 0.25);
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
}
.header-layout.header-layout7 .fm-search-form .search_text_input,
.header-layout.header-layout7 .fm-search-form button[type=submit], .header-layout.header-layout8 .fm-search-form .search_text_input,
.header-layout.header-layout8 .fm-search-form button[type=submit] {
  background: none;
  border: none;
}
.header-layout.header-layout7 .main-navigation > .nav-menu > li.menu-item, .header-layout.header-layout8 .main-navigation > .nav-menu > li.menu-item {
  height: 60px;
}
.header-layout.header-layout5 .header-right-control .my-account-box a.account-btn {
  display: flex;
  align-items: center;
}
.header-layout.header-layout5 .header-right-control .my-account-box a.account-btn svg.fm-icon + span {
  margin-right: 6px;
  order: -1;
}
.header-layout.header-layout5 .header-right-control .cart_box a.cart-btn .mini-cart-contents {
  margin-left: 3px;
}
.header-layout.header-layout5 .hamburger-box a.hamburger-menu svg.fm-icon {
  width: 26px;
  height: 26px;
}
.header-layout.header-layout11 .header-main .header-element.search_form_wrapper .fm-search-form {
  height: 55px;
}
.header-layout.header-layout11 .header-main .header-element.search_form_wrapper button[type=submit] {
  min-width: 100px;
}
.header-layout.header-layout11 .header-main .header-element.search_form_wrapper button[type=submit] svg {
  fill: #FFF !important;
  width: 20px;
  height: 20px;
}
.header-layout.header-layout11 .header-bottom .header-bottom-right-control .header-element {
  font-size: 14px;
  font-weight: bold;
}
header:not(.fmc-transparent-header) .header-layout.header-layout11 .header-element.search_form_wrapper .fm-search-form .search_text_input {
  background: #ffffff;
}

.header-element.search_box svg.fm-icon {
  width: 22px;
  height: 22px;
}
.header-element.cart_box svg.fm-icon {
  width: 25px;
  height: 25px;
}
.header-element.my-account-box svg.fm-icon {
  width: 26px;
  height: 26px;
}
.header-element.wishlist-box svg.fm-icon {
  width: 20px;
  height: 20px;
}
.header-element.hamburger-box .hamburger-menu svg.fm-icon {
  width: 25px;
  height: 25px;
}
.top-bar-control .header-element {
  font-size: 14px;
}
.header-element > a {
  transition: all 0.3s;
}
.header-element > a > svg.fm-icon {
  transition: all 0.3s;
}
.header-element > a > svg.fm-icon + span {
  margin-left: 5px;
}
.header-main .header-element > a {
  font-size: 14px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
}
.header-element.social-icon-box a.fm-social-icon-link {
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 12px;
}
.header-element.social-icon-box a.fm-social-icon-link svg.fm-icon + .fm-social-icon-title {
  margin-left: 6px;
}
.top-bar-left-control .header-element.social-icon-box a.fm-social-icon-link:not(:last-child), .header-left-control .header-element.social-icon-box a.fm-social-icon-link:not(:last-child) {
  margin-right: 15px;
}
.top-bar-left-control .header-element.social-icon-box a.fm-social-icon-link:not(:last-child) .fm-social-icon-title, .header-left-control .header-element.social-icon-box a.fm-social-icon-link:not(:last-child) .fm-social-icon-title {
  border-right: 1px solid #e4e4e4;
  padding-right: 15px;
}
.top-bar-right-control .header-element.social-icon-box a.fm-social-icon-link:not(:first-child), .header-right-control .header-element.social-icon-box a.fm-social-icon-link:not(:first-child) {
  margin-left: 15px;
}
.top-bar-right-control .header-element.social-icon-box a.fm-social-icon-link:not(:first-child) .fm-social-icon-title, .header-right-control .header-element.social-icon-box a.fm-social-icon-link:not(:first-child) .fm-social-icon-title {
  border-left: 1px solid #e4e4e4;
  padding-left: 15px;
}
.header-element.contact-info-box svg.fm-icon + span {
  margin-left: 6px;
}
.header-element.contact-info-box .ct-title::after {
  content: ":";
  display: inline-block;
  margin-right: 3px;
}
.header-element.contact-info-box .ct-info:not(:last-child) {
  margin-right: 15px;
}
.header-element.my-account-box a.account-btn svg.fm-icon + span {
  margin-left: 6px;
}
.header-element.wishlist-box .wishlist-btn {
  display: flex;
  align-items: center;
  position: relative;
}
.header-element.wishlist-box .wishlist-btn span.wishlist_counter {
  display: inline-block;
  margin-left: 0;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  position: absolute;
  font-size: 11px;
  font-weight: 500;
  top: -10px;
  left: 75%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #f33c3c;
  color: #ffffff !important;
}
.header-element.search_box.form .fm-search-form .search_text_input {
  font-size: inherit;
}
.header-element.search_box.button a.search-btn.search-btn-dropdown {
  display: inline-block;
}
.header-element.search_box.button a.search-btn.search-btn-dropdown:not(.show_text) {
  width: 24px;
  height: 24px;
  line-height: 24px;
}
.header-bottom-right-control .header-element.search_box.button a.search-btn.search-btn-dropdown {
  text-align: right;
}
.header-bottom-left-control .header-element.search_box.button a.search-btn.search-btn-dropdown + .search_form_wrapper.dropdown {
  left: 0;
  right: auto;
}
.header-element.search_box.button .search_form_wrapper.dropdown .search_form_content .fm-search-form.style1 button[type=submit] {
  color: #ffffff;
  background: #232529;
  min-width: 44px;
}
.header-element.search_box.button .search_form_wrapper.dropdown .search_form_content .fm-search-form.style1 button[type=submit] svg.fm-icon {
  fill: #ffffff;
}
.header-element.search_form_wrapper .ajax_search .fm-search-results {
  background: #ffffff;
  min-width: 800px;
}
.header-element.cart_box a.cart-btn {
  display: flex;
  align-items: center;
}
.header-element.cart_box a.cart-btn .mini-cart-contents {
  margin-left: 0;
}
.header-element.cart_box a.cart-btn .mini-cart-contents .cart-counter {
  font-size: 0;
}
.header-element.cart_box a.cart-btn .mini-cart-contents .cart-counter > span {
  font-size: 11px;
  font-weight: 500;
  position: absolute;
  top: -8px;
  left: calc(100% - 2px);
  width: 20px;
  height: 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #f33c3c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: #ffffff !important;
}
.header-element .currency.list-dropdown, .header-element .language.list-dropdown {
  padding: 0;
  line-height: 24px;
  font-size: 12px;
  text-transform: uppercase;
  justify-content: center;
}
.header-element .currency.list-dropdown .dropdown .current, .header-element .language.list-dropdown .dropdown .current {
  display: inline-flex;
  align-items: center;
}
.header-element .currency.list-dropdown .dropdown .current svg.fm-icon, .header-element .language.list-dropdown .dropdown .current svg.fm-icon {
  width: 8px;
  height: 8px;
  margin-left: 8px;
}
.header-element .currency.list-dropdown .dropdown ul, .header-element .language.list-dropdown .dropdown ul {
  right: 0;
  top: calc(100% + 1px);
}
.header-element .currency.list-dropdown .dropdown ul li, .header-element .language.list-dropdown .dropdown ul li {
  min-width: 80px;
}

@media (max-width: 1024px) {
  .header-element.cart_box a.cart-btn svg.fm-icon {
    width: 20px;
    height: 20px;
  }
  .header-element.cart_box a.cart-btn .mini-cart-contents .cart-counter > span {
    left: calc(100% - 8px);
  }
  .header-element.search_box svg.fm-icon {
    width: 19px;
    height: 19px;
  }
}
.header-main .header-container .header-control-wrap {
  height: inherit;
}
.header-main .header-container .header-control-wrap .header-element.cart_box.hover_dropdown_wrapper {
  height: inherit;
  display: flex;
  align-items: center;
}

.fm-header-sticky.headroom--pinned.headroom--not-top .search_form_wrapper .search_form_content .fm-search-form .search_text_input::placeholder {
  color: #aaaaaa;
}

.theme-cide .cart_box_content ul.cart_list {
  list-style: none;
  padding-left: 0;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item {
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: 15px;
  margin-bottom: 16px;
  padding: 0 25px 16px 90px;
  min-height: 85px;
  border-bottom: 1px solid #eaedf3;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item img {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  width: 70px;
  display: block;
  border: 1px solid #e4e4e4;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item .remove {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 13px;
  font-weight: 500;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item .remove:hover {
  fill: #232529;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item .remove:hover svg {
  fill: #f33c3c;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item .remove svg {
  width: 10px;
  height: 10px;
  fill: #232529;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item a {
  transition: color 0.3s;
  display: block;
  line-height: 18px;
  font-weight: 500;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item a:not(:hover) {
  color: #232529;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item dl {
  margin: 0;
  display: inline-block;
  border: none;
  padding: 0;
  clear: both;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item dl * {
  padding-bottom: 0;
  margin-bottom: 0;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item dl dt {
  font-weight: 400;
  color: #999999;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item dl dd {
  font-weight: 400;
  color: #232529;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item dl.variation {
  font-size: 14px;
  font-weight: 400;
  color: #232529;
  display: inline-flex;
  flex-wrap: wrap;
  line-height: 16px;
  margin-top: 6px;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item dl.variation dt {
  color: #999999;
  font-weight: inherit;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item dl.variation dd {
  margin-left: 3px;
  font-weight: inherit;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item dl.variation dd + dt {
  margin-left: 6px;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item dl.variation dd + dt::before {
  content: "/";
  content: #999999;
  margin-right: 6px;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item .quantity-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 3px;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item .quantity-wrap .woocommerce-mini-cart-item__qty .quantity {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 20px;
  margin-bottom: 1px;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item .quantity-wrap .woocommerce-mini-cart-item__qty .quantity .qty {
  border: none;
  width: 20px;
  font-size: 13px;
  font-weight: 600;
  line-height: inherit;
  height: 20px;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item .quantity-wrap .woocommerce-mini-cart-item__qty .quantity::before {
  content: "QTY:";
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  line-height: inherit;
  color: #232529;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item .quantity-wrap .woocommerce-mini-cart-item__qty .quantity > a {
  width: 15px;
  height: 15px;
  border: 1px solid #aaaaaa;
  align-items: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  justify-content: center;
  flex: 0 0 15px;
  display: none;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item .quantity-wrap .woocommerce-mini-cart-item__qty .quantity > a svg {
  fill: #999999;
  width: 7px;
  height: 7px;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item .quantity-wrap .woocommerce-mini-cart-item__qty .quantity > a:hover {
  border-color: #232529;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item .quantity-wrap .woocommerce-mini-cart-item__qty .quantity > a:hover svg {
  fill: #232529;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item .quantity-wrap .woocs_special_price_code .amount {
  color: #909297;
  font-weight: 500;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.theme-cide .cart_box_content .woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: #232529;
  padding-top: 25px;
}
.theme-cide .cart_box_content .woocommerce-mini-cart__total strong {
  font-weight: 600 !important;
}
.theme-cide .cart_box_content .woocommerce-mini-cart__total .woocs_special_price_code {
  font-size: 20px;
  font-weight: 500;
}
.theme-cide .cart_box_content .woocommerce-mini-cart__buttons {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.theme-cide .cart_box_content .woocommerce-mini-cart__buttons a.button {
  height: 55px;
  text-transform: uppercase;
  background: #12151a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 2px;
  width: 100%;
}
.theme-cide .cart_box_content .woocommerce-mini-cart__buttons a.button + .button {
  margin-top: 15px;
}
.theme-cide .cart_box_content .woocommerce-mini-cart__buttons a.button + .button:not(:hover) {
  background: #2b2e34;
}
.theme-cide .cart_box_content .cide-free-shipping-msg {
  font-size: 15px;
  color: #232529;
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.theme-cide .cart_box_content .cide-free-shipping-msg .woocommerce-Price-amount {
  margin-left: 5px;
}
.theme-cide .cart_box_content .cide-free-shipping-msg svg {
  width: 20px;
  height: 20px;
  fill: #232529;
  margin-right: 10px;
}
.cart_box_content .cide-cart-empty-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.cart_box_content .cide-cart-empty-box .woocommerce-mini-cart__empty-icon {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
.cart_box_content .cide-cart-empty-box .woocommerce-mini-cart__empty-icon svg {
  width: 80px;
  height: 80px;
  fill: #999999;
  display: none;
}
.cart_box_content .cide-cart-empty-box .woocommerce-mini-cart__empty-icon:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 200px;
  left: 50%;
  bottom: 0;
  right: 0;
  margin: auto;
  background-color: #dbdbdc;
  z-index: 0;
  transform-origin: center;
  transform: translate(-50%, 45px) rotate(-45deg);
}
.cart_box_content .cide-cart-empty-box .woocommerce-mini-cart__empty-message {
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  color: #12151a;
  margin-bottom: 55px;
  position: relative;
  background-color: #fff;
  padding: 10px 0;
}
.cart_box_content .cide-cart-empty-box .cide-parent-term-link {
  height: 36px;
  padding: 10px 0px;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 600;
  color: #12151a;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  line-height: 16px;
  -webkit-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -moz-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -ms-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -o-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  border-bottom: 2px solid #f33c3c;
}
.cart_box_content .cide-cart-empty-box .cide-parent-term-link svg {
  width: 15px;
  height: 15px;
  fill: #FFFFFF;
  margin-left: 20px;
  display: none;
}
.cart_box_content .cide-cart-empty-box .cide-parent-term-link:hover {
  color: #f33c3c;
}
.cart_box_content .cide-cart-empty-box ~ .cide-free-shipping-msg {
  flex-wrap: wrap;
  justify-content: center;
  z-index: 2;
  color: #FFFFFF;
  position: absolute;
  bottom: 35px;
}
.cart_box_content .cide-cart-empty-box ~ .cide-free-shipping-msg svg {
  fill: #FFFFFF;
}
.theme-cide .offcanvas-content .cart_box_content {
  padding: 20px;
}
.theme-cide .offcanvas-content .cart_box_content .woocommerce-mini-cart__total {
  margin-top: auto;
  margin-bottom: 20px;
}
.theme-cide .cart_box.hover_dropdown_wrapper .cart_box_content {
  padding: 30px 20px 20px;
  width: 390px;
}
.theme-cide .cart_box.hover_dropdown_wrapper .cart_box_content ul.cart_list {
  margin-bottom: 10px;
}
.theme-cide .cart_box.hover_dropdown_wrapper .cart_box_content .woocommerce-mini-cart__total {
  font-size: 16px;
}
.theme-cide .cart_box.hover_dropdown_wrapper .cart_box_content .woocommerce-mini-cart__total .woocs_special_price_code {
  font-size: 20px;
}
.theme-cide .cart_box.hover_dropdown_wrapper .cart_box_content .woocommerce-mini-cart__buttons {
  justify-content: space-between;
}
.theme-cide .cart_box.hover_dropdown_wrapper .cart_box_content .woocommerce-mini-cart__buttons a.button {
  width: calc(50% - 8px);
  height: 43px;
}
.theme-cide .cart_box.hover_dropdown_wrapper .cart_box_content .cide-cart-empty-box {
  position: static;
  background: #ffffff;
  padding: 30px 0;
}
.theme-cide .cart_box.hover_dropdown_wrapper .cart_box_content .cide-cart-empty-box .woocommerce-mini-cart__empty-icon {
  margin-bottom: 10px;
}
.theme-cide .cart_box.hover_dropdown_wrapper .cart_box_content .cide-cart-empty-box .woocommerce-mini-cart__empty-icon svg {
  width: 50px;
  height: 50px;
}
.theme-cide .cart_box.hover_dropdown_wrapper .cart_box_content .cide-cart-empty-box .woocommerce-mini-cart__empty-message {
  color: #232529;
}
.theme-cide .cart_box.hover_dropdown_wrapper .cart_box_content .cide-cart-empty-box .cide-parent-term-link {
  border: 2px solid #232529;
  color: #232529;
}
.theme-cide .cart_box.hover_dropdown_wrapper .cart_box_content .cide-cart-empty-box .cide-parent-term-link svg {
  fill: #232529;
}
.theme-cide .cart_box.hover_dropdown_wrapper .cart_box_content .cide-cart-empty-box .cide-parent-term-link:hover {
  border-color: #f33c3c;
  background-color: #f33c3c;
  color: #ffffff;
}
.theme-cide .cart_box.hover_dropdown_wrapper .cart_box_content .cide-cart-empty-box .cide-parent-term-link:hover svg {
  fill: #ffffff;
}
.theme-cide .cart_box.hover_dropdown_wrapper .cart_box_content .cide-cart-empty-box ~ .cide-free-shipping-msg {
  position: static;
  color: #232529;
}
.theme-cide .cart_box.hover_dropdown_wrapper .cart_box_content .cide-cart-empty-box ~ .cide-free-shipping-msg svg {
  fill: #232529;
}
.cart_box_content.dropdown_content {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.cart_box_content.dropdown_content .woocommerce-mini-cart__empty-message {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #232529;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0;
  padding: 30px 0;
}

.main-navigation {
  display: flex;
}
.main-navigation ul.nav-menu {
  height: inherit;
}
.main-navigation ul.nav-menu > li.menu-item {
  height: inherit;
  margin: 0 10px;
}
.header-layout6 .main-navigation ul.nav-menu > li.menu-item {
  margin: 0 12px;
}
.main-navigation ul.nav-menu > li.menu-item > a {
  height: inherit;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.main-navigation ul.nav-menu > li.menu-item > a::after {
  bottom: 0;
  height: 1px;
}
.main-navigation .nav-menu ul li.page_item.page_item_has_children ul.children {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: #fff;
  text-align: left;
  padding: 10px 0;
  z-index: 9999;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-shadow: 7px 6px 40px 0 rgba(204, 204, 223, 0.16);
  -moz-box-shadow: 7px 6px 40px 0 rgba(204, 204, 223, 0.16);
  box-shadow: 7px 6px 40px 0 rgba(204, 204, 223, 0.16);
  display: block;
}
.main-navigation .nav-menu ul li.page_item.page_item_has_children:not(:hover) > ul.children {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
}
.main-navigation .nav-menu ul li.page_item:hover .children .children {
  top: 100%;
  right: 100%;
  left: auto;
}
.main-navigation .nav-menu ul > li.page_item:nth-last-child(1) .children .children, .main-navigation .nav-menu ul > li.page_item:nth-last-child(2) .children .children, .main-navigation .nav-menu ul > li.page_item:nth-last-child(3) .children .children, .main-navigation .nav-menu ul > li.page_item:nth-last-child(4) .children .children {
  right: 100%;
  left: auto;
}

#site-navigation ul.nav-menu .sub-menu .mega-menu-container {
  padding: 20px;
}
#site-navigation ul.nav-menu .sub-menu .mega-menu-container .mega-content-post {
  width: 100%;
}
#site-navigation ul.nav-menu .sub-menu .mega-menu-container > .elementor {
  max-width: 100%;
  width: 100%;
}
#site-navigation ul.nav-menu .sub-menu .mega-menu-container .elementor-widget-fmtpl-menu li.menu-item {
  padding: 0;
}
#site-navigation ul.nav-menu .sub-menu .elementor-widget-fmtpl-menu li.menu-item {
  padding: 0;
}
#site-navigation ul.nav-menu .menu-item-badge {
  margin-left: 3px;
  height: 16px;
  line-height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
#site-navigation ul.nav-menu .menu-item-badge .badge-title {
  font-size: 9px;
  text-transform: uppercase;
  color: inherit !important;
}

@media (min-width: 768px) {
  .theme-cide .cart_box_content .woocommerce-mini-cart__buttons {
    flex-direction: row-reverse;
  }
  .theme-cide .cart_box_content .woocommerce-mini-cart__buttons a.button {
    width: calc(50% - 10px);
  }
  .theme-cide .cart_box_content .woocommerce-mini-cart__buttons a.button + .button {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .theme-cide .cart_box_content .woocommerce-mini-cart__buttons a.button {
    width: 50%;
  }
  .theme-cide .cart_box.hover_dropdown_wrapper .cart_box_content {
    padding: 20px;
  }
  .cart_box_content.dropdown_content {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
  .theme-cide .offcanvas-content .cart_box_content {
    padding: 15px 40px 30px 40px;
    height: calc(100% - 111px);
  }
  .theme-cide .offcanvas-content .cart_box_content .woocommerce-mini-cart__total {
    padding-bottom: 15px;
  }

  .theme-cide #cart-canvas.c-offcanvas {
    width: 440px;
  }
  .theme-cide #cart-canvas.c-offcanvas.c-offcanvas--right {
    transform: translate3d(460px, 0, 0);
  }
  .theme-cide #cart-canvas.c-offcanvas.c-offcanvas--left {
    transform: translate3d(-460px, 0, 0);
  }
  .theme-cide #cart-canvas.c-offcanvas.is-open {
    transform: translate3d(0, 0, 0);
    z-index: 108000;
  }
  .theme-cide #cart-canvas.c-offcanvas .offcanvas-content .cart_box_head {
    padding: 60px 30px 0 30px;
  }
  .theme-cide #account-canvas .offcanvas-content {
    margin: 30px;
  }

  .main-navigation ul.nav-menu > li.menu-item {
    margin: 0 15px;
  }
  .header-layout6 .main-navigation ul.nav-menu > li.menu-item {
    margin: 0 15px;
  }
  .header-layout6 .main-navigation ul.nav-menu > li.menu-item:first-child {
    margin-left: 0;
  }
}
@media (min-width: 1440px) {
  .main-navigation ul.nav-menu > li.menu-item {
    margin: 0 15px;
  }
  .header-layout6 .main-navigation ul.nav-menu > li.menu-item {
    margin: 0 15px;
  }
  .header-layout6 .main-navigation ul.nav-menu > li.menu-item:first-child {
    margin-left: 0;
  }
}
.woocommerce #respond input#submit, .familab_theme #respond input#submit, .woocommerce a.button, .familab_theme a.button, .woocommerce button.button, .familab_theme button.button, .woocommerce button.button.alt, .familab_theme button.button.alt, .woocommerce input.button, .familab_theme input.button, .woocommerce button, .familab_theme button, .woocommerce .btn, .familab_theme .btn {
  padding: 13px 20px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #232529;
  color: #ffffff;
  border: none;
  font-weight: 500;
  -webkit-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -moz-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -ms-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -o-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.woocommerce #respond input#submit svg, .familab_theme #respond input#submit svg, .woocommerce a.button svg, .familab_theme a.button svg, .woocommerce button.button svg, .familab_theme button.button svg, .woocommerce button.button.alt svg, .familab_theme button.button.alt svg, .woocommerce input.button svg, .familab_theme input.button svg, .woocommerce button svg, .familab_theme button svg, .woocommerce .btn svg, .familab_theme .btn svg {
  fill: #ffffff;
}
.woocommerce #respond input#submit:hover, .familab_theme #respond input#submit:hover, .woocommerce a.button:hover, .familab_theme a.button:hover, .woocommerce button.button:hover, .familab_theme button.button:hover, .woocommerce button.button.alt:hover, .familab_theme button.button.alt:hover, .woocommerce input.button:hover, .familab_theme input.button:hover, .woocommerce button:hover, .familab_theme button:hover, .woocommerce .btn:hover, .familab_theme .btn:hover {
  color: #ffffff;
  background-color: #f33c3c;
}

ol.flex-control-nav {
  /* # Nav Control Cide Theme */
}
ol.flex-control-nav li {
  margin: 0;
}
ol.flex-control-nav li a {
  margin: 0 5px;
  padding: 0;
  font-size: 0;
  position: relative;
}
ol.flex-control-nav li a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  box-sizing: content-box;
  background: #ababab;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
ol.flex-control-nav li a:hover::before, ol.flex-control-nav li a.flex-active::before {
  background-color: #232529;
}

.widget {
  /* # Widget Cide Theme */
}
.widget .widget-title {
  font-weight: 600;
  color: #232529;
  font-size: 12px;
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-bottom: 1.5rem;
  position: relative;
}
.widget .widget-title::before {
  display: inline-block;
  content: "";
  width: 35px;
  height: 1px;
  background: #000000;
  position: absolute;
  left: 0;
  bottom: 0;
}
#product-sidebar .widget {
  display: block;
}
#product-sidebar .widget ~ .widget {
  margin-top: 35px;
}
#product-sidebar .widget.cide_featured_box {
  padding: 15px 20px;
  background: #f8f8f8;
  border: 1px solid #e4e4e4;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
#product-sidebar .widget.cide_featured_box .widget-title {
  display: none;
}
#product-sidebar .widget.cide_featured_box .content-box {
  text-align: center;
}
#product-sidebar .widget.cide_featured_box .content-box .icon svg.fm-icon {
  width: 65px;
  height: 65px;
  fill: #232529;
}
#product-sidebar .widget.cide_featured_box .content-box .content-text {
  color: #232529;
}
#product-sidebar .widget.cide_featured_box .content-box .content-text .title {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 0;
}
#product-sidebar .widget.cide_featured_box .content-box .content-text .text {
  font-size: 13px;
  line-height: 16px;
}
#product-sidebar .widget.cide_featured_box + .cide_featured_box {
  margin-top: 30px;
}
.widget.woocommerce ul.product_list_widget {
  padding: 0;
}
.widget.woocommerce ul.product_list_widget li {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 20px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid #e4e4e4;
  padding-left: 95px;
  min-height: 105px;
}
.widget.woocommerce ul.product_list_widget li a {
  font-size: 15px;
  font-weight: 400;
  color: #232529;
}
.widget.woocommerce ul.product_list_widget li a img {
  float: left;
  margin-left: 0;
  margin-right: 15px;
  height: auto;
  box-shadow: none;
  width: 80px;
  height: 85px;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 20px;
}
.widget.woocommerce ul.product_list_widget li a span.product-title {
  margin-bottom: 2px;
  display: block;
}
.widget.woocommerce ul.product_list_widget li .star-rating {
  order: -1;
  margin: 0;
  font-size: 11px;
  width: 82px;
  margin-bottom: 6px;
}
.widget.woocommerce ul.product_list_widget li .woocs_price_code {
  font-size: 15px;
  color: #232529;
  font-weight: 500;
  display: block;
}
.widget.woocommerce ul.product_list_widget li:first-child {
  border-top: none;
  padding-top: 0;
  min-height: 85px;
}
.widget.woocommerce ul.product_list_widget li:first-child a img {
  top: 0;
}

.fm-search-form.ajax_search .fm-search-results {
  padding: 50px 0 30px 0;
  margin: 0 -15px;
  width: calc(100% + 30px);
  overflow-y: auto;
  height: 550px;
}
#search-canvas .fm-search-form.ajax_search .fm-search-results {
  height: auto;
}
.fm-search-form.ajax_search .fm-search-results .fm-dataset {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item {
  flex: 0 0 33.3333%;
  display: flex;
  flex-direction: column;
  padding: 0 8px;
  text-align: left;
  margin-bottom: 20px;
}
.fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a.item-link {
  display: inline-block;
  width: 100%;
}
.fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a.item-link img {
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}
.fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .result_item_info {
  font-size: 16px;
  margin-bottom: 0;
}
.fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .product-item-cat-title {
  font-size: 12px;
  text-transform: uppercase;
  line-height: 12px;
  margin-bottom: 6px;
  color: #999999;
}
.fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .product-item-cat-title:hover {
  color: #232529;
}
.fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .result_item_title {
  line-height: 18px;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 6px;
}
.fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .result_item_price {
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  color: #232529;
}
.fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .result_item_price del .amount {
  font-size: 13px;
  color: #aaaaaa;
}
.fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .result_item_price ins .amount {
  color: #232529;
  text-decoration: none;
  font-weight: 500;
}
.search_box.form .fm-search-form.ajax_search .fm-search-results, .header-layout7 .fm-search-form.ajax_search .fm-search-results, .header-layout8 .fm-search-form.ajax_search .fm-search-results, .header-layout9 .fm-search-form.ajax_search .fm-search-results, .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results, .cide-mobile .fm-search-form.ajax_search .fm-search-results {
  width: 375px;
  height: auto;
  min-width: 320px;
  max-width: 100vw;
  background-color: #ffffff;
  top: 43px !important;
  border-top: 1px solid #e4e4e4;
  left: auto !important;
  right: -5px;
  padding: 20px;
}
.search_box.form .fm-search-form.ajax_search .fm-search-results .fm-dataset, .header-layout7 .fm-search-form.ajax_search .fm-search-results .fm-dataset, .header-layout8 .fm-search-form.ajax_search .fm-search-results .fm-dataset, .header-layout9 .fm-search-form.ajax_search .fm-search-results .fm-dataset, .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results .fm-dataset, .cide-mobile .fm-search-form.ajax_search .fm-search-results .fm-dataset {
  display: flex;
  flex-direction: column;
}
.search_box.form .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item, .header-layout7 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item, .header-layout8 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item, .header-layout9 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item, .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item, .cide-mobile .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item {
  flex: 0 0 100%;
  display: flex;
  flex-direction: row;
  padding: 0;
  margin-bottom: 20px;
}
.search_box.form .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a, .header-layout7 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a, .header-layout8 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a, .header-layout9 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a, .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a, .cide-mobile .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 85px;
  flex: 0 0 85px;
  max-width: 85px;
}
.search_box.form .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a img, .header-layout7 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a img, .header-layout8 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a img, .header-layout9 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a img, .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a img, .cide-mobile .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a img {
  width: 68px;
  flex: 0 0 68px;
  max-width: 68px;
  height: auto;
  margin: 0 15px 0 0;
}
.search_box.form .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .result_item_info, .header-layout7 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .result_item_info, .header-layout8 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .result_item_info, .header-layout9 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .result_item_info, .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .result_item_info, .cide-mobile .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .result_item_info {
  font-size: 14px;
  font-weight: 400;
}
.search_box.form .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .star-rating, .header-layout7 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .star-rating, .header-layout8 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .star-rating, .header-layout9 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .star-rating, .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .star-rating, .cide-mobile .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .star-rating {
  display: none;
}
.search_box.form .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .product-item-cat-title, .header-layout7 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .product-item-cat-title, .header-layout8 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .product-item-cat-title, .header-layout9 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .product-item-cat-title, .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .product-item-cat-title, .cide-mobile .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .product-item-cat-title {
  font-size: 10px;
}
.search_box.form .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .result_item_title, .header-layout7 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .result_item_title, .header-layout8 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .result_item_title, .header-layout9 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .result_item_title, .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .result_item_title, .cide-mobile .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .result_item_title {
  line-height: 16px;
  margin-bottom: 8px;
}
.search_box.form .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .amount, .header-layout7 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .amount, .header-layout8 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .amount, .header-layout9 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .amount, .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .amount, .cide-mobile .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .amount {
  font-size: 15px;
  font-weight: 400;
}
.search_box.form .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item:last-child, .header-layout7 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item:last-child, .header-layout8 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item:last-child, .header-layout9 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item:last-child, .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item:last-child, .cide-mobile .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .cide-mobile .fm-search-form.ajax_search .fm-search-results {
    border: none;
    max-height: 300px;
    overflow-y: scroll;
    left: 0 !important;
    width: 383px;
    top: 55px !important;
    box-shadow: 8px 6px 30px 0 rgba(0, 0, 0, 0.06);
  }
}
#fm-search-modal .modal-header button.close {
  opacity: 1;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  margin: 30px 0 30px auto;
  padding: 10px 0;
  width: 100%;
  justify-content: center;
}
#fm-search-modal .modal-header button.close .button-title {
  font-size: 12px;
  font-weight: 400;
  line-height: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: #232529;
  display: none;
}
#fm-search-modal .modal-header button.close svg.fm-icon {
  width: 25px;
  height: 25px;
  fill: #232529;
  border: 1px solid #232529;
  -webkit-border-radius: 90px;
  -moz-border-radius: 90px;
  border-radius: 90px;
  padding: 5px;
}
#fm-search-modal .modal-header button.close svg.fm-icon:hover {
  fill: #f33c3c;
  border: 1px solid #f33c3c;
}
#fm-search-modal .modal-header button.close:hover .button-title {
  color: #f33c3c;
}
#fm-search-modal .modal-header .modal-title {
  font-size: 14px;
  color: #232529;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
}
#fm-search-modal .modal-body.search_form_wrapper {
  display: flex;
  justify-content: center;
  padding: 0;
}
#fm-search-modal .search_form_content {
  padding: 0 15px;
  width: 100%;
  max-width: 1200px;
}
#fm-search-modal .search_form_content .fm-search-form {
  height: inherit;
  width: 100%;
}
#fm-search-modal .search_form_content .fm-search-form .search_text_input {
  color: #999999;
  border: none;
  font-size: 16px;
  padding: 10px 20px;
  line-height: 30px;
  background: none 0% 0%/auto repeat scroll padding-box border-box #f0f1f4 !important;
  z-index: 111;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
#fm-search-modal .search_form_content .fm-search-form .search_text_input::placeholder {
  color: inherit;
}
#fm-search-modal .search_form_content .fm-search-form .search_text_input:focus {
  color: #232529;
}
#fm-search-modal .search_form_content .fm-search-form .search_text_input:focus ~ button[type=submit] {
  color: #232529;
}
#fm-search-modal .search_form_content .fm-search-form .search_text_input:focus ~ button[type=submit] svg.fm-icon {
  fill: #232529;
}
#fm-search-modal .search_form_content .fm-search-form button[type=submit] {
  width: 80px;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  background-color: #f33c3c;
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  z-index: 999;
  letter-spacing: 0;
}
#fm-search-modal .search_form_content .fm-search-form button[type=submit] svg.fm-icon {
  fill: #fff;
  width: 18px;
  height: 18px;
}
#fm-search-modal .search_form_content .fm-search-form.ajax_search > .twitter-typeahead {
  width: 100%;
}

#fm-account-modal .account-modal {
  height: 100%;
  display: flex;
  align-items: center;
}
#fm-account-modal.show .account-modal .modal-content {
  background: none;
  border: none;
}
#fm-account-modal.show .account-modal .modal-content .cide-close-btn {
  display: none;
}
#fm-account-modal.show .account-modal .modal-content .modal-body {
  background: #ffffff;
  padding: 30px 30px 30px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content ul.nav-tabs {
  border: none;
  padding: 0;
  margin-bottom: 0;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content ul.nav-tabs li.nav-item {
  border: none;
  padding: 0;
  margin: 0;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content ul.nav-tabs li.nav-item a.nav-link {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  height: 40px;
  line-height: 40px;
  padding: 0 30px;
  z-index: 1;
  width: auto;
  display: flex;
  justify-content: center;
  position: relative;
  border: none;
  color: #999999;
  letter-spacing: 2px;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content ul.nav-tabs li.nav-item a.nav-link::before, #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content ul.nav-tabs li.nav-item a.nav-link::after {
  content: "";
  display: block;
  position: absolute;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content ul.nav-tabs li.nav-item a.nav-link::before {
  width: 100px;
  height: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  z-index: -1;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content ul.nav-tabs li.nav-item a.nav-link::after {
  width: 100%;
  height: 1px;
  background: #e4e4e4;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  z-index: -1;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content ul.nav-tabs li.nav-item a.nav-link.active {
  color: #232529;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content ul.nav-tabs li.nav-item a.nav-link.active::after {
  background-color: #232529;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane > h2 {
  display: none;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form {
  padding: 40px 0 10px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin: 0;
  border: none;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form .woocommerce-form-row {
  margin: 0 0 15px 0;
  list-style-position: inside;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form input::placeholder {
  opacity: 0;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form .woocommerce-button.button {
  width: 100%;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form .woocommerce-LostPassword.lost_password {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  transform: translateY(0);
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form .woocommerce-LostPassword.lost_password label {
  font-size: 13px;
  font-weight: 500;
  color: #232529;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form .woocommerce-LostPassword.lost_password a {
  color: #232529;
  border-bottom: 1px solid #ffffff;
  line-height: 20px;
  -webkit-transition: border-color 0.25s linear 0s;
  -moz-transition: border-color 0.25s linear 0s;
  -ms-transition: border-color 0.25s linear 0s;
  -o-transition: border-color 0.25s linear 0s;
  transition: border-color 0.25s linear 0s;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form .woocommerce-LostPassword.lost_password a:hover {
  border-color: #232529;
}

@media (max-width: 767px) {
  #fm-search-modal .modal-header button.close {
    width: 100%;
    justify-content: center;
  }
}
#woosq-popup {
  background-color: #f5f5f5;
}
#woosq-popup .thumbnails .thumbnail {
  background-color: #f5f5f5;
}
#woosq-popup .thumbnails .thumbnail img {
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 460/460;
  object-fit: cover;
}
#woosq-popup .thumbnails .slick-slider img {
  max-height: 565px;
}
#woosq-popup .thumbnails .slick-slider .slick-arrow {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.07);
}
#woosq-popup .thumbnails .slick-slider .slick-arrow:before {
  font-size: 20px;
  color: #aaaaaa;
  margin-left: 11px;
  margin-bottom: 2px;
}
#woosq-popup .thumbnails .slick-slider .slick-arrow.slick-prev {
  left: 5px;
}
#woosq-popup .thumbnails .slick-slider .slick-arrow.slick-prev:before {
  margin-left: 17px;
}
#woosq-popup .thumbnails .slick-slider .slick-arrow.slick-next {
  right: 5px;
}
#woosq-popup .thumbnails .slick-slider .slick-arrow:hover {
  background-color: #f33c3c;
}
#woosq-popup .thumbnails .slick-slider .slick-arrow:hover:before {
  color: #fff;
}
#woosq-popup .thumbnails .slick-slider .slick-dots li.slick-active button:before {
  background-color: transparent;
  box-shadow: 0 0 0 2px #f33c3c;
}
#woosq-popup button.mfp-close {
  background: none;
  padding: 0;
  margin: 5px 5px 0 0;
  letter-spacing: 0;
}
#woosq-popup button.mfp-close:before {
  font-size: 18px;
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: background-color 0.3s linear 0s;
  -moz-transition: background-color 0.3s linear 0s;
  -ms-transition: background-color 0.3s linear 0s;
  -o-transition: background-color 0.3s linear 0s;
  transition: background-color 0.3s linear 0s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
#woosq-popup button.mfp-close:hover:before {
  background-color: #f8f8f8;
}
#woosq-popup .summary {
  padding: 50px 30px 30px;
  overflow-y: auto;
  display: flex;
  align-items: center;
}
#woosq-popup .summary .woocommerce-product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
#woosq-popup .summary .woocommerce-product-rating .star-rating {
  letter-spacing: 4px;
  font-size: 11px;
  color: #ff1515;
  margin: 0 8px 0 0;
  width: 74px;
  line-height: 1em;
}
#woosq-popup .summary .woocommerce-product-rating a.woocommerce-review-link {
  color: #999999;
}
#woosq-popup .summary h1.product_title {
  font-size: 30px;
  font-weight: 500;
  color: #232529;
  margin-bottom: 18px;
}
#woosq-popup .summary .out-of-stock {
  font-size: 20px;
}
#woosq-popup .summary .price {
  font-size: 20px;
  font-weight: 500;
  color: #232529;
}
#woosq-popup .summary .price del {
  color: #999999;
  font-size: 16px;
}
#woosq-popup .summary .price ins {
  text-decoration: unset !important;
  color: #232529;
  font-weight: 500;
}
#woosq-popup .summary > .price {
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
#woosq-popup .summary > .price::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #e4e4e4;
  left: 0;
  bottom: 0;
}
#woosq-popup .summary .woocs_price_code .ins {
  text-decoration: none !important;
}
#woosq-popup .summary .woocommerce-product-details__short-description {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 2rem;
}
#woosq-popup .summary .woocommerce-product-details__short-description p {
  margin-bottom: 8px;
}
#woosq-popup .summary .woocommerce-product-details__short-description ul {
  padding-left: 0;
  list-style: none;
}
#woosq-popup .summary .woocommerce-product-details__short-description ul li {
  position: relative;
  line-height: 24px;
  padding-left: 16px;
}
#woosq-popup .summary .woocommerce-product-details__short-description ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #ddd;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 0;
}
#woosq-popup .summary .woocommerce-product-details__short-description ul li + li {
  margin-top: 6px;
}
#woosq-popup .summary form.cart {
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
#woosq-popup .summary form.cart .quantity {
  border: 2px solid #d5d5d5;
  height: 55px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  position: relative;
  flex: 0 0 calc(50% - 5px);
  max-width: calc(50% - 5px);
  width: calc(50% - 5px);
  margin: 0 10px 20px 0;
}
#woosq-popup .summary form.cart .quantity .quantity-group-buttons {
  border: none;
  display: flex;
  flex-direction: column;
}
#woosq-popup .summary form.cart .quantity .quantity-group-buttons > a {
  position: absolute;
  width: 30px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
#woosq-popup .summary form.cart .quantity .quantity-group-buttons > a.quantity-plus {
  right: 0;
  top: 0;
}
#woosq-popup .summary form.cart .quantity .quantity-group-buttons > a.quantity-minus {
  left: 0;
  top: 0;
}
#woosq-popup .summary form.cart .quantity .input-text {
  height: 50px;
  border: none;
  display: flex;
  min-height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #000;
}
#woosq-popup .summary form.cart .quantity.hidden {
  border: none;
  height: 0;
  min-height: 0;
}
#woosq-popup .summary form.cart .single_add_to_cart_button {
  flex: 0 0 calc(50% - 5px);
  max-width: calc(50% - 5px);
  width: calc(50% - 5px);
}
#woosq-popup .summary form.cart button.single_add_to_cart_button {
  font-weight: 600;
  background: #232529;
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  height: 55px;
  padding: 0 15px;
  margin: 0 0 25px 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
#woosq-popup .summary form.cart button.single_add_to_cart_button svg.fm-icon {
  display: none;
  width: 15px;
  height: 15px;
  margin-right: 6px;
  fill: #ffffff;
}
#woosq-popup .summary form.cart button.single_add_to_cart_button:hover {
  background: #f33c3c;
}
#woosq-popup .summary form.cart .tinv-wraper {
  flex: 0 0 50%;
}
#woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button {
  display: flex;
  align-items: center;
  margin: 0 0 8px 0;
  color: #232529;
  font-size: 15px;
  font-weight: 500;
  width: 100%;
}
#woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button::before {
  display: none !important;
}
#woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button span.tinvwl_add_to_wishlist-text, #woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button span.tinvwl_add_to_wishlist-text, #woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button span.tinvwl_remove_from_wishlist-text {
  margin-left: 3px;
}
#woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button svg.fm-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  fill: #999999;
}
#woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button svg.fm-icon.icon-hover {
  display: none;
  fill: #aaaaaa;
}
#woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button svg.fm-icon.icon-hover:hover {
  fill: #ec1d25;
}
#woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button .cide_yith_wcwl_icon, #woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button .cide_tinv_wl_icon {
  border: 1px solid;
  margin-right: 10px;
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border-color: #e4e4e4;
  -webkit-transition: border-color 0.25s linear 0s;
  -moz-transition: border-color 0.25s linear 0s;
  -ms-transition: border-color 0.25s linear 0s;
  -o-transition: border-color 0.25s linear 0s;
  transition: border-color 0.25s linear 0s;
}
#woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon, #woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button:hover svg.fm-icon {
  display: none;
}
#woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon.icon-hover, #woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button:hover svg.fm-icon.icon-hover {
  display: inline-block;
}
#woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button.disabled-add-wishlist {
  color: #999999;
}
#woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button:hover .cide_yith_wcwl_icon, #woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button:hover .cide_tinv_wl_icon {
  border-color: #232529;
}
#woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button:hover svg.fm-icon {
  fill: #232529;
}
#woosq-popup .summary a.button.compare {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: #232529;
  height: 50px;
  border: 1px solid #232529;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
}
#woosq-popup .summary a.button.compare svg.fm-icon {
  margin-right: 6px;
  fill: #232529;
}
#woosq-popup .summary a.button.compare:hover {
  background: #f33c3c;
  color: #FFF;
  border-color: #f33c3c;
}
#woosq-popup .summary a.button.compare:hover svg.fm-icon {
  fill: #ffffff;
}
#woosq-popup .summary .product_meta, #woosq-popup .summary .product-share {
  display: none;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations {
  position: relative;
  margin-bottom: 0;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations tr {
  display: flex;
  margin-bottom: 20px;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations tr td.label {
  min-width: 68px;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations tr td.label .woo-selected-variation-item-name {
  display: none;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations tr td.label label {
  position: relative;
  margin-bottom: 0;
  font-size: 12px;
  text-transform: uppercase;
  color: #000;
  line-height: 30px;
  font-weight: 700;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations tr td.label label::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 28px;
  width: 100%;
  height: 1px;
  background: #000000;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations select {
  background-image: url(//www.mspvn.com/wp-content/themes/cide/assets/images/select_icon_single_product.svg);
  background-position: right 8px top 50%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .select2-container--default {
  height: 50px;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .select2-container--default .select2-selection--single {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  height: 50px;
  line-height: 50px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: bold;
  color: #999999;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .select2-container--default .select2-selection--single > .select2-selection__arrow {
  height: 100%;
  width: 28px;
  background-position: left center;
  background-size: auto;
  background-repeat: no-repeat;
  background-image: url(//www.mspvn.com/wp-content/themes/cide/assets/images/select_icon_single_product.svg);
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .select2-container--default .select2-selection--single > .select2-selection__arrow > b {
  display: none;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.color-variable-item {
  width: 26px;
  height: 26px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.color-variable-item span.variable-item-span-color {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.color-variable-item span.variable-item-span-color::after {
  display: none;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.color-variable-item:not(.radio-variable-item) {
  box-shadow: 0 0 0 1px transparent !important;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.color-variable-item:not(.radio-variable-item):hover, #woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.color-variable-item:not(.radio-variable-item).selected {
  box-shadow: 0 0 0 1px #e4e4e4 !important;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.image-variable-item {
  width: 46px;
  height: 46px;
  padding: 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.image-variable-item:not(.radio-variable-item) {
  box-shadow: 0 0 0 1px transparent !important;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.image-variable-item:not(.radio-variable-item):hover, #woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.image-variable-item:not(.radio-variable-item).selected {
  box-shadow: 0 0 0 1px #e4e4e4 !important;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.image-variable-item > img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item {
  width: auto;
  margin: 0 10px 5px 0;
  font-size: 16px;
  line-height: 18px;
  padding: 0 6px;
  background: none;
  height: 36px;
  min-width: 36px;
  color: #999999;
  -webkit-transition: box-shadow 0.25s linear 0s;
  -moz-transition: box-shadow 0.25s linear 0s;
  -ms-transition: box-shadow 0.25s linear 0s;
  -o-transition: box-shadow 0.25s linear 0s;
  transition: box-shadow 0.25s linear 0s;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item span {
  font-size: inherit;
  text-transform: capitalize;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item:hover, #woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item.selected {
  color: #232529;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.radio-variable-item {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  margin-right: 16px;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.radio-variable-item > * {
  margin: 0 3px;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item:not(.radio-variable-item) {
  box-shadow: 0 0 0 1px #e4e4e4 !important;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item:not(.radio-variable-item):hover, #woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item:not(.radio-variable-item).selected {
  box-shadow: 0 0 0 1px #232529 !important;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper.radio-variable-wrapper {
  display: flex;
  align-items: center;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .woo-variation-items-wrapper {
  display: flex;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .reset_variations {
  position: relative;
  display: block;
  margin: 0 0 0 15px;
  color: #232529;
  font-size: 15px;
  padding-right: 15px;
  border-bottom: 1px solid #232529;
  text-decoration: none;
  line-height: inherit;
  height: 26px;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .reset_variations::before, #woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .reset_variations::after {
  display: flex;
  content: "";
  width: 1px;
  height: 12px;
  background: #232529;
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -3px;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .reset_variations::before {
  transform: rotate(45deg);
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .reset_variations::after {
  transform: rotate(-45deg);
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .reset_variations:hover {
  color: #f33c3c;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .reset_variations:hover::before, #woosq-popup .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .reset_variations:hover::after {
  background: #f33c3c;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart .single_variation_wrap .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart .single_variation_wrap .woocommerce-variation-add-to-cart .quantity {
  width: 140px;
  flex: 0 0 140px;
  margin: 0 10px 10px 0;
}
#woosq-popup .type-product.product.product-type-variable .summary form.cart .single_variation_wrap .woocommerce-variation-price {
  margin-bottom: 15px;
}
#woosq-popup .type-product.product.product-type-variable .woocommerce-variation-add-to-cart {
  display: inline-block;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form .group_table {
  flex: 0 0 100%;
  border: 1px solid #e4e4e4;
  margin-bottom: 25px;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form .group_table tr {
  height: auto;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form .group_table tr td {
  padding: 10px 0 10px 15px;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form .group_table tr td.woocommerce-grouped-product-list-item__price {
  padding-left: 0;
  padding-right: 15px;
  text-align: right;
  width: 68px;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form .group_table tr td.woocommerce-grouped-product-list-item__quantity {
  flex: 0 0 100px;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form .group_table tr td.woocommerce-grouped-product-list-item__label {
  flex: 0 0 190px;
  line-height: 32px;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form .group_table tr ~ tr {
  border-top: 1px solid #e4e4e4;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item {
  height: auto;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item a.button {
  display: flex;
  align-items: center;
  justify-content: center;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item a.button.product_type_simple {
  background: #999999;
  color: #ffffff;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  height: 50px;
  padding: 0 30px;
  min-width: 150px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item a.button.product_type_simple svg.fm-icon {
  width: 15px;
  height: 15px;
  margin-right: 6px;
  fill: #ffffff;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item a.button.product_type_simple:hover {
  background: #f33c3c;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item .woocommerce-grouped-product-list-item__quantity .quantity {
  margin: 0;
  border-width: 1px;
  height: 32px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  flex: 0 0 88px;
  min-width: 88px;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item .woocommerce-grouped-product-list-item__quantity .quantity .quantity-group-buttons > a {
  height: 30px;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item .woocommerce-grouped-product-list-item__quantity .quantity .quantity-group-buttons > a svg {
  width: 10px;
  height: 10px;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item .woocommerce-grouped-product-list-item__quantity .quantity .input-text {
  height: 30px;
  font-size: 15px;
  color: #232529;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item .woocommerce-grouped-product-list-item__label label {
  margin: 0;
  line-height: 16px;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item .woocommerce-grouped-product-list-item__label label a {
  color: #232529;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item .woocommerce-grouped-product-list-item__price .woocs_price_code {
  line-height: 16px;
  color: #232529;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item .woocommerce-grouped-product-list-item__price .woocs_price_code del {
  color: #999999;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item .woocommerce-grouped-product-list-item__price .woocs_price_code ins {
  text-decoration: none !important;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form .woocommerce-grouped-product-list .out-of-stock {
  margin-bottom: 0;
}
#woosq-popup .type-product.product.product-type-grouped .summary form.cart.grouped_form .single_add_to_cart_button {
  flex: 0 0 100%;
  max-width: 100%;
}

#cart-canvas {
  z-index: 100000;
}
.theme-cide #cart-canvas .offcanvas-content .cart_box_head {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 60px 20px 0 20px;
  z-index: 2;
}
.theme-cide #cart-canvas .offcanvas-content .cart_box_head > h3 {
  margin-bottom: 20px;
  line-height: 20px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 11px;
  position: relative;
  color: #12151a;
  display: block;
  width: 100%;
  text-align: center;
}
.theme-cide #cart-canvas .offcanvas-content .cart_box_head > h3::after {
  display: inline-block;
  content: "";
  width: calc(100% - 120px);
  height: 1px;
  background: #d6dae0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.theme-cide #cart-canvas .cide-close-btn {
  position: absolute;
  right: 0;
  left: 0;
  top: 20px;
  line-height: 24px;
  height: auto;
  width: 100%;
  display: block;
}
.theme-cide #cart-canvas .cide-close-btn > .c-button__text {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: center;
}
.theme-cide #cart-canvas .cide-close-btn .button-title {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  line-height: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #232529;
  display: none;
}
.theme-cide #cart-canvas .cide-close-btn .button-title:hover {
  color: #f33c3c;
}
.theme-cide #cart-canvas .cide-close-btn svg.fm-icon {
  width: 25px;
  height: 25px;
  fill: #232529;
  border: 1px solid #232529;
  -webkit-border-radius: 90px;
  -moz-border-radius: 90px;
  border-radius: 90px;
  padding: 5px;
}
.theme-cide #cart-canvas .cide-close-btn svg.fm-icon:hover {
  fill: #f33c3c;
  border: 1px solid #f33c3c;
}

.theme-cide #account-canvas .account_form_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 20px;
  position: relative;
}
.theme-cide #account-canvas .account_form_content .cide-close-btn {
  position: absolute;
  line-height: 24px;
  height: auto;
  width: auto;
  right: 0;
  top: 0;
}
.theme-cide #account-canvas .account_form_content .cide-close-btn > .c-button__text {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.theme-cide #account-canvas .account_form_content .cide-close-btn .button-title {
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  text-transform: capitalize;
  color: #232529;
}
.theme-cide #account-canvas .account_form_content .cide-close-btn .button-title:hover {
  color: #f33c3c;
}
.theme-cide #account-canvas .account_form_content .cide-close-btn svg.fm-icon {
  width: 15px;
  height: 15px;
  margin-left: 5px;
  fill: #232529;
}
.theme-cide #account-canvas .account_form_content .cide-close-btn:focus {
  outline: none;
}
.theme-cide #account-canvas .account_form_content .nav-tabs {
  position: absolute;
  left: 0;
  top: 0;
  border: none;
}
.theme-cide #account-canvas .account_form_content .nav-tabs .nav-link {
  padding: 0;
  border: none;
  font-weight: 500;
  font-size: 15px;
  text-transform: capitalize;
  color: #999999;
  margin-right: 10px;
}
.theme-cide #account-canvas .account_form_content .nav-tabs .nav-link.active {
  color: #232529;
}
.theme-cide #account-canvas .account_form_content .tab-content .woocommerce-form {
  padding: 0;
  border: none;
}

#hamburger-canvas .cide-close-btn {
  position: static;
  line-height: 24px;
  height: auto;
  width: auto;
  right: 25px;
  top: 25px;
}
#hamburger-canvas .cide-close-btn > .c-button__text {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  width: max-content;
}
#hamburger-canvas .cide-close-btn .button-title {
  font-weight: 500;
  font-size: 15px;
  text-transform: capitalize;
  color: #232529;
  display: none;
}
#hamburger-canvas .cide-close-btn .button-title:hover {
  color: #f33c3c;
}
#hamburger-canvas .cide-close-btn svg.fm-icon {
  width: 25px;
  height: 25px;
  fill: #232529;
  border: 1px solid #232529;
  -webkit-border-radius: 90px;
  -moz-border-radius: 90px;
  border-radius: 90px;
  padding: 5px;
}
#hamburger-canvas .cide-close-btn svg.fm-icon:hover {
  fill: #f33c3c;
  border: 1px solid #f33c3c;
}

#cart-canvas .offcanvas-content > h3 {
  padding: 0 15px;
  margin: 0;
  line-height: 40px;
}

#search-canvas .offcanvas-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 15px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
#search-canvas .offcanvas-content .js-offcanvas-close.cide-close-btn {
  position: static;
  line-height: 24px;
  display: block;
  margin: 30px 0;
}
#search-canvas .offcanvas-content .js-offcanvas-close.cide-close-btn > .c-button__text {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
#search-canvas .offcanvas-content .js-offcanvas-close.cide-close-btn .button-title {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  line-height: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #232529;
}
#search-canvas .offcanvas-content .js-offcanvas-close.cide-close-btn .button-title:hover {
  color: #f33c3c;
}
#search-canvas .offcanvas-content .js-offcanvas-close.cide-close-btn svg.fm-icon {
  width: 8px;
  height: 8px;
  margin-left: 6px;
  fill: #232529;
}
#search-canvas .offcanvas-content > h2 {
  color: #232529;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 25px;
  width: 100%;
  text-align: left;
}
#search-canvas .offcanvas-content .search_form_content {
  display: flex;
  justify-content: center;
}
#search-canvas .offcanvas-content .search_form_content .fm-search-form {
  height: 50px;
  width: 100%;
}
#search-canvas .offcanvas-content .search_form_content .fm-search-form .search_text_input {
  border-width: 0 0 2px 0;
  border-color: #232529;
  font-size: 16px;
  padding: 10px 0;
  line-height: 30px;
  color: #232529;
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
#search-canvas .offcanvas-content .search_form_content .fm-search-form .search_text_input::placeholder {
  color: inherit;
}
#search-canvas .offcanvas-content .search_form_content .fm-search-form .search_text_input:focus ~ button[type=submit] {
  color: #232529;
}
#search-canvas .offcanvas-content .search_form_content .fm-search-form .search_text_input:focus ~ button[type=submit] svg.fm-icon {
  fill: #232529;
}
#search-canvas .offcanvas-content .search_form_content .fm-search-form button[type=submit] {
  position: absolute;
  right: 0;
  bottom: 0;
  background: none;
  color: #232529;
  padding-right: 0;
}
#search-canvas .offcanvas-content .search_form_content .fm-search-form button[type=submit] svg.fm-icon {
  fill: #999999;
  width: 20px;
  height: 20px;
}
#search-canvas .offcanvas-content .search_form_content .fm-search-form button[type=submit] svg.fm-icon:hover {
  fill: #232529;
}

.scroll_to_top {
  position: fixed;
  display: inline-block;
  right: -15px;
  bottom: 50px;
  border: 2px solid;
  z-index: 999;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 40px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-weight: bold;
  font-size: 15px;
  background: none;
  color: #232529;
  -webkit-transition: right 0.3s linear 0s;
  -moz-transition: right 0.3s linear 0s;
  -ms-transition: right 0.3s linear 0s;
  -o-transition: right 0.3s linear 0s;
  transition: right 0.3s linear 0s;
}
.scroll_to_top.show {
  opacity: 1;
  visibility: visible;
  right: 25px;
}
.scroll_to_top.percent_circle {
  border: 2px solid #88888815;
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-weight: 700;
}
.scroll_to_top.percent_circle .backtotop-round {
  transform: rotate(-90deg);
  fill: none;
  stroke: #f33c3c;
  stroke-width: 5px;
  stroke-dasharray: 0, 999;
  position: absolute;
  left: -6px;
  top: -6px;
  width: 48px;
  height: 48px;
  max-width: inherit;
}
.scroll_to_top.percent_circle .up-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  margin-top: -1px;
  fill: #555555;
}
.single-product .scroll_to_top {
  display: none;
}

@media (min-width: 1025px) {
  .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item {
    flex: 0 0 20%;
    padding: 0 15px;
    margin-bottom: 30px;
  }

  #fm-search-modal .modal-header .modal-title {
    margin-bottom: 25px;
    font-size: 20px;
  }
  #fm-search-modal .modal-header button.close {
    margin-top: 60px;
  }
  #fm-search-modal .search_form_content .fm-search-form .search_text_input {
    font-size: 20px;
    height: 68px;
    padding: 0 20px;
  }
  #fm-search-modal .search_form_content .fm-search-form button[type=submit] {
    width: 100px;
  }
  #fm-search-modal .search_form_content .fm-search-form button[type=submit]:hover {
    opacity: 0.8;
  }
  #fm-search-modal .search_form_content .fm-search-form button[type=submit] svg.fm-icon {
    width: 25px;
    height: 25px;
  }

  #search-canvas .offcanvas-content .js-offcanvas-close.cide-close-btn {
    margin-bottom: 80px;
    margin-top: 60px;
  }
  #search-canvas .offcanvas-content .search_form_content .fm-search-form .search_text_input {
    font-size: 32px;
    padding: 0 0 25px 0;
    height: 68px;
  }
  #search-canvas .offcanvas-content .search_form_content .fm-search-form button[type=submit] svg.fm-icon {
    width: 40px;
    height: 40px;
  }

  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content ul.nav-tabs li.nav-item a.nav-link {
    padding: 0 50px;
  }
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form .woocommerce-form-row {
    margin-bottom: 20px;
  }
}
.woocommerce-page .woocommerce-breadcrumb {
  /* Shop Element - Breadcrumb */
  font-size: 14px;
  color: #232529;
  line-height: inherit;
}
.woocommerce-page .woocommerce-breadcrumb a {
  font-size: inherit;
  color: #232529;
}
.woocommerce-page .woocommerce-breadcrumb a:hover {
  color: #f33c3c;
}
.woocommerce-page .woocommerce-breadcrumb span {
  line-height: 22px;
  display: inline-flex;
  align-items: center;
  font-size: 0;
  color: #232529;
}
.woocommerce-page .woocommerce-breadcrumb span::before {
  display: inline-block;
  margin: 0 8px 0 7px;
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid #232529;
  transform: rotate(45deg);
  border-width: 1px 1px 0 0;
}
.woocommerce-page .woocommerce-pagination ul li a, .woocommerce-page .woocommerce-pagination ul li span {
  color: #999999;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  border-width: 2px;
  line-height: 38px;
}
.woocommerce-page .woocommerce-pagination ul li a:hover, .woocommerce-page .woocommerce-pagination ul li a.current, .woocommerce-page .woocommerce-pagination ul li span:hover, .woocommerce-page .woocommerce-pagination ul li span.current {
  background-color: #232529;
  border-color: #232529;
  color: #FFF;
}
.woocommerce-page .woocommerce-pagination ul li a:hover svg.fm-icon, .woocommerce-page .woocommerce-pagination ul li a.current svg.fm-icon, .woocommerce-page .woocommerce-pagination ul li span:hover svg.fm-icon, .woocommerce-page .woocommerce-pagination ul li span.current svg.fm-icon {
  fill: #FFF;
}
.woocommerce-page .woocommerce-pagination ul li a:hover svg.fm-icon :hover, .woocommerce-page .woocommerce-pagination ul li a.current svg.fm-icon :hover, .woocommerce-page .woocommerce-pagination ul li span:hover svg.fm-icon :hover, .woocommerce-page .woocommerce-pagination ul li span.current svg.fm-icon :hover {
  fill: #FFF;
}
.woocommerce-page .woocommerce-pagination ul li a.prev, .woocommerce-page .woocommerce-pagination ul li span.prev {
  width: auto;
  padding: 0 15px 0 12px;
}
.woocommerce-page .woocommerce-pagination ul li a.next, .woocommerce-page .woocommerce-pagination ul li span.next {
  width: auto;
  padding: 0 12px 0 15px;
}
.woocommerce-page .cide_woof_pagination_trigger a.cide_woof_pagination_trigger_action {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: 170px;
  height: 50px;
  display: inline-flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  background: #232529;
  color: #ffffff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -moz-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -ms-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -o-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
}
.woocommerce-page .cide_woof_pagination_trigger a.cide_woof_pagination_trigger_action.disabled {
  display: none;
}
.woocommerce-page .cide_woof_pagination_trigger a.cide_woof_pagination_trigger_action:hover {
  background-color: #f33c3c;
}
.woocommerce-page .cide_woof_pagination_trigger .loaded_msg {
  display: none;
  width: 100%;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.woocommerce-page .cide_woof_pagination_trigger svg.fm-icon {
  display: none;
}
.woocommerce-page .cide_woof_pagination_trigger.disabled .loaded_msg {
  display: inline-block;
  color: #f33c3c;
  font-weight: 500;
  font-size: 12px;
  max-width: 300px;
}
.woocommerce-page .cide_woof_pagination_trigger.disabled .cide_woof_pagination_trigger_action {
  display: none;
}
.woocommerce-page .cide_woof_pagination_trigger.load {
  text-align: center;
}
.woocommerce-page .sidebar-left .cide_woof_pagination_trigger.load, .woocommerce-page .sidebar-right .cide_woof_pagination_trigger.load {
  text-align: left;
}
.woocommerce-page .variable-items-wrapper {
  /* Shop Element - Variation Swatches */
}
.woocommerce-page .variable-items-wrapper li.woo-variation-swatches-variable-item-more a {
  font-size: 11px;
  color: #888;
  margin-left: 5px;
  text-transform: lowercase;
}
body.woo-variation-swatches .woocommerce-page .variable-items-wrapper li.variable-item.color-variable-item {
  box-shadow: none;
  margin: 3px 6px 3px 0;
}
body.woo-variation-swatches .woocommerce-page .variable-items-wrapper li.variable-item.color-variable-item:hover, body.woo-variation-swatches .woocommerce-page .variable-items-wrapper li.variable-item.color-variable-item.selected {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
}
body.woo-variation-swatches .woocommerce-page .variable-items-wrapper li.variable-item.color-variable-item.selected:hover {
  box-shadow: 0 0 0 1px black;
}

.select2-container {
  /* Shop Element - Select2 */
}
.select2-container.select2-container--default .select2-selection--single > .select2-selection__arrow {
  background-position: left center;
  background-size: auto;
  background-repeat: no-repeat;
  background-image: url(//www.mspvn.com/wp-content/themes/cide/assets/images/select_icon.svg);
}
.shop-control-quick-search .select2-container.select2-container--default .select2-selection--single > .select2-selection__arrow {
  background-image: url(//www.mspvn.com/wp-content/themes/cide/assets/images/select_icon_single_product.svg);
}
.select2-container.select2-container--default .select2-selection--single > .select2-selection__arrow > b {
  display: none;
}
.select2-container.select2-container--default .select2-dropdown {
  min-width: 188px;
  border: none;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}
.select2-container.select2-container--default .select2-dropdown .select2-results > .select2-results__options {
  max-height: 288px;
}
.select2-container.select2-container--default .select2-dropdown .select2-results > .select2-results__options .select2-results__option {
  padding: 9px 12px;
  color: #232529;
}
.select2-container.select2-container--default .select2-dropdown .select2-results > .select2-results__options .select2-results__option[aria-selected=true], .select2-container.select2-container--default .select2-dropdown .select2-results > .select2-results__options .select2-results__option[data-selected=true], .select2-container.select2-container--default .select2-dropdown .select2-results > .select2-results__options .select2-results__option.select2-results__option--highlighted[aria-selected], .select2-container.select2-container--default .select2-dropdown .select2-results > .select2-results__options .select2-results__option.select2-results__option--highlighted[data-selected] {
  background-color: #eee;
  color: #232529;
}

#yith-wcwl-popup-message {
  /* Shop Element - Wishlist */
  top: 30px !important;
  right: 30px !important;
  margin: 0 !important;
}

#mailpoet_woocommerce_checkout_optin_field,
#mailpoet_woocommerce_checkout_optin_present_field {
  margin-bottom: 10px;
}
#mailpoet_woocommerce_checkout_optin_field label.checkbox,
#mailpoet_woocommerce_checkout_optin_present_field label.checkbox {
  position: static;
}

@media (min-width: 768px) {
  .woocommerce-page .woocommerce-breadcrumb {
    font-size: 14px;
  }
  .woocommerce-page .woocommerce-pagination ul li a, .woocommerce-page .woocommerce-pagination ul li span {
    color: #999999;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    border-width: 2px;
    line-height: 38px;
  }
  .woocommerce-page .woocommerce-pagination ul li a:hover, .woocommerce-page .woocommerce-pagination ul li a.current, .woocommerce-page .woocommerce-pagination ul li span:hover, .woocommerce-page .woocommerce-pagination ul li span.current {
    background-color: #232529;
    border-color: #232529;
    color: #FFF;
  }
  .woocommerce-page .woocommerce-pagination ul li a:hover svg.fm-icon, .woocommerce-page .woocommerce-pagination ul li a.current svg.fm-icon, .woocommerce-page .woocommerce-pagination ul li span:hover svg.fm-icon, .woocommerce-page .woocommerce-pagination ul li span.current svg.fm-icon {
    fill: #FFF;
  }
  .woocommerce-page .woocommerce-pagination ul li a:hover svg.fm-icon :hover, .woocommerce-page .woocommerce-pagination ul li a.current svg.fm-icon :hover, .woocommerce-page .woocommerce-pagination ul li span:hover svg.fm-icon :hover, .woocommerce-page .woocommerce-pagination ul li span.current svg.fm-icon :hover {
    fill: #FFF;
  }
  .woocommerce-page .woocommerce-pagination ul li a.prev, .woocommerce-page .woocommerce-pagination ul li span.prev {
    width: auto;
    padding: 0 15px 0 12px;
  }
  .woocommerce-page .woocommerce-pagination ul li a.next, .woocommerce-page .woocommerce-pagination ul li span.next {
    width: auto;
    padding: 0 12px 0 15px;
  }
  .woocommerce-page .cide_woof_pagination_trigger .loaded_msg {
    display: none;
    width: 100%;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .woocommerce-page .cide_woof_pagination_trigger svg.fm-icon {
    display: none;
  }
  .woocommerce-page .cide_woof_pagination_trigger.disabled .loaded_msg {
    display: inline-block;
    color: #000000;
    background: #f1f1f1;
    font-weight: 500;
    padding: 10px;
  }
  .woocommerce-page .cide_woof_pagination_trigger.disabled .cide_woof_pagination_trigger_action {
    display: none;
  }
  .woocommerce-page .variable-items-wrapper {
    /* Shop Element - Variation Swatches */
  }
  .woocommerce-page .variable-items-wrapper li.woo-variation-swatches-variable-item-more a {
    font-size: 11px;
    color: #888;
    margin-left: 5px;
    text-transform: lowercase;
  }
  body.woo-variation-swatches .woocommerce-page .variable-items-wrapper li.variable-item.color-variable-item {
    box-shadow: none !important;
    background-color: transparent !important;
  }
  body.woo-variation-swatches .woocommerce-page .variable-items-wrapper li.variable-item.color-variable-item:hover, body.woo-variation-swatches .woocommerce-page .variable-items-wrapper li.variable-item.color-variable-item.selected {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3) !important;
  }
  body.woo-variation-swatches .woocommerce-page .variable-items-wrapper li.variable-item.color-variable-item.selected:hover {
    box-shadow: 0 0 0 1px black !important;
  }
}
.cide-sidebar-content aside.widget {
  margin-bottom: 26px;
}
.cide-sidebar-content aside.widget .widget-title {
  display: flex;
  align-items: center;
  height: 46px;
  width: 100%;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  border-bottom: 1px solid #e4e6ec;
  padding: 0;
  margin-bottom: 18px;
  text-transform: capitalize;
}
.cide-sidebar-content aside.widget .widget-title:before {
  display: inline-block;
  content: "";
  width: 60px;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.cide-sidebar-content aside.widget .cide-posts-list {
  padding-left: 0;
  padding-right: 0;
  list-style: none;
}
.cide-sidebar-content aside.widget .cide-posts-list .post-item {
  display: flex;
  margin-top: -7px;
  padding-top: 20px;
  padding-bottom: 0;
  position: relative;
  counter-increment: my-awesome-counter;
}
.cide-sidebar-content aside.widget .cide-posts-list .post-item::before {
  content: counter(my-awesome-counter);
  font-size: 12px;
  color: #ffffff;
  background: #232529;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 20px;
  display: none;
}
.cide-sidebar-content aside.widget .cide-posts-list .post-item .post-list-thumb {
  margin-right: 15px;
  flex: 0 0 79px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  overflow: hidden;
}
.cide-sidebar-content aside.widget .cide-posts-list .post-item .post-list-thumb img {
  max-width: 100%;
  height: auto;
  margin-bottom: 0;
}
.cide-sidebar-content aside.widget .cide-posts-list .post-item .post-list-content {
  display: flex;
  flex-direction: column;
}
.cide-sidebar-content aside.widget .cide-posts-list .post-item .post-list-content .post-list-category {
  font-size: 10px;
  line-height: 12px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
  display: none;
}
.cide-sidebar-content aside.widget .cide-posts-list .post-item .post-list-content .post-list-category a {
  color: #999999;
  line-height: inherit;
}
.cide-sidebar-content aside.widget .cide-posts-list .post-item .post-list-content .post-list-category:hover a {
  color: #232529;
}
.cide-sidebar-content aside.widget .cide-posts-list .post-item .post-list-content .post-list-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 19px;
  color: #232529;
  margin-bottom: 6px;
}
.cide-sidebar-content aside.widget .cide-posts-list .post-item .post-list-content .post-list-meta {
  order: -1;
  font-size: 15px;
  line-height: 15px;
  color: #a7acb5;
  font-weight: 500;
  margin-bottom: 8px;
}
.cide-sidebar-content aside.widget .cide-posts-list .post-item.has_background .cat-links {
  font-size: 0;
  line-height: 12px;
  display: none;
}
.cide-sidebar-content aside.widget .cide-posts-list .post-item.has_background .cat-links a {
  font-size: 10px;
  line-height: 12px;
  text-transform: uppercase;
  font-weight: 600;
  color: #999999;
  display: none;
}
.cide-sidebar-content aside.widget .cide-posts-list .post-item.has_background .cat-links a:hover {
  color: #232529;
}
.cide-sidebar-content aside.widget .cide-posts-list .post-item.has_background .cat-links a:first-child {
  display: block;
}
.cide-sidebar-content aside.widget .cide-posts-list .post-item.has_background .post-list-meta .posted-on {
  font-size: 0;
  display: flex;
}
.cide-sidebar-content aside.widget .cide-posts-list .post-item.has_background .post-list-meta .posted-on a {
  font-size: 15px;
  line-height: 15px;
  color: #a7acb5;
  font-weight: 500;
}
.cide-sidebar-content aside.widget .cide-posts-list .post-item.has_background .post-list-meta .post-author {
  display: none;
}
.cide-sidebar-content aside.widget .cide-posts-list .post-item ~ .post-item {
  margin-top: 20px;
  padding-bottom: 0;
  padding-top: 0;
}
.cide-sidebar-content aside.widget > *, .cide-sidebar-content aside.widget > ul, .cide-sidebar-content aside.widget > div, .cide-sidebar-content aside.widget > form {
  padding-left: 0;
  padding-right: 0;
}
.cide-sidebar-content aside.widget > .archive-dropdown, .cide-sidebar-content aside.widget > select {
  padding-left: 15px;
  padding-right: 15px;
}
.cide-sidebar-content aside.widget.widget_block {
  margin-bottom: 17px;
}
.cide-sidebar-content aside.widget.widget_block .wp-block-group__inner-container > h2 {
  display: flex;
  align-items: center;
  height: 46px;
  width: 100%;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  border-bottom: 1px solid #e4e6ec;
  padding: 0;
  margin-bottom: 17px;
  text-transform: capitalize;
  position: relative;
}
.cide-sidebar-content aside.widget.widget_block .wp-block-group__inner-container > h2:before {
  display: inline-block;
  content: "";
  width: 60px;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.cide-sidebar-content aside.widget.widget_block .wp-block-group__inner-container .wp-block-latest-posts li {
  padding: 7px 0;
}
.cide-sidebar-content aside.widget.widget_block .wp-block-group__inner-container .wp-block-latest-posts li a:before {
  margin-right: 8px;
  content: "";
  display: block;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #f33c3c;
}
.cide-sidebar-content aside.widget.widget_block .wp-block-group__inner-container .wp-block-latest-posts li a:hover {
  color: #f33c3c;
}
.cide-sidebar-content aside.widget.widget_block .wp-block-group__inner-container .wp-block-latest-posts li a:hover:before {
  border-left-color: #f33c3c;
}
.cide-sidebar-content aside.widget.widget_block .wp-block-group__inner-container ol.wp-block-latest-comments {
  padding-left: 0;
  margin-bottom: 27px;
  margin-top: 27px;
}
.cide-sidebar-content aside.widget.widget_block .wp-block-group__inner-container ol.wp-block-latest-comments li.wp-block-latest-comments__comment {
  line-height: 1.3;
}
.cide-sidebar-content aside.widget.widget_block .wp-block-group__inner-container ol.wp-block-latest-comments li.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta a.wp-block-latest-comments__comment-author {
  font-style: italic;
  color: #999999;
  margin-right: 3px;
}
.cide-sidebar-content aside.widget.widget_search {
  margin-bottom: 30px;
}
.cide-sidebar-content aside.widget.widget_search .wp-block-search__label {
  display: flex;
  align-items: center;
  height: 46px;
  width: 100%;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  border-bottom: 1px solid #e4e6ec;
  padding: 0;
  margin-bottom: 30px;
  text-transform: capitalize;
  color: #232529;
  position: relative;
}
.cide-sidebar-content aside.widget.widget_search .wp-block-search__label:before {
  display: inline-block;
  content: "";
  width: 60px;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.cide-sidebar-content aside.widget.widget_search .wp-block-search__inside-wrapper .wp-block-search__input {
  background: #f5f6f8;
  border: none;
  padding: 0 25px;
  font-weight: 400;
  font-size: 14px;
  color: #909297;
  -webkit-border-radius: 3px 0px 0px 3px;
  -moz-border-radius: 3px 0px 0px 3px;
  border-radius: 3px 0px 0px 3px;
}
.cide-sidebar-content aside.widget.widget_search .wp-block-search__inside-wrapper .wp-block-search__button {
  width: 100px;
  padding: 0;
  flex: 0 0 100px;
  border: none;
  margin: 0;
  color: #fff;
  background-color: #232529;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.cide-sidebar-content aside.widget.widget_search .wp-block-search__inside-wrapper .wp-block-search__button:hover {
  background-color: #f33c3c;
}
.cide-sidebar-content aside.widget.widget_search .fm-search-form {
  height: 60px;
}
.cide-sidebar-content aside.widget.widget_search .fm-search-form input.search_text_input {
  background: #f5f6f8;
  border: none;
  padding: 0 25px;
  font-weight: 400;
  font-size: 14px;
  color: #909297;
  -webkit-border-radius: 3px 0px 0px 3px;
  -moz-border-radius: 3px 0px 0px 3px;
  border-radius: 3px 0px 0px 3px;
}
.cide-sidebar-content aside.widget.widget_search .fm-search-form input.search_text_input::placeholder {
  color: inherit;
  font-weight: inherit;
}
.cide-sidebar-content aside.widget.widget_search .fm-search-form input.search_text_input:focus {
  color: #232529;
}
.cide-sidebar-content aside.widget.widget_search .fm-search-form button[type=submit] {
  width: 79px;
  padding: 0;
  flex: 0 0 79px;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.cide-sidebar-content aside.widget.widget_search .fm-search-form button[type=submit] svg.fm-icon {
  fill: #ffffff;
  margin-left: 10px;
  width: 22px;
  height: 22px;
}
.cide-sidebar-content aside.widget.widget_search .fm-search-form button[type=submit]:hover {
  background: #f33c3c;
}
.cide-sidebar-content aside.widget.widget_search.widget_block {
  margin-bottom: 30px;
}
.cide-sidebar-content aside.widget.widget_categories {
  margin-bottom: 25px;
}
.cide-sidebar-content aside.widget.widget_categories li.cat-item, .cide-sidebar-content aside.widget.widget_categories li.cat-item-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 21px;
  padding: 8px 0;
  font-size: 15px;
}
.cide-sidebar-content aside.widget.widget_categories li.cat-item a, .cide-sidebar-content aside.widget.widget_categories li.cat-item-all a {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: #232529;
  margin-left: 0;
  margin-right: auto;
}
.cide-sidebar-content aside.widget.widget_categories li.cat-item a::before, .cide-sidebar-content aside.widget.widget_categories li.cat-item-all a::before {
  margin-right: 8px;
  content: "";
  display: block;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #f33c3c;
}
.cide-sidebar-content aside.widget.widget_categories li.cat-item a:hover, .cide-sidebar-content aside.widget.widget_categories li.cat-item-all a:hover {
  color: #f33c3c;
}
.cide-sidebar-content aside.widget.widget_categories li.cat-item a:hover::before, .cide-sidebar-content aside.widget.widget_categories li.cat-item-all a:hover::before {
  border-left-color: #f33c3c;
}
.cide-sidebar-content aside.widget.widget_categories li.cat-item-all {
  padding-top: 7px;
}
.cide-sidebar-content aside.widget.widget_categories li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.cide-sidebar-content aside.widget.widget_categories li ul.children {
  flex: 0 0 100%;
  padding-left: 12px;
}
.cide-sidebar-content aside.widget.widget_meta {
  margin-bottom: 16px;
}
.cide-sidebar-content aside.widget.widget_meta .widget-title {
  margin-bottom: 18px;
}
.cide-sidebar-content aside.widget.widget_meta ul li {
  padding: 6px 0 !important;
}
.cide-sidebar-content aside.widget.widget_meta ul li a {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: #232529;
  margin-left: 0;
  margin-right: auto;
}
.cide-sidebar-content aside.widget.widget_meta ul li a:before {
  margin-right: 8px;
  content: "";
  display: block;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #f33c3c;
}
.cide-sidebar-content aside.widget.widget_meta ul li a:hover {
  color: #f33c3c;
}
.cide-sidebar-content aside.widget.widget_meta ul li a:hover:before {
  border-left-color: #f33c3c;
}
.cide-sidebar-content aside.widget.widget_nav_menu ul li ul li:first-child {
  margin-top: 9px !important;
}
.cide-sidebar-content aside.widget.widget_nav_menu li.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 20px;
  padding: 9px 0;
  font-size: 16px;
}
.cide-sidebar-content aside.widget.widget_nav_menu li.menu-item a {
  display: flex;
  align-items: center;
  font-size: inherit;
  font-weight: 400;
  text-transform: capitalize;
  color: #232529;
  margin-left: 0;
  margin-right: auto;
}
.cide-sidebar-content aside.widget.widget_nav_menu li.menu-item a::before {
  margin-right: 8px;
  content: "";
  display: block;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #f33c3c;
}
.cide-sidebar-content aside.widget.widget_nav_menu li.menu-item a.toggle-submenu {
  display: none;
}
.cide-sidebar-content aside.widget.widget_nav_menu li.menu-item a:hover {
  color: #f33c3c;
}
.cide-sidebar-content aside.widget.widget_nav_menu li.menu-item a:hover::before {
  border-left-color: #f33c3c;
}
.cide-sidebar-content aside.widget.widget_nav_menu li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.cide-sidebar-content aside.widget.widget_nav_menu li.menu-item-has-children ul.sub-menu {
  flex: 0 0 100%;
  padding-left: 12px;
}
.cide-sidebar-content aside.widget.widget_nav_menu > li:first-child {
  padding-top: 0;
}
.cide-sidebar-content aside.widget.widget_archive li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 20px;
  padding: 15px 0;
  font-size: 15px;
}
.cide-sidebar-content aside.widget.widget_archive li a {
  display: flex;
  align-items: center;
  font-size: inherit;
  font-weight: 400;
  text-transform: capitalize;
  color: #232529;
  margin-left: 0;
  margin-right: auto;
}
.cide-sidebar-content aside.widget.widget_archive li a::before {
  margin-right: 8px;
  content: "";
  display: block;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #f33c3c;
}
.cide-sidebar-content aside.widget.widget_archive li a:hover {
  color: #f33c3c;
}
.cide-sidebar-content aside.widget.widget_archive li a:hover::before {
  border-left-color: #f33c3c;
}
.cide-sidebar-content aside.widget.widget_archive li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.cide-sidebar-content aside.widget.widget_archive > li:first-child {
  padding-top: 0;
}
.cide-sidebar-content aside.widget.widget_archive .select2-container {
  max-width: 100%;
}
.cide-sidebar-content aside.widget.cide_newsletter {
  background: #f1f1f1;
  padding-bottom: 35px;
}
.cide-sidebar-content aside.widget.cide_newsletter .widget-title {
  text-align: center;
  justify-content: center;
}
.cide-sidebar-content aside.widget.cide_newsletter > .text {
  text-align: center;
  color: #999999;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 20px;
  padding: 0 30px;
}
.cide-sidebar-content aside.widget.cide_newsletter .fm_newsletter_form {
  display: flex;
  height: 45px;
  padding: 0 20px;
}
.cide-sidebar-content aside.widget.cide_newsletter .fm_newsletter_form input[type=email] {
  width: 100%;
  background: #ffffff;
  border: none;
  height: 100%;
  padding: 0 15px;
  font-weight: 400;
  font-size: 14px;
  color: #999999;
}
.cide-sidebar-content aside.widget.cide_newsletter .fm_newsletter_form input[type=email]::placeholder {
  color: inherit;
  font-weight: inherit;
}
.cide-sidebar-content aside.widget.cide_newsletter .fm_newsletter_form input[type=email]:focus {
  color: #232529;
}
.cide-sidebar-content aside.widget.cide_newsletter .fm_newsletter_form input[type=submit] {
  flex: 0 0 68px;
  height: 100%;
  border: none;
  background: #232529;
  padding: 0 10px;
  font-size: 10px;
  text-transform: uppercase;
  background: #232529;
  color: #FFF;
  font-weight: 600;
  -webkit-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -moz-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -ms-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -o-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
}
.cide-sidebar-content aside.widget.cide_newsletter .fm_newsletter_form input[type=submit]:hover {
  background: #f33c3c;
}
.cide-sidebar-content aside.widget.cide_recent_posts {
  margin-bottom: 30px;
}
.cide-sidebar-content aside.widget.cide_recent_posts .widget-title {
  margin-bottom: 16px;
}
.cide-sidebar-content aside.widget.widget_tag_cloud {
  margin-bottom: 25px;
}
.cide-sidebar-content aside.widget.widget_tag_cloud .widget-title {
  margin-bottom: 28px;
}
.cide-sidebar-content aside.widget.widget_tag_cloud .tagcloud {
  display: flex;
  flex-wrap: wrap;
}
.cide-sidebar-content aside.widget.widget_tag_cloud .tagcloud a {
  display: inline-block;
  font-size: 15px !important;
  font-weight: 400;
  color: #909297;
  border: 1px solid #e4e6ec;
  padding: 8px 20px;
  line-height: 18px;
  margin: 2px 8px 6px 0;
  -webkit-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -moz-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -ms-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -o-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -webkit-border-radius: 90px;
  -moz-border-radius: 90px;
  border-radius: 90px;
}
.cide-sidebar-content aside.widget.widget_tag_cloud .tagcloud a:hover {
  color: #232529;
  border-color: #232529;
}
.cide-sidebar-content aside.widget ~ .cide_newsletter {
  margin-top: 50px;
}
.cide-sidebar-content > aside.widget:first-child .widget-title {
  margin-top: -20px;
}

.blog-heading-content {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-color: #e4e4e4;
  flex-direction: column;
  justify-content: space-between !important;
  margin-bottom: 57px;
}
body:not(.page):not(.woocommerce-page) .blog-heading-content .blog-heading-container {
  display: flex;
  flex-direction: column;
}
body:not(.page):not(.woocommerce-page) .blog-heading-content .blog-heading-container .blog-title {
  font-size: 45px;
  font-weight: normal;
  position: relative;
  padding-bottom: 28px;
  margin-bottom: 17px;
}
body:not(.page):not(.woocommerce-page) .blog-heading-content .blog-heading-container .blog-title:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  width: 61px;
  height: 3px;
  margin: auto;
  background-color: #232529;
}
body:not(.page):not(.woocommerce-page) .blog-heading-content .blog-heading-container .blog_category_list_wrap {
  order: 1;
}
.blog-heading-content.blog_cat {
  border-bottom: 1px solid #e4e4e4;
}
body:not(.page):not(.woocommerce-page) .blog-heading-content.heading-color-light .blog-heading-container .blog-title:after {
  background-color: #FFFFFF;
}
body:not(.page):not(.woocommerce-page) .blog-heading-content.heading-color-light .blog-heading-container .cide-breadcrumbs .trail-items .trail-item > a {
  color: #FFFFFF;
}
body:not(.page):not(.woocommerce-page) .blog-heading-content.heading-color-light .blog-heading-container .cide-breadcrumbs .trail-items .trail-item > a:hover {
  color: #FFFFFF;
}
body:not(.page):not(.woocommerce-page) .blog-heading-content.heading-color-light .blog-heading-container .cide-breadcrumbs .trail-items .trail-item:not(.trail-end):after {
  border-color: #FFFFFF;
}

.header-breadcrumb-wrap .cide-breadcrumbs .trail-item, .header-breadcrumb-wrap .cide-breadcrumbs .trail-item a {
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  color: #777777;
}
.header-breadcrumb-wrap .cide-breadcrumbs .trail-item.trail-end, .header-breadcrumb-wrap .cide-breadcrumbs .trail-item a.trail-end {
  color: #232529;
}
body:not(.page):not(.woocommerce-page) .header-breadcrumb-wrap {
  margin-top: 20px;
}
body:not(.page):not(.woocommerce-page) .header-breadcrumb-wrap ~ #content {
  padding-top: 20px;
}

body:not(.woocommerce-page) article.cide-post-item.post-grid {
  margin-bottom: 30px;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner {
  position: relative;
  overflow: hidden;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner .entry-image-attachment img {
  width: 100%;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner .date {
  position: absolute;
  left: 15px;
  top: 15px;
  display: block;
  z-index: 1;
  background: #ffffff;
  line-height: 20px;
  padding: 11px 10px;
  height: 60px;
  width: 60px;
  color: #232529;
  margin-bottom: 25px;
  font-weight: 600;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner .date .day {
  font-size: 15px;
  display: block;
  width: 100%;
  position: relative;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner .date .day::after {
  display: inline-block;
  width: 100%;
  content: "";
  border-bottom: 2px solid #232529;
  transform: rotate(-45deg);
  position: absolute;
  left: 0;
  bottom: 0;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner .date .month {
  font-size: 10px;
  text-transform: uppercase;
  display: block;
  width: 100%;
  text-align: right;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner .info {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 15px;
  background: black;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7427345938) 0%, rgba(170, 170, 170, 0) 100%);
}
body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner .info .post-categories .cat-links {
  font-size: 0;
  line-height: 12px;
  margin-bottom: 0;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner .info .post-categories .cat-links a {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  color: #ffffff;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner .info .post-categories .cat-links a ~ a::before {
  content: ",";
  display: inline-block;
  padding-right: 3px;
  color: #ffffff;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner .info h2.entry-title {
  font-size: 24px;
  font-weight: 500;
  overflow-wrap: break-word;
  line-height: 28px;
  margin-bottom: 6px;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner .info h2.entry-title a {
  color: #ffffff;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner .info .metas {
  margin-bottom: 0;
  margin-top: auto;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner .info .metas a {
  font-size: inherit;
  font-weight: inherit;
  color: #ffffff;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner .info .metas .posted-on {
  font-size: 0;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner .info .metas .posted-on a {
  font-size: inherit;
  color: #ffffff;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner .info .metas .post-author {
  position: relative;
  padding-right: 10px;
  margin-right: 10px;
  text-transform: capitalize;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner .info .metas .post-author a {
  text-transform: capitalize;
  color: #ffffff;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner .info .metas .post-author a::before {
  content: ":";
  display: inline-block;
  margin-right: 3px;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner .info .metas .post-author::after {
  width: 1px;
  height: 12px;
  background: #aaa;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -6px;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner .info .excerpt {
  display: none;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner .info .read-more-btn {
  display: none;
  width: 75px;
  margin: 15px 0 0 0;
  padding: 0 0 5px 0;
  border-bottom: solid 1px #FFF;
  line-height: 10px;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  color: #FFFFFF;
  fill: #FFFFFF;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner.no-thumbnail .date {
  position: static;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 {
  margin-bottom: 30px;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner {
  position: relative;
  overflow: hidden;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .entry-image-attachment {
  margin-bottom: 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  overflow: hidden;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .entry-image-attachment img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.18/1;
  object-fit: cover;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .date {
  display: flex;
  display: none;
  position: absolute;
  flex-direction: column;
  justify-content: space-between;
  left: 25px;
  top: 20px;
  z-index: 1;
  background: #ffffff;
  line-height: 20px;
  padding: 12px 7px;
  height: 56px;
  width: 56px;
  color: #232529;
  font-weight: 600;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .date .day {
  order: -1;
  font-size: 18px;
  line-height: 14px;
  display: block;
  width: 45px;
  position: relative;
  font-weight: 600;
  margin-bottom: 11px;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .date::before {
  display: inline-block;
  width: 45px;
  content: "";
  border-bottom: 1px solid #e1e1e1;
  transform: rotate(-45deg);
  position: absolute;
  left: 5px;
  top: 28px;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .date .month {
  font-size: 10px;
  line-height: 8px;
  text-transform: uppercase;
  display: block;
  width: 100%;
  text-align: right;
  font-weight: 600;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info {
  display: flex;
  flex-direction: column;
  width: 100%;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .post-categories {
  display: none;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .post-categories .cat-links {
  font-size: 0;
  line-height: 12px;
  margin-bottom: 5px;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .post-categories .cat-links a {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  color: #999999;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .post-categories .cat-links a:hover {
  color: #232529;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .post-categories .cat-links a ~ a::before {
  content: ",";
  display: inline-block;
  padding-right: 3px;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info h2.entry-title {
  font-size: 22px;
  font-weight: 500;
  overflow-wrap: break-word;
  line-height: 1.3;
  margin-bottom: 14px;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info h2.entry-title a {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .metas {
  order: -1;
  margin-bottom: 10px;
  margin-top: auto;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .metas a {
  font-size: inherit;
  font-weight: inherit;
  color: #232529;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .metas a:hover {
  color: #232529;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .metas .posted-on {
  font-size: 0;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .metas .posted-on a {
  font-size: 16px;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .metas .post-author {
  position: relative;
  padding-right: 10px;
  margin-right: 10px;
  text-transform: capitalize;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .metas .post-author a {
  text-transform: capitalize;
  color: #999999;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .metas .post-author a:hover {
  color: #232529;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .metas .post-author a::before {
  content: ":";
  display: inline-block;
  margin-right: 3px;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .metas .post-author::after {
  width: 1px;
  height: 12px;
  background: #aaa;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -6px;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .metas .post-comments a:not(:hover) {
  color: #909297;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .excerpt {
  font-size: 16px;
  line-height: 28px;
  color: #909297;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .read-more-btn {
  display: inline-block;
  margin: 28px 0 0 0;
  padding: 0 0 3px 0;
  color: #232529;
  border-bottom: solid 2px #232529;
  line-height: 20px;
  font-weight: 500;
  font-size: 16px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .read-more-btn:hover {
  color: #f33c3c;
  border-color: #f33c3c;
}
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner.no-thumbnail .date {
  position: static;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner {
  margin-bottom: 43px;
  padding-bottom: 43px;
  border-bottom: 1px solid #e4e4e4;
  position: relative;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .entry-image-attachment {
  margin-bottom: 24px;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .entry-image-attachment img {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .date {
  display: flex;
  position: absolute;
  flex-direction: column;
  justify-content: space-between;
  left: 25px;
  top: 20px;
  z-index: 1;
  background: #ffffff;
  line-height: 20px;
  padding: 12px 7px;
  height: 56px;
  width: 56px;
  color: #232529;
  font-weight: 600;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .date .day {
  order: -1;
  font-size: 18px;
  line-height: 14px;
  display: block;
  width: 45px;
  position: relative;
  font-weight: 600;
  margin-bottom: 11px;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .date::before {
  display: inline-block;
  width: 45px;
  content: "";
  border-bottom: 1px solid #E1E1E1;
  transform: rotate(-45deg);
  position: absolute;
  left: 5px;
  top: 28px;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .date .month {
  font-size: 10px;
  line-height: 8px;
  text-transform: uppercase;
  display: block;
  width: 100%;
  text-align: right;
  font-weight: 600;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info {
  display: flex;
  flex-direction: column;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .post-categories {
  display: none;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .post-categories .cat-links {
  font-size: 0;
  line-height: 20px;
  margin-bottom: 6px;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .post-categories .cat-links a {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  color: #999999;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .post-categories .cat-links a ~ a::before {
  content: ",";
  display: inline-block;
  padding-right: 3px;
  color: #999999;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .post-categories .cat-links a:hover {
  color: #232529;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info h2.entry-title {
  font-size: 25px;
  overflow-wrap: break-word;
  line-height: 30px;
  margin-bottom: 15px;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info h2.entry-title a {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .metas {
  order: -1;
  margin-bottom: 12px;
  margin-top: auto;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .metas a {
  font-size: inherit;
  font-weight: inherit;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .metas a:not(:hover) {
  color: #909297;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .metas .posted-on {
  font-size: 0;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .metas .posted-on a {
  font-size: 16px;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .metas .posted-on a:not(:hover) {
  color: #232529;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .metas .post-author {
  position: relative;
  text-transform: capitalize;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .metas .post-author a {
  text-transform: capitalize;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .metas .post-author a::before {
  content: ":";
  display: inline-block;
  margin-right: 3px;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .metas .post-author + .post-comments {
  position: relative;
  padding-left: 10px;
  margin-left: 10px;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .metas .post-author + .post-comments::after {
  width: 1px;
  height: 12px;
  background: #aaa;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -6px;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .excerpt {
  font-size: 16px;
  line-height: 28px;
  color: #909297;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .read-more-btn {
  display: inline-block;
  margin: 20px 0 0 0;
  padding: 0 0 3px 0;
  color: #232529;
  border-bottom: solid 2px #232529;
  line-height: 20px;
  font-weight: 500;
  font-size: 15px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .read-more-btn:hover {
  color: #f33c3c;
  border-color: #f33c3c;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner.no-thumbnail .entry-image-attachment {
  margin: 0;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner.no-thumbnail .date {
  position: static;
  margin-bottom: 20px;
  border: 1px solid #232529;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner.no-thumbnail .info .post-item-head .post-categories {
  position: static;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner.no-thumbnail .info .post-item-head .post-categories .cat-links {
  margin: 0 0 0.25rem 0;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner {
  display: flex;
  position: relative;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 45px;
  margin-bottom: 45px;
  flex-direction: column;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .entry-image-attachment {
  margin-bottom: 20px;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .date {
  border: 1px solid #E1E1E1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
  background: #ffffff;
  line-height: 20px;
  padding: 12px 7px;
  height: 56px;
  width: 56px;
  color: #232529;
  font-weight: 600;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .date .day {
  order: -1;
  font-size: 18px;
  line-height: 14px;
  display: block;
  width: 45px;
  position: relative;
  font-weight: 600;
  margin-bottom: 10px;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .date::before {
  display: inline-block;
  width: 45px;
  content: "";
  border-bottom: 1px solid #e1e1e1;
  transform: rotate(-45deg);
  position: absolute;
  left: 6px;
  top: 28px;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .date .month {
  font-size: 10px;
  line-height: 8px;
  text-transform: uppercase;
  display: block;
  width: 100%;
  text-align: right;
  font-weight: 600;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .post-categories .cat-links {
  font-size: 0;
  line-height: 20px;
  margin-bottom: 0;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .post-categories .cat-links a {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  color: #999999;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .post-categories .cat-links a ~ a::before {
  content: ",";
  display: inline-block;
  padding-right: 3px;
  color: #999999;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .post-categories .cat-links a:hover {
  color: #232529;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info h2.entry-title {
  font-size: 26px;
  font-weight: 500;
  overflow-wrap: break-word;
  line-height: 30px;
  margin-bottom: 6px;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .metas {
  margin-bottom: 0;
  margin-top: auto;
  font-size: 14px;
  font-weight: 400;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .metas a {
  font-size: inherit;
  font-weight: inherit;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .metas a:not(:hover) {
  color: #999999;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .metas .posted-on {
  font-size: 0;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .metas .posted-on a {
  font-size: inherit;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .metas .post-author {
  position: relative;
  text-transform: capitalize;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .metas .post-author a {
  text-transform: capitalize;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .metas .post-author a::before {
  content: ":";
  display: inline-block;
  margin-right: 3px;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .metas .post-author + .post-comments {
  position: relative;
  padding-left: 10px;
  margin-left: 10px;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .metas .post-author + .post-comments::after {
  width: 1px;
  height: 12px;
  background: #aaa;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -6px;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .excerpt {
  display: none;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .read-more-btn {
  margin-top: 20px;
  background: #232529;
  color: #ffffff;
  height: 36px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  -webkit-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -moz-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -ms-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -o-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .read-more-btn:hover {
  background-color: #f33c3c;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner.has-thumbnail .info .date {
  position: absolute;
  left: 15px;
  top: 15px;
}

body:not(.woocommerce-page) .page-links {
  clear: both;
}
body:not(.woocommerce-page) .page-links .post-page-numbers {
  padding: 8px;
  display: inline-block;
  font-weight: 500;
}
body:not(.woocommerce-page) .page-links .post-page-numbers.current {
  color: #f33c3c;
}
body:not(.woocommerce-page) .page-links .post-page-numbers.current:hover {
  color: #000000;
}

body:not(.woocommerce-page) .entry-content .page-links {
  clear: both;
  margin-bottom: 25px;
}
body:not(.woocommerce-page) .entry-content .page-links .post-page-numbers {
  padding: 0;
  display: inline-block;
  font-weight: 500;
  width: 45px;
  height: 45px;
  line-height: 44px;
  margin: 0 3px;
  color: #909297;
  text-align: center;
  border: 1px solid #d8dce6;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
body:not(.woocommerce-page) .entry-content .page-links .post-page-numbers.current, body:not(.woocommerce-page) .entry-content .page-links .post-page-numbers:hover {
  color: #232529;
  border-color: #232529;
}

body:not(.woocommerce-page) .pagination .nav-links {
  display: inline-block;
  width: 100%;
}
body:not(.woocommerce-page) .pagination .nav-links ul.page-numbers li .page-numbers {
  margin: 0 3px;
  text-transform: uppercase;
  font-weight: 500;
  width: 45px;
  height: 45px;
  line-height: 44px;
  background: #ffffff;
}
body:not(.woocommerce-page) .pagination .nav-links ul.page-numbers li .page-numbers.next, body:not(.woocommerce-page) .pagination .nav-links ul.page-numbers li .page-numbers.prev {
  padding: 0;
  font-size: 0;
}
.pagination-style2 body:not(.woocommerce-page) .pagination .nav-links ul.page-numbers li .page-numbers {
  border-radius: 0;
}
body:not(.woocommerce-page) .pagination .nav-links ul.page-numbers li:first-child > .page-numbers {
  margin-left: 0;
}
body:not(.woocommerce-page) .pagination .nav-links ul.page-numbers li:last-child > .page-numbers {
  margin-right: 0;
}

.single-post.blog-layout-none #content .site-main article.single-post > div:not(.post-header), .single-post.blog-layout-none #content .site-main article.single-post .entry-content, .single-post.blog-layout-none #content .site-main article.single-post .info-bottom, .single-post.blog-layout-none #content .site-main article.single-post .footer-post, .single-post.blog-layout-none #content .site-main article.single-post .comments-wrapper {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.single-post.blog-layout-none .site-main article.single-post .entry-content img.wp-post-image {
  display: block;
}
.single-post .site-main article.single-post {
  line-height: 1.7;
}
.single-post .site-main article.single-post .entry-content img.wp-post-image {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.single-post .site-main article.single-post .post-header {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.single-post .site-main article.single-post .post-header .post-categories {
  margin-bottom: 5px;
  max-width: 100%;
}
.single-post .site-main article.single-post .post-header .post-categories .cat-links {
  font-size: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.single-post .site-main article.single-post .post-header .post-categories .cat-links a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 2px;
  color: #909297;
}
.single-post .site-main article.single-post .post-header .post-categories .cat-links a:hover {
  color: #f33c3c;
}
.single-post .site-main article.single-post .post-header .post-categories .cat-links a:not(:last-child) {
  padding-right: 3px;
  margin-right: 6px;
}
.single-post .site-main article.single-post .post-header .post-categories .cat-links a:not(:last-child)::after {
  content: ",";
  display: inline-block;
  position: absolute;
  right: 0;
}
.single-post .site-main article.single-post .post-header h1.entry-title {
  font-size: 25px;
  line-height: 28px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%;
}
.single-post .site-main article.single-post .post-header h1.entry-title > em {
  font-size: inherit;
}
.single-post .site-main article.single-post .post-header .metas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0;
  margin-top: auto;
  font-size: 14px;
  font-weight: 400;
  height: 24px;
}
.single-post .site-main article.single-post .post-header .metas a {
  font-size: inherit;
  font-weight: inherit;
  color: #999999;
}
.single-post .site-main article.single-post .post-header .metas a:hover {
  color: #232529;
}
.single-post .site-main article.single-post .post-header .metas .posted-on {
  display: none;
}
.single-post .site-main article.single-post .post-header .metas .post-author {
  height: inherit;
  position: relative;
  text-transform: capitalize;
  font-style: italic;
}
.single-post .site-main article.single-post .post-header .metas .post-author a {
  font-style: normal;
  text-transform: capitalize;
}
.single-post .site-main article.single-post .post-header .metas .post-author a::before {
  display: inline-block;
  content: ":";
  margin-right: 3px;
}
.single-post .site-main article.single-post .post-header .metas .post-author + .post-comments {
  position: relative;
  padding-left: 15px;
  margin-left: 15px;
}
.single-post .site-main article.single-post .post-header .metas .post-author + .post-comments::before {
  width: 1px;
  height: 15px;
  background: #aaa;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7px;
}
.single-post .site-main article.single-post .post-header .metas .post-comments {
  margin-left: auto;
  margin-right: 0;
  display: flex;
  align-items: center;
}
.single-post .site-main article.single-post .post-header .metas .post-comments svg.fm-icon {
  display: none;
}
.single-post .site-main article.single-post .post-header .entry-image-attachment {
  margin-top: 25px;
}
.single-post .site-main article.single-post .post-header img.wp-post-image {
  margin-bottom: 0;
}
.single-post .site-main article.single-post .entry-content figure.wp-block-gallery {
  margin-bottom: 1rem;
}
.single-post .site-main article.single-post .entry-content figure.wp-block-gallery.columns-3.alignfull .blocks-gallery-caption {
  margin: 17px 0 19px;
}
.single-post .site-main article.single-post .entry-content figure.wp-block-gallery.columns-3.alignfull + .columns-2 {
  margin-right: 40px;
}
.single-post .site-main article.single-post .info-bottom {
  margin-bottom: 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  clear: both;
  align-items: flex-start;
}
.single-post .site-main article.single-post .info-bottom > .entry-taxonomy {
  flex: 0 0 60%;
}
.single-post .site-main article.single-post .info-bottom > .post-item-share {
  flex: 0 0 40%;
}
.single-post .site-main article.single-post .info-bottom .entry-taxonomy {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}
.single-post .site-main article.single-post .info-bottom .tags-links {
  font-size: 0;
}
.single-post .site-main article.single-post .info-bottom .tags-links a {
  border: 1px solid #e4e4e4;
  -webkit-border-radius: 90px;
  -moz-border-radius: 90px;
  border-radius: 90px;
  height: 36px;
  line-height: 34px;
  padding: 0 20px;
  margin-right: 6px;
  margin-top: 6px;
  display: inline-block;
  font-size: 15px;
  color: #999999;
  -webkit-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -moz-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -ms-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -o-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
}
.single-post .site-main article.single-post .info-bottom .tags-links a:hover {
  color: #232529;
  border-color: #232529;
}
.single-post .site-main article.single-post .info-bottom .post-item-share {
  margin-left: auto;
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.single-post .site-main article.single-post .info-bottom .post-item-share .title {
  font-size: 15px;
  color: #232529;
  margin: 0;
  font-weight: 400;
}
.single-post .site-main article.single-post .info-bottom .post-item-share .cide-blog-share {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.single-post .site-main article.single-post .info-bottom .post-item-share .cide-blog-share a {
  margin-left: 10px;
  border: 1px solid #e4e4e4;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -moz-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -ms-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -o-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
}
.single-post .site-main article.single-post .info-bottom .post-item-share .cide-blog-share a svg {
  width: 12px;
  height: 12px;
  fill: #232529;
}
.single-post .site-main article.single-post .info-bottom .post-item-share .cide-blog-share a:hover {
  border-color: #232529;
}
.single-post .site-main article.single-post .info-bottom .post-item-share .cide-blog-share a:hover svg.fm-icon {
  fill: #232529;
}
.single-post .site-main article.single-post .footer-post {
  margin-bottom: 50px;
}
.single-post .site-main article.single-post .footer-post .post-navigation .nav-links a {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.single-post .site-main article.single-post .footer-post .post-navigation .nav-links a .post_nav-text {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.single-post .site-main article.single-post .footer-post .post-navigation .nav-links a .post_nav-text:not(:hover) {
  color: #999999;
}
.single-post .site-main article.single-post .footer-post .post-navigation .nav-links a .nav-post-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-transform: none;
}
.single-post .site-main article.single-post .footer-post .post-navigation .nav-links .nav-previous, .single-post .site-main article.single-post .footer-post .post-navigation .nav-links .nav-previous a {
  text-align: left;
}
.single-post .site-main article.single-post .footer-post .post-navigation .nav-links .nav-previous ~ .nav-next {
  border-left: 1px solid #e4e4e4;
}
.single-post .site-main article.single-post .footer-post .post-navigation .nav-links .nav-next {
  border: none;
  text-align: right;
}
.single-post .site-main article.single-post .footer-post .post-navigation .nav-links .nav-next a {
  float: right;
  text-align: right;
}
.single-post .site-main article.single-post.special-layout .entry-content img.wp-post-image {
  display: none;
}
.single-post .site-main .related-posts > h2 {
  font-size: 24px;
  margin-bottom: 1rem;
}
.single-post .site-main .comments-wrapper #comments {
  margin-top: 30px;
  text-align: center;
}

.blog_category_list_wrap {
  overflow-x: auto;
}
.blog_category_list_wrap .blog_category_list {
  display: inline-flex;
  list-style: none;
  padding: 39px 15px;
  margin: 15px 0 0 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 0 3px 10px 3px rgba(64, 72, 78, 0.08);
}
.blog_category_list_wrap .blog_category_list li {
  margin: 0 10px;
  color: #232529;
  border-bottom: 2px solid transparent;
  flex: none;
}
.blog_category_list_wrap .blog_category_list li a {
  font-size: 14px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.blog_category_list_wrap .blog_category_list li:hover, .blog_category_list_wrap .blog_category_list li.current-cat {
  border-bottom-color: #f33c3c;
}
.blog_category_list_wrap .blog_category_list li:hover a, .blog_category_list_wrap .blog_category_list li.current-cat a {
  color: #f33c3c;
}
.blog_category_list_wrap .blog_category_list li.cat-item-all {
  margin-left: 0;
}
body.blog .blog_category_list_wrap .blog_category_list:not(.has-current-cat) .cat-item-all {
  border-bottom-color: #f33c3c;
}
body.blog .blog_category_list_wrap .blog_category_list:not(.has-current-cat) .cat-item-all a {
  color: #f33c3c;
}

.single-post #comments, .page:not(.woocommerce-page) #comments {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid #e4e4e4;
}
.single-post #comments .comments-title, .page:not(.woocommerce-page) #comments .comments-title {
  margin-bottom: 2rem;
}
.single-post #comments .comment-list, .page:not(.woocommerce-page) #comments .comment-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
  text-align: left;
}
.single-post #comments .comment-list + #respond, .page:not(.woocommerce-page) #comments .comment-list + #respond {
  margin-top: 55px;
}
.single-post #comments .comment-list .comment.depth-1:not(.parent), .page:not(.woocommerce-page) #comments .comment-list .comment.depth-1:not(.parent) {
  padding-bottom: 20px;
  border-bottom: solid 1px #e4e4e4;
  margin-bottom: 20px;
}
.single-post #comments .comment-list .comment-body, .page:not(.woocommerce-page) #comments .comment-list .comment-body {
  display: flex;
  flex-wrap: wrap;
}
.single-post #comments .comment-list .comment-body .comment-content, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content {
  flex: 0 0 100%;
  max-width: 100%;
}
.single-post #comments .comment-list .comment-body .comment-content .comment-heading, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content .comment-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.single-post #comments .comment-list .comment-body .comment-content .comment-heading .comment-info, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content .comment-heading .comment-info {
  display: flex;
  flex-direction: column;
}
.single-post #comments .comment-list .comment-body .comment-content .comment-heading .comment-info .author-display-name, .single-post #comments .comment-list .comment-body .comment-content .comment-heading .comment-info .author-display-name a, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content .comment-heading .comment-info .author-display-name, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content .comment-heading .comment-info .author-display-name a {
  font-weight: 500;
  font-style: normal;
  text-transform: capitalize;
  color: #232529;
  font-size: 16px;
}
.single-post #comments .comment-list .comment-body .comment-content .comment-heading .comment-info time, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content .comment-heading .comment-info time {
  font-size: 13px;
  color: #b0b0b0;
}
.single-post #comments .comment-list .comment-body .comment-content .comment-heading .comment-action a, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content .comment-heading .comment-action a {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #999999;
  margin-right: 10px;
}
.single-post #comments .comment-list .comment-body .comment-content .comment-heading .comment-action a:last-child, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content .comment-heading .comment-action a:last-child {
  margin-right: 0;
}
.single-post #comments .comment-list .comment-body .comment-content .comment-heading .comment-action a:hover, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content .comment-heading .comment-action a:hover {
  color: #232529;
}
.single-post #comments .comment-list .comment-body .comment-content .comment-text p:last-child, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content .comment-text p:last-child {
  margin-bottom: 0;
}
.single-post #comments .comment-list .comment-body .user-avatar, .page:not(.woocommerce-page) #comments .comment-list .comment-body .user-avatar {
  flex: 0 0 75px;
}
.single-post #comments .comment-list .comment-body .user-avatar + .comment-content, .page:not(.woocommerce-page) #comments .comment-list .comment-body .user-avatar + .comment-content {
  flex: 0 0 calc(100% - 75px);
  max-width: calc(100% - 75px);
}
.single-post #comments .comment-list .comment-body .user-avatar .comment-author img, .page:not(.woocommerce-page) #comments .comment-list .comment-body .user-avatar .comment-author img {
  width: 60px;
  margin-right: 15px;
  max-width: 100%;
  height: auto;
  border: 1px solid #f1f1f1;
  padding: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.single-post #comments .comment-list .comment-body #respond, .page:not(.woocommerce-page) #comments .comment-list .comment-body #respond {
  flex: 0 0 100%;
  margin-top: 35px;
  padding-top: 55px;
  padding-bottom: 25px;
  border-top: 1px solid #e4e4e4;
}
.single-post #comments .comment-list .comment-body #respond #reply-title, .page:not(.woocommerce-page) #comments .comment-list .comment-body #respond #reply-title {
  display: flex;
  justify-content: space-between;
  line-height: 1.2;
}
.single-post #comments .comment-list .comment-body #respond #reply-title #cancel-comment-reply-link, .page:not(.woocommerce-page) #comments .comment-list .comment-body #respond #reply-title #cancel-comment-reply-link {
  font-size: 15px;
}
.single-post #comments .comment-list .comment-body #respond #commentform .form-submit, .page:not(.woocommerce-page) #comments .comment-list .comment-body #respond #commentform .form-submit {
  margin-bottom: 0;
}
.single-post #comments .comment-list .children, .page:not(.woocommerce-page) #comments .comment-list .children {
  padding-left: 0;
  list-style: none;
  text-align: left;
  padding-left: 30px;
}
.single-post #comments .comment-list .children .comment, .page:not(.woocommerce-page) #comments .comment-list .children .comment {
  margin-top: 20px;
  border-top: 1px solid #e4e4e4;
  padding-top: 20px;
}
.single-post #comments .comment-list .children .comment:not(.parent):last-child, .page:not(.woocommerce-page) #comments .comment-list .children .comment:not(.parent):last-child {
  padding-bottom: 20px;
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 20px;
}
.single-post #comments .comment-list .pingback, .single-post #comments .comment-list .trackback, .page:not(.woocommerce-page) #comments .comment-list .pingback, .page:not(.woocommerce-page) #comments .comment-list .trackback {
  margin-bottom: 1.5rem;
}
.single-post #comments .comment-respond #reply-title, .page:not(.woocommerce-page) #comments .comment-respond #reply-title {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  color: #232529;
}
.single-post #comments .comment-respond .comment-form p, .page:not(.woocommerce-page) #comments .comment-respond .comment-form p {
  margin-bottom: 23px;
}
.single-post #comments .comment-respond .comment-form .cide_comment_fields_group, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .cide_comment_fields_group {
  display: flex;
  flex-wrap: wrap;
}
.single-post #comments .comment-respond .comment-form .cide_comment_fields_group > p, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .cide_comment_fields_group > p {
  width: calc((100% - 60px)/3);
  margin-right: 30px;
  margin-bottom: 10px;
}
.single-post #comments .comment-respond .comment-form .cide_comment_fields_group > p:nth-child(3n), .page:not(.woocommerce-page) #comments .comment-respond .comment-form .cide_comment_fields_group > p:nth-child(3n) {
  margin-right: 0;
}
.single-post #comments .comment-respond .comment-form .cide_comment_fields_group > p.comment-form-cookies-consent, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .cide_comment_fields_group > p.comment-form-cookies-consent {
  width: 100%;
  margin-right: 0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.single-post #comments .comment-respond .comment-form .cide_comment_fields_group > p.comment-form-cookies-consent label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .cide_comment_fields_group > p.comment-form-cookies-consent label {
  margin-bottom: 0;
}
.single-post #comments .comment-respond .comment-form .cide_comment_fields_group > p.comment-form-cookies-consent #wp-comment-cookies-consent, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .cide_comment_fields_group > p.comment-form-cookies-consent #wp-comment-cookies-consent {
  margin-top: -2px;
}
.single-post #comments .comment-respond .comment-form .form-submit input#submit, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .form-submit input#submit {
  width: 180px;
  border: none;
  background: #232529;
  color: #FFF;
  font-weight: 500;
  height: 50px;
  font-size: 14px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  letter-spacing: 2px;
}
.single-post #comments .comment-respond .comment-form .form-submit input#submit:hover, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .form-submit input#submit:hover {
  background-color: #f33c3c;
}
.single-post #comments .comment-respond .comment-form .comment-form-comment, .single-post #comments .comment-respond .comment-form .comment-form-author, .single-post #comments .comment-respond .comment-form .comment-form-email, .single-post #comments .comment-respond .comment-form .comment-form-url, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-comment, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-author, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-email, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-url {
  position: relative;
}
.single-post #comments .comment-respond .comment-form .comment-form-comment input:focus ~ label, .single-post #comments .comment-respond .comment-form .comment-form-comment input.has-content ~ label, .single-post #comments .comment-respond .comment-form .comment-form-comment textarea:focus ~ label, .single-post #comments .comment-respond .comment-form .comment-form-comment textarea.has-content ~ label, .single-post #comments .comment-respond .comment-form .comment-form-author input:focus ~ label, .single-post #comments .comment-respond .comment-form .comment-form-author input.has-content ~ label, .single-post #comments .comment-respond .comment-form .comment-form-author textarea:focus ~ label, .single-post #comments .comment-respond .comment-form .comment-form-author textarea.has-content ~ label, .single-post #comments .comment-respond .comment-form .comment-form-email input:focus ~ label, .single-post #comments .comment-respond .comment-form .comment-form-email input.has-content ~ label, .single-post #comments .comment-respond .comment-form .comment-form-email textarea:focus ~ label, .single-post #comments .comment-respond .comment-form .comment-form-email textarea.has-content ~ label, .single-post #comments .comment-respond .comment-form .comment-form-url input:focus ~ label, .single-post #comments .comment-respond .comment-form .comment-form-url input.has-content ~ label, .single-post #comments .comment-respond .comment-form .comment-form-url textarea:focus ~ label, .single-post #comments .comment-respond .comment-form .comment-form-url textarea.has-content ~ label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-comment input:focus ~ label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-comment input.has-content ~ label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-comment textarea:focus ~ label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-comment textarea.has-content ~ label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-author input:focus ~ label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-author input.has-content ~ label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-author textarea:focus ~ label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-author textarea.has-content ~ label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-email input:focus ~ label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-email input.has-content ~ label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-email textarea:focus ~ label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-email textarea.has-content ~ label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-url input:focus ~ label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-url input.has-content ~ label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-url textarea:focus ~ label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-url textarea.has-content ~ label {
  top: 0;
  color: #232529;
  width: auto;
}
.single-post #comments .comment-respond .comment-form .comment-form-comment label, .single-post #comments .comment-respond .comment-form .comment-form-author label, .single-post #comments .comment-respond .comment-form .comment-form-email label, .single-post #comments .comment-respond .comment-form .comment-form-url label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-comment label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-author label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-email label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-url label {
  font-size: 15px;
  color: #999999;
  position: absolute;
  left: 8px;
  top: 0;
  transform: translateY(-50%);
  margin: 0;
  background: #ffffff;
  padding: 0 8px;
  line-height: 20px;
  z-index: 1;
  -webkit-transition: top 0.25s linear 0s;
  -moz-transition: top 0.25s linear 0s;
  -ms-transition: top 0.25s linear 0s;
  -o-transition: top 0.25s linear 0s;
  transition: top 0.25s linear 0s;
}
.single-post #comments .comment-respond .comment-form .comment-form-cookies-consent, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-cookies-consent {
  margin-bottom: 10px;
  margin-top: 10px;
}
.single-post #comments .comment-navigation, .page:not(.woocommerce-page) #comments .comment-navigation {
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.single-post #comments {
  padding-top: 0;
  border-top: none;
}

.page:not(.woocommerce-page) #comments .comment-respond .comment-form .cide_comment_fields_group > p.comment-form-cookies-consent {
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .header-breadcrumb-wrap {
    display: block;
  }

  .blog-heading-content.blog_cat {
    border-bottom: 1px solid #e4e4e4;
  }

  .blog_category_list_wrap {
    overflow-x: unset;
  }
  .blog_category_list_wrap .blog_category_list {
    justify-content: center;
  }
  .blog_category_list_wrap .blog_category_list li {
    margin: 0 24px;
  }
  .blog_category_list_wrap .blog_category_list li.cat-item-all {
    margin-left: 20px;
  }

  body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner .info {
    padding: 35px 10px 30px 20px;
    transition: all 0.3s linear 0s;
    transform: translateY(38px);
  }
  body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner .info .read-more-btn {
    display: inline-block;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.25s linear 0s, opacity 0.25s linear 0s;
  }
  body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner:hover .info {
    transform: translateY(0);
  }
  body:not(.woocommerce-page) article.cide-post-item.post-grid .post-inner:hover .info .read-more-btn {
    visibility: visible;
    opacity: 1;
  }

  .single-post .site-main article.single-post {
    margin-top: 40px;
  }
  .single-post .site-main article.single-post .info-bottom .entry-taxonomy {
    justify-content: flex-start;
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .blog_category_list_wrap .blog_category_list {
    margin-top: 95px;
    margin-bottom: -50px;
  }

  body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .entry-image-attachment {
    flex: 0 0 50%;
    max-width: 600px;
    margin: 0;
    text-align: right;
  }
  body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info {
    flex: 0 0 50%;
    max-width: 450px;
    padding-right: 20px;
  }
  body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .post-categories .cat-links a {
    font-size: 12px;
    margin-bottom: 8px;
  }
  body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info h2.entry-title {
    font-size: 2.25rem;
    line-height: 1.2;
  }
  body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .date {
    margin-bottom: 35px;
  }
  body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .read-more-btn {
    margin-top: 25px;
  }
  body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner.has-thumbnail .info .date {
    position: static;
  }
  body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info h2.entry-title {
    font-size: 28px;
  }

  .single-post .site-main article.single-post .info-bottom .post-item-share {
    display: flex;
    align-items: center;
  }
  .single-post .site-main article.single-post .info-bottom .post-item-share .title {
    display: inline-block;
  }
}
@media (min-width: 1025px) {
  body:not(.woocommerce-page) article.cide-post-item.post-grid-2 {
    margin-bottom: 53px;
  }
  body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .entry-image-attachment {
    margin-bottom: 21px;
  }

  .single-post .site-main article.single-post {
    margin-top: -6px;
  }
  .single-post .site-main article.single-post .post-header {
    margin-bottom: 40px;
  }
  .single-post .site-main article.single-post .post-header .entry-image-attachment {
    margin-top: 35px;
  }
  .single-post .site-main article.single-post .post-header .post-categories {
    margin-bottom: 18px;
  }
  .single-post .site-main article.single-post .post-header h1.entry-title {
    margin-bottom: 22px;
    font-size: 38px;
    line-height: 45px;
  }
  .single-post .site-main article.single-post .entry-content .h1, .single-post .site-main article.single-post .entry-content .h2 {
    margin-bottom: 1.5rem;
  }
  .single-post .site-main article.single-post .entry-content .h3, .single-post .site-main article.single-post .entry-content .h4, .single-post .site-main article.single-post .entry-content .h5, .single-post .site-main article.single-post .entry-content .h6, .single-post .site-main article.single-post .entry-content h1, .single-post .site-main article.single-post .entry-content h2, .single-post .site-main article.single-post .entry-content h3, .single-post .site-main article.single-post .entry-content h4, .single-post .site-main article.single-post .entry-content h5, .single-post .site-main article.single-post .entry-content h6 {
    margin-bottom: 1rem;
  }
  .single-post .site-main article.single-post .entry-content .wp-block-image figcaption {
    margin-bottom: 0;
  }
  .single-post .site-main article.single-post .entry-content blockquote > p {
    margin-bottom: 1rem;
  }

  .single-post #comments .comment-list .comment-body .comment-content, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .single-post #comments .comment-list .comment-body .user-avatar, .page:not(.woocommerce-page) #comments .comment-list .comment-body .user-avatar {
    flex: 0 0 145px;
  }
  .single-post #comments .comment-list .comment-body .user-avatar + .comment-content, .page:not(.woocommerce-page) #comments .comment-list .comment-body .user-avatar + .comment-content {
    flex: 0 0 calc(100% - 145px);
    max-width: calc(100% - 145px);
  }
  .single-post #comments .comment-list .comment-body .user-avatar .comment-author img, .page:not(.woocommerce-page) #comments .comment-list .comment-body .user-avatar .comment-author img {
    width: 120px;
    margin-right: 25px;
  }
  .single-post #comments .comment-list .comment.depth-1:not(.parent), .single-post #comments .comment-list .children .comment:not(.parent):last-child, .page:not(.woocommerce-page) #comments .comment-list .comment.depth-1:not(.parent), .page:not(.woocommerce-page) #comments .comment-list .children .comment:not(.parent):last-child {
    padding-bottom: 35px;
    margin-bottom: 35px;
  }
  .single-post #comments .comment-list .children .comment, .page:not(.woocommerce-page) #comments .comment-list .children .comment {
    margin-top: 35px;
    padding-top: 35px;
  }
  .single-post #comments .comment-respond #reply-title, .page:not(.woocommerce-page) #comments .comment-respond #reply-title {
    font-size: 22px;
  }
  .single-post #comments .comments-title, .page:not(.woocommerce-page) #comments .comments-title {
    margin-bottom: 45px;
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  body:not(.woocommerce-page) .sidebar-right, body:not(.woocommerce-page) .sidebar-left {
    flex-direction: column;
  }
  body:not(.woocommerce-page) .sidebar-right .cide-sidebar-content, body:not(.woocommerce-page) .sidebar-left .cide-sidebar-content {
    order: 2;
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid #e4e4e4;
  }

  body:not(.woocommerce-page) article.cide-post-item.post-grid {
    flex: 0 0 50%;
    max-width: 50%;
  }
  body:not(.woocommerce-page) article.cide-post-item.post-standard {
    flex: 0 0 100%;
    max-width: 100%;
  }
  body:not(.woocommerce-page) article.cide-post-item.post-list {
    flex: 0 0 100%;
    max-width: 100%;
  }
  body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .entry-image-attachment {
    margin-bottom: 15px;
  }
  body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .metas {
    margin-bottom: 10px;
    font-size: 14px;
  }
  body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .metas .posted-on a {
    font-size: 14px;
  }
  body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .post-item-head .entry-title {
    font-weight: normal;
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 10px;
  }
  body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .excerpt {
    font-size: 15px;
    line-height: 25px;
  }
  body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .read-more-btn {
    margin-top: 20px;
  }
  body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .metas {
    margin-bottom: 10px;
    font-size: 14px;
  }
  body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .metas .posted-on a {
    font-size: 14px;
  }
  body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .post-item-head .entry-title {
    font-weight: normal;
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 10px;
  }
  body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .excerpt {
    font-size: 15px;
    line-height: 25px;
  }
  body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .read-more-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .blog-heading-content {
    margin-bottom: 40px;
  }
  .blog-heading-content .blog_category_list_wrap .blog_category_list {
    margin-top: 110px;
    padding: 25px 30px;
  }
}
@media (max-width: 767px) {
  .blog-heading-content {
    margin-bottom: 20px;
  }
  .blog-heading-content .blog_category_list_wrap {
    overflow: inherit;
  }
  .blog-heading-content .blog_category_list_wrap .blog_category_list {
    display: block;
    margin: 30px 0px 0;
    padding: 18px 15px;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .blog-heading-content .blog_category_list_wrap .blog_category_list li {
    display: inline-block;
  }
  .blog-heading-content .blog_category_list_wrap .blog_category_list li a {
    font-size: 11px;
  }
  body:not(.page):not(.woocommerce-page) .blog-heading-content .blog-heading-container .blog-title {
    font-size: 30px;
    padding-bottom: 15px;
    margin-bottom: 10px;
  }
  body:not(.page):not(.woocommerce-page) .blog-heading-content .blog-heading-container .blog-title:after {
    height: 2px;
  }

  .single-post .site-main article.single-post .post-header h1.entry-title {
    font-size: 36px;
    line-height: 40px;
  }
  .single-post .site-main article.single-post .info-bottom {
    flex-direction: column;
  }
  .single-post .site-main article.single-post .info-bottom .post-item-share {
    margin: 20px auto 0 auto;
  }
  .single-post .site-main article.single-post .info-bottom .post-item-share .cide-blog-share {
    align-items: center;
  }
  .single-post .site-main article.single-post .info-bottom .post-item-share .cide-blog-share a {
    margin: 0 8px;
  }
  .single-post .site-main article.single-post .footer-post .post-navigation {
    padding: 15px 0;
  }
  .single-post .site-main article.single-post .footer-post .post-navigation .nav-links {
    display: flex;
  }
  .single-post .site-main article.single-post .footer-post .post-navigation .nav-links .nav-post-title {
    display: none;
  }

  .single-post #comments .comment-respond .comment-form .cide_comment_fields_group > p, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .cide_comment_fields_group > p {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .single-post #comments .comment-list .children, .page:not(.woocommerce-page) #comments .comment-list .children {
    padding-left: 1.25rem;
  }
  .single-post #comments .comment-list .comment-body .comment-content .comment-heading .comment-info .author-display-name,
.single-post #comments .comment-list .comment-body .comment-content .comment-heading .comment-info .author-display-name a, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content .comment-heading .comment-info .author-display-name,
.page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content .comment-heading .comment-info .author-display-name a {
    font-size: 15px;
  }
  .single-post #comments .comments-title, .page:not(.woocommerce-page) #comments .comments-title {
    font-size: 23px;
  }
  #comments .h1, #comments h1 {
    font-size: 2.5rem;
  }
  #comments .h2, #comments h2 {
    font-size: 2rem;
  }
  #comments .h3, #comments h3 {
    font-size: 1.75rem;
  }
  #comments .h4, #comments h4 {
    font-size: 1.5rem;
  }
  #comments .h5, #comments h5 {
    font-size: 1.25rem;
  }
  #comments .h6, #comments h6 {
    font-size: 1rem;
  }
}
@media (max-width: 575px) {
  body:not(.woocommerce-page) article.cide-post-item.post-grid {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.intro_arrow.elementor-element.elementor-widget-image-carousel .elementor-image-carousel-wrapper .elementor-image-carousel-caption {
  margin: 40px 0 35px 0;
}

.center-image-carousel {
  position: relative;
}

@media (min-width: 1500px) {
  .intro_arrow.elementor-element.elementor-widget-image-carousel .elementor-swiper-button {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #dcdcdc;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    z-index: 3;
  }
  .intro_arrow.elementor-element.elementor-widget-image-carousel .elementor-image-carousel-wrapper {
    z-index: 1;
    position: relative;
    padding-left: 80px;
    padding-right: 80px;
  }
  .intro_arrow.elementor-element.elementor-widget-image-carousel .elementor-image-carousel-wrapper::before, .intro_arrow.elementor-element.elementor-widget-image-carousel .elementor-image-carousel-wrapper::after {
    width: 80px;
    height: 100%;
    content: "";
    background: #FFF;
    position: absolute;
    z-index: 2;
    top: 0;
  }
  .intro_arrow.elementor-element.elementor-widget-image-carousel .elementor-image-carousel-wrapper::before {
    left: 0;
  }
  .intro_arrow.elementor-element.elementor-widget-image-carousel .elementor-image-carousel-wrapper::after {
    right: 0;
  }
}
ul.cide_list_link_topbar {
  list-style: none;
  display: inline-flex;
  align-items: center;
  height: 100%;
}
ul.cide_list_link_topbar li {
  display: flex;
  align-items: center;
}
ul.cide_list_link_topbar li:before {
  content: "";
  width: 5px;
  height: 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: block;
  margin: 0 15px;
}
.light ul.cide_list_link_topbar li:before {
  background: #ffffff80;
}
.dark ul.cide_list_link_topbar li:before {
  background: #aaa;
}
ul.cide_list_link_topbar li:first-child:before {
  display: none;
}

body:not(.cide-mobile).has-offcanvas--overlay.hasVerticalScrollbar {
  padding-right: 17px;
}
body:not(.cide-mobile).has-offcanvas--overlay.hasVerticalScrollbar .site-header.fmc-transparent-header, body:not(.cide-mobile).has-offcanvas--overlay.hasVerticalScrollbar .fm-header-sticky {
  padding-right: 17px;
}

body:not(.cide-mobile) .c-offcanvas.is-open .offcanvas-content {
  overflow: unset;
}
body:not(.cide-mobile) .c-offcanvas.is-open .offcanvas-content .cart_box_content {
  padding: 15px 0 0px;
}
body:not(.cide-mobile) .c-offcanvas.is-open .offcanvas-content .cart_box_content .woocommerce-mini-cart {
  position: relative;
  padding: 0 20px;
}
body:not(.cide-mobile) .c-offcanvas.is-open .offcanvas-content .cart_box_content .widget_shopping_cart_content > p {
  padding: 0 20px;
}
body:not(.cide-mobile) .c-offcanvas.is-open .offcanvas-content .cart_box_content .widget_shopping_cart_content > p.woocommerce-mini-cart__total {
  padding: 22px 30px !important;
  margin: auto 0px 0;
  background-color: #eaeef5;
}
body:not(.cide-mobile) .c-offcanvas.is-open .offcanvas-content .cart_box_content .widget_shopping_cart_content > p.buttons {
  padding: 0;
}
body:not(.cide-mobile) .c-offcanvas.is-open .offcanvas-content .cart_box_content .widget_shopping_cart_content > p.buttons a.button {
  border-radius: 0;
  height: 69px;
  font-size: 14px;
}
body:not(.cide-mobile) .c-offcanvas.is-open .offcanvas-content .cart_box_content .cide-free-shipping-msg {
  padding: 0 20px;
}
body:not(.cide-mobile) .c-offcanvas.is-open .offcanvas-content .filter-content-wrap {
  position: relative;
  height: calc(100% - 105px);
  padding: 0 15px;
}
body:not(.cide-mobile) .c-offcanvas.is-open#filter-canvas {
  z-index: 108000;
}
body:not(.cide-mobile) .c-offcanvas.is-open#filter-canvas .offcanvas-content {
  padding: 0;
}
body:not(.cide-mobile) .c-offcanvas.is-open#filter-canvas .offcanvas-content .offcanvas_box_head {
  padding: 15px 30px;
}
body:not(.cide-mobile) .c-offcanvas.is-open#hamburger-canvas .hamburger-screen-inner {
  overflow: unset;
}
body:not(.cide-mobile) .c-offcanvas.is-open#hamburger-canvas .hamburger-screen-inner .hamburger-screen-content {
  position: relative;
  height: calc(100% - 75px);
  padding: 14px 0 0;
}
body:not(.cide-mobile) .c-offcanvas.is-open#hamburger-canvas .hamburger-screen-inner .hamburger-screen-content > .hamburger-navigation {
  padding: 0 8em;
}
body:not(.cide-mobile) .c-offcanvas.is-open#hamburger-canvas .hamburger-screen-inner.has_bottom .hamburger-screen-content {
  height: calc(100% - 170px);
}
body:not(.cide-mobile) .c-offcanvas.is-open#hamburger-canvas .hamburger-screen-inner .hamburger-bottom {
  margin-top: 0;
}
body:not(.cide-mobile) .fm-search-form.ajax_search .fm-search-results {
  overflow: initial;
}
body:not(.cide-mobile) .fm-search-form.ajax_search .fm-search-results .fm-dataset-search {
  position: relative;
  height: 100%;
}
body:not(.cide-mobile) .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results, body:not(.cide-mobile) .search_form_wrapper.header-element .fm-search-form.ajax_search .fm-search-results {
  padding: 20px 0;
}
body:not(.cide-mobile) .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results .fm-dataset-search, body:not(.cide-mobile) .search_form_wrapper.header-element .fm-search-form.ajax_search .fm-search-results .fm-dataset-search {
  padding: 0 20px;
  display: block;
  height: 380px;
}

.igrowl-success {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #fefefe;
  border: 1px solid #a4e648;
}
.igrowl-success .igrowl-message {
  color: #232529;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}
.igrowl-success .igrowl-title {
  color: #232529;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
}

.igrowl-dismiss {
  display: none;
}

@media (min-width: 1200px) {
  body:not(.cide-mobile) .c-offcanvas.is-open .offcanvas-content .cart_box_content .widget_shopping_cart_content > p:not(.buttons), body:not(.cide-mobile) .c-offcanvas.is-open .offcanvas-content .cart_box_content .woocommerce-mini-cart, body:not(.cide-mobile) .c-offcanvas.is-open .offcanvas-content .cart_box_content .cide-free-shipping-msg {
    padding: 0 30px;
  }
}
.elementor-element .fmtpl-products ul.products {
  list-style: none;
}
.elementor-element .fmtpl-products ul.products:before, .elementor-element .fmtpl-products ul.products:after {
  content: none;
}
.elementor-element .fmtpl-products ul.products.columns-1 li.product {
  width: 100%;
}
.elementor-element .fmtpl-products ul.products.columns-2 li.product {
  width: 50%;
}
.elementor-element .fmtpl-products ul.products.columns-3 li.product {
  width: 33.3333333333%;
}
.elementor-element .fmtpl-products ul.products.columns-4 li.product {
  width: 25%;
}
.elementor-element .fmtpl-products ul.products.columns-5 li.product {
  width: 20%;
}
.elementor-element .fmtpl-products ul.products.columns-6 li.product {
  width: 16.6666666667%;
}
.elementor-element .fmtpl-products ul.products .fami-product-item {
  position: relative;
}
.elementor-element .fmtpl-products ul.products .fami-product-item .product-item-wrap .product-thumbnail {
  position: relative;
  overflow: hidden;
}
.elementor-element .fmtpl-products ul.products .fami-product-item .product-item-wrap .product-thumbnail .product-thumbnail-zoom {
  display: block;
}
.elementor-element .fmtpl-products ul.products .fami-product-item .product-item-wrap .product-thumbnail img {
  margin-bottom: 0;
}
.elementor-element .fmtpl-products ul.products .fami-product-item .product-item-wrap .product-thumbnails--hover img {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.elementor-element .fmtpl-products ul.products .fami-product-item .product-item-wrap .product-thumbnails--hover .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.elementor-element .fmtpl-products ul.products .fami-product-item .product-item-wrap:hover .hover-image {
  opacity: 1;
}
.elementor-element .fmtpl-products ul.products .fami-product-item .fami_flashs_group {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 15px;
  left: 15px;
  text-align: right;
  z-index: 1;
}
.elementor-element .fmtpl-products div:not(.swiper-container) > ul.products {
  margin-left: -10px;
  margin-right: -10px;
}
.elementor-element .fmtpl-products div:not(.swiper-container) > ul.products li.product {
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .elementor-element .fmtpl-products ul.products.medium-columns-1 li.product {
    width: 100%;
  }
  .elementor-element .fmtpl-products ul.products.medium-columns-2 li.product {
    width: 50%;
  }
  .elementor-element .fmtpl-products ul.products.medium-columns-3 li.product {
    width: 33.3333333333%;
  }
  .elementor-element .fmtpl-products ul.products.medium-columns-4 li.product {
    width: 25%;
  }
  .elementor-element .fmtpl-products div:not(.swiper-container) > ul.products {
    margin-left: -10px;
    margin-right: -10px;
  }
  .elementor-element .fmtpl-products div:not(.swiper-container) > ul.products li.product {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .elementor-element .fmtpl-products ul.products.small-columns-1 li.product {
    width: 100%;
  }
  .elementor-element .fmtpl-products ul.products.small-columns-2 li.product {
    width: 50%;
  }
  .elementor-element .fmtpl-products div:not(.swiper-container) > ul.products {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .elementor-element .fmtpl-products div:not(.swiper-container) > ul.products li.product {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
@media (min-width: 768px) {
  .fmtpl-products.product_grid_mansory ul.products {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .fmtpl-products.product_grid_mansory ul.products:before, .fmtpl-products.product_grid_mansory ul.products:after {
    content: none;
    display: none;
  }
  .fmtpl-products.product_grid_mansory ul.products > li.product {
    width: auto !important;
    margin: 0;
  }
  .fmtpl-products.product_grid_mansory ul.products > li:nth-child(10n+1), .fmtpl-products.product_grid_mansory ul.products > li:nth-child(10n+8) {
    grid-column-end: span 2;
    grid-row-end: span 2;
  }
  .fmtpl-products.product_grid_mansory ul.products > li:nth-last-child(1), .fmtpl-products.product_grid_mansory ul.products > li:nth-last-child(2), .fmtpl-products.product_grid_mansory ul.products > li:nth-last-child(3) {
    grid-column-end: inherit;
    grid-row-end: inherit;
  }
}
@media screen and (max-width: 600px) {
  body {
    position: initial;
  }
}
.header-bottom-left-wrap.categories_element {
  height: 100%;
}

.product_all_categories_list {
  margin: 0 25px 0 0;
  list-style: none;
  text-align: center;
  background: #000000;
  height: 100%;
  padding: 0;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product_all_categories_list ul {
  list-style: none;
}
.product_all_categories_list li {
  position: relative;
  text-align: left;
}
.product_all_categories_list li > ul {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  left: 100%;
  top: 0;
  padding: 0;
  background: #ffffff;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: opacity 0.3s linear 0s, visibility 0.3s linear 0s;
  -moz-transition: opacity 0.3s linear 0s, visibility 0.3s linear 0s;
  -ms-transition: opacity 0.3s linear 0s, visibility 0.3s linear 0s;
  -o-transition: opacity 0.3s linear 0s, visibility 0.3s linear 0s;
  transition: opacity 0.3s linear 0s, visibility 0.3s linear 0s;
}
.product_all_categories_list li:hover > ul {
  visibility: visible;
  opacity: 1;
}
.product_all_categories_list li.product_cat {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #ffffff;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  padding: 0 20px 0 15px;
  background-position: right 15px top 50%;
  background-size: 15px;
  background-repeat: no-repeat;
  background-image: url(//www.mspvn.com/wp-content/themes/cide/assets/images/select_icon_w.svg);
}
.product_all_categories_list li.product_cat > ul {
  padding: 0;
  width: 100%;
  top: 100%;
  left: 0;
}
.product_all_categories_list li.product_cat > ul li.cat-item {
  display: inline-flex;
  width: 100%;
  font-size: 0;
  border-bottom: 1px solid #e6e6e6;
  min-width: 220px;
}
.product_all_categories_list li.product_cat > ul li.cat-item a {
  font-size: 13px;
  line-height: 16px;
  padding: 12px 15px;
  display: inline-flex;
  width: 100%;
}

.woocommerce .star-rating {
  color: #ffd015;
}
.woocommerce .star-rating, .woocommerce .star-rating span {
  width: 75px;
  letter-spacing: 4px;
  font-size: 11px;
}
.woocommerce ul.products li.product .star-rating {
  display: inline-block;
  margin-bottom: 10px;
  width: 75px;
  letter-spacing: 4px;
  font-size: 11px;
}

.tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button {
  margin: 0;
  /* remove default */
}
.tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button::before {
  display: none !important;
}
.woocommerce ul.products .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button span.tinvwl_add_to_wishlist-text, .woocommerce ul.products .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button span.tinvwl_already_on_wishlist-text {
  display: none;
}
.tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button svg.fm-icon {
  display: inline-block;
  width: 100%;
  width: 17px;
  height: 17px;
}
.tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button svg.fm-icon.icon-hover {
  display: none;
}
.tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button:hover svg.fm-icon {
  fill: #232529;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
  animation: heartBeat 1.2s ease-in-out infinite;
}
.tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-make-remove span.tinvwl_remove_from_wishlist-text {
  display: none !important;
}
.tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon {
  display: none;
}
.tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon.icon-hover {
  display: inline-block;
}
.tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon.icon-hover, .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon.icon-hover:hover {
  fill: #f33c3c;
}

.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-carousel ul.swiper-wrapper li.category-item h3 a,
.fmc-checkout-step .step a.step-link,
.fmc-checkout-step .step span.label,
.nav-menu li li a,
.woocommerce-loop-product__title a,
.woocommerce-page .woocommerce-breadcrumb a,
.woocommerce-LostPassword a,
.cide-sidebar-content aside.widget .cide-posts-list .post-item .post-list-content .post-list-title a,
body .cide-sidebar-content aside.widget ul:not(.woof_list) li a,
.single-post .site-main article.single-post .post-header .metas a,
.single-post .site-main article.single-post .footer-post .post-navigation .nav-links a .nav-post-title,
.single-post #comments .comment-respond .comment-form p a, .page:not(.woocommerce-page) #comments .comment-respond .comment-form p a {
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.theme-cide .fmc-checkout-step .step span.label::after {
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.familab_theme a.tf_button_buynow {
  background: #f33c3c;
  height: 40px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFF !important;
  font-size: 12px !important;
  letter-spacing: 2px;
  font-weight: 600 !important;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -webkit-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -moz-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -ms-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -o-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
}
.familab_theme a.tf_button_buynow:hover {
  background-color: #83b735;
}

.woocommerce ul.products.products-grid-style li.product {
  margin-bottom: 20px;
}
.woocommerce ul.products.products-grid-style li.product .fmc-flashs-group {
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 1;
  top: 6px;
  right: 6px;
  left: auto;
}
.woocommerce ul.products.products-grid-style li.product .fmc-flashs-group .woocommerce-badge {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  padding: 0 10px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.woocommerce ul.products.products-grid-style li.product .fmc-flashs-group .woocommerce-badge.sold_out .fm-icon {
  display: none;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail {
  margin-bottom: 15px;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .cide_thumb_action {
  width: 100%;
  position: absolute;
  font-size: 0;
  line-height: 0;
  -webkit-transition: 0.4s linear;
  -moz-transition: 0.4s linear;
  -ms-transition: 0.4s linear;
  -o-transition: 0.4s linear;
  transition: 0.4s linear;
  display: flex;
  justify-content: center;
  align-items: center;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .cide_thumb_action > a.yith-wcqv-button, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .cide_thumb_action > button.woosq-btn {
  display: none;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .cide_thumb_action > .added_to_cart.wc-forward {
  display: none;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .cide_thumb_action > *:hover, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .cide_thumb_action > .button.added, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .cide_thumb_action .tinvwl_add_to_wishlist_button:hover {
  background-color: #f33c3c;
  border: #f33c3c;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .cide_thumb_action > *:hover svg, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .cide_thumb_action > .button.added svg, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .cide_thumb_action .tinvwl_add_to_wishlist_button:hover svg {
  fill: #fff;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .cide_thumb_action .tinvwl_add_to_wishlist_button {
  display: inherit;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .cide_thumb_action.bottom {
  bottom: 0;
  top: auto;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .cide_thumb_action.right {
  right: 0;
  left: auto;
  width: auto;
  height: 100%;
  top: 0;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .product-top-infos, .woocommerce ul.products.products-grid-style li.product .product-infos .cide_item_title_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .product-top-infos .star-rating, .woocommerce ul.products.products-grid-style li.product .product-infos .cide_item_title_wrapper .star-rating {
  margin-bottom: 0;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .product-item-cat-link {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 500;
  color: #868686;
  letter-spacing: 1.5px;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .woocommerce-loop-product__title {
  font-size: 15px;
  line-height: 1.2;
  color: #000000;
  font-weight: 500;
  padding: 0;
  margin-bottom: 6px;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .price {
  color: #000;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .price span.woocs_price_code {
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .price ins {
  float: left;
  color: #000000;
  margin-right: 8px;
  font-weight: 500;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .price del {
  color: #888;
  font-size: 12px;
  font-weight: 400;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .variations_form {
  background: none;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .variations_form.wvs-archive-variation-wrapper .variations .woo-variation-items-wrapper {
  margin: 0;
}
.woo-variation-swatches .woocommerce ul.products.products-grid-style li.product .product-infos .variations_form .variable-items-wrapper .variable-item:not(.radio-variable-item).color-variable-item {
  margin: 4px 12px 4px 0;
}
.woo-variation-swatches .woocommerce ul.products.products-grid-style li.product .product-infos .variations_form .variable-items-wrapper .variable-item:not(.radio-variable-item).color-variable-item:not(:hover) {
  box-shadow: 0 0 0 1px transparent !important;
  background-color: transparent !important;
}
.woo-variation-swatches .woocommerce ul.products.products-grid-style li.product .product-infos .variations_form .variable-items-wrapper .variable-item:not(.radio-variable-item).color-variable-item .variable-item-span-color:after {
  box-shadow: none;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail {
  margin-bottom: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action {
  opacity: 0;
  left: 0;
  padding: 19px 0 4px;
  visibility: hidden;
  background-color: transparent;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action.right, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action.right {
  flex-direction: column;
  left: auto;
  top: auto;
  height: auto;
  bottom: 0;
  z-index: 2;
  right: 20px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action.right .added_to_cart.wc-forward, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action.right .added_to_cart.wc-forward {
  display: none !important;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action.bottom, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action.bottom {
  width: auto;
  right: 0;
  z-index: 1;
  bottom: 10px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action:not(.bottom) > *, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action:not(.bottom) > * {
  color: #232529;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  padding: 0;
  font-weight: 400;
  margin: 0 0px 14px;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  font-size: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action:not(.bottom) > * > svg, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action:not(.bottom) > * > svg {
  fill: #232529;
  width: 18px;
  height: 18px;
  display: inline-block;
  width: 100%;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action:not(.bottom) > *, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action:not(.bottom) > * {
  color: #232529;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  padding: 0;
  font-weight: 400;
  margin: 0 0px 14px;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  font-size: 0;
  text-align: center;
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0.5;
  letter-spacing: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action:not(.bottom) > * > svg, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action:not(.bottom) > * > svg {
  font-size: 15px;
  fill: #232529;
  width: 18px;
  height: 18px;
  display: inline-block;
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action > .button.added, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action > .button.added {
  background-color: #f33c3c;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action > .button.added > svg.fm-icon, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action > .button.added > svg.fm-icon {
  fill: #fff;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action > .added_to_cart.wc-forward, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action > .added_to_cart.wc-forward {
  display: inline-flex !important;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action > .added_to_cart.wc-forward:after, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action > .added_to_cart.wc-forward:after {
  width: 15px;
  height: 15px;
  margin-top: 0;
  display: inline-block;
  content: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxwYXRoIGQ9Ik00NTguNzM3LDQyMi4yMThsLTIyLjg2NS0yODguMTE2Yy0xLjQyNS0xOC41NjItMTcuMTIzLTMzLjEwMy0zNS43MzktMzMuMTAzSDM1NC45N3YtMi4wMw0KCQkJQzM1NC45Nyw0NC4zOTcsMzEwLjU3MywwLDI1Ni4wMDEsMHMtOTguOTY5LDQ0LjM5Ny05OC45NjksOTguOTY5djIuMDNIMTExLjg3Yy0xOC42MTcsMC0zNC4zMTYsMTQuNTQtMzUuNzM2LDMzLjA2NA0KCQkJTDUzLjI2Miw0MjIuMjU3Yy0xLjc3LDIzLjA3NSw2LjIzNSw0Ni4wNDgsMjEuOTYxLDYzLjAyNkM5MC45NDksNTAyLjI2MSwxMTMuMjQyLDUxMiwxMzYuMzg1LDUxMmgyMzkuMjMxDQoJCQljMjMuMTQyLDAsNDUuNDM2LTkuNzM4LDYxLjE2My0yNi43MTdDNDUyLjUwNSw0NjguMzA0LDQ2MC41MDksNDQ1LjMzMiw0NTguNzM3LDQyMi4yMTh6IE0xODcuMDIyLDk4Ljk2OQ0KCQkJYzAtMzguMDM1LDMwLjk0NS02OC45NzksNjguOTc5LTY4Ljk3OXM2OC45NzksMzAuOTQ1LDY4Ljk3OSw2OC45Nzl2Mi4wM0gxODcuMDIyVjk4Ljk2OXogTTQxNC43NzYsNDY0LjkwNQ0KCQkJYy0xMC4yMTgsMTEuMDMtMjQuMTI0LDE3LjEwNS0zOS4xNiwxNy4xMDVoLTIzOS4yM2MtMTUuMDM2LDAtMjguOTQyLTYuMDc1LTM5LjE2LTE3LjEwNQ0KCQkJYy0xMC4yMTctMTEuMDMxLTE1LjIxMS0yNS4zNjMtMTQuMDYzLTQwLjMxNWwyMi44Ny0yODguMTk1YzAuMjMyLTMuMDMyLDIuNzk2LTUuNDA2LDUuODM3LTUuNDA2aDQ1LjE2MnYzNi45MzUNCgkJCWMwLDguMjgxLDYuNzE0LDE0Ljk5NSwxNC45OTUsMTQuOTk1YzguMjgxLDAsMTQuOTk1LTYuNzE0LDE0Ljk5NS0xNC45OTV2LTM2LjkzNUgzMjQuOTh2MzYuOTM1DQoJCQljMCw4LjI4MSw2LjcxNCwxNC45OTUsMTQuOTk1LDE0Ljk5NXMxNC45OTUtNi43MTQsMTQuOTk1LTE0Ljk5NXYtMzYuOTM1aDQ1LjE2M2MzLjA0LDAsNS42MDQsMi4zNzUsNS44NCw1LjQ0NmwyMi44NjUsMjg4LjExNQ0KCQkJQzQyOS45ODgsNDM5LjU0Miw0MjQuOTkzLDQ1My44NzMsNDE0Ljc3Niw0NjQuOTA1eiIvPg0KCTwvZz4NCjwvZz4NCjxnPg0KCTxnPg0KCQk8cGF0aCBkPSJNMzIzLjU1NiwyNTQuMjg1Yy01Ljg1NC01Ljg1Ni0xNS4zNDktNS44NTYtMjEuMjA0LDBsLTY2Ljk1Niw2Ni45NTZsLTI1Ljc0Ni0yNS43NDZjLTUuODU1LTUuODU2LTE1LjM1LTUuODU2LTIxLjIwNiwwDQoJCQljLTUuODU2LDUuODU2LTUuODU2LDE1LjM1LDAsMjEuMjA2bDM2LjM0OSwzNi4zNDljMi45MjgsMi45MjgsNi43NjYsNC4zOTMsMTAuNjAyLDQuMzkzczcuNjc1LTEuNDY0LDEwLjYwMi00LjM5M2w3Ny41NTgtNzcuNTU4DQoJCQlDMzI5LjQxMiwyNjkuNjM1LDMyOS40MTIsMjYwLjE0MSwzMjMuNTU2LDI1NC4yODV6Ii8+DQoJPC9nPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=");
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action > .added_to_cart.wc-forward:hover:after, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action > .added_to_cart.wc-forward:hover:after {
  fill: #fff;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-infos, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-infos {
  text-align: left;
  position: relative;
  padding-top: 15px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-infos .variations_form.wvs-archive-variation-wrapper .variable-items-wrapper, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-infos .variations_form.wvs-archive-variation-wrapper .variable-items-wrapper {
  justify-content: flex-start;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-thumbnail a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-infos {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  margin-top: 5px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-infos .product-item-cat-link {
  color: #ffffff;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-infos .woocommerce-loop-product__title, .woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-infos .woocommerce-loop-product__title a {
  color: #ffffff;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-infos .price, .woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-infos .price del, .woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-infos .price ins {
  color: #ffffff;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-infos .cide_item_button_wrapper {
  order: 10;
  background-color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin: 18px 0 5px;
  display: flex;
  flex-wrap: wrap;
  font-size: 0;
  line-height: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-infos .cide_item_button_wrapper > * {
  color: #232529;
  font-size: 0;
  line-height: 0;
  padding: 14.5px 0;
  width: 60px;
  background-color: transparent !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-infos .cide_item_button_wrapper > * > svg {
  font-size: 17px;
  fill: #232529;
  width: 18px;
  height: 18px;
  flex: 0 0 100%;
  max-width: 100%;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-infos .cide_item_button_wrapper > * a.tinvwl_add_to_wishlist_button:before {
  display: none !important;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-infos .cide_item_button_wrapper > * .icon-hover.fm-icon {
  display: none;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-infos .cide_item_button_wrapper > *.tinv-wishlist a svg {
  width: 17px;
  height: 17px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-infos .cide_item_button_wrapper > * + * {
  position: relative;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-infos .cide_item_button_wrapper > * + *:before {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #e4e4e4;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-infos .cide_item_button_wrapper > .button.added {
  display: none;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-infos .cide_item_button_wrapper > .added_to_cart.wc-forward:after {
  width: 17px;
  height: 17px;
  margin-top: 7px;
  display: inline-block;
  content: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxwYXRoIGQ9Ik00NTguNzM3LDQyMi4yMThsLTIyLjg2NS0yODguMTE2Yy0xLjQyNS0xOC41NjItMTcuMTIzLTMzLjEwMy0zNS43MzktMzMuMTAzSDM1NC45N3YtMi4wMw0KCQkJQzM1NC45Nyw0NC4zOTcsMzEwLjU3MywwLDI1Ni4wMDEsMHMtOTguOTY5LDQ0LjM5Ny05OC45NjksOTguOTY5djIuMDNIMTExLjg3Yy0xOC42MTcsMC0zNC4zMTYsMTQuNTQtMzUuNzM2LDMzLjA2NA0KCQkJTDUzLjI2Miw0MjIuMjU3Yy0xLjc3LDIzLjA3NSw2LjIzNSw0Ni4wNDgsMjEuOTYxLDYzLjAyNkM5MC45NDksNTAyLjI2MSwxMTMuMjQyLDUxMiwxMzYuMzg1LDUxMmgyMzkuMjMxDQoJCQljMjMuMTQyLDAsNDUuNDM2LTkuNzM4LDYxLjE2My0yNi43MTdDNDUyLjUwNSw0NjguMzA0LDQ2MC41MDksNDQ1LjMzMiw0NTguNzM3LDQyMi4yMTh6IE0xODcuMDIyLDk4Ljk2OQ0KCQkJYzAtMzguMDM1LDMwLjk0NS02OC45NzksNjguOTc5LTY4Ljk3OXM2OC45NzksMzAuOTQ1LDY4Ljk3OSw2OC45Nzl2Mi4wM0gxODcuMDIyVjk4Ljk2OXogTTQxNC43NzYsNDY0LjkwNQ0KCQkJYy0xMC4yMTgsMTEuMDMtMjQuMTI0LDE3LjEwNS0zOS4xNiwxNy4xMDVoLTIzOS4yM2MtMTUuMDM2LDAtMjguOTQyLTYuMDc1LTM5LjE2LTE3LjEwNQ0KCQkJYy0xMC4yMTctMTEuMDMxLTE1LjIxMS0yNS4zNjMtMTQuMDYzLTQwLjMxNWwyMi44Ny0yODguMTk1YzAuMjMyLTMuMDMyLDIuNzk2LTUuNDA2LDUuODM3LTUuNDA2aDQ1LjE2MnYzNi45MzUNCgkJCWMwLDguMjgxLDYuNzE0LDE0Ljk5NSwxNC45OTUsMTQuOTk1YzguMjgxLDAsMTQuOTk1LTYuNzE0LDE0Ljk5NS0xNC45OTV2LTM2LjkzNUgzMjQuOTh2MzYuOTM1DQoJCQljMCw4LjI4MSw2LjcxNCwxNC45OTUsMTQuOTk1LDE0Ljk5NXMxNC45OTUtNi43MTQsMTQuOTk1LTE0Ljk5NXYtMzYuOTM1aDQ1LjE2M2MzLjA0LDAsNS42MDQsMi4zNzUsNS44NCw1LjQ0NmwyMi44NjUsMjg4LjExNQ0KCQkJQzQyOS45ODgsNDM5LjU0Miw0MjQuOTkzLDQ1My44NzMsNDE0Ljc3Niw0NjQuOTA1eiIvPg0KCTwvZz4NCjwvZz4NCjxnPg0KCTxnPg0KCQk8cGF0aCBkPSJNMzIzLjU1NiwyNTQuMjg1Yy01Ljg1NC01Ljg1Ni0xNS4zNDktNS44NTYtMjEuMjA0LDBsLTY2Ljk1Niw2Ni45NTZsLTI1Ljc0Ni0yNS43NDZjLTUuODU1LTUuODU2LTE1LjM1LTUuODU2LTIxLjIwNiwwDQoJCQljLTUuODU2LDUuODU2LTUuODU2LDE1LjM1LDAsMjEuMjA2bDM2LjM0OSwzNi4zNDljMi45MjgsMi45MjgsNi43NjYsNC4zOTMsMTAuNjAyLDQuMzkzczcuNjc1LTEuNDY0LDEwLjYwMi00LjM5M2w3Ny41NTgtNzcuNTU4DQoJCQlDMzI5LjQxMiwyNjkuNjM1LDMyOS40MTIsMjYwLjE0MSwzMjMuNTU2LDI1NC4yODV6Ii8+DQoJPC9nPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=");
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-infos .cide_item_button_wrapper > .added_to_cart.wc-forward:after:hover:after {
  fill: #fff;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-infos .cide_item_button_wrapper > *:hover svg {
  fill: #f33c3c;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-infos .cide_item_button_wrapper > *:hover a.tinvwl_add_to_wishlist_button .icon-hover.fm-icon {
  display: inline-block;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-infos .cide_item_button_wrapper > *:hover a.tinvwl_add_to_wishlist_button .fm-icon:not(.icon-hover) {
  display: none;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-infos .cide_item_button_wrapper .tinvwl-product-in-list svg.fm-icon {
  display: none;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap .product-infos .cide_item_button_wrapper .tinvwl-product-in-list svg.fm-icon.icon-hover {
  display: inline-block;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap:hover .product-thumbnail a:before {
  background-color: rgba(35, 37, 41, 0.6);
  opacity: 1;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap:hover .product-thumbnail a img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 1.5s linear;
  -moz-transition: all 1.5s linear;
  -ms-transition: all 1.5s linear;
  -o-transition: all 1.5s linear;
  transition: all 1.5s linear;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-2 .product-item-wrap:hover .product-infos {
  opacity: 1;
  margin-top: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-3 .product-thumbnail .cide_thumb_action {
  opacity: 0;
  left: 0;
  width: 100%;
  padding: 15px 0 5px;
  visibility: hidden;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-3 .product-thumbnail .cide_thumb_action.right {
  top: 5px !important;
  bottom: auto !important;
  z-index: 2;
  right: 10px !important;
  align-items: self-start;
  background-color: transparent;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-3 .product-thumbnail .cide_thumb_action:not(.right) > * {
  color: #232529;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  padding: 0;
  font-weight: 400;
  margin: 0 8px 10px;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  font-size: 0;
  letter-spacing: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-3 .product-thumbnail .cide_thumb_action:not(.right) > * > svg {
  fill: #232529;
  width: 17px;
  height: 17px;
  display: inline-block;
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-3 .product-thumbnail .cide_thumb_action:not(.right) > *.wc-forward {
  display: none !important;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-3 .product-thumbnail .cide_thumb_action > .button.added {
  background-color: #f33c3c;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-3 .product-thumbnail .cide_thumb_action > .button.added > svg.fm-icon {
  fill: #fff;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-3 .product-infos {
  text-align: center;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-3 .product-infos .price .woocs_price_code {
  display: inline-block;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-3 .variations_form.wvs-archive-variation-wrapper .variable-items-wrapper {
  justify-content: center !important;
  flex-direction: column;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product {
  text-align: center;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-thumbnail .cide_thumb_action {
  bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-thumbnail .cide_thumb_action.right {
  left: auto;
  top: 5px;
  height: auto;
  bottom: auto !important;
  z-index: 2;
  right: 10px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-thumbnail .cide_thumb_action:not(.right) > * {
  color: #232529;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  padding: 0;
  font-weight: 400;
  margin: 0 8px 10px;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  font-size: 0;
  letter-spacing: 0;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-thumbnail .cide_thumb_action:not(.right) > * > svg {
  fill: #232529;
  width: 18px;
  height: 18px;
  display: inline-block;
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-thumbnail .cide_thumb_action:not(.right) > *.wc-forward {
  display: none !important;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-thumbnail .cide_thumb_action > .button.added {
  background-color: #f33c3c;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-thumbnail .cide_thumb_action > .button.added > svg.fm-icon {
  fill: #fff;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-infos {
  text-align: inherit;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-infos .price .woocs_price_code {
  display: inline-block;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .variations_form.wvs-archive-variation-wrapper .variable-items-wrapper {
  justify-content: center;
  flex-direction: column;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-border {
  border-left: 1px solid #e4e4e4;
  margin-left: 1px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-border li.product {
  box-sizing: border-box;
  background: none;
  margin: -1px 0 0 0 !important;
  border: 1px solid #e4e4e4;
  border-width: 1px 1px 1px 0;
  padding-bottom: 18px;
  text-align: center;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-border li.product .product-thumbnail .cide_thumb_action {
  bottom: 15px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-border li.product .product-thumbnail .cide_thumb_action > * {
  color: #232529;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  padding: 0;
  font-weight: 400;
  margin: 0 8px 10px;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  font-size: 0;
  letter-spacing: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-border li.product .product-thumbnail .cide_thumb_action > * > svg {
  fill: #232529;
  display: inline-block;
  width: 100%;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-border li.product .product-infos {
  text-align: inherit;
  position: relative;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-border li.product .product-infos .variations_form {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-26px);
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-border li.product .product-infos .price .woocs_price_code {
  display: inline-block;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-border li.product .variations_form.wvs-archive-variation-wrapper .variable-items-wrapper {
  justify-content: center;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right {
  top: auto;
  bottom: 0;
  height: auto;
  width: auto;
  padding-right: 0;
  flex-direction: column;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right a.button, .woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right a.tinvwl_add_to_wishlist_button, .woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right button.woosq-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 0;
  letter-spacing: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: none !important;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right a.button svg, .woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right a.tinvwl_add_to_wishlist_button svg, .woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right button.woosq-btn svg {
  fill: #000;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right a.button svg.icon-hover, .woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right a.tinvwl_add_to_wishlist_button svg.icon-hover, .woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right button.woosq-btn svg.icon-hover {
  fill: #f33c3c;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right a.button:before, .woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right a.tinvwl_add_to_wishlist_button:before, .woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right button.woosq-btn:before {
  content: "";
  display: block;
  width: 88px;
  height: 88px;
  background: #FFF;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  transform: translate(50%, 50%);
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right button.woosq-btn {
  display: none;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right button.woosq-btn svg {
  width: 14px;
  height: 14px;
  margin-left: 10px;
  margin-top: 6px;
  flex: 0 0 100%;
  max-width: 100%;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right a.tinvwl_add_to_wishlist_button {
  margin-bottom: 0;
  background: none;
  border-width: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.bottom {
  left: 50%;
  transform: translateX(-50%);
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.bottom .variations_form {
  background: none !important;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.bottom .variations_form ul.variations {
  padding: 0;
  margin-bottom: 12px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.bottom .variations_form ul.variations .woo-variation-items-wrapper {
  margin: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action .tinv-wraper {
  background: none;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail:hover .cide_product_item_thumb_action_wrap .cide_thumb_action.right a.button, .woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail:hover .cide_product_item_thumb_action_wrap .cide_thumb_action.right a.tinvwl_add_to_wishlist_button {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-infos .product-top-infos .star-rating {
  margin-bottom: 10px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-infos .product-top-infos .product-item-cat-link + .star-rating {
  margin-bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-infos .woocommerce-loop-product__title {
  font-size: 14px;
  line-height: 18px;
  color: #666666;
  font-weight: 400;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-infos .woocommerce-loop-product__title a {
  color: inherit;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-infos .woocommerce-loop-product__title a:hover {
  color: #333333;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-infos .price {
  font-size: 14px;
  line-height: 18px;
  color: #333333;
  font-weight: 500;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-infos .price del {
  color: #999999;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-infos .price íns {
  color: inherit;
  font-weight: inherit;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-infos > a.button {
  display: none;
  order: 5;
  margin: 0;
  background: none;
  color: #f33c3c;
  padding: 0;
  text-transform: uppercase;
  align-items: center;
  line-height: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.075em;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-infos > a.button svg.fm-icon {
  display: none;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-7 li.product .product-thumbnail {
  overflow: visible;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-7 li.product .product-thumbnail .cide_thumb_action.bottom {
  display: none;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-7 li.product .product-thumbnail .cide_thumb_action .tinv-wraper {
  background: none;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-7 li.product .product-thumbnail .variations_form {
  background: none !important;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-7 li.product .product-thumbnail .variations_form .variations .variable-items-wrapper {
  justify-content: center !important;
  flex-direction: column !important;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-7 li.product .product-thumbnail .variations_form .variations .variable-item:not(.radio-variable-item) {
  margin-right: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-7 li.product .product-infos {
  text-align: left;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-7 li.product .product-infos .woocommerce-loop-product__title {
  text-align: left;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-7 li.product .product-infos .variations_form {
  background: none !important;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-7 li.product .product-infos .variations_form .variations .variable-items-wrapper {
  justify-content: center !important;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-7 li.product .product-infos .variations_form .variations .variable-item:not(.radio-variable-item) {
  margin-right: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-7 li.product.product-type-variable:hover .product-item-wrap:before {
  right: -35px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-8 li.product .product-thumbnail .cide_thumb_action.bottom {
  display: none;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-8 li.product .product-thumbnail .cide_thumb_action .tinv-wraper {
  background: none;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-8 li.product .product-thumbnail .variations_form {
  background: none !important;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-8 li.product .product-thumbnail .variations_form ul.variable-items-wrapper {
  flex-direction: column !important;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-8 li.product .product-infos .woocommerce-loop-product__title {
  text-align: left;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-8 li.product .product-infos .variations_form {
  background: none !important;
  position: static;
  order: 5;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-8 li.product .product-infos .variations_form * {
  text-align: left;
  justify-content: flex-start;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-8 li.product .product-infos .variations_form ul.variations > li ul.variable-items-wrapper > li {
  margin: 0 10px 5px 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-9 li.product {
  text-align: center;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-9 li.product .product-thumbnail .cide_thumb_action.bottom {
  display: none;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-9 li.product .product-thumbnail .cide_thumb_action .tinv-wraper {
  background: none;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-9 li.product .product-infos {
  text-align: center;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-9 li.product .product-infos .star-rating {
  margin: 0 auto 6px auto;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-9 li.product .product-infos .price .woocs_price_code {
  justify-content: center;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-9 li.product .product-infos .variations_form {
  order: 5;
  margin: 6px 0 0 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-9 li.product .product-infos .variations_form * {
  justify-content: center;
  text-align: center;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-thumbnail .swiper-button-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-thumbnail .swiper-button-next svg.fm-icon {
  width: 15px;
  height: 15px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-thumbnail .swiper-button-prev {
  left: 0;
  border-radius: 0 3px 3px 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-thumbnail .swiper-button-prev svg.fm-icon {
  width: 15px;
  height: 15px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos {
  display: flex;
  flex-direction: column;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .product-top-infos {
  order: 1;
  margin-bottom: 6px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .product-item-cat-link {
  line-height: 20px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .yith-wcwl-add-to-wishlist {
  margin: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a.button {
  font-size: 0;
  background: none;
  width: 30px;
  height: 26px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a.button svg.fm-icon {
  fill: #232529;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a.button svg.fm-icon.icon-hover {
  display: none;
  fill: #ec1d25;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a.button:hover svg.fm-icon {
  display: none;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a.button:hover svg.fm-icon.icon-hover {
  display: block;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a.button.delete_item svg.fm-icon {
  display: none;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a.button.delete_item svg.fm-icon.icon-hover {
  display: block;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .tinv-wraper.tinv-wishlist {
  flex: 0 0 40px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .tinv-wraper.tinv-wishlist .tinvwl_add_to_wishlist_button {
  margin-top: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .tinv-wraper.tinv-wishlist .tinvwl_add_to_wishlist_button svg.fm-icon {
  width: unset;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .cide_item_title_wrapper {
  order: 2;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .cide_item_title_wrapper .tinv-wraper {
  flex: 0 0 25px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .cide_item_button_wrapper {
  order: 5;
  display: flex;
  position: relative;
  flex-direction: column;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .cide_item_button_wrapper a.button {
  display: none;
  justify-content: center;
  align-items: center;
  flex: 0 0 100%;
  width: 100%;
  padding: 5px 25px;
  line-height: 30px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  transition: visibility ease-in-out 0.3s, opacity ease-in-out 0.3s, background-color ease-in-out 0.3s, transform ease-in-out 0.3s;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .cide_item_button_wrapper a.button svg.fm-icon {
  margin-right: 6px;
  -webkit-transition: fill 0.35s linear 0s;
  -moz-transition: fill 0.35s linear 0s;
  -ms-transition: fill 0.35s linear 0s;
  -o-transition: fill 0.35s linear 0s;
  transition: fill 0.35s linear 0s;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .cide_item_button_wrapper a.button + .button {
  margin-top: 10px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .cide_item_button_wrapper a.button.yith-wcqv-button, .woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .cide_item_button_wrapper a.button.compare {
  display: none;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .cide_item_button_wrapper .variations_form {
  order: 5;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .cide_item_button_wrapper .variations_form * {
  text-align: left;
  justify-content: flex-start;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .cide_item_button_wrapper .variations_form ul.variations > li ul.variable-items-wrapper > li {
  margin: 0 10px 5px 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .woocommerce-loop-product__title {
  padding: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .product-infos .price {
  margin-bottom: 10px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-slider li.product .swiper-lazy-preloader {
  border: none;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-11 li.product .fmc-flashs-group {
  left: 12px;
  right: auto;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-11 li.product .product-thumbnail .cide_thumb_action.right {
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 10px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-11 li.product .product-thumbnail .cide_thumb_action.right > * {
  color: #232529;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  padding: 0;
  font-weight: 400;
  margin: 0 8px 10px;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  font-size: 0;
  letter-spacing: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-11 li.product .product-thumbnail .cide_thumb_action.right > * > svg {
  fill: #232529;
  display: inline-block;
  width: 100%;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-11 li.product .product-thumbnail .cide_thumb_action.right > .woosq-btn {
  display: none;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-11 li.product .product-infos {
  text-align: left;
  display: flex;
  flex-direction: column;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-11 li.product .product-infos .product-top-infos {
  order: 1;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-11 li.product .product-infos .woocommerce-loop-product__title {
  order: 2;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-11 li.product .product-infos .variations_form {
  order: 3;
  margin-bottom: 15px;
  margin-top: -6px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-11 li.product .product-infos .price {
  order: 4;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-11 li.product .product-infos > a.button {
  display: none;
  order: 5;
  margin: 0;
  background: none;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  color: #f33c3c;
  padding: 0;
  line-height: 18px;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-11 li.product .product-infos > a.button svg.fm-icon {
  display: none;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-11 li.product .product-infos > a.button:hover {
  opacity: 0.8;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-11 li.product .product-infos .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button {
  display: flex;
  margin: 0;
  padding: 0;
  font-size: 0;
  justify-content: center;
  align-items: center;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-12 li.product {
  background: #FFF;
  text-align: center;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-12 li.product .fmc-flashs-group {
  left: 12px;
  right: auto;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-12 li.product .product-thumbnail {
  margin-bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-12 li.product .product-thumbnail .cide_thumb_action.bottom {
  bottom: 0;
  display: flex;
  width: 100% !important;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-12 li.product .product-thumbnail .cide_thumb_action.bottom > a.button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  transition: background-color 0.35s linear 0s, transform 0.35s linear 0s;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-12 li.product .product-thumbnail .cide_thumb_action.bottom > a.button svg {
  margin-right: 6px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-12 li.product .product-thumbnail .cide_thumb_action.right {
  right: 10px;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 10px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-12 li.product .product-thumbnail .cide_thumb_action.right > * {
  color: #f33c3c;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  padding: 0;
  font-weight: 400;
  margin: 0;
  background-color: transparent;
  font-size: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-12 li.product .product-thumbnail .cide_thumb_action.right > * > svg {
  fill: #232529;
  display: inline-block;
  width: 100%;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-12 li.product .product-thumbnail .cide_thumb_action.right > .woosq-btn {
  display: none;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-12 li.product .product-infos {
  padding: 22px 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-12 li.product .product-infos .variations_form {
  margin-top: 8px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-12 li.product .product-infos .variations_form .variations .variable-items-wrapper {
  justify-content: center !important;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-12 li.product .product-infos .star-rating {
  margin: 0 auto;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-12 li.product .product-infos .star-rating + .price {
  margin-top: 15px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-12 li.product .product-infos .woocommerce-loop-product__title {
  margin-bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-12 li.product .product-infos .woocommerce-loop-product__title a:hover {
  opacity: 1;
  color: #f33c3c;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-12 li.product .product-infos .woocommerce-loop-product__title + .star-rating {
  margin-top: 5px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-12 li.product .product-infos .woocommerce-loop-product__title + .price {
  margin-top: 12px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .fmc-flashs-group {
  top: 8px;
  right: auto;
  left: 8px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .fmc-flashs-group .woocommerce-badge {
  letter-spacing: 1px;
  height: 18px;
  line-height: 18px;
  padding: 0 8px;
  min-width: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.bottom {
  bottom: auto;
  top: 5px;
  right: 5px;
  left: auto;
  width: auto;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.bottom a.button, .woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.bottom a.add_to_cart_button, .woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.bottom a.product_type_external, .woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.bottom a.product_type_simple, .woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.bottom button.woosq-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 0;
  letter-spacing: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: none !important;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #e4e4e4;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.bottom a.button svg, .woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.bottom a.add_to_cart_button svg, .woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.bottom a.product_type_external svg, .woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.bottom a.product_type_simple svg, .woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.bottom button.woosq-btn svg {
  fill: #666666;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.bottom button.woosq-btn {
  display: none;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right {
  height: calc(100% - 40px);
  top: auto;
  bottom: 0;
  align-items: flex-start;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right .variations_form {
  background: none !important;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right .variations_form ul.variations {
  padding: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right .variations_form ul.variations .woo-variation-items-wrapper {
  margin: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right .variations_form ul.variations .variable-items-wrapper {
  flex-direction: column;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-infos {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-infos .woocommerce-loop-product__title {
  font-size: 14px;
  line-height: 18px;
  color: #666666;
  font-weight: 400;
  margin-bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-infos .woocommerce-loop-product__title a {
  color: inherit;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-infos .woocommerce-loop-product__title a:hover {
  color: #333333;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-infos .price {
  font-size: 14px;
  line-height: 18px;
  color: #333333;
  font-weight: 500;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-infos .price del {
  color: #999999;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-infos .price ins {
  color: inherit;
  font-weight: inherit;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-infos .star-rating {
  margin-bottom: 0;
  order: 2;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-infos .cide_item_title_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-infos .cide_item_title_wrapper .tinv-wraper {
  flex: 0 0 30px;
  text-align: right;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-infos a.tinvwl_add_to_wishlist_button {
  margin: 0;
  background: none;
  border-width: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-infos a.tinvwl_add_to_wishlist_button svg {
  fill: #666666;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-infos a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon.icon-hover, .woocommerce ul.products.products-grid-style.product-item-cide-style-13 li.product .product-infos a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon.icon-hover:hover {
  fill: #f33c3c;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap {
  display: flex;
  flex-direction: column;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .fmc-flashs-group {
  position: absolute;
  z-index: 1;
  top: 15px;
  left: 15px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .fmc-flashs-group .woocommerce-badge {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  padding: 2px 10px 0;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  border-radius: 11px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .fmc-flashs-group .woocommerce-badge.sold_out .fm-icon {
  display: none;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-thumbnail {
  margin-bottom: 15px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos {
  line-height: 24px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos a.product-item-cat-link {
  font-size: 11px;
  color: #999999;
  text-transform: uppercase;
  line-height: 16px;
  display: block;
  margin-bottom: 5px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos .woocommerce-loop-product__title {
  padding: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos .woocommerce-loop-product__title:not(:hover) {
  color: #232529;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos .star-rating {
  letter-spacing: 4px;
  font-size: 11px;
  color: #232529;
  margin: 0 3px 0 0;
  width: 75px;
  line-height: 24px;
  height: 24px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos .product-item-excerpt {
  font-size: 13px;
  color: #999999;
  margin: 8px 0 10px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos .price {
  font-weight: 400;
  color: #555;
  font-size: 14px;
  margin: 6px 0 0;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos .price del {
  color: #aaa;
  margin-right: 5px;
  font-weight: inherit;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos .price ins {
  color: #ec1d25;
  margin-right: 5px;
  font-weight: inherit;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos .wvs-archive-variation-wrapper .variable-items-wrapper {
  justify-content: flex-start !important;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper > * {
  width: 100%;
  text-align: center;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper a.button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper a.button svg.fm-icon {
  margin-right: 6px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper a.button.yith-wcqv-button, .woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper a.button.compare {
  display: none;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper .price {
  font-weight: 500;
  color: #555;
  font-size: 16px;
  margin: 0;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper .price del {
  color: #aaa;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper .price ins {
  color: #ec1d25;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper .tinv-wraper .tinvwl_add_to_wishlist_button {
  margin: 10px 0 0;
  display: block;
  width: 100%;
  font-size: 10px;
  text-transform: uppercase;
  padding: 13px 20px;
  line-height: 24px;
  background-color: #232529;
  color: #FFF;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper .tinv-wraper .tinvwl_add_to_wishlist_button svg.fm-icon, .woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper .tinv-wraper .tinvwl_add_to_wishlist_button svg.fm-icon.icon-hover {
  fill: #ffffff !important;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper .tinv-wraper .tinvwl_add_to_wishlist_button:hover {
  background-color: #f33c3c;
  color: #ffffff;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper .tinv-wraper .tinvwl_add_to_wishlist_button:hover svg.fm-icon, .woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper .tinv-wraper .tinvwl_add_to_wishlist_button:hover svg.fm-icon.icon-hover {
  fill: #ffffff !important;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button::before {
  /* remove default */
  display: none !important;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button span.tinvwl_add_to_wishlist-text, .woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button span.tinvwl_add_to_wishlist-text, .woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button span.tinvwl_remove_from_wishlist-text {
  margin-left: 3px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button svg.fm-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button svg.fm-icon.icon-hover {
  display: none;
  fill: #aaaaaa;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button svg.fm-icon.icon-hover:hover {
  fill: #ec1d25;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button:hover svg.fm-icon {
  display: none;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button:hover svg.fm-icon.icon-hover {
  display: inline-block;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon {
  display: none;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon.icon-hover {
  display: inline-block;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap {
  display: flex;
  flex-direction: column;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .fmc-flashs-group {
  position: absolute;
  z-index: 1;
  top: 15px;
  left: 15px;
  right: auto;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .fmc-flashs-group .woocommerce-badge {
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  height: 26px;
  padding: 0 10px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .fmc-flashs-group .woocommerce-badge + .woocommerce-badge {
  margin-top: 3px;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .fmc-flashs-group .woocommerce-badge.sold_out .fm-icon {
  fill: #FFF;
  margin-right: 5px;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail {
  margin-bottom: 15px;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos {
  line-height: 24px;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos a.product-item-cat-link {
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 16px;
  display: block;
  color: #999999;
  margin-bottom: 5px;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .woocommerce-loop-product__title {
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .woocommerce-loop-product__title:not(:hover) {
  color: #232529;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .star-rating {
  letter-spacing: 3px;
  font-size: 11px;
  color: #232529;
  margin: 0 3px 0 0;
  width: 75px;
  line-height: 24px;
  height: 24px;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .product-item-excerpt {
  font-size: 13px;
  color: #999999;
  margin: 8px 0 10px;
  max-height: 75px;
  overflow-y: hidden;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .price {
  font-weight: bold;
  color: #555;
  font-size: 14px;
  margin: 6px 0 0;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .price del {
  color: #aaa;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .price ins {
  color: #ec1d25;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .yith-wcwl-add-to-wishlist {
  margin: 0;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a.button {
  font-size: 0;
  background: none;
  width: 30px;
  height: 30px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a.button svg.fm-icon {
  fill: #232529;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper a.button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper a.button.product_type_external svg.fm-icon {
  display: none;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper a.button svg.fm-icon {
  margin-right: 6px;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper a.button.yith-wcqv-button, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper a.button.compare {
  display: none;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_title_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button {
  margin: 0;
  display: flex;
  width: 35px;
}

.woo-variation-swatches .product-item-cide-style-1 ul.variations > li {
  justify-content: flex-start;
  margin: 0;
}
.woo-variation-swatches .product-item-cide-style-3 ul.variations > li {
  justify-content: center;
  margin: 0;
}
.woo-variation-swatches .product-item-cide-style-4 ul.variations > li {
  justify-content: center;
  margin: 0;
}
.woo-variation-swatches .product-item-cide-style-14 ul.variations > li {
  justify-content: center;
  margin: 0;
}

.woo-variation-swatches .wvs-archive-variations-wrapper {
  order: 10;
}
.woo-variation-swatches .wvs-archive-variations-wrapper ul.archive-variable-items.variable-items-wrapper {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .woocommerce ul.products.products-grid-style li.product {
    margin-bottom: 20px;
  }
  .woocommerce ul.products.products-grid-style li.product .fmc-flashs-group {
    top: 15px;
    right: 12px;
  }
  .woocommerce ul.products.products-grid-style li.product .fmc-flashs-group .woocommerce-badge {
    height: 20px;
    padding: 0 15px;
    min-width: 46px;
  }
  .woocommerce ul.products.products-grid-style li.product .product-thumbnail .cide_thumb_action > a.yith-wcqv-button, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .cide_thumb_action > button.woosq-btn {
    display: inline-flex;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail {
    -webkit-transition: 0.4s linear;
    -moz-transition: 0.4s linear;
    -ms-transition: 0.4s linear;
    -o-transition: 0.4s linear;
    transition: 0.4s linear;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail img, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail img {
    -webkit-transition: 0.4s linear;
    -moz-transition: 0.4s linear;
    -ms-transition: 0.4s linear;
    -o-transition: 0.4s linear;
    transition: 0.4s linear;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action > *:hover, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action > *:hover {
    background-color: #f33c3c;
    border: #f33c3c;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action > *:hover svg, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action > *:hover svg {
    fill: #fff;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action > *:hover a.tinvwl_add_to_wishlist_button .icon-hover.fm-icon, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action > *:hover a.tinvwl_add_to_wishlist_button .icon-hover.fm-icon {
    display: inline-block;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action > *:hover a.tinvwl_add_to_wishlist_button .fm-icon:not(.icon-hover), .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action > *:hover a.tinvwl_add_to_wishlist_button .fm-icon:not(.icon-hover) {
    display: none;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action.bottom > *:hover, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action.bottom > *:hover {
    background-color: inherit;
    border-color: inherit;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail:hover img, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail:hover .cide_thumb_action, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail:hover .cide_thumb_action {
    opacity: 1;
    visibility: visible;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail:hover .cide_thumb_action > *, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail:hover .cide_thumb_action > * {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail:not(:hover) .cide_thumb_action.bottom, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail:not(:hover) .cide_thumb_action.bottom {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action.bottom, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action.bottom {
    display: none;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-infos, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-infos {
    position: relative;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .wvs-archive-variations-wrapper, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .wvs-archive-variations-wrapper {
    position: absolute;
    top: -35px;
    left: 0;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .wvs-archive-variations-wrapper ul.variations > li, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .wvs-archive-variations-wrapper ul.variations > li {
    justify-content: center;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .wvs-archive-variations-wrapper ul.archive-variable-items.variable-items-wrapper, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .wvs-archive-variations-wrapper ul.archive-variable-items.variable-items-wrapper {
    margin-bottom: 0;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .wvs-archive-variations-wrapper {
    top: -20px;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-thumbnail {
    -webkit-transition: 0.4s linear;
    -moz-transition: 0.4s linear;
    -ms-transition: 0.4s linear;
    -o-transition: 0.4s linear;
    transition: 0.4s linear;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-thumbnail .cide_thumb_action {
    bottom: -15px;
    -webkit-transition: 0.4s linear;
    -moz-transition: 0.4s linear;
    -ms-transition: 0.4s linear;
    -o-transition: 0.4s linear;
    transition: 0.4s linear;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-thumbnail .cide_thumb_action > * {
    visibility: visible;
    opacity: 0;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-thumbnail .cide_thumb_action > *:hover {
    background-color: #f33c3c;
    border: #f33c3c;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-thumbnail .cide_thumb_action > *:hover svg {
    fill: #fff;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-thumbnail .cide_thumb_action.right > *:hover {
    background-color: inherit;
    border-color: inherit;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-thumbnail:hover .cide_thumb_action {
    opacity: 1;
    visibility: visible;
    bottom: 0;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-thumbnail:hover .cide_thumb_action > * {
    visibility: visible;
    opacity: 1;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-thumbnail:not(:hover) .cide_thumb_action.right {
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px);
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .wvs-archive-variations-wrapper {
    position: absolute;
    top: 10px;
    left: auto;
    right: 5px;
    width: max-content;
    writing-mode: vertical-lr;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .wvs-archive-variations-wrapper ul.variations > li {
    justify-content: flex-start;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .wvs-archive-variations-wrapper ul.archive-variable-items.variable-items-wrapper {
    margin-bottom: 0;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-thumbnail .cide_thumb_action:not(.right) {
    opacity: 0;
    visibility: hidden;
    bottom: 0;
    -webkit-transition: bottom 0.35s linear 0s, opacity 0.3s linear 0s, visibility 0.3s linear 0s;
    -moz-transition: bottom 0.35s linear 0s, opacity 0.3s linear 0s, visibility 0.3s linear 0s;
    -ms-transition: bottom 0.35s linear 0s, opacity 0.3s linear 0s, visibility 0.3s linear 0s;
    -o-transition: bottom 0.35s linear 0s, opacity 0.3s linear 0s, visibility 0.3s linear 0s;
    transition: bottom 0.35s linear 0s, opacity 0.3s linear 0s, visibility 0.3s linear 0s;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-thumbnail .cide_thumb_action > *:hover {
    background-color: #f33c3c;
    border: #f33c3c;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-thumbnail .cide_thumb_action > *:hover svg {
    fill: #fff;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-thumbnail .cide_thumb_action.right > *:hover {
    background-color: inherit;
    border-color: inherit;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-thumbnail a.woocommerce-loop-product__link {
    position: inherit;
    display: inline-block;
    width: 100%;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-thumbnail a.woocommerce-loop-product__link::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    background: transparent;
    position: absolute;
    left: 0;
    right: 0;
    -webkit-transition: background 0.35s linear 0s;
    -moz-transition: background 0.35s linear 0s;
    -ms-transition: background 0.35s linear 0s;
    -o-transition: background 0.35s linear 0s;
    transition: background 0.35s linear 0s;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-thumbnail:hover .cide_thumb_action {
    opacity: 1;
    visibility: visible;
    bottom: 15px;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-thumbnail:hover a.woocommerce-loop-product__link::before {
    background: rgba(0, 0, 0, 0.1);
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .wvs-archive-variations-wrapper {
    position: absolute;
    top: 10px;
    left: auto;
    right: 5px;
    width: max-content;
    writing-mode: vertical-lr;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .wvs-archive-variations-wrapper ul.variations > li {
    justify-content: flex-start;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .wvs-archive-variations-wrapper [data-wvstooltip]::before {
    writing-mode: horizontal-tb;
  }
  .woocommerce ul.products.products-list-style li.product .product-item-wrap {
    flex-direction: row;
  }
  .woocommerce ul.products.products-list-style li.product .product-item-wrap .product-thumbnail {
    flex: 0 0 330px;
    margin-right: 30px;
    margin-bottom: 0;
  }
  .woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos {
    margin-right: 30px;
  }
  .woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos .woocommerce-loop-product__title {
    font-size: 18px;
  }
  .woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos .product-item-excerpt {
    font-size: 15px;
  }
  .woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper {
    flex: 0 0 220px;
    margin-left: auto;
    justify-content: flex-start;
    align-items: center;
  }
  .woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper > * {
    width: 100%;
    text-align: center;
  }
  .woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper > * + * {
    margin-top: 10px;
    margin-bottom: 0;
  }
  .woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper .variations_form .variations {
    margin-bottom: 0;
  }
  .woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper .variations_form .variations .variable-items-wrapper {
    justify-content: center !important;
  }
  .woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper a.button.yith-wcqv-button, .woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper a.button.compare {
    display: flex;
  }
  .woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    height: 50px;
    width: 100%;
    background-color: #232529;
    color: #ffffff;
    transition: background-color 0.3s, color 0.2s;
  }
  .woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button::before {
    /* remove default */
    display: none !important;
  }
  .woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button svg {
    fill: #ffffff !important;
  }
  .woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button span.tinvwl_add_to_wishlist-text, .woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button span.tinvwl_add_to_wishlist-text, .woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button span.tinvwl_remove_from_wishlist-text {
    margin-left: 3px;
    display: inline-block !important;
    font-size: 0.75rem;
    line-height: 24px;
    text-transform: uppercase;
  }
  .woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button:hover {
    background-color: #f33c3c;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap {
    flex-direction: row;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail {
    flex: 0 0 230px;
    margin-right: 20px;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos {
    flex: 0 0 calc(100% - 250px);
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper a.button, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper button.woosq-btn {
    flex: 1;
    padding: 13px 0;
    line-height: 24px;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper a.button.yith-wcqv-button, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper a.button.compare, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper button.woosq-btn.yith-wcqv-button, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper button.woosq-btn.compare {
    display: flex;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper a.button + .button, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper a.button + button, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper button.woosq-btn + .button, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper button.woosq-btn + button {
    margin-left: 10px;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper a.button:not(:hover):not(.added), .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper button.woosq-btn:not(:hover):not(.added) {
    background: #232529;
    color: #FFF;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper a.button:not(:hover):not(.added) svg.fm-icon, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper button.woosq-btn:not(:hover):not(.added) svg.fm-icon {
    fill: #ffffff;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper button.woosq-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    margin-top: 10px;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper button.woosq-btn svg {
    margin-right: 6px;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper .variations_form {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cide_item_button_wrapper .variations_form ul.variations {
    margin: 0;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .woocommerce ul.products.products-list2-style li.product {
    width: 100%;
  }
}
@media (min-width: 1440px) {
  .woocommerce ul.products.columns-2.products-list2-style li.product {
    margin-right: 80px;
    width: calc((100% - 80px) / 2);
  }
  .woocommerce ul.products.columns-2.products-list2-style li.product:nth-child(2n+0) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .woo-variation-swatches .wvs-archive-variation-wrapper .variations .woo-variation-items-wrapper {
    margin: 4px 0;
  }

  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action.right, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action.right {
    opacity: 1;
    visibility: visible;
    padding: 0;
    right: 10px;
    bottom: auto;
    top: 10px !important;
    display: none;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action.right > *, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action.right > * {
    width: 36px;
    height: 36px;
    margin: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action.right > * > svg, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action.right > * > svg {
    width: 15px;
    height: 15px;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action.right .tinv-wraper, .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action.right .woosq-btn, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action.right .tinv-wraper, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action.right .woosq-btn {
    display: none;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action.bottom, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action.bottom {
    opacity: 1;
    visibility: visible;
    bottom: 0;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail .cide_thumb_action.bottom > *:hover, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-thumbnail .cide_thumb_action.bottom > *:hover {
    border-color: inherit;
    background-color: inherit;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-thumbnail .cide_thumb_action.bottom {
    opacity: 1;
    visibility: visible;
    padding: 0;
    bottom: 5px;
    top: auto;
    right: 0;
    background-color: transparent;
    display: none;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-thumbnail .cide_thumb_action.bottom > * {
    width: 36px;
    height: 36px;
    margin: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-thumbnail .cide_thumb_action.bottom > * > svg {
    width: 15px;
    height: 15px;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-thumbnail .cide_thumb_action.bottom .tinv-wraper, .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-thumbnail .cide_thumb_action.bottom .woosq-btn {
    display: none;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-thumbnail .cide_thumb_action.right {
    opacity: 1;
    visibility: visible;
    padding: 0;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-thumbnail .cide_thumb_action.right > *:hover {
    border-color: inherit;
    background-color: inherit;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-thumbnail .cide_thumb_action.bottom > * {
    width: 36px;
    height: 36px;
    margin: 0;
    position: absolute;
    bottom: 5px;
    display: none;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-thumbnail .cide_thumb_action.bottom .tinv-wraper {
    display: none;
  }
}
/********* product grid on fmtpl ***********/
.elementor-element .fmtpl-products ul.products {
  list-style: none;
}
.elementor-element .fmtpl-products ul.products:before, .elementor-element .fmtpl-products ul.products:after {
  content: none;
}
.elementor-element .fmtpl-products ul.products.columns-1 li.product {
  width: 100%;
}
.elementor-element .fmtpl-products ul.products.columns-2 li.product {
  width: 50%;
}
.elementor-element .fmtpl-products ul.products.columns-3 li.product {
  width: 33.3333333333%;
}
.elementor-element .fmtpl-products ul.products.columns-4 li.product {
  width: 25%;
}
.elementor-element .fmtpl-products ul.products.columns-5 li.product {
  width: 20%;
}
.elementor-element .fmtpl-products ul.products.columns-6 li.product {
  width: 16.6666666667%;
}
.elementor-element .fmtpl-products ul.products .fami-product-item {
  position: relative;
}
.elementor-element .fmtpl-products ul.products .fami-product-item .product-item-wrap .product-thumbnail {
  position: relative;
  overflow: hidden;
}
.elementor-element .fmtpl-products ul.products .fami-product-item .product-item-wrap .product-thumbnail .product-thumbnail-zoom {
  display: block;
}
.elementor-element .fmtpl-products ul.products .fami-product-item .product-item-wrap .product-thumbnail img {
  margin-bottom: 0;
}
.elementor-element .fmtpl-products ul.products .fami-product-item .product-item-wrap .product-thumbnails--hover img {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.elementor-element .fmtpl-products ul.products .fami-product-item .product-item-wrap .product-thumbnails--hover .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.elementor-element .fmtpl-products ul.products .fami-product-item .product-item-wrap:hover .hover-image {
  opacity: 1;
}
.elementor-element .fmtpl-products ul.products .fami-product-item .fami_flashs_group {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 15px;
  left: 15px;
  text-align: right;
  z-index: 1;
}
.elementor-element .fmtpl-products div:not(.swiper-container) > ul.products {
  margin-left: -10px;
  margin-right: -10px;
}
.elementor-element .fmtpl-products div:not(.swiper-container) > ul.products li.product {
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .elementor-element .fmtpl-products ul.products.medium-columns-1 li.product {
    width: 100%;
  }
  .elementor-element .fmtpl-products ul.products.medium-columns-2 li.product {
    width: 50%;
  }
  .elementor-element .fmtpl-products ul.products.medium-columns-3 li.product {
    width: 33.3333333333%;
  }
  .elementor-element .fmtpl-products ul.products.medium-columns-4 li.product {
    width: 25%;
  }
  .elementor-element .fmtpl-products div:not(.swiper-container) > ul.products {
    margin-left: -10px;
    margin-right: -10px;
  }
  .elementor-element .fmtpl-products div:not(.swiper-container) > ul.products li.product {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .elementor-element .fmtpl-products ul.products.small-columns-1 li.product {
    width: 100%;
  }
  .elementor-element .fmtpl-products ul.products.small-columns-2 li.product {
    width: 50%;
  }
  .elementor-element .fmtpl-products div:not(.swiper-container) > ul.products {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .elementor-element .fmtpl-products div:not(.swiper-container) > ul.products li.product {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
/*
* Global ShortCode
*/
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter .newsletter-form-content {
  display: inline-block;
  width: 100%;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter .newsletter-form-content .mc4wp-form .fm_newsletter_form input[type=email] {
  height: auto;
  transition: all 0.3s;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter .newsletter-form-content .mc4wp-form .fm_newsletter_form input[type=email]:focus {
  border-color: #f33c3c;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter .newsletter-form-content .mc4wp-form .fm_newsletter_form input[type=email]::placeholder {
  color: inherit;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter .newsletter-form-content .mc4wp-form .fm_newsletter_form button[type=submit], .elementor-widget-fmtpl-newsletter .fmtpl-newsletter .newsletter-form-content .mc4wp-form .fm_newsletter_form input[type=submit], .elementor-widget-fmtpl-newsletter .fmtpl-newsletter .newsletter-form-content .mc4wp-form .fm_newsletter_form input[type=email] {
  transition: all 0.3s;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter .newsletter-form-content .mc4wp-form .fm_newsletter_form input[type=email] {
  height: auto;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter .newsletter-form-content .mc4wp-form .fm_newsletter_form button[type=submit], .elementor-widget-fmtpl-newsletter .fmtpl-newsletter .newsletter-form-content .mc4wp-form .fm_newsletter_form input[type=submit] {
  height: auto;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter.newsletter_horizontal .mc4wp-form .fm_newsletter_form {
  display: flex;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter.newsletter_horizontal .mc4wp-form .fm_newsletter_form input[type=email] {
  text-align: left;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter.newsletter_horizontal .mc4wp-form .fm_newsletter_form button[type=submit], .elementor-widget-fmtpl-newsletter .fmtpl-newsletter.newsletter_horizontal .mc4wp-form .fm_newsletter_form input[type=submit] {
  flex: 0 0 auto;
  justify-content: center;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter.newsletter_vertical .mc4wp-form .fm_newsletter_form {
  display: flex;
  flex-direction: column;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter.newsletter_vertical .mc4wp-form .fm_newsletter_form button[type=submit], .elementor-widget-fmtpl-newsletter .fmtpl-newsletter.newsletter_vertical .mc4wp-form .fm_newsletter_form input[type=submit] {
  width: 100%;
  display: inline-block;
  text-align: inherit;
}

.elementor-widget-fmtpl-title .fmtpl-heading-title .fmtpl-tittle-content-wrap {
  max-width: 100%;
}

.elementor-widget-fmtpl-carousel-posts .fmtpl-post-meta svg {
  width: 1em;
  height: 1em;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.fmtpl-post-layout-info_inside .fmtpl-post-carousel-item {
  position: relative;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.fmtpl-post-layout-info_inside .fmtpl-post-carousel-item .fmtpl-post-thumb {
  position: relative;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.fmtpl-post-layout-info_inside .fmtpl-post-carousel-item .fmtpl-post-thumb > a {
  display: block;
  width: 100%;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.fmtpl-post-layout-info_inside .fmtpl-post-carousel-item .fmtpl-post-thumb > a img {
  width: 100%;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.fmtpl-post-layout-info_inside .fmtpl-post-carousel-item .fmtpl-post-content {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 25px 8%;
  background: black;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(170, 170, 170, 0) 100%);
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.fmtpl-post-layout-info_inside .fmtpl-post-category {
  margin: 0 0 5px 0;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.fmtpl-post-layout-info_inside .fmtpl-post-category a {
  font-size: 12px;
  font-weight: bold;
  line-height: 12px;
  text-transform: uppercase;
  color: #FFF;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.fmtpl-post-layout-info_inside .fmtpl-post-title a {
  color: #FFF;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.fmtpl-post-layout-info_inside .fmtpl-post-meta-wrap span {
  text-transform: capitalize;
  line-height: 12px;
  height: 15px;
  display: inline-block;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.fmtpl-post-layout-info_inside .fmtpl-post-meta-wrap .fmtpl-post-meta + .fmtpl-post-meta {
  padding-left: 12px;
  margin-left: 10px;
  border-left: 1px solid #FFF;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.fmtpl-post-layout-info_inside .fmtpl_post_excerpt {
  display: none;
  color: #FFF;
  font-size: 14px;
  line-height: 20px;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.fmtpl-post-layout-info_inside .fmtpl-post-readmore {
  display: none;
  margin: 15px 0 0 0;
  padding: 0 0 5px 0;
  border-bottom: solid 1px #FFF;
  line-height: 10px;
  letter-spacing: 1px;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.fmtpl-post-layout-info_inside .fmtpl-post-readmore a {
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  color: #FFF;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.fmtpl-post-layout-default .fmtpl-post-meta-wrap span:not(.fmtpl-post-date) {
  line-height: 12px;
  display: inline-block;
  vertical-align: middle;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.fmtpl-post-layout-default .fmtpl-post-carousel-item {
  position: relative;
}

.elementor-widget-fmtpl-menu .fmtpl-menu .fmtpl-divider {
  display: inline-block;
}
.elementor-widget-fmtpl-menu .fmtpl-menu.default .nav_menu_content ul.menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
.elementor-widget-fmtpl-menu .fmtpl-menu.horizontal_style1 .nav_menu_content ul.menu {
  padding: 0;
  margin: 0 -13px;
  list-style: none;
}
.elementor-widget-fmtpl-menu .fmtpl-menu.horizontal_style1 .nav_menu_content ul.menu li {
  display: inline-block;
  margin: 0 13px;
}
.elementor-widget-fmtpl-menu .fmtpl-menu.horizontal_style2 .nav_menu_content ul.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.elementor-widget-fmtpl-menu .fmtpl-menu.horizontal_style2 .nav_menu_content ul.menu li {
  display: inline-block;
  position: relative;
  padding-right: 12px;
  margin-right: 12px;
}
.elementor-widget-fmtpl-menu .fmtpl-menu.horizontal_style2 .nav_menu_content ul.menu li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  width: 1px;
  height: 12px;
  background-color: #ccc;
}
.elementor-widget-fmtpl-menu .fmtpl-menu.horizontal_style3 ul.menu {
  list-style: none;
  padding: 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
}
.elementor-widget-fmtpl-menu .fmtpl-menu.horizontal_style3 ul.menu .menu-item {
  display: inline-flex;
  align-items: center;
}
.elementor-widget-fmtpl-menu .fmtpl-menu.horizontal_style3 ul.menu .menu-item ~ .menu-item:before {
  display: inline-block;
  content: "";
  width: 5px;
  margin: 0 5px;
  height: 1px;
  background: rgba(125, 125, 125, 0.5);
}

.elementor-widget-fmtpl-products-grid .fmtpl_ajax_notice {
  display: none;
}
.elementor-widget-fmtpl-products-grid .fmtpl-products.grid.disabled_load .fmtpl_ajax_notice {
  display: inline-block;
}
.elementor-widget-fmtpl-products-grid .fmtpl-products.grid.disabled_load .ajax_load_product_btn {
  display: none;
}
.elementor-widget-fmtpl-products-grid span.fmtpl_ajax_notice {
  line-height: 20px;
  padding: 15px 22px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  background: #999;
  color: #fefefe;
}

.elementor-widget-fmtpl-deal .fmtpl-product-deal .fmtpl-product-deal-content {
  max-width: 100%;
}
.elementor-widget-fmtpl-deal .fmtpl-product-deal .fmtpl-product-deal-content .fmtpl-divider {
  display: inline-block;
  clear: both;
}
.elementor-widget-fmtpl-deal .fmtpl-product-deal .fmtpl-product-deal-content .fmtpl-product-deal-time .box-count .num {
  display: flex;
  align-items: center;
  justify-content: center;
}
.elementor-widget-fmtpl-deal .fmtpl-product-deal .fmtpl-product-deal-content .product-price .woocs_price_code {
  display: inline-flex;
  align-items: flex-end;
}
.elementor-widget-fmtpl-deal .fmtpl-product-deal .fmtpl-product-deal-content .product-price .woocs_price_code > ins {
  text-decoration: none !important;
  margin-left: 10px;
}
.elementor-widget-fmtpl-deal .fmtpl-product-deal img {
  width: 100%;
}
.elementor-widget-fmtpl-deal.fmtpl-content-align-center .fmtpl-product-deal-content {
  text-align: center;
}
.elementor-widget-fmtpl-deal.fmtpl-content-align-center .fmtpl-product-deal-time {
  justify-content: center;
}
.elementor-widget-fmtpl-deal.fmtpl-content-align-right .fmtpl-product-deal-content {
  text-align: right;
}
.elementor-widget-fmtpl-deal.fmtpl-content-align-right .fmtpl-product-deal-time {
  justify-content: flex-end;
}

.fmtpl-product-tabs-carousel .fmtpl-tabs-wrapper .nav-tabs {
  border-bottom: none;
}

.elementor-widget-fmtpl-products-tabs .fmtpl-products.fmtpl-products-tabs .fmtpl-tabs-wrapper .nav-tabs {
  border-bottom: none;
}
.elementor-widget-fmtpl-products-tabs .fmtpl_ajax_notice {
  display: none;
  line-height: 20px;
  padding: 15px 22px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  background: #999;
  color: #fefefe;
}
.elementor-widget-fmtpl-products-tabs .disabled_load .fmtpl_ajax_notice {
  display: inline-block !important;
}
.elementor-widget-fmtpl-products-tabs .disabled_load .ajax_load_product_btn {
  display: none;
}

.elementor-widget-fmtpl-title.fmtpl-content-align-left .fmtpl-heading-title.heading_default .fmtpl-tittle-content-wrap {
  align-items: inherit;
}
.elementor-widget-fmtpl-title.fmtpl-content-align-left .fmtpl-heading-title.heading_default .fmtpl-tittle-content-wrap .fmtpl-widget-title.icon-pos-right {
  justify-content: space-between;
}
.elementor-widget-fmtpl-title.fmtpl-divider-position-left .fmtpl-heading-title.heading_horizontal1 .fmtpl-tittle-content-wrap .fmtpl-divider {
  order: 1;
}
.elementor-widget-fmtpl-title.fmtpl-divider-position-left .fmtpl-heading-title.heading_horizontal1 .fmtpl-tittle-content-wrap .fmtpl-widget-title {
  order: 2;
}
.elementor-widget-fmtpl-title.fmtpl-divider-position-top .fmtpl-heading-title.heading_horizontal1 .fmtpl-tittle-content-wrap {
  align-items: center;
}
.elementor-widget-fmtpl-title.fmtpl-divider-position-top .fmtpl-heading-title.heading_horizontal1 .fmtpl-tittle-content-wrap .fmtpl-widget-title {
  order: 1;
}
.elementor-widget-fmtpl-title.fmtpl-divider-position-top .fmtpl-heading-title.heading_horizontal1 .fmtpl-tittle-content-wrap .fmtpl-divider {
  order: 2;
}
.elementor-widget-fmtpl-title.fmtpl-divider-position-top .fmtpl-heading-title.heading_horizontal1 .fmtpl-tittle-content-wrap .fmtpl-title-desc {
  order: 3;
  margin-top: -15px;
}

.elementor-widget-fmtpl-carousel-reviews .fmtpl-carousel-reviews.fmtpl-reviews-layout-default .fmtpl-reviews-image {
  display: inline-flex;
}
.elementor-widget-fmtpl-carousel-reviews .fmtpl-carousel-reviews.fmtpl-reviews-layout-default2 .fmtpl-reviews-item .fmtpl-reviews-author {
  display: inline-flex;
  align-items: center;
}
.elementor-widget-fmtpl-carousel-reviews .fmtpl-carousel-reviews.fmtpl-reviews-layout-info_right .fmtpl-reviews-item {
  flex-direction: column;
}
.elementor-widget-fmtpl-carousel-reviews .fmtpl-carousel-reviews.fmtpl-reviews-layout-info_right .fmtpl-reviews-info-wrap {
  display: inline-flex;
  flex-direction: column;
}
.elementor-widget-fmtpl-carousel-reviews .fmtpl-carousel-reviews.fmtpl-reviews-layout-info_right .fmtpl-reviews-title-wrap {
  display: inline-flex;
  align-items: flex-end;
}

.elementor-widget-fmtpl-banner .fmtpl-banner {
  background-position: center center;
}
.elementor-widget-fmtpl-banner .fmtpl-banner .fmtpl-banner-image-wrap {
  position: relative;
  overflow: hidden;
}
.elementor-widget-fmtpl-banner .fmtpl-banner .fmtpl-banner-content {
  max-width: 100%;
}
.elementor-widget-fmtpl-banner .fmtpl-banner .fmtpl-banner-content .fmtpl-banner-button {
  transition: all 0.3s;
}
.elementor-widget-fmtpl-banner .fmtpl-banner .fmtpl-banner-background.overlay:before, .elementor-widget-fmtpl-banner .fmtpl-banner .fmtpl-banner-background.overlay + .fmtpl-banner-box-img:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: background-color 0.4s ease;
  -moz-transition: background-color 0.4s ease;
  -o-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
.elementor-widget-fmtpl-banner .fmtpl-banner .fmtpl-banner-background.overlay2:before, .elementor-widget-fmtpl-banner .fmtpl-banner .fmtpl-banner-background.overlay2:after, .elementor-widget-fmtpl-banner .fmtpl-banner .fmtpl-banner-background.overlay2 + .fmtpl-banner-box-img:before, .elementor-widget-fmtpl-banner .fmtpl-banner .fmtpl-banner-background.overlay2 + .fmtpl-banner-box-img:after {
  content: "";
  position: absolute;
  pointer-events: none;
  margin: auto;
  width: 100%;
  height: 100%;
}
.elementor-widget-fmtpl-banner .fmtpl-banner .fmtpl-banner-background.overlay2:before, .elementor-widget-fmtpl-banner .fmtpl-banner .fmtpl-banner-background.overlay2 + .fmtpl-banner-box-img:before {
  right: 100%;
  bottom: 100%;
  -webkit-transition: background-color 0.4s ease, right 0.4s ease, bottom 0.4s ease;
  -moz-transition: background-color 0.4s ease, right 0.4s ease, bottom 0.4s ease;
  -o-transition: background-color 0.4s ease, right 0.4s ease, bottom 0.4s ease;
  transition: background-color 0.4s ease, right 0.4s ease, bottom 0.4s ease;
}
.elementor-widget-fmtpl-banner .fmtpl-banner .fmtpl-banner-background.overlay2:after, .elementor-widget-fmtpl-banner .fmtpl-banner .fmtpl-banner-background.overlay2 + .fmtpl-banner-box-img:after {
  top: 100%;
  left: 100%;
  -webkit-transition: background-color 0.4s ease, left 0.4s ease, top 0.4s ease;
  -moz-transition: background-color 0.4s ease, left 0.4s ease, top 0.4s ease;
  -o-transition: background-color 0.4s ease, left 0.4s ease, top 0.4s ease;
  transition: background-color 0.4s ease, left 0.4s ease, top 0.4s ease;
}
.elementor-widget-fmtpl-banner .fmtpl-banner .fmtpl-banner-background.effect_border:before, .elementor-widget-fmtpl-banner .fmtpl-banner .fmtpl-banner-background.effect_border:after, .elementor-widget-fmtpl-banner .fmtpl-banner .fmtpl-banner-background.effect_border + .fmtpl-banner-box-img:before, .elementor-widget-fmtpl-banner .fmtpl-banner .fmtpl-banner-background.effect_border + .fmtpl-banner-box-img:after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: solid #fff;
  top: 20px;
  bottom: 20px;
  left: 20px;
  right: 20px;
  margin: auto;
}
.elementor-widget-fmtpl-banner .fmtpl-banner .fmtpl-banner-background.effect_border:before, .elementor-widget-fmtpl-banner .fmtpl-banner .fmtpl-banner-background.effect_border + .fmtpl-banner-box-img:before {
  width: 0;
  border-width: 1px 0;
  -webkit-transition: width 0.6s ease, transform 0.6s ease;
  -moz-transition: width 0.6s ease, transform 0.6s ease;
  -o-transition: width 0.6s ease, transform 0.6s ease;
  transition: width 0.6s ease, transform 0.6s ease;
}
.elementor-widget-fmtpl-banner .fmtpl-banner .fmtpl-banner-background.effect_border:after, .elementor-widget-fmtpl-banner .fmtpl-banner .fmtpl-banner-background.effect_border + .fmtpl-banner-box-img:after {
  height: 0;
  border-width: 0 1px;
  -webkit-transition: height 0.6s ease;
  -moz-transition: height 0.6s ease;
  -o-transition: height 0.6s ease;
  transition: height 0.6s ease;
}
.elementor-widget-fmtpl-banner.fmtpl-divider-position-bottom {
  /* Default divider */
}
.elementor-widget-fmtpl-banner.fmtpl-divider-position-left .fmtpl-banner-content .fmtpl-banner-title {
  display: flex;
  align-items: center;
}
.elementor-widget-fmtpl-banner.fmtpl-divider-position-left .fmtpl-banner-content .fmtpl-banner-title .fmtpl-divider {
  order: -1;
}
.elementor-widget-fmtpl-banner.fmtpl-divider-position-right .fmtpl-banner-content .fmtpl-banner-title {
  display: flex;
  align-items: center;
}
.elementor-widget-fmtpl-banner.fmtpl-divider-position-top .fmtpl-banner-content .fmtpl-banner-title {
  display: flex;
  flex-direction: column;
}
.elementor-widget-fmtpl-banner.fmtpl-divider-position-top .fmtpl-banner-content .fmtpl-banner-title .fmtpl-divider {
  order: -1;
}

.elementor-widget-fmtpl-outside-banner .fmtpl-outside-banner-wrap .fmtpl-outside-banner-button {
  display: inline-block;
}

.elementor-widget-fmtpl-post-list ul.fmtpl-post-list {
  display: flex;
}
.elementor-widget-fmtpl-post-list ul.fmtpl-post-list:not(.fmtpl-post-list-inline) {
  flex-direction: column;
}
.elementor-widget-fmtpl-post-list ul.fmtpl-post-list:not(.fmtpl-post-list-inline) li.fmtpl-post-list-item {
  display: block;
  width: 100%;
  margin: 0 20px 0 0;
  padding: 0;
}
.elementor-widget-fmtpl-post-list ul.fmtpl-post-list:not(.fmtpl-post-list-inline) li.fmtpl-post-list-item .fmtpl-post-list-title a {
  white-space: normal;
}

.site-footer .elementor-widget-fmtpl-language .fmtpl-language .language.fmtpl-dropdown .dropdown {
  text-align: right;
}
.site-footer .elementor-widget-fmtpl-language .fmtpl-language .language.fmtpl-dropdown .dropdown ul {
  right: 0;
}
.elementor-widget-fmtpl-language .fmtpl-language .language.fmtpl-dropdown .dropdown .current .fmtpl-dropdow-icon > svg {
  width: 8px;
  height: 8px;
  margin-left: 8px;
}
.elementor-widget-fmtpl-language .fmtpl-language .language.fmtpl-dropdown .dropdown > ul {
  opacity: 0;
  visibility: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 0;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
  -moz-transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
  -ms-transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
  -o-transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
  transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
}
.elementor-widget-fmtpl-language .fmtpl-language .language.fmtpl-dropdown .dropdown > ul li {
  min-width: 68px;
  padding: 8px 0;
  background: #ffffff;
  text-align: center;
}
.elementor-widget-fmtpl-language .fmtpl-language .language.fmtpl-dropdown .dropdown > ul li:hover {
  background: #f4f4f4;
}
.elementor-widget-fmtpl-language .fmtpl-language .language.fmtpl-dropdown .dropdown > ul li a {
  display: inline-block;
  width: 100%;
  color: #232529;
}
.elementor-widget-fmtpl-language .fmtpl-language .language.fmtpl-dropdown .dropdown .lang_flag {
  margin-right: 6px;
}
.elementor-widget-fmtpl-language .fmtpl-language .language.fmtpl-dropdown .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
}

.site-footer .elementor-widget-wp-widget-woocs_selector.currency-switcher .widget-woocommerce-currency-switcher form.woocommerce-currency-switcher-form .select2-selection {
  height: 25px;
  line-height: 25px;
  border: none !important;
  padding: 0 20px 0 0;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  color: #232529;
}
.site-footer .elementor-widget-wp-widget-woocs_selector.currency-switcher .widget-woocommerce-currency-switcher form.woocommerce-currency-switcher-form .select2-selection > .select2-selection__arrow {
  background-position: left 0 top 50%;
  background-size: auto 8px;
  background-repeat: no-repeat;
  background-image: url(//www.mspvn.com/wp-content/themes/cide/assets/images/select_icon.svg);
}
.site-footer .elementor-widget-wp-widget-woocs_selector.currency-switcher .widget-woocommerce-currency-switcher form.woocommerce-currency-switcher-form .select2-selection > .select2-selection__arrow .presentation {
  display: none;
}
.site-footer .elementor-widget-wp-widget-woocs_selector.currency-switcher.color_dark .widget-woocommerce-currency-switcher form.woocommerce-currency-switcher-form .select2-selection {
  color: #232529;
}
.site-footer .elementor-widget-wp-widget-woocs_selector.currency-switcher.color_light .widget-woocommerce-currency-switcher form.woocommerce-currency-switcher-form .select2-selection {
  color: #ffffff;
}

.elementor-widget-fmtpl-category-banner .fmtpl-category-banner .fmtpl-category-banner-image-wrap {
  position: relative;
  overflow: hidden;
}

.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner .fmtpl-elementor_image {
  overflow: hidden;
  z-index: 0 !important;
  background-color: #fff;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner .fmtpl-elementor_image img {
  max-width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner .fmtpl-elementor_image:hover img {
  transform: scale(0.95);
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner .fmtpl-elementor_content {
  position: relative;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner .fmtpl-elementor_content .category-title {
  line-height: 100%;
  margin: 0;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner .fmtpl-elementor_content .category-title a {
  transition: all 0.3s;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner .fmtpl-elementor_content .fmtpl-products-count {
  display: inline-flex;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner .fmtpl-elementor_content .fmtpl-products-count.left .count-value {
  float: left;
  margin-right: 5px;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner.fmtpl-carousel-categories-banner-layout-cate_slide_banner_inside1 .fmtpl-elementor_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 40px 40px 48px;
  text-align: center;
  min-width: 217px;
  max-width: 90%;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner.fmtpl-carousel-categories-banner-layout-cate_slide_banner_outside1 .fmtpl-elementor_content .category-title {
  position: relative;
  display: inline-flex;
  flex-direction: column;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner.fmtpl-carousel-categories-banner-layout-cate_slide_banner_outside1 .fmtpl-elementor_content .category-title:after {
  content: "";
  width: 90px;
  height: 6px;
  background-color: #f33c3c;
  opacity: 0.5;
  display: inline-flex;
  margin-top: -6px;
  -webkit-transition: transform 0.3s linear 0s;
  -moz-transition: transform 0.3s linear 0s;
  -ms-transition: transform 0.3s linear 0s;
  -o-transition: transform 0.3s linear 0s;
  transition: transform 0.3s linear 0s;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner.fmtpl-carousel-categories-banner-layout-cate_slide_banner_outside1 .elementor-fmtpl-category-carousel-banner:hover .fmtpl-elementor_content .category-title:after {
  transform: rotateZ(-8deg);
}

.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-carousel_images_brands .fmtpl-elementor_image img {
  transition: opacity 0.3s linear 0s;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-carousel_images_brands .fmtpl-elementor_image img:not(:hover) {
  opacity: 0.3;
}

.fmtpl-elementor-swiper-slide-wrap .elementor-swiper-button {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.elementor-widget-cide_slider {
  overflow: hidden;
}
.elementor-widget-cide_slider .fmtpl-elementor-swiper-slide-wrap {
  grid-gap: 0;
}
.elementor-widget-cide_slider .fmtpl-elementor-main-swiper {
  overflow: visible;
}
.elementor-widget-cide_slider .fmtpl-elementor-main-swiper .swiper-wrapper {
  z-index: 1;
}
.elementor-widget-cide_slider .fmtpl-elementor-main-swiper .elementor-swiper-button {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  z-index: 3;
}
.elementor-widget-cide_slider .fmtpl-elementor-main-swiper .elementor-swiper-button > span {
  margin: 0;
}
.elementor-widget-cide_slider .fmtpl-elementor-main-swiper .elementor-swiper-button.elementor-swiper-button-prev {
  left: -15px;
  justify-content: flex-end;
}
.elementor-widget-cide_slider .fmtpl-elementor-main-swiper .elementor-swiper-button.elementor-swiper-button-prev > span {
  margin-right: 6px;
  margin-left: 0 !important;
}
.elementor-widget-cide_slider .fmtpl-elementor-main-swiper .elementor-swiper-button.elementor-swiper-button-next {
  right: -15px;
  justify-content: flex-start;
}
.elementor-widget-cide_slider .fmtpl-elementor-main-swiper .elementor-swiper-button.elementor-swiper-button-next > span {
  margin-left: 6px;
  margin-right: 0 !important;
}
.elementor-widget-cide_slider .fmtpl-elementor-main-swiper::before, .elementor-widget-cide_slider .fmtpl-elementor-main-swiper::after {
  display: inline-block;
  position: absolute;
  top: 0;
  width: 10px;
  height: 100%;
  background: #ffffff;
  z-index: 2;
  content: "";
}
.elementor-widget-cide_slider .fmtpl-elementor-main-swiper::before {
  left: -10px;
}
.elementor-widget-cide_slider .fmtpl-elementor-main-swiper::after {
  right: -10px;
}

.custom-tabs .fmtpl-tabs-wrapper .nav-tabs {
  border-radius: 3px;
  overflow: hidden;
  background-color: #fff;
}
.custom-tabs .fmtpl-tabs-wrapper .nav-tabs .nav-item {
  margin-bottom: 0;
}
.custom-tabs .fmtpl-tabs-wrapper .nav-tabs .nav-item .fmtpl-tab-link {
  position: relative;
}
.custom-tabs .fmtpl-tabs-wrapper .nav-tabs .nav-item .fmtpl-tab-link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.custom-tabs .fmtpl-tabs-wrapper .nav-tabs .nav-item .fmtpl-tab-link.active:before, .custom-tabs .fmtpl-tabs-wrapper .nav-tabs .nav-item .fmtpl-tab-link:hover:before {
  opacity: 0;
  visibility: hidden;
}
.custom-tabs .fmtpl-tabs-wrapper .nav-tabs .nav-item .fmtpl-tab-link.active:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  width: 81px;
  height: 4px;
  margin: auto;
  border-radius: 90px;
  background-color: #F33C3C;
  transition: background-color 0.3s linear 0s, color 0.2s linear 0s, border 0.3s linear 0s;
}
.custom-tabs .fmtpl-tabs-wrapper .nav-tabs .nav-item:not(:last-child) .fmtpl-tab-link .fmtpl-tab-icon:after {
  content: "";
  position: absolute;
  bottom: 68px;
  top: 68px;
  right: 0;
  width: 1px;
  height: auto;
  border-radius: 90px;
  background-color: #e4e6ec;
}

@media (min-width: 1200px) {
  .custom-tabs .fmtpl-products-button-wrapper {
    margin-top: 29px;
  }
}
@media (max-width: 1499px) and (min-width: 1200px) {
  .custom-tabs .fmtpl-tabs-nav-wrap .nav-tabs {
    display: flex;
    flex-wrap: unset;
  }
}
@media (max-width: 1199px) {
  .custom-tabs .fmtpl-tabs-nav-wrap {
    overflow-x: auto;
  }

  .custom-tabs .fmtpl-tabs-nav-wrap .nav-tabs {
    display: flex;
    flex-wrap: unset;
  }

  .custom-tabs .fmtpl-tabs-wrapper .nav-tabs .nav-item:not(:last-child) .fmtpl-tab-link .fmtpl-tab-icon:after {
    bottom: 20px;
    top: 20px;
  }
}
@media (max-width: 767px) {
  .custom-tabs .fmtpl-tabs-nav-wrap .nav-tabs {
    display: inline-block;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .custom-tabs .fmtpl-tabs-nav-wrap .nav-tabs .nav-item {
    display: inline-block;
  }
}
.custom-tabs .fmtpl-elementor-widget .nav-tabs {
  border-bottom: none;
}
.custom-tabs .fmtpl-elementor-widget .nav-tabs .fmtpl-tab-link {
  border: none;
}

.familab_theme .elementor-widget-fmtpl-product-pin .fmtpl_product_pin .fmtpl-product-pin-item .pin_content_wrap .pin-product-box {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  padding: 10px;
  border: 1px solid transparent;
  transition: all 0.3s;
}
.familab_theme .elementor-widget-fmtpl-product-pin .fmtpl_product_pin .fmtpl-product-pin-item .pin_content_wrap .pin-product-box .pin-product-thumb-wraper {
  margin-bottom: 16px;
}
.familab_theme .elementor-widget-fmtpl-product-pin .fmtpl_product_pin .fmtpl-product-pin-item .pin_content_wrap .pin-product-box .product-title {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 6px;
}
.familab_theme .elementor-widget-fmtpl-product-pin .fmtpl_product_pin .fmtpl-product-pin-item .pin_content_wrap .pin-product-box .product-price {
  line-height: 1;
  font-size: 14px;
  color: #333333;
}
.familab_theme .elementor-widget-fmtpl-product-pin .fmtpl_product_pin .fmtpl-product-pin-item .pin_content_wrap .pin-product-box .product-price del {
  color: #aaaaaa;
  font-size: 12px;
  margin-right: 5px;
}
.familab_theme .elementor-widget-fmtpl-product-pin .fmtpl_product_pin .fmtpl-product-pin-item .pin_content_wrap .pin-product-box:hover {
  border-color: #f33c3c;
}

.elementor-widget-fmtpl-instagram .fmtpl-instagram .instagram-feed-content {
  display: grid;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram .instagram-feed-content .fmins-item {
  position: relative;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram .instagram-feed-content .fmins-item .image-box a:after {
  content: "";
  display: block;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram .instagram-feed-content .fmins-item .img-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: 0;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 2;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram .instagram-feed-content .fmins-item .img-overlay .ins-like svg.fm-icon {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram .instagram-feed-content .fmins-item:hover .img-overlay {
  opacity: 1;
  visibility: visible;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram .instagram-feed-content .fmins-item:hover .image-box a:after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram.gird_style1 .instagram-feed-content {
  grid-template-columns: repeat(4, 1fr);
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram.gird_style1 .instagram-feed-content .fmins-item:nth-child(10n+1), .elementor-widget-fmtpl-instagram .fmtpl-instagram.gird_style1 .instagram-feed-content .fmins-item:nth-child(10n+8) {
  grid-column: span 2;
  grid-row: span 2;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram.gird_style2 .instagram-feed-content {
  grid-template-columns: repeat(4, 1fr);
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram.gird_style2 .instagram-feed-content .fmins-item:nth-child(5n+2) {
  grid-column: span 2;
  grid-row: span 2;
}

.elementor-element .elementor-pagination-type-bullets.elementor-pagination-position-outside .swiper-container {
  padding-bottom: 0;
}
.elementor-element .elementor-pagination-type-bullets.elementor-pagination-position-outside .fmtpl-elementor-main-swiper .swiper-pagination-bullets {
  position: static;
}
.elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .elementor-swiper-button:focus {
  outline: none;
}
.elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  opacity: 1;
  margin-left: 0;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.fmtpl-dot-style-default .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  min-width: 12px;
  min-height: 12px;
  background: #ffffff;
  border: 1px solid #dddddd;
  opacity: 1;
}
.fmtpl-dot-style-default .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active, .fmtpl-dot-style-default .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:hover {
  background-color: #232529;
  border-color: #232529;
}
.elementor-pagination-type-progressbar .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-progressbar {
  height: 2px;
  position: static;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background-color: #dddddd;
  transform: translateY(-20px);
}
.elementor-pagination-type-progressbar .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-progressbar > .swiper-pagination-progressbar-fill {
  background-color: #232529;
}
.elementor-element .fmtpl-button-default, .elementor-element .cide-button-default {
  transition: background 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
}
.elementor-element .fmtpl-button-default .fmtpl-btn-icon, .elementor-element .cide-button-default .fmtpl-btn-icon {
  display: flex;
  align-items: center;
}
.elementor-element .fmtpl-elementor-widget .fmtpl-tab-link,
.elementor-element .fmtpl-products-tabs .fmtpl-tab-link {
  transition: color 0.3s linear 0s, border 0.3s linear 0s;
}

@media (min-width: 768px) {
  .elementor-widget-fmtpl-carousel-posts .fmtpl-post-readmore, .elementor-widget-fmtpl-carousel-posts .fmtpl-post-title a, .elementor-widget-fmtpl-carousel-posts .fmtpl-post-category a {
    transition: color 0.25s linear 0s, border-bottom-color 0.25s linear 0s;
  }
  .elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.fmtpl-post-layout-info_inside .fmtpl-post-carousel-item .fmtpl-post-content {
    padding-top: 80px;
    padding-bottom: 30px;
    padding-left: 16%;
    padding-right: 16%;
  }
  .elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.fmtpl-post-layout-info_inside .fmtpl-post-carousel-item .fmtpl-post-readmore {
    display: inline-block;
  }
  .elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.fmtpl-post-layout-info_inside .fmtpl-post-carousel-item .fmtpl_post_excerpt {
    display: inline;
  }

  .elementor-widget-fmtpl-carousel-product-banner .elementor-fmtpl-product-carousel-banner .fmtpl-elementor_image img {
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
  }

  .elementor-widget-icon-list .elementor-icon-list-item a, .elementor-widget-icon-list .elementor-icon-list-item a .elementor-icon-list-text {
    transition: color 0.3s;
  }

  .elementor-widget-fmtpl-carousel-product-banner .fmtpl-carousel-product-banner .fmtpl-item-title a {
    transition: color 0.3s;
  }
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container {
  display: flex;
  flex-wrap: wrap;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field {
  margin-left: 0;
  width: 100%;
  flex: 100%;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field input, .elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field textarea {
  color: #999999;
  line-height: inherit;
  border: 1px solid #e4e4e4;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  width: 100%;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field input::placeholder, .elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field textarea::placeholder {
  color: #aaaaaa;
  font-size: 14px;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field input:focus, .elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field textarea:focus {
  border-color: #f33c3c;
  color: #232529;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field input[type=email], .elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field input[type=text] {
  height: 50px;
  padding: 0 15px;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field textarea {
  padding: 15px;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field.wpforms-one-half {
  flex: 0 0 100%;
  max-width: 100%;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-submit-container button.wpforms-submit {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  color: #FFF;
  background: #232529;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-submit-container button.wpforms-submit:hover {
  background: #f33c3c;
}
.elementor-widget.elementor-widget-wpforms.contact_form_v3 div.wpforms-container .wpforms-form .wpforms-field {
  padding: 13px 0;
  position: relative;
}
.elementor-widget.elementor-widget-wpforms.contact_form_v3 div.wpforms-container .wpforms-form .wpforms-field .wpforms-field-label {
  font-size: 15px;
  color: #999999;
  position: absolute;
  left: 8px;
  top: 10px;
  transform: translateY(-50%);
  margin: 0;
  background: #ffffff;
  padding: 0 8px;
  line-height: 20px;
  z-index: 1;
  font-weight: 400;
  -webkit-transition: top 0.25s linear 0s;
  -moz-transition: top 0.25s linear 0s;
  -ms-transition: top 0.25s linear 0s;
  -o-transition: top 0.25s linear 0s;
  transition: top 0.25s linear 0s;
}
.elementor-widget.elementor-widget-wpforms.contact_form_v3 div.wpforms-container .wpforms-form input, .elementor-widget.elementor-widget-wpforms.contact_form_v3 div.wpforms-container .wpforms-form select, .elementor-widget.elementor-widget-wpforms.contact_form_v3 div.wpforms-container .wpforms-form textarea {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border-color: #e4e9ef;
  height: 50px;
  font-size: 14px;
}
.elementor-widget.elementor-widget-wpforms.contact_form_v3 div.wpforms-container .wpforms-form input:focus, .elementor-widget.elementor-widget-wpforms.contact_form_v3 div.wpforms-container .wpforms-form select:focus, .elementor-widget.elementor-widget-wpforms.contact_form_v3 div.wpforms-container .wpforms-form textarea:focus {
  border-color: #232529;
}
.elementor-widget.elementor-widget-wpforms.contact_form_v3 div.wpforms-container .wpforms-form input[type=submit], .elementor-widget.elementor-widget-wpforms.contact_form_v3 div.wpforms-container .wpforms-form button[type=submit], .elementor-widget.elementor-widget-wpforms.contact_form_v3 div.wpforms-container .wpforms-form .wpforms-page-button {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  height: 50px;
  padding: 0 20px;
  min-width: 195px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #FFF;
  background: #232529;
  border: none;
}
.elementor-widget.elementor-widget-wpforms.contact_form_v3 div.wpforms-container .wpforms-form input[type=submit]:hover, .elementor-widget.elementor-widget-wpforms.contact_form_v3 div.wpforms-container .wpforms-form button[type=submit]:hover, .elementor-widget.elementor-widget-wpforms.contact_form_v3 div.wpforms-container .wpforms-form .wpforms-page-button:hover {
  background-color: #f33c3c;
  color: #ffffff;
  border: none;
}
.elementor-widget.elementor-widget-wpforms.contact_form_v3 div.wpforms-container .wpforms-form .wpforms-submit-container {
  padding-top: 19px;
}

.elementor-widget-fmtpl-product-pin .fmtpl_product_pin .fmtpl_product_pin-background {
  background-position: center !important;
}

@media (min-width: 768px) {
  .elementor-widget.elementor-widget-wpforms.contact_form_v1 .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field.wpforms-one-half {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
  .elementor-widget.elementor-widget-wpforms.contact_form_v1 .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field.wpforms-one-half ~ .wpforms-one-half {
    margin-left: 19px;
  }
  .elementor-widget.elementor-widget-wpforms.contact_form_v1 .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field input[type=text], .elementor-widget.elementor-widget-wpforms.contact_form_v1 .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field input[type=email], .elementor-widget.elementor-widget-wpforms.contact_form_v1 .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field textarea {
    background: none;
    color: #969696;
    border-color: #3a3a3a;
  }
  .elementor-widget.elementor-widget-wpforms.contact_form_v1 .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field input[type=text]:focus, .elementor-widget.elementor-widget-wpforms.contact_form_v1 .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field input[type=email]:focus, .elementor-widget.elementor-widget-wpforms.contact_form_v1 .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field textarea:focus {
    color: #ffffff;
  }
  .elementor-widget.elementor-widget-wpforms.contact_form_v1 .wpforms-container.contact_form form.wpforms-form .wpforms-submit-container button.wpforms-submit {
    background-color: #6b6b6b;
  }
  .elementor-widget.elementor-widget-wpforms.contact_form_v1 .wpforms-container.contact_form form.wpforms-form .wpforms-submit-container button.wpforms-submit:hover {
    background-color: #f33c3c;
  }
  .elementor-widget.elementor-widget-wpforms.contact_form_v1 div.wpforms-container-full .wpforms-form label.wpforms-error {
    color: #999999;
  }
  .elementor-widget.elementor-widget-wpforms.contact_form_v2 .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field.wpforms-one-half {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
  .elementor-widget.elementor-widget-wpforms.contact_form_v2 .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field.wpforms-one-half ~ .wpforms-one-half {
    margin-left: 19px;
  }
  .elementor-widget.elementor-widget-wpforms.contact_form_v2 .wpforms-container.contact_form form.wpforms-form .wpforms-submit-container button.wpforms-submit {
    width: 180px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
  }
  .elementor-widget.elementor-widget-wpforms.contact_form_v3 div.wpforms-container form.wpforms-form .wpforms-field-container .wpforms-field input[type=text], .elementor-widget.elementor-widget-wpforms.contact_form_v3 div.wpforms-container form.wpforms-form .wpforms-field-container .wpforms-field input[type=email], .elementor-widget.elementor-widget-wpforms.contact_form_v3 div.wpforms-container form.wpforms-form .wpforms-field-container .wpforms-field textarea {
    height: 50px;
  }
  .elementor-widget.elementor-widget-wpforms.contact_form_v3 div.wpforms-container form.wpforms-form .wpforms-field-container .wpforms-field textarea {
    height: 234px;
  }

  .elementor-widget-fmtpl-carousel-products .swiper-container-horizontal ul.products.products-grid-style > li.product {
    margin-bottom: 0 !important;
  }

  .elementor-widget-cide_slider .fmtpl-elementor-main-swiper .elementor-swiper-button.elementor-swiper-button-prev {
    left: -45px;
  }
  .elementor-widget-cide_slider .fmtpl-elementor-main-swiper .elementor-swiper-button.elementor-swiper-button-next {
    right: -45px;
  }
  .elementor-widget-cide_slider .fmtpl-elementor-main-swiper::before, .elementor-widget-cide_slider .fmtpl-elementor-main-swiper::after {
    width: 30px;
  }
  .elementor-widget-cide_slider .fmtpl-elementor-main-swiper::before {
    left: -30px;
  }
  .elementor-widget-cide_slider .fmtpl-elementor-main-swiper::after {
    right: -30px;
  }

  .elementor-widget-fmtpl-carousel-reviews .fmtpl-carousel-reviews.fmtpl-reviews-layout-info_right .fmtpl-reviews-item {
    flex-direction: row;
  }

  .elementor-widget-fmtpl-banner .fmtpl-banner:hover .fmtpl-banner-background.overlay:before, .elementor-widget-fmtpl-banner .fmtpl-banner:hover .fmtpl-banner-background.overlay + .fmtpl-banner-box-img:before {
    background-color: rgba(0, 0, 0, 0.4);
  }
  .elementor-widget-fmtpl-banner .fmtpl-banner:hover .fmtpl-banner-background.overlay2:before, .elementor-widget-fmtpl-banner .fmtpl-banner:hover .fmtpl-banner-background.overlay2 + .fmtpl-banner-box-img:before {
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
  }
  .elementor-widget-fmtpl-banner .fmtpl-banner:hover .fmtpl-banner-background.overlay2:after, .elementor-widget-fmtpl-banner .fmtpl-banner:hover .fmtpl-banner-background.overlay2 + .fmtpl-banner-box-img:after {
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
  }
  .elementor-widget-fmtpl-banner .fmtpl-banner:hover .fmtpl-banner-background.effect_border:before, .elementor-widget-fmtpl-banner .fmtpl-banner:hover .fmtpl-banner-background.effect_border + .fmtpl-banner-box-img:before {
    width: calc(100% - 10px);
    transform: translate(-15px, 0);
  }
  .elementor-widget-fmtpl-banner .fmtpl-banner:hover .fmtpl-banner-background.effect_border:after, .elementor-widget-fmtpl-banner .fmtpl-banner:hover .fmtpl-banner-background.effect_border + .fmtpl-banner-box-img:after {
    height: calc(100% - 10px);
  }
  .elementor-widget-fmtpl-banner .fmtpl-banner.info_move_up .fmtpl-banner-content {
    transition: transform 0.35s linear 0s;
  }
  .elementor-widget-fmtpl-banner .fmtpl-banner.info_move_up .fmtpl-banner-content .fmtpl-banner-button {
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s linear 0s;
  }
  .elementor-widget-fmtpl-banner .fmtpl-banner.info_move_up:hover .fmtpl-banner-content {
    transform: translateY(-30px);
  }
  .elementor-widget-fmtpl-banner .fmtpl-banner.info_move_up:hover .fmtpl-banner-content .fmtpl-banner-button {
    opacity: 1;
    visibility: visible;
  }

  .elementor-widget-fmtpl-menu .fmtpl-menu-heading {
    line-height: 0;
  }
  .elementor-widget-fmtpl-menu .fmtpl-menu .menu-item a {
    transition: color 0.3s linear 0s;
  }

  .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper {
    position: relative;
  }
  .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .elementor-swiper-button {
    transition: all 0.25s linear 0s;
    opacity: 0;
    visibility: hidden;
  }
  .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .elementor-swiper-button.elementor-swiper-button-prev, .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .elementor-swiper-button.elementor-swiper-button-next {
    transform: translate(0, -50%);
  }
  .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper:hover .elementor-swiper-button {
    opacity: 1;
    visibility: visible;
  }
  .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper:hover .elementor-swiper-button.elementor-swiper-button-prev {
    left: -5px;
    transform: translate(-45%, -50%);
  }
  .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper:hover .elementor-swiper-button.elementor-swiper-button-next {
    right: -5px;
    transform: translate(45%, -50%);
  }
  .elementor-element .fmtpl-button-default, .elementor-element .cide-button-default {
    transition: background 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  }
  .elementor-element .fmtpl-button-default .fmtpl-btn-icon, .elementor-element .cide-button-default .fmtpl-btn-icon {
    display: flex;
    align-items: center;
    transition: all 0.3s ease 0s;
  }
  .elementor-element .fmtpl-products-tabs .fmtpl-tab-link {
    transition: background-color 0.3s linear 0s, color 0.2s linear 0s, border 0.3s linear 0s;
  }
}
.fmtpl-divider-wrap, .fmtpl-divider {
  line-height: 0;
}

@media (min-width: 992px) {
  .elementor-widget-fmtpl-product-pin .cide-product-pin-item .pin_content_wrap:hover {
    background: #ffffff;
  }
  .elementor-widget-fmtpl-product-pin .cide-product-pin-item .pin_content_wrap:hover .pin-product-box {
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 1200px) {
  .elementor-widget-fmtpl-product-pin .cide-product-pin-item .pin_content_wrap .pin-product-box {
    width: 250px;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .elementor-widget-fmtpl-products-tabs .fmtpl-products.fmtpl-products-tabs.fmtpl-products-tabs-layout-fmtpl_style01 .fmtpl-tabs-wrapper .nav-tabs {
    max-width: 450px;
  }
}
@media (max-width: 1024px) {
  .elementor-widget-fmtpl-products-tabs .fmtpl-products.fmtpl-products-tabs.fmtpl-products-tabs-layout-fmtpl_style01 .fmtpl-tabs-wrapper .nav-tabs {
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    display: block;
  }
  .elementor-widget-fmtpl-products-tabs .fmtpl-products.fmtpl-products-tabs.fmtpl-products-tabs-layout-fmtpl_style01 .fmtpl-tabs-wrapper .nav-tabs .nav-item {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .elementor-widget-fmtpl-products-tabs .fmtpl-products.fmtpl-products-tabs.fmtpl-products-tabs-layout-fmtpl_style01 .fmtpl-tabs-wrapper .nav-tabs {
    display: block;
  }
  .elementor-widget-fmtpl-products-tabs .fmtpl-products.fmtpl-products-tabs.fmtpl-products-tabs-layout-fmtpl_style01 .tab-content div:not(.swiper-container) > ul.products {
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    display: block;
  }
  .elementor-widget-fmtpl-products-tabs .fmtpl-products.fmtpl-products-tabs.fmtpl-products-tabs-layout-fmtpl_style01 .tab-content div:not(.swiper-container) > ul.products li.product {
    float: none;
    display: inline-block;
    white-space: initial;
  }

  .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper:not(:hover) .elementor-swiper-button {
    opacity: 0;
    visibility: hidden;
  }
  .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .elementor-swiper-button {
    top: 50% !important;
    background-color: transparent;
    box-shadow: none;
  }
  .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .elementor-swiper-button.elementor-swiper-button-prev {
    transform: translate(-50%, -50%);
    left: 10px;
  }
  .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .elementor-swiper-button.elementor-swiper-button-next {
    transform: translate(50%, -50%);
    right: 10px;
  }
}
body {
  background: none;
}

.cide-swiper-pagination .swiper-pagination-bullet-active {
  width: 23px !important;
  margin: 0 9px 0 5px !important;
}

.border-thumb-full .woocommerce ul.products.products-grid-style li.product .product-thumbnail {
  border: 1px solid #e5e6eb;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.border-right-slide .fmtpl-elementor-swiper .swiper-wrapper.products-grid-style > li.product {
  height: revert;
}
.border-right-slide .fmtpl-elementor-swiper .swiper-wrapper.products-grid-style > li.product.swiper-slide-visible:not(.swiper-slide-active):before {
  position: absolute;
  content: "";
  left: 0px;
  height: auto;
  top: 18px;
  bottom: 32px;
  width: 1px;
  z-index: 1;
  background-color: #e4e6ec;
}

@media (min-width: 768px) {
  .border-right-grid .fmtpl-products div:not(.swiper-container) > ul.products li.product:not(:last-child) {
    border-right: 1px solid #e4e6ec;
  }
}
@media (max-width: 1499px) and (min-width: 1200px) {
  .border-thumb-full .woocommerce ul.products.products-grid-style li.product .product-thumbnail .cide_thumb_action.bottom {
    bottom: 0;
  }
  .border-thumb-full .woocommerce ul.products.products-grid-style li.product .product-thumbnail .cide_thumb_action.right {
    right: 10px;
  }
}
@media (max-width: 767px) {
  .mobile-hidden-br br {
    display: none;
  }
}
.fmtpl-elementor-widget.fmtpl-products-layout-default .fmtpl-carousel-box-heading {
  display: inline-block;
}
.fmtpl-elementor-widget.fmtpl-products-layout-default .fmtpl-products-button-wrapper {
  float: right;
}

.woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-infos, .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-infos, .woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-infos, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-infos {
  display: flex;
  flex-direction: column;
  padding-top: 24px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-infos .product-top-infos, .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-infos .product-top-infos, .woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-infos .product-top-infos, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-infos .product-top-infos {
  order: 3;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-infos .product-top-infos .star-rating, .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-infos .product-top-infos .star-rating, .woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-infos .product-top-infos .star-rating, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-infos .product-top-infos .star-rating {
  width: 87px;
  letter-spacing: 7px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-infos .product-top-infos .star-rating span, .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-infos .product-top-infos .star-rating span, .woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-infos .product-top-infos .star-rating span, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-infos .product-top-infos .star-rating span {
  letter-spacing: 7px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-infos .woocommerce-loop-product__title, .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-infos .woocommerce-loop-product__title, .woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-infos .woocommerce-loop-product__title, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-infos .woocommerce-loop-product__title {
  color: #232529;
  text-transform: capitalize;
  order: -1;
  margin-bottom: 11px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-infos .price, .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-infos .price, .woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-infos .price, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-infos .price {
  order: 2;
  font-size: 17px;
  color: #909297;
  margin-bottom: 13px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-item-wrap {
  background-color: #fff;
  padding-bottom: 20px;
  height: 100%;
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-item-wrap .product-thumbnail .cide_thumb_action.right {
  top: 0;
  bottom: auto;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-item-wrap .product-thumbnail .cide_thumb_action.bottom {
  bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-item-wrap .product-infos {
  text-align: center;
  padding-top: 20px;
  padding-left: 5px;
  padding-right: 5px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-item-wrap .product-infos .product-top-infos {
  justify-content: center;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-3 {
  margin-bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-infos {
  padding: 27px 16px 23px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-infos .star-rating {
  order: 3;
  width: 87px;
  letter-spacing: 7px;
  margin-left: auto;
  margin-right: auto;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-infos .star-rating span {
  letter-spacing: 7px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-4 {
  margin-bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product {
  padding-top: 28px;
  margin-bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-thumbnail {
  margin-bottom: 11px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-infos {
  padding: 0px 0 20px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-infos .star-rating {
  order: -2;
  width: 87px;
  letter-spacing: 7px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
}
.woocommerce ul.products.products-grid-style.product-item-cide-style-4 li.product .product-infos .star-rating span {
  letter-spacing: 7px;
}

.fmtpl-post-list.fmtpl-post-layout-default .fmtpl-post-carousel-item .fmtpl-post-thumb {
  margin-bottom: 21px;
}
.fmtpl-post-list.fmtpl-post-layout-default .fmtpl-post-carousel-item .fmtpl-post-content {
  display: flex;
  flex-direction: column;
}
.fmtpl-post-list.fmtpl-post-layout-default .fmtpl-post-carousel-item .fmtpl-post-content .fmtpl-post-readmore {
  align-self: self-start;
}
.fmtpl-post-list.fmtpl-post-layout-default .fmtpl-post-carousel-item .fmtpl-post-content .fmtpl-post-meta-wrap {
  order: -1;
  display: flex;
}
.fmtpl-post-list.fmtpl-post-layout-default .fmtpl-post-carousel-item .fmtpl-post-content .fmtpl-post-meta-wrap > * {
  flex: 1 1 auto;
  width: 1%;
}
.fmtpl-post-list.fmtpl-post-layout-default .fmtpl-post-carousel-item .fmtpl-post-content .fmtpl-post-meta-wrap .fmtpl-post-comments {
  text-align: right;
}

.fmtpl-elementor-widget.fmtpl-carousel-product-banner-layout-default .elementor-fmtpl-product-carousel-banner {
  position: relative;
}
.fmtpl-elementor-widget.fmtpl-carousel-product-banner-layout-default .elementor-fmtpl-product-carousel-banner .fmtpl-elementor_content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.fmtpl-elementor-widget.fmtpl-carousel-product-banner-layout-default .elementor-fmtpl-product-carousel-banner .fmtpl-elementor_content .product-title {
  margin-bottom: 0;
}
.fmtpl-elementor-widget.fmtpl-carousel-product-banner-layout-default .swiper-container-horizontal > .swiper-pagination-bullets {
  width: auto;
  right: 30px;
  left: auto;
  bottom: 34px;
}

@media (max-width: 1024px) {
  .fmtpl-elementor-widget.fmtpl-carousel-product-banner-layout-default .swiper-container-horizontal > .swiper-pagination-bullets {
    right: 15px;
    bottom: 27px;
  }
}
.custom_deal_box_label .cide-elementor-widget.cide-product-deal.default {
  align-items: center;
}
.custom_deal_box_label .cide-elementor-widget.cide-product-deal.default .deal_box_label:before {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 30px;
  height: 29px;
  margin-top: -4px;
  margin-right: 9px;
  background-image: url(//www.mspvn.com/wp-content/themes/cide/assets/images/run.svg);
}

.cide-elementor-widget.cide-product-deal.default {
  align-items: center;
}
.cide-elementor-widget.cide-product-deal.layout1 {
  flex-direction: column;
}
.cide-elementor-widget.cide-product-deal.layout1 > div {
  position: relative;
}
.cide-elementor-widget.cide-product-deal.layout1 .cide-product-deal-content .cide-product-info .product-price {
  display: flex;
  align-items: baseline;
}
.cide-elementor-widget.cide-product-deal.layout1 .cide-product-deal-content .cide-product-info .product-price ins {
  order: -1;
  margin-right: 9px;
}
.cide-elementor-widget.cide-product-deal.layout1 .cide-product-deal-content:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
.cide-elementor-widget.cide-product-deal.layout1 .cide-product-deal-wrapper:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
  .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-infos {
    padding: 15px 5px 10px;
  }
}
@media (max-width: 767px) {
  .fmtpl-elementor-widget.fmtpl-products-tabs-layout-fmtpl_style01.tab-heading .fmtpl-tabs-nav-wrap, .fmtpl-elementor-widget.fmtpl-product-tabs-carousel-layout-fmtpl_style01.tab-heading .fmtpl-tabs-nav-wrap {
    display: block;
  }

  .fmtpl-elementor-widget.fmtpl-products-layout-default .fmtpl-carousel-box-heading {
    font-size: 0;
    line-height: 0;
    margin-top: 5px;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-infos, .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-infos, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-infos {
    padding-top: 5px;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-infos .woocommerce-loop-product__title, .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-infos .woocommerce-loop-product__title, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-infos .woocommerce-loop-product__title {
    font-size: 14px;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-infos .price, .woocommerce ul.products.products-grid-style.product-item-cide-style-3 li.product .product-infos .price, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-infos .price {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .woocommerce ul.products.products-grid-style.product-item-cide-style-1 li.product .product-infos, .woocommerce ul.products.products-grid-style.product-item-cide-style-14 li.product .product-infos {
    padding-top: 10px;
  }
}
@media (max-width: 575px) {
  .custom-deal-cide .cide-product-deal {
    flex-wrap: unset;
    flex-direction: column;
    height: auto !important;
    align-items: flex-start !important;
  }
  .custom-deal-cide .cide-product-deal > div {
    max-width: 100% !important;
    padding: 20px !important;
    width: 100%;
  }
  .custom-deal-cide .cide-product-deal .cide-product-deal-content {
    padding-bottom: 0 !important;
  }
}
.wcfm-theme-cide #wcfm_membership_container input[type=text],
.wcfm-theme-cide #wcfm_membership_container input[type=file],
.wcfm-theme-cide #wcfm_membership_container input[type=password],
.wcfm-theme-cide #wcfm_membership_container select, .wcfm-theme-cide #wcfm_membership_container input[type=number],
.wcfm-theme-cide #wcfm_membership_container input[type=time],
.wcfm-theme-cide #wcfm_membership_container input[type=search],
.wcfm-theme-cide #wcfm_membership_container textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100% !important;
  max-width: 100%;
  border: 1px solid #dcdcdc;
  font-size: 14px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: border-color 0.3s;
  -webkit-transition: border-color 0.3s;
  vertical-align: middle;
  padding: 0 15px;
  height: 50px;
  background: #FFF;
  margin-bottom: 1.5rem;
}
.wcfm-theme-cide #wcfm_membership_container input[type=text]:focus,
.wcfm-theme-cide #wcfm_membership_container input[type=file]:focus,
.wcfm-theme-cide #wcfm_membership_container input[type=password]:focus,
.wcfm-theme-cide #wcfm_membership_container select:focus, .wcfm-theme-cide #wcfm_membership_container input[type=number]:focus,
.wcfm-theme-cide #wcfm_membership_container input[type=time]:focus,
.wcfm-theme-cide #wcfm_membership_container input[type=search]:focus,
.wcfm-theme-cide #wcfm_membership_container textarea:focus {
  outline: none;
  border-color: #242424;
  color: #242424;
}
.wcfm-theme-cide .wcfmmp-store-search-form input.wcfmmp-radius-addr,
.wcfm-theme-cide .wcfmmp-store-search-form input.wcfm-search-field,
.wcfm-theme-cide .wcfmmp-store-search-form input#search,
.wcfm-theme-cide .wcfmmp-store-search-form select#wcfmmp_store_category,
.wcfm-theme-cide .wcfmmp-store-search-form select#wcfmmp_store_country,
.wcfm-theme-cide .wcfmmp-store-search-form #wcfmmp_store_state,
.wcfm-theme-cide .wcfmmp-store-search-form .select2-container,
.wcfm-theme-cide .wcfmmp-store-search-form .wcfmmp-search-box,
.wcfm-theme-cide #wcfmmp_store_orderby {
  box-shadow: none !important;
  border-color: #e4e4e4 !important;
}
.wcfm-theme-cide .wcfmmp-store-search-form .select2-container {
  border: none !important;
}
.wcfm-theme-cide .wcfmmp_sold_by_container_advanced .wcfmmp-store-rating::before,
.wcfm-theme-cide .wcfmmp_store_info .wcfmmp-store-rating::before,
.wcfm-theme-cide .wcfmmp_sold_by_container .wcfmmp-store-rating::before {
  font-size: 11px;
  letter-spacing: 3px;
}
.wcfm-theme-cide span.wcfmmp_sold_by_label {
  display: none;
}
.wcfm-theme-cide #wcfmmp-store .sidebar .widget {
  margin-bottom: 45px;
}
.wcfm-theme-cide #wcfmmp-store .sidebar .widget .sidebar_heading {
  margin-bottom: 0;
}
.wcfm-theme-cide #wcfmmp-store .sidebar .widget .widget-title {
  display: block;
  width: 100%;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 26px;
  text-transform: capitalize;
}
.wcfm-theme-cide #wcfmmp-store .sidebar .widget .fm-search-form button[type=submit] {
  min-width: 50px;
}
.wcfm-theme-cide #wcfmmp-store .sidebar .widget.widget_categories .widget-title {
  margin-bottom: 15px;
}
.wcfm-theme-cide #wcfmmp-store .sidebar .widget.widget_categories ul li {
  padding-left: 0;
}
.wcfm-theme-cide.wcfmmp-store-list-page #wcfmmp-stores-lists {
  box-shadow: none;
}
.wcfm-theme-cide.wcfmmp-store-list-page #wcfmmp-stores-lists #wcfmmp-stores-wrap-holder {
  padding-left: 0;
  padding-right: 0;
}
.wcfm-theme-cide.wcfmmp-store-list-page #wcfmmp-stores-lists .wcfmmp-store-lists-sorting {
  margin-left: 0;
  margin-right: 0;
}
.wcfm-theme-cide.wcfmmp-store-list-page #wcfmmp-stores-lists #wcfmmp-stores-wrap ul.wcfmmp-store-wrap {
  margin-left: -15px;
  margin-right: -15px;
}
.wcfm-theme-cide.wcfmmp-store-list-page #wcfmmp-stores-lists #wcfmmp-stores-wrap ul.wcfmmp-store-wrap p.store-phone {
  background: none;
}
.wcfm-theme-cide.wcfmmp-store-list-page #wcfmmp-stores-lists #wcfmmp-stores-wrap .wcfmmp-single-store a.wcfmmp-visit-store {
  font-size: 12px;
}
.wcfm-theme-cide.wcfmmp-store-list-page #wcfmmp-stores-lists #wcfmmp-stores-wrap .wcfmmp-single-store .store-data-container .store-data > h2 a {
  font-weight: 500;
}
.wcfm-theme-cide.wcfmmp-store-list-page #wcfmmp-stores-lists #wcfmmp-stores-wrap .wcfmmp-single-store .store-data-container .store-data .wcfmmp-store-rating:before {
  font-size: 11px;
  letter-spacing: 5px;
}
.wcfm-theme-cide.wcfmmp-store-list-page #wcfmmp-stores-lists #wcfmmp-stores-wrap .wcfmmp-single-store .store-data-container .store-phone {
  font-size: 14px;
  color: #555 !important;
}
.wcfm-theme-cide.wcfmmp-store-list-page #wcfmmp-stores-lists #wcfmmp-stores-wrap .wcfmmp-single-store .store-data-container .store-phone i {
  background: none !important;
  color: #242424;
  font-size: inherit;
  margin-right: 6px;
}
.wcfm-theme-cide.wcfmmp-store-list-page #wcfmmp-stores-lists #wcfmmp-stores-wrap .wcfmmp-single-store .store-data-container .store-phone.store-phone {
  margin-top: 6px;
}
.wcfm-theme-cide.wcfmmp-store-list-page #wcfmmp-stores-lists #wcfmmp-stores-wrap .wcfmmp-single-store .store-data-container .store-enquiry a.wcfm_catalog_enquiry {
  min-width: 150px;
  line-height: 20px;
  padding: 10px 15px;
  border: none;
  border-radius: 0;
  font-size: 14px;
  -webkit-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -moz-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -ms-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -o-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  margin-top: 20px;
}
.wcfm-theme-cide.wcfm-store-page #wcfmmp-store ul.product_list_widget li a {
  font-weight: 500;
}
.wcfm-theme-cide.wcfm-store-page #wcfmmp-store.wcfmmp-single-store-holder {
  max-width: 1440px;
  padding: 0 15px;
  margin: 50px auto;
  box-shadow: none !important;
}
.wcfm-theme-cide.wcfm-store-page #wcfmmp-store .right_side {
  border: 1px solid #e4e4e4;
}
.wcfm-theme-cide.wcfm-store-page #wcfmmp-store .left_sidebar {
  padding-bottom: 3.9%;
}
.wcfm-theme-cide.wcfm-store-page #wcfmmp-store .tab_area .tab_links {
  border-bottom-color: #e4e4e4;
}
.wcfm-theme-cide.wcfm-store-page #wcfmmp-store .tab_area .tab_links li {
  border: none !important;
  padding-right: 20px;
}
.wcfm-theme-cide.wcfm-store-page #wcfmmp-store .tab_area .tab_links li a {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #555;
  padding: 10px 0;
  display: inline-block;
  text-transform: none;
}
.wcfm-theme-cide.wcfm-store-page #wcfmmp-store .tab_area .tab_links li:after {
  height: 1px;
  top: auto;
  bottom: 1px;
  background: #f33c3c !important;
}
.wcfm-theme-cide.wcfm-store-page #wcfmmp-store .tab_area .tab_links li:hover a, .wcfm-theme-cide.wcfm-store-page #wcfmmp-store .tab_area .tab_links li.active a {
  color: #232529 !important;
  border: none !important;
}
.wcfm-theme-cide.wcfm-store-page #wcfmmp-store .tab_area .tab_links li:hover:after, .wcfm-theme-cide.wcfm-store-page #wcfmmp-store .tab_area .tab_links li.active:after {
  background-color: #f33c3c !important;
  opacity: 1;
}
.wcfm-theme-cide.wcfm-store-page #wcfmmp-store .product_area .products-wrapper ul li.product {
  padding: 0 8px;
}
.wcfm-theme-cide.wcfm-store-page #wcfmmp-store .reviews_area, .wcfm-theme-cide.wcfm-store-page #wcfmmp-store .policies_area, .wcfm-theme-cide.wcfm-store-page #wcfmmp-store .wcfm_store_description {
  border: 1px solid #e4e4e4;
  box-shadow: none;
}
.wcfm-theme-cide.wcfm-store-page #wcfmmp-store .add_review input {
  box-shadow: none;
  border-bottom: 1px solid #e4e4e4;
}
.wcfm-theme-cide.wcfm-store-page #wcfmmp-store .woocommerce .reviews_area .add_review button {
  border: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  height: 40px;
  line-height: 20px;
  padding: 10px 25px;
  -webkit-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -moz-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -ms-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -o-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
}
.wcfm-theme-cide.wcfm-store-page #wcfmmp-store .reviews_heading, .wcfm-theme-cide.wcfm-store-page #wcfmmp-store .wcfm_policies_heading {
  text-transform: uppercase;
  font-size: 13px;
  line-height: 15px;
  color: #232529;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 10px;
  font-weight: 500;
  margin-bottom: 10px;
}
.wcfm-theme-cide.wcfm-store-page #wcfmmp-store nav.woocommerce-pagination {
  margin-bottom: 30px;
}
.wcfm-theme-cide .wcfm-membership-wrapper {
  padding: 0;
  border: none;
  float: none;
  box-shadow: none;
  margin-right: auto;
  margin-left: auto;
  max-width: 450px;
  width: 100%;
}
.wcfm-theme-cide .wcfm-membership-wrapper h2.wcfm_registration_form_heading {
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  margin-top: 45px;
}
.wcfm-theme-cide .wcfm-membership-wrapper #wcfm_membership_registration_form_expander .wcfm_title {
  display: block;
  width: 100%;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: #242424;
}
.wcfm-theme-cide .wcfm-membership-wrapper #wcfm_membership_container p.wcfm_title strong, .wcfm-theme-cide .wcfm-membership-wrapper #wcfm_membership_container span.wcfm_title strong {
  font-weight: 500 !important;
  font-style: normal !important;
}
.wcfm-theme-cide .wcfm-membership-wrapper #wcfm_membership_container .wcfm_email_verified, .wcfm-theme-cide .wcfm-membership-wrapper #wcfm_membership_container .wcfm_sms_verified, .wcfm-theme-cide .wcfm-membership-wrapper #wcfm_membership_container .wcfm_store_slug_verified {
  margin-left: 0;
  text-align: center;
}
.wcfm-theme-cide .wcfm-membership-wrapper #wcfm_membership_container .select2-container, .wcfm-theme-cide .wcfm-membership-wrapper #wcfm_membership_container .select2-container .select2-selection {
  min-height: 50px !important;
  line-height: 48px;
  width: 100% !important;
  box-shadow: none;
}
.wcfm-theme-cide .wcfm-membership-wrapper #wcfm_membership_container input#terms {
  margin-left: 0;
  display: inline-block;
  float: left;
}
.wcfm-theme-cide .wcfm-membership-wrapper #wcfm_membership_container p.terms_title.wcfm_title {
  margin-bottom: 1.5rem !important;
}
.wcfm-theme-cide .wcfm-membership-wrapper #wcfm_membership_container #wcfm_membership_register_button {
  height: 50px;
  border: none;
  background: #242424;
  color: #FFF;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 400;
  text-align: center;
  line-height: 22px;
  padding: 15px 30px;
  width: 100%;
  margin: 0;
  transition: all 0.25s;
  outline: none;
  box-shadow: none;
  border-radius: 0;
}
.wcfm-theme-cide .wcfm-membership-wrapper #wcfm_membership_container #wcfm_membership_register_button:hover {
  background-color: #e36c02;
}
.wcfm-theme-cide.single-product .wcfm_ele_wrapper a.wcfm_catalog_enquiry, .wcfm-theme-cide.single-product .wcfm_ele_wrapper a.wcfm-chat-now, .wcfm-theme-cide.single-product .wcfm_ele_wrapper a.wcfm_chat_now_button {
  border: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  height: 40px;
  line-height: 20px;
  padding: 10px 13px !important;
  font-size: 13px;
  -webkit-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -moz-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -ms-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  -o-transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
  transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s;
}
.wcfm-theme-cide.single-product .wcfmmp_sold_by_container_advanced {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border-color: #dcdcdc;
}
.wcfm-theme-cide.single-product .wcfmmp_sold_by_container_advanced .wcfmmp_sold_by_label {
  font-size: 9px;
  line-height: 12px;
  margin-top: 10px;
}
.wcfm-theme-cide.single-product .wcfmmp_sold_by_container_advanced .wcfmmp_sold_by_wrapper .wcfmmp_sold_by_store {
  line-height: 20px;
}
.wcfm-theme-cide.single-product .wcfmmp_sold_by_container_advanced .wcfmmp_sold_by_wrapper .wcfmmp_sold_by_store a {
  margin-top: 5px;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 15px;
}
.wcfm-theme-cide.single-product .product_meta .wcfm-clearfix {
  flex: 0 0 100%;
}
.wcfm-theme-cide #wcfmmp-store ul.products.products-grid-style {
  margin-left: -8px;
  margin-right: -8px;
}
.wcfm-theme-cide ul.products.products-grid-style li.product .wcfmmp_sold_by_container .wcfmmp-store-rating {
  min-width: 75px;
  max-width: max-content;
}
.wcfm-theme-cide ul.products.products-grid-style li.product .product-infos .variations_form ul, .wcfm-theme-cide ul.products.products-grid-style li.product .product-infos .variations_form ul.variations {
  padding-bottom: 0 !important;
}
.wcfm-theme-cide ul.products.products-grid-style.product-item-cide-style-2 .wcfmmp_sold_by_container .wcfmmp-store-rating, .wcfm-theme-cide ul.products.products-grid-style.product-item-cide-style-3 .wcfmmp_sold_by_container .wcfmmp-store-rating, .wcfm-theme-cide ul.products.products-grid-style.product-item-cide-style-4 .wcfmmp_sold_by_container .wcfmmp-store-rating, .wcfm-theme-cide ul.products.products-grid-style.product-item-cide-style-border .wcfmmp_sold_by_container .wcfmmp-store-rating {
  margin: 0 auto;
}

.dokan-theme-cide .dokan-store-sidebar .widget.dokan-store-widget {
  margin-bottom: 45px;
}
.dokan-theme-cide .dokan-store-sidebar .widget.dokan-store-widget .sidebar_heading {
  margin-bottom: 0;
}
.dokan-theme-cide .dokan-store-sidebar .widget.dokan-store-widget .widget-title {
  display: block;
  width: 100%;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 26px;
  text-transform: capitalize;
}
.dokan-theme-cide .dokan-store-sidebar .widget.dokan-store-widget .fm-search-form button[type=submit] {
  min-width: 50px;
}
.dokan-theme-cide .dokan-store-sidebar .widget.dokan-store-widget.dokan-store-menu .widget-title {
  margin-bottom: 15px;
}
.dokan-theme-cide .dokan-store-sidebar .widget.dokan-store-widget.dokan-store-menu ul {
  list-style: none;
  padding-left: 0;
}
.dokan-theme-cide .dokan-store-sidebar .widget.dokan-store-widget.dokan-store-menu ul li {
  padding-left: 0;
  line-height: 30px;
}
.dokan-theme-cide .dokan-store-sidebar .widget.dokan-store-widget.dokan-store-menu ul li ul.children {
  padding-left: 10px;
}
.dokan-theme-cide .dokan-pagination-container .dokan-pagination li {
  display: inline;
  border: none;
  box-sizing: border-box;
  margin: 0 0.25rem;
}
.dokan-theme-cide .dokan-pagination-container .dokan-pagination li a {
  text-decoration: none;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  margin: 0;
  text-align: center;
  border: 1px solid #dcdcdc;
  -webkit-transition: background-color 0.15s ease-in-out;
  -moz-transition: background-color 0.15s ease-in-out;
  -ms-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
  color: #777;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  border-width: 2px;
  line-height: 38px;
  display: inline-block;
}
.dokan-theme-cide .dokan-pagination-container .dokan-pagination li:hover a, .dokan-theme-cide .dokan-pagination-container .dokan-pagination li.active a {
  background-color: #232529;
  border-color: #232529;
  color: #FFF;
}
.dokan-theme-cide ul.products.products-grid-style li.product .sold-by-dokan-vendor .sold-by-label {
  font-size: 11px;
  font-style: italic;
}
.dokan-theme-cide ul.products.products-grid-style li.product .sold-by-dokan-vendor a {
  font-weight: 500;
  color: #f33c3c;
  font-size: 13px;
}
.dokan-theme-cide .dokan-category-menu #cat-drop-stack > ul {
  list-style: none;
}
.dokan-theme-cide.single-product .product-info .sold-by-dokan-vendor .sold-by-label {
  font-size: 12px;
  font-style: italic;
}
.dokan-theme-cide.single-product .product-info .sold-by-dokan-vendor a {
  font-weight: 500;
  color: #f33c3c;
  font-size: 14px;
}
.dokan-theme-cide p.form-row.form-group.vendor-customer-registration > label {
  position: static;
  margin-right: 15px;
}
.dokan-theme-cide .show_if_seller .form-row label {
  top: 0 !important;
}

@media (max-width: 991px) {
  .woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents tr.woocommerce-cart-form__cart-item {
    border-top: none;
  }
  .woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents tr.woocommerce-cart-form__cart-item td {
    border-color: transparent;
  }
}
@media (max-width: 768px) {
  .woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents thead th {
    border-bottom: 0 !important;
  }

  .woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents tr.woocommerce-cart-form__cart-item {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 100px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents tr.woocommerce-cart-form__cart-item td {
    padding: 5px 15px;
    font-size: 15px;
  }
  .woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents tr.woocommerce-cart-form__cart-item td.product-thumbnail::before {
    display: none;
  }
  .woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents tr.woocommerce-cart-form__cart-item td.product-quantity .quantity .input-text {
    height: 20px;
    width: 50px;
  }
  .woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents tr.woocommerce-cart-form__cart-item td.product-remove {
    position: absolute;
    bottom: 15px;
    left: 20px;
    background: #FFF;
    border: none;
  }
  .woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents tr.woocommerce-cart-form__cart-item td.product-thumbnail {
    display: block !important;
    position: absolute;
    width: 100px;
    left: 0;
    border: none;
  }

  .woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before {
    font-weight: 500;
    font-size: 15px;
  }

  .woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
    background-color: transparent;
  }
}
@media (max-width: 480px) {
  .woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents tr.woocommerce-cart-form__cart-item {
    padding-left: 80px;
  }
  .woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents tr.woocommerce-cart-form__cart-item td.product-thumbnail {
    width: 80px;
    padding-left: 15px;
    padding-right: 0;
  }

  .fmc-checkout-step .step.finish.step-cart, .fmc-checkout-step .step.finish.step-checkout {
    display: none;
  }
}
/* override kirki loading in customize */
.theme-cide .kirki-customizer-loading-wrapper {
  background-image: url(//www.mspvn.com/wp-content/themes/cide/assets/images/fm_logo.svg);
}

/* fix height swiper */
.fmtpl-elementor-swiper .swiper-wrapper {
  height: max-content;
}

/* fix wp-block-gallery */
body.elementor-default .wp-block-gallery.columns-2 .blocks-gallery-grid .blocks-gallery-item {
  margin-top: 5px;
  width: calc(50% - 35px);
}
body.elementor-default .wp-block-gallery.columns-2 .blocks-gallery-grid .blocks-gallery-item:not(:last-child) {
  margin-right: 35px;
}

/*# sourceMappingURL=theme.css.map */.c-offcanvas, .c-offcanvas-content-wrap {
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.c-offcanvas-bg.c-offcanvas-bg--push, .c-offcanvas-bg.c-offcanvas-bg--reveal, .c-offcanvas-content-wrap, .c-offcanvas {
  transition: transform 300ms cubic-bezier(0.4, 0, 0.6, 1);
}

.c-offcanvas.is-open {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  opacity: 1;
}

/**
 * Offcanvas-content-wrap
*/
.c-offcanvas-content-wrap {
  position: relative;
  z-index: 3;
  overflow: hidden;
}

/**
 * Offcanvas Panel
*/
.c-offcanvas {
  position: fixed;
  min-height: 100%;
  max-height: none;
  top: 0;
  display: block;
  background: #fff;
  overflow: hidden;
}
.c-offcanvas--opening {
  transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
}
.c-offcanvas.is-closed {
  max-height: 100%;
  overflow: hidden;
  visibility: hidden;
  box-shadow: none;
  opacity: 0;
  z-index: -1;
}

.c-offcanvas.is-scrollable {
  overflow-y: auto;
}
.c-offcanvas--overlay {
  z-index: 1080;
}

.c-offcanvas--reveal {
  z-index: 2;
}

/**
 * Offcanvas BG-Overlay
*/
.c-offcanvas-bg {
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1079;
  left: -100%;
  background-color: transparent;
  transition: background-color 400ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
}
.c-offcanvas-bg.is-animating, .c-offcanvas-bg.is-open {
  left: 0;
  background-color: rgba(0, 0, 0, 0.68);
  visibility: visible;
}
.c-offcanvas-bg.is-closed {
  visibility: hidden;
}
.c-offcanvas-bg--closing.is-animating {
  background: transparent;
}

/**
 * Position Left
 *
*/
.c-offcanvas--left {
  height: 100%;
  width: 20rem;
  transform: translate3d(-20rem, 0, 0);
}

.c-offcanvas--full-left {
  height: 100%;
  width: 100%;
  transform: translate3d(-100%, 0, 0);
}
/**
 *  Position Right
 *
*/
.c-offcanvas--right {
  height: 100%;
  width: 20rem;
  right: 0;
  transform: translate3d(20rem, 0, 0);
}

.c-offcanvas--full-right {
  height: 100%;
  width: 100%;
  right: 0;
  transform: translate3d(100%, 0, 0);
}
/**
 * Position Top
 *
*/
.c-offcanvas--top {
  left: 0;
  right: 0;
  top: 0;
  height: 15rem;
  min-height: auto;
  width: 100%;
  transform: translate3d(0, -15rem, 0);
}

/**
 * Position Bottom
 *
*/
.c-offcanvas--bottom {
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  height: 15rem;
  min-height: auto;
  width: 100%;
  transform: translate3d(0, 15rem, 0);
}

/**
 * Reveal
 *
*/
.c-offcanvas-content-wrap {
  z-index: 3;
}

.c-offcanvas-content-wrap--reveal.c-offcanvas-content-wrap--left.is-open {
  transform: translate3d(20rem, 0, 0);
}
.c-offcanvas-content-wrap--reveal.c-offcanvas-content-wrap--right.is-open {
  transform: translate3d(-25rem, 0, 0);
}

.c-offcanvas-content-wrap--reveal.c-offcanvas-content-wrap--full-left.is-open {
  transform: translate3d(100%, 0, 0);
}
.c-offcanvas-content-wrap--reveal.c-offcanvas-content-wrap--full-right.is-open {
  transform: translate3d(-100%, 0, 0);
}
.c-offcanvas--reveal {
  z-index: 0;
  transform: translate3d(0, 0, 0);
}

.c-offcanvas-bg.c-offcanvas-bg--reveal.c-offcanvas-bg--left.is-open {
  transform: translate3d(20rem, 0, 0);
}
.c-offcanvas-bg.c-offcanvas-bg--reveal.c-offcanvas-bg--right.is-open {
  transform: translate3d(-25rem, 0, 0);
}
.c-offcanvas-bg.c-offcanvas-bg--reveal.c-offcanvas-bg--full-left.is-open {
  transform: translate3d(100%, 0, 0);
}
.c-offcanvas-bg.c-offcanvas-bg--reveal.c-offcanvas-bg--full-right.is-open {
  transform: translate3d(-100%, 0, 0);
}

/**
 * Push
 *
*/
.c-offcanvas--push {
  z-index: 6;
}
.c-offcanvas--push--opening {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.c-offcanvas-content-wrap {
  z-index: 3;
}

.c-offcanvas-content-wrap--push.c-offcanvas-content-wrap--left.is-open {
  transform: translate3d(20rem, 0, 0);
}
.c-offcanvas-content-wrap--push.c-offcanvas-content-wrap--right.is-open {
  transform: translate3d(-25rem, 0, 0);
}

.c-offcanvas-bg.c-offcanvas-bg--push.c-offcanvas-bg--left.is-open {
  transform: translate3d(20rem, 0, 0);
}
.c-offcanvas-bg.c-offcanvas-bg--push.c-offcanvas-bg--right.is-open {
  transform: translate3d(-25rem, 0, 0);
}

.c-offcanvas-content-wrap--push.c-offcanvas-content-wrap--full-left.is-open {
  transform: translate3d(100%, 0, 0);
}
.c-offcanvas-content-wrap--push.c-offcanvas-content-wrap--full-right.is-open {
  transform: translate3d(-100%, 0, 0);
}
.c-offcanvas-bg.c-offcanvas-bg--push.c-offcanvas-bg--full-left.is-open {
  transform: translate3d(100%, 0, 0);
}
.c-offcanvas-bg.c-offcanvas-bg--push.c-offcanvas-bg--full-right.is-open {
  transform: translate3d(-100%, 0, 0);
}
.c-offcanvas--full-fade{
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.6, 1),visibility 300ms cubic-bezier(0.4, 0, 0.6, 1);
}
.c-offcanvas--full-fade.is_open{
  opacity: 1;
  visibility: visible;
}
.c-offcanvas.is-open .offcanvas-content {
  height: 100%;
  overflow: auto;
}
.c-offcanvas.c-offcanvas--top .offcanvas-content {
  text-align: center;
}
@media (min-width: 1200px) {
  .c-offcanvas--left {
    width: 435px;
    transform: translate3d(-435px, 0, 0);
  }
}
@media (max-width: 767px) {
  .c-offcanvas--left,
  .c-offcanvas--right {
    max-width: 100%;
  }
}
/*# sourceMappingURL=js-offcanvas.css.map */body{font-family: Roboto;font-size: 16px;}h1, .h1{font-family: Roboto;}h2, .h2{font-family: Roboto;}h3, .h3{font-family: Roboto;}h4, .h4{font-family: Roboto;}h5, .h5{font-family: Roboto;}h6, .h6{font-family: Roboto;}.fmc-announcement-box{font-family: Roboto;font-weight: 400;font-size: 14px;line-height: 2;letter-spacing: 1px;font-style: normal;font-weight: 400;font-style: normal;}.fmc-announcement-box {color:#ffffff;}.fmc-announcement-box button.close svg { fill: #ffffff;}.fmc-announcement-box svg.stroke{stroke:#ffffff;}.fmc-announcement-box svg.fill{fill:#ffffff;}.site-header .main-navigation, .site-header .main-navigation a{font-family: Roboto;font-size: 16px;font-style: normal;font-weight: 400;}a {color: #000000}a:hover {color: #d12f25}.familab_theme #respond input#submit.btn-flat, .familab_theme a.button.btn-flat, .familab_theme button.button.btn-flat, .familab_theme input.button.btn-flat, .btn-woo-flat.familab_theme button, .btn-woo-flat.familab_theme a.button, .btn-woo-flat.familab_theme button.button, .btn-woo-flat.familab_theme #respond input#submit, .btn-woo-flat.familab_theme #respond input.button, .btn-woo-flat.familab_theme .widget_shopping_cart .buttons a, .btn-woo-flat.familab_theme #respond input#submit.alt, .btn-woo-flat.familab_theme a.button.alt, .btn-woo-flat.familab_theme button.button.alt, .btn-woo-flat.familab_theme input.button.alt, .btn-default.btn-flat {background-color:#d12f25;color:#ffffff;}.familab_theme #respond input#submit.btn-flat:hover, .familab_theme a.button.btn-flat:hover, .familab_theme button.button.btn-flat:hover, .familab_theme input.button.btn-flat:hover, .btn-woo-flat.familab_theme button:hover, .btn-woo-flat.familab_theme a.button:hover, .btn-woo-flat.familab_theme button.button:hover, .btn-woo-flat.familab_theme #respond input#submit:hover, .btn-woo-flat.familab_theme #respond input.button:hover, .btn-woo-flat.familab_theme .widget_shopping_cart .buttons a:hover, .btn-woo-flat.familab_theme #respond input#submit.alt:hover, .btn-woo-flat.familab_theme a.button.alt:hover, .btn-woo-flat.familab_theme button.button.alt:hover, .btn-woo-flat.familab_theme input.button.alt:hover, .btn-default.btn-flat:hover {background-color:#a6251d;}@media(min-width: 1700px) {.container{ max-width:1700px;}.header-mobile > .container, .header-container, #content > .container, .site-content .page-heading-wrap .page-heading-container, .header-breadcrumb-wrap > .container, .term-description-full-content > .container { max-width:1700px;}.elementor-section.elementor-section-boxed > .elementor-container { max-width:1700px;}}.header-container, .footer-container{width: 1700px;}.header-main{height: 85px;}.site-header:not(.fmc-transparent-header) .header-layout{background-color:#ffffff;}.header-main .header-element,.header-main .header-element.search_box.form .fm-search-form .search_text_input,.header-main .header-element.search_box.form .fm-search-form button[type=submit],.header-main .header-element.search_form_wrapper .fm-search-form .search_text_input,.header-main .header-element.search_form_wrapper .fm-search-form button[type=submit],.header-main .header-element.search_box.button > a,.header-main .header-element.search_box.button > a span,.header-main .header-element.cart_box > a,.header-main .header-element.cart_box > a span,.header-main .header-element.my-account-box > a,.header-main .header-element.my-account-box > a span,.header-main .header-element.wishlist-box > a,.header-main .header-element.wishlist-box > a span,.header-main .header-element.hamburger-box > a,.header-main .header-element.hamburger-box > a span,.header-main .header-element.contact-info-box > a,.header-main .header-element.contact-info-box > a span,.header-main .header-element.social-icon-box > a,.header-main .header-element.social-icon-box > a span,.header-main .header-element.currency-box > span.label,.header-main .header-element.language-box > span.label,.header-main .header-element.currency-box .dropdown > .current,.header-main .header-element.currency-box .dropdown > .current span,.header-main .header-element.language-box .dropdown > .current,.header-main .header-element.language-box .dropdown > .current span,.header-main .header-element.contact-info-box,.header-main .header-element.html_right_1,.header-main .header-element.html_left_1, #site-navigation > .nav-menu > li > a, #site-navigation > .nav-menu > li > a span{color:#000000;}.header-main .header-element.search_box.form .fm-search-form button[type=submit] svg,.header-main .header-element.search_form_wrapper .fm-search-form button[type=submit] svg,.header-main .header-element.search_box.button > a svg,.header-main .header-element.search_box.button > a svg.fm-icon,.header-main .header-element.cart_box > a svg,.header-main .header-element.cart_box > a svg.fm-icon,.header-main .header-element.my-account-box > a svg,.header-main .header-element.my-account-box > a svg.fm-icon,.header-main .header-element.wishlist-box > a svg,.header-main .header-element.wishlist-box > a svg.fm-icon,.header-main .header-element.hamburger-box > a svg,.header-main .header-element.hamburger-box > a svg.fm-icon,.header-main .header-element.contact-info-box > a svg,.header-main .header-element.contact-info-box > a svg.fm-icon,.header-main .header-element.social-icon-box > a svg,.header-main .header-element.social-icon-box > a svg.fm-icon,.header-main .header-element.currency-box .dropdown > .current svg,.header-main .header-element.language-box .dropdown > .current svg,.header-main .header-element.contact-info-box svg,.header-main .header-element.contact-info-box svg.fm-icon,.header-main .header-element.html_right_1 svg,.header-main .header-element.html_right_1 svg.fm-icon,.header-main .header-element.html_left_1 svg,.header-main .header-element.html_left_1 svg.fm-icon, #site-navigation > .nav-menu > li > a svg, #site-navigation > .nav-menu > li > a svg.fm-icon{fill:#000000;}.header-main .header-element.cart_box > a.cart-btn .mini-cart-contents .cart-counter > span{border-color:#000000;}.header-main .header-element.search_box.button > a:hover,.header-main .header-element.search_box.button > a:hover span,.header-main .header-element.cart_box > a:hover,.header-main .header-element.cart_box > a:hover span,.header-main .header-element.my-account-box > a:hover,.header-main .header-element.my-account-box > a:hover span,.header-main .header-element.wishlist-box > a:hover,.header-main .header-element.wishlist-box > a:hover span,.header-main .header-element.hamburger-box > a:hover,.header-main .header-element.hamburger-box > a:hover span,.header-main .header-element.contact-info-box > a:hover,.header-main .header-element.contact-info-box > a:hover span,.header-main .header-element.social-icon-box > a:hover,.header-main .header-element.social-icon-box > a:hover span, #site-navigation > .nav-menu > li > a:hover, #site-navigation > .nav-menu > li > a:hover span{color:#FB5858;}.header-main .header-element.search_box.button > a:hover svg,.header-main .header-element.search_box.button > a:hover svg.fm-icon,.header-main .header-element.cart_box > a:hover svg,.header-main .header-element.cart_box > a:hover svg.fm-icon,.header-main .header-element.my-account-box > a:hover svg,.header-main .header-element.my-account-box > a:hover svg.fm-icon,.header-main .header-element.wishlist-box > a:hover svg,.header-main .header-element.wishlist-box > a:hover svg.fm-icon,.header-main .header-element.hamburger-box > a:hover svg,.header-main .header-element.hamburger-box > a:hover svg.fm-icon,.header-main .header-element.contact-info-box > a:hover svg,.header-main .header-element.contact-info-box > a:hover svg.fm-icon,.header-main .header-element.social-icon-box > a:hover svg,.header-main .header-element.social-icon-box > a:hover svg.fm-icon, #site-navigation > .nav-menu > li > a:hover svg, #site-navigation > .nav-menu > li > a:hover svg.fm-icon{fill:#FB5858;}.site-header .site-navigation a:after{background-color:#FB5858;}.header-bottom .header-element,.header-bottom .header-element.search_box.form .fm-search-form .search_text_input,.header-bottom .header-element.search_box.form .fm-search-form button[type=submit],.header-bottom .header-element.search_form_wrapper .fm-search-form .search_text_input,.header-bottom .header-element.search_form_wrapper .fm-search-form button[type=submit],.header-bottom .header-element.search_box.button > a,.header-bottom .header-element.search_box.button > a span,.header-bottom .header-element.cart_box > a,.header-bottom .header-element.cart_box > a span,.header-bottom .header-element.my-account-box > a,.header-bottom .header-element.my-account-box > a span,.header-bottom .header-element.wishlist-box > a,.header-bottom .header-element.wishlist-box > a span,.header-bottom .header-element.hamburger-box > a,.header-bottom .header-element.hamburger-box > a span,.header-bottom .header-element.contact-info-box > a,.header-bottom .header-element.contact-info-box > a span,.header-bottom .header-element.social-icon-box > a,.header-bottom .header-element.social-icon-box > a span,.header-bottom .header-element.currency-box > span.label,.header-bottom .header-element.language-box > span.label,.header-bottom .header-element.currency-box .dropdown > .current,.header-bottom .header-element.currency-box .dropdown > .current span,.header-bottom .header-element.language-box .dropdown > .current,.header-bottom .header-element.language-box .dropdown > .current span,.header-bottom .header-element.contact-info-box,.header-bottom .header-element.html_right_1,.header-bottom .header-element.html_left_1,.header-bottom #site-navigation > .nav-menu > li > a,.header-bottom #site-navigation > .nav-menu > li > a span{color:#000000;}.header-bottom .header-element.search_box.form .fm-search-form button[type=submit] svg,.header-bottom .header-element.search_form_wrapper .fm-search-form button[type=submit] svg,.header-bottom .header-element.search_box.button > a svg,.header-bottom .header-element.search_box.button > a svg.fm-icon,.header-bottom .header-element.cart_box > a svg,.header-bottom .header-element.cart_box > a svg.fm-icon,.header-bottom .header-element.my-account-box > a svg,.header-bottom .header-element.my-account-box > a svg.fm-icon,.header-bottom .header-element.wishlist-box > a svg,.header-bottom .header-element.wishlist-box > a svg.fm-icon,.header-bottom .header-element.hamburger-box > a svg,.header-bottom .header-element.hamburger-box > a svg.fm-icon,.header-bottom .header-element.contact-info-box > a svg,.header-bottom .header-element.contact-info-box > a svg.fm-icon,.header-bottom .header-element.social-icon-box > a svg,.header-bottom .header-element.social-icon-box > a svg.fm-icon,.header-bottom .header-element.currency-box .dropdown > .current svg,.header-bottom .header-element.language-box .dropdown > .current svg,.header-bottom .header-element.contact-info-box svg,.header-bottom .header-element.contact-info-box svg.fm-icon,.header-bottom .header-element.html_right_1 svg,.header-bottom .header-element.html_right_1 svg.fm-icon,.header-bottom .header-element.html_left_1 svg,.header-bottom .header-element.html_left_1 svg.fm-icon,.header-bottom #site-navigation > .nav-menu > li > a svg,.header-bottom #site-navigation > .nav-menu > li > a svg.fm-icon{fill:#000000;}.header-bottom .header-element.cart_box > a.cart-btn .mini-cart-contents .cart-counter > span{border-color:#000000;}.header-bottom .site-navigation a:after{background-color:#000000;}.header-layout{box-shadow: 0 7px 6px -4px rgba(0, 0, 0, 0.01), 0 7px 6px rgba(0, 0, 0, 0.01);border-bottom: none;}.header-mobile{height: 70px;}.site-branding{width:300px;padding-top:0;padding-bottom:0;padding-left:0;padding-right:0;text-align:center;align-self:center;}.header-layout3 .header-main {grid-template-columns: 1fr 300px 1fr}.header-layout5 .header-main {grid-template-columns: 1fr 300px 1fr}.header-layout6 .header-main {grid-template-columns: 1fr 300px 1fr}.site-logo{max-width:100px;}.header-mobile .site-logo{max-width:100px;}.search_box{margin-left:35px;}.cart_box{margin-left:22px;}.my-account-box{margin-left:17px;}@media (min-width: 1200px) {.fm-search-form{width: 500px;}}.top-bar{height: 45px;}.top-bar{border-bottom-width: 1px;border-bottom-style: solid; border-bottom-color: #e8e8e8;}.site-header .header-layout.headroom--pinned.headroom--not-top .header-main{height:80px;}.site-header .header-layout.headroom--pinned.headroom--not-top{background-color:#ffffff;}body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_box.form .fm-search-form .search_text_input,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_box.form .fm-search-form button[type=submit],body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_form_wrapper .fm-search-form .search_text_input,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_form_wrapper .fm-search-form button[type=submit],body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_box.button > a,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_box.button > a span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.cart_box > a,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.cart_box > a span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.my-account-box > a,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.my-account-box > a span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.wishlist-box > a,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.wishlist-box > a span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.hamburger-box > a,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.hamburger-box > a span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.contact-info-box > a,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.contact-info-box > a span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.social-icon-box > a,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.social-icon-box > a span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.currency-box > span.label,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.language-box > span.label,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.currency-box .dropdown > .current,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.currency-box .dropdown > .current span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.language-box .dropdown > .current,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.language-box .dropdown > .current span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.contact-info-box,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.html_right_1,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.html_left_1,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top  #site-navigation > .nav-menu > li > a,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top  #site-navigation > .nav-menu > li > a span{color:#000000;}body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_box.form .fm-search-form button[type=submit] svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_form_wrapper .fm-search-form button[type=submit] svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_box.button > a svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_box.button > a svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.cart_box > a svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.cart_box > a svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.my-account-box > a svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.my-account-box > a svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.wishlist-box > a svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.wishlist-box > a svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.hamburger-box > a svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.hamburger-box > a svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.contact-info-box > a svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.contact-info-box > a svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.social-icon-box > a svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.social-icon-box > a svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.currency-box .dropdown > .current svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.language-box .dropdown > .current svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.contact-info-box svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.contact-info-box svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.html_right_1 svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.html_right_1 svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.html_left_1 svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.html_left_1 svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top  #site-navigation > .nav-menu > li > a svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top  #site-navigation > .nav-menu > li > a svg.fm-icon{fill:#000000;}body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.cart_box > a.cart-btn .mini-cart-contents .cart-counter > span{border-color:#000000;}body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_box.button > a:hover,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_box.button > a:hover span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.cart_box > a:hover,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.cart_box > a:hover span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.my-account-box > a:hover,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.my-account-box > a:hover span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.wishlist-box > a:hover,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.wishlist-box > a:hover span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.hamburger-box > a:hover,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.hamburger-box > a:hover span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.contact-info-box > a:hover,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.contact-info-box > a:hover span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.social-icon-box > a:hover,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.social-icon-box > a:hover span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top  #site-navigation > .nav-menu > li > a:hover,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top  #site-navigation > .nav-menu > li > a:hover span{color:#c33b3b;}body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_box.button > a:hover svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_box.button > a:hover svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.cart_box > a:hover svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.cart_box > a:hover svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.my-account-box > a:hover svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.my-account-box > a:hover svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.wishlist-box > a:hover svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.wishlist-box > a:hover svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.hamburger-box > a:hover svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.hamburger-box > a:hover svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.contact-info-box > a:hover svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.contact-info-box > a:hover svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.social-icon-box > a:hover svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.social-icon-box > a:hover svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top  #site-navigation > .nav-menu > li > a:hover svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top  #site-navigation > .nav-menu > li > a:hover svg.fm-icon{fill:#c33b3b;}.fmc-transparent-header{background-color:#ffffff;}body.familab_theme .site-header.fmc-transparent-header .header-main .header-element,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.search_box.form .fm-search-form .search_text_input,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.search_box.form .fm-search-form button[type=submit],body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.search_form_wrapper .fm-search-form .search_text_input,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.search_form_wrapper .fm-search-form button[type=submit],body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.search_box.button > a,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.search_box.button > a span,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.cart_box > a,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.cart_box > a span,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.my-account-box > a,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.my-account-box > a span,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.wishlist-box > a,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.wishlist-box > a span,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.hamburger-box > a,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.hamburger-box > a span,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.contact-info-box > a,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.contact-info-box > a span,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.social-icon-box > a,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.social-icon-box > a span,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.currency-box > span.label,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.language-box > span.label,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.currency-box .dropdown > .current,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.currency-box .dropdown > .current span,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.language-box .dropdown > .current,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.language-box .dropdown > .current span,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.contact-info-box,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.html_right_1,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.html_left_1,body.familab_theme .site-header.fmc-transparent-header  #site-navigation > .nav-menu > li > a,body.familab_theme .site-header.fmc-transparent-header  #site-navigation > .nav-menu > li > a span{color:#333;}body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.search_box.form .fm-search-form button[type=submit] svg,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.search_form_wrapper .fm-search-form button[type=submit] svg,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.search_box.button > a svg,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.search_box.button > a svg.fm-icon,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.cart_box > a svg,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.cart_box > a svg.fm-icon,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.my-account-box > a svg,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.my-account-box > a svg.fm-icon,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.wishlist-box > a svg,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.wishlist-box > a svg.fm-icon,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.hamburger-box > a svg,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.hamburger-box > a svg.fm-icon,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.contact-info-box > a svg,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.contact-info-box > a svg.fm-icon,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.social-icon-box > a svg,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.social-icon-box > a svg.fm-icon,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.currency-box .dropdown > .current svg,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.language-box .dropdown > .current svg,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.contact-info-box svg,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.contact-info-box svg.fm-icon,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.html_right_1 svg,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.html_right_1 svg.fm-icon,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.html_left_1 svg,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.html_left_1 svg.fm-icon,body.familab_theme .site-header.fmc-transparent-header  #site-navigation > .nav-menu > li > a svg,body.familab_theme .site-header.fmc-transparent-header  #site-navigation > .nav-menu > li > a svg.fm-icon{fill:#333;}body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.cart_box > a.cart-btn .mini-cart-contents .cart-counter > span{border-color:#333;}body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.search_box.button > a:hover,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.search_box.button > a:hover span,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.cart_box > a:hover,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.cart_box > a:hover span,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.my-account-box > a:hover,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.my-account-box > a:hover span,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.wishlist-box > a:hover,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.wishlist-box > a:hover span,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.hamburger-box > a:hover,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.hamburger-box > a:hover span,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.contact-info-box > a:hover,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.contact-info-box > a:hover span,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.social-icon-box > a:hover,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.social-icon-box > a:hover span,body.familab_theme .site-header.fmc-transparent-header  #site-navigation > .nav-menu > li > a:hover,body.familab_theme .site-header.fmc-transparent-header  #site-navigation > .nav-menu > li > a:hover span{color:#dd3333;}body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.search_box.button > a:hover svg,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.search_box.button > a:hover svg.fm-icon,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.cart_box > a:hover svg,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.cart_box > a:hover svg.fm-icon,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.my-account-box > a:hover svg,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.my-account-box > a:hover svg.fm-icon,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.wishlist-box > a:hover svg,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.wishlist-box > a:hover svg.fm-icon,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.hamburger-box > a:hover svg,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.hamburger-box > a:hover svg.fm-icon,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.contact-info-box > a:hover svg,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.contact-info-box > a:hover svg.fm-icon,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.social-icon-box > a:hover svg,body.familab_theme .site-header.fmc-transparent-header .header-main .header-element.social-icon-box > a:hover svg.fm-icon,body.familab_theme .site-header.fmc-transparent-header  #site-navigation > .nav-menu > li > a:hover svg,body.familab_theme .site-header.fmc-transparent-header  #site-navigation > .nav-menu > li > a:hover svg.fm-icon{fill:#dd3333;}.fmc-transparent-header .site-header.fmc-transparent-header .site-navigation a:after{background-color:#dd3333;}.fmc-transparent-header .header-layout{border-bottom-width: 1px;border-bottom-style: solid; border-bottom-color: rgba(255,255,255,0.2);}.blog-heading-content{background-color: #f8f8f8;}.blog-heading-content{height:400px;}.blog-heading-content{padding-top:200px;}.blog .content, .archive:not(.woocommerce-page) .content{background-color: #ffffff;}@media(max-width: 767px) {.blog-heading-content{height:300px;}}.shop-heading-content{background-image: url(https://cide.familab.net/wp-content/uploads/2021/10/bg_shop.jpg);background-repeat:no-repeat;background-position:center center;background-size:cover;background-attachment:scroll;}.shop-heading-content{height:450px;}.shop-heading-content{padding-top:230px;}@media(max-width: 767px) {.shop-heading-content{height:200px;}.shop-heading-content{padding-top:60px;}}.shop-page-layout-background #content{background-color: #f0f1f4;}.woocommerce-badge.on_sale {color: #ffffff;background-color: #6ae08c;;}.woocommerce-badge.new {color: #FFF;background-color: #4fd7f0;;}.woocommerce-badge.featured {color: #ffffff;background-color: #ff4b4b;;}.woocommerce-badge.sold_out {color: #FFFFFF;background-color: #e1e1e1;;}.page-shop-option .page-heading-wrap.has-divider .shop-heading-content{border-color: #dcdcdc;}@media (min-width: 992px) {.single-product .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper{height: 450px;}}@media (min-width: 1200px) {.single-product .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper{height: 450px;}}svg.fm-icon:hover {
  fill: #13214a;
  stroke: #13214a;
}

.woocommerce #respond input#submit.btn-advance, .familab_theme #respond input#submit.btn-advance, .woocommerce a.button.btn-advance, .familab_theme a.button.btn-advance, .woocommerce button.button.btn-advance, .familab_theme button.button.btn-advance, .woocommerce button.button.alt.btn-advance, .familab_theme button.button.alt.btn-advance, .woocommerce input.button.btn-advance, .familab_theme input.button.btn-advance {
  background: #13214a;
}

.fmc-announcement-box .fm-countdown-time .box-count {
  background: #13214a;
}
.familab_theme .fmc-announcement-box .announcement_btn a {
  background: #13214a;
}

.top-bar.dark *:hover, .top-bar.dark a:hover, .top-bar.dark p:hover {
  color: #13214a;
}
.top-bar.dark svg.fm-icon:hover {
  fill: #13214a;
}

.vertical-header .main-navigation > ul.nav-menu > li.menu-item-has-children:hover > a::before, .vertical-header .main-navigation > ul.nav-menu > li.menu-item-mega:hover > a::before {
  border-color: #13214a;
}

.related.products .cide-carousel-wrap .swiper-button-prev:hover {
  border-color: #13214a;
  background: #13214a;
}

.comment-navigation a:hover, .posts-navigation a:hover, .post-navigation a:hover {
  color: #13214a;
}

.ajax-navigation a {
  background-color: #13214a;
}
.ajax-navigation a:hover, .ajax-navigation a:focus {
  background-color: #ec1919;
}

.site-navigation a:after {
  background-color: #13214a;
}

.woocommerce .woocommerce-error .button:hover, .woocommerce-page .woocommerce-error .button:hover, .woocommerce .woocommerce-info .button:hover, .woocommerce-page .woocommerce-info .button:hover, .woocommerce .woocommerce-message .button:hover, .woocommerce-page .woocommerce-message .button:hover {
  background-color: #13214a;
}

.fmc-checkout-step .step.active span.step-icon, .fmc-checkout-step .step.finish span.step-icon {
  background: #13214a;
  border-color: #13214a;
}
.fmc-checkout-step .step.active::before, .fmc-checkout-step .step.finish::before {
  background: #13214a;
}
.fmc-checkout-step .step.finish span.step-icon {
  color: #13214a;
  border-color: #13214a;
}
.fmc-checkout-step .step.finish span.step-icon svg {
  fill: #13214a;
}

.woocommerce-form-register .woocommerce-privacy-policy-text a {
  color: #13214a;
}

.woocommerce-wishlist table.wishlist_table td.product-remove a.remove_from_wishlist:hover {
  color: #13214a !important;
}

.tinv-wishlist table.tinvwl-table-manage-list td.product-action button.button:hover {
  background: #13214a;
}

#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-title .js-offcanvas-close .button-title:hover {
  color: #13214a;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-title .js-offcanvas-close:hover svg.fm-icon {
  fill: #13214a;
}

#fm-search-modal .modal-header button.close:hover .button-title {
  color: #13214a;
}

.theme-cide #cart-canvas .cide-close-btn .button-title:hover {
  color: #13214a;
}

.theme-cide #account-canvas .account_form_content .cide-close-btn .button-title:hover {
  color: #13214a;
}

#hamburger-canvas .cide-close-btn .button-title:hover {
  color: #13214a;
}

#search-canvas .offcanvas-content .js-offcanvas-close.cide-close-btn .button-title:hover {
  color: #13214a;
}

.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field input:focus, .elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field textarea:focus {
  border-color: #13214a;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-submit-container button.wpforms-submit:hover {
  background: #13214a;
}

@media (min-width: 768px) {
  .elementor-widget.elementor-widget-wpforms.contact_form_v1 .wpforms-container.contact_form form.wpforms-form .wpforms-submit-container button.wpforms-submit:hover {
    background-color: #13214a;
  }
}
.woocommerce-page .cide_woof_pagination_trigger a.cide_woof_pagination_trigger_action:hover {
  border-bottom-color: #13214a;
}

body:not(.woocommerce-page) .cide-sidebar-content aside.widget.cide_newsletter .fm_newsletter_form input[type=submit]:hover, body:not(.woocommerce-page) .cide-sidebar-content aside.widget.cide_newsletter .fm_newsletter_form button[type=submit]:hover {
  background: #13214a;
}

body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .read-more-btn:hover {
  background-color: #13214a;
}

body:not(.woocommerce-page) .page-links .post-page-numbers.current {
  color: #13214a;
}

.single-post #comments .comment-respond .comment-form .form-submit input#submit:hover, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .form-submit input#submit:hover {
  background-color: #13214a;
}

.elementor-widget-fmtpl-newsletter .fmtpl-newsletter .newsletter-form-content .mc4wp-form .fm_newsletter_form input[type=email]:focus {
  border-color: #13214a;
}

.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cat_banner_outside03:hover .fmtpl-category-banner-content .fmtpl-category-banner-title .title-content {
  border-color: #13214a;
}

.elementor-widget-fmtpl-deal .fmtpl-product-deal.product_deal_01 .fmtpl-product-thumb-wraper .product-thumbnails .woocommerce-product-gallery__image:hover {
  border-color: #13214a;
}

.elementor-widget-fmtpl-products-tabs .fmtpl-products-tabs.fmtpl-products-tabs-layout-divider ul.nav-tabs li.nav-item a.nav-link:hover::after, .elementor-widget-fmtpl-products-tabs .fmtpl-products-tabs.fmtpl-products-tabs-layout-divider ul.nav-tabs li.nav-item a.nav-link.active::after {
  background-color: #13214a;
}

.elementor-widget-icon-list.fmcl_icon_list_item_border .elementor-icon-list-item a:hover {
  border-color: #13214a;
}

.page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-ordering .select2-container.select2-container--default .select2-selection--single > .select2-selection__rendered:hover {
  color: #13214a;
}
.page-shop-option .page-heading-wrap {
  /* Shop Heading */
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-dark .cide-carousel ul.swiper-wrapper li.category-item:hover h3 a, .page-shop-option .page-heading-wrap .shop-heading-content.heading-color-dark .cide-carousel ul.swiper-wrapper li.category-item.swiper-slide-active h3 a {
  color: #13214a;
}

.page-shop-option .fmc-shop-control.control_has_product_tabs .fmc-products-tabs a:hover, .page-shop-option .fmc-shop-control.control_has_product_tabs .fmc-products-tabs a.active,
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-ordering .select2-container.select2-container--default .select2-selection--single > .select2-selection__rendered:hover,
.woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-infos > a.button,
.single-product #content .type-product .product-container .product-main .product-info .product_meta .posted_in a:hover,
body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .metas a:hover {
  color: #13214a;
}

.page-shop-option .fmc-shop-control.layout1 .main-shop-control .cide-filter-button .cide-filter-btn:hover svg.fm-icon,
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .columns-switcher > .column-switch-btn:hover svg, .page-shop-option .fmc-shop-control.layout1 .main-shop-control .columns-switcher > .column-switch-btn.active svg {
  fill: #13214a;
}

.header-element.cart_box a.cart-btn .mini-cart-contents .cart-counter > span,
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container.shop_control_categories_layout_layout3 .cide-categories-carousel-layout3 .category-item > h3 a:after,
.woocommerce-page .cide_woof_pagination_trigger a.cide_woof_pagination_trigger_action:hover,
.related.products .cide-carousel-wrap .swiper-button-next:hover, .related.products .cide-carousel-wrap .swiper-button-prev:hover {
  background-color: #13214a;
}

.page-shop-option .fmc-shop-control.control_has_product_tabs .fmc-products-tabs a.active::after {
  border-bottom-color: #13214a;
}

.related.products .cide-carousel-wrap .swiper-button-next:hover, .related.products .cide-carousel-wrap .swiper-button-prev:hover {
  border-color: #13214a;
}

@media (min-width: 768px) {
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control .cide-filter-button:hover, .page-shop-option .fmc-shop-control.layout1 .main-shop-control .cide-filter-button:hover .filter-title {
    color: #13214a;
  }

  .woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right a.button:hover svg, .woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right a.tinvwl_add_to_wishlist_button:hover svg, .woocommerce ul.products.products-grid-style.product-item-cide-style-6 li.product .product-thumbnail .cide_product_item_thumb_action_wrap .cide_thumb_action.right button.woosq-btn:hover svg {
    fill: #13214a;
  }

  .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-categories-carousel.cide-categories-carousel-layout2 ul.swiper-wrapper li.category-item:hover a img, .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-categories-carousel.cide-categories-carousel-layout2 ul.swiper-wrapper li.category-item.swiper-slide-active a img {
    box-shadow: 0 0 0 2px #13214a;
  }

  .woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button:hover,
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cide_item_button_wrapper > *:hover {
    background-color: #13214a;
  }
}

/*# sourceMappingURL=pre_main_color.css.map */body {
  color: #999999;
}

.woocommerce form .form-row label, .woocommerce-page form .form-row label {
  color: #999999;
}

#fm-account-modal form.woocommerce-form.woocommerce-form-register .form-row label, #fm-account-modal form.woocommerce-form.woocommerce-form-login .form-row label, .woocommerce-account form.woocommerce-form.woocommerce-form-register .form-row label, .woocommerce-account form.woocommerce-form.woocommerce-form-login .form-row label {
  color: #999999;
}

.theme-cide .fmc-checkout-step .step.finish span.label:not(:hover) {
  color: #999999;
}

.woocommerce-form-coupon-toggle .woocommerce-info, .woocommerce-form-login-toggle .woocommerce-info {
  color: #999999;
}

.woocommerce-checkout form.woocommerce-form-coupon .form-row-first input.input-text {
  color: #999999;
}

.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td dl.variation dd + dt::before {
  color: #999999;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.actions .coupon #coupon_code :not(:focus) {
  color: #999999;
}

.woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product_info dl.variation dd + dt::before {
  color: #999999;
}

#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
  color: #999999;
}

.woocommerce-account .woocommerce-MyAccount-navigation li > a {
  color: #999999;
}

.woocommerce-form-register .woocommerce-privacy-policy-text {
  color: #999999;
}

.theme-cide .cart_box_content ul.cart_list li.mini_cart_item dl.variation dt {
  color: #999999;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item dl.variation dd + dt::before {
  color: #999999;
}
.theme-cide .cart_box_content ul.cart_list li.mini_cart_item .quantity-wrap .woocommerce-mini-cart-item__qty .quantity > a svg {
  fill: #999999;
}
.cart_box_content .cide-cart-empty-box .woocommerce-mini-cart__empty-icon svg {
  fill: #999999;
}

.fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item .product-item-cat-title {
  color: #999999;
}

#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content ul.nav-tabs li.nav-item a.nav-link {
  color: #999999;
}

#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product.product .summary .woocommerce-product-rating a.woocommerce-review-link {
  color: #999999;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product.product .summary .price del {
  color: #999999;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product.product .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button svg.fm-icon {
  fill: #999999;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product.product .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button.disabled-add-wishlist {
  color: #999999;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .select2-container--default .select2-selection--single {
  color: #999999;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product.product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item {
  color: #999999;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product.product.product-type-grouped .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item a.button.product_type_simple {
  background: #999999;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product.product.product-type-grouped .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item .woocommerce-grouped-product-list-item__price .woocs_price_code del {
  color: #999999;
}

.theme-cide #account-canvas .account_form_content .nav-tabs .nav-link {
  color: #999999;
}

#search-canvas .offcanvas-content .search_form_content .fm-search-form button[type=submit] svg.fm-icon {
  fill: #999999;
}

.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field input, .elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field textarea {
  color: #999999;
}

.woocommerce-page .woocommerce-breadcrumb {
  /* Shop Element - Breadcrumb */
}
.woocommerce ul.products.products-grid-style li.product .product-infos .product-item-cat-link {
  color: #999999;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos a.product-item-cat-link {
  color: #999999;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos .product-item-excerpt {
  color: #999999;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos a.product-item-cat-link {
  color: #999999;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .product-item-excerpt {
  color: #999999;
}

@media (min-width: 768px) {
  .woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .swiper-button-next svg.fm-icon, .woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .swiper-button-prev svg.fm-icon {
    fill: #999999;
  }
}
body:not(.woocommerce-page) .cide-sidebar-content aside.widget .cide-posts-list .post-item .post-list-content .post-list-category a {
  color: #999999;
}
body:not(.woocommerce-page) .cide-sidebar-content aside.widget .cide-posts-list .post-item.has_background .cat-links a {
  color: #999999;
}
body:not(.woocommerce-page) .cide-sidebar-content aside.widget.widget_search .fm-search-form input.search_text_input {
  color: #999999;
}
body:not(.woocommerce-page) .cide-sidebar-content aside.widget.cide_newsletter > .text {
  color: #999999;
}
body:not(.woocommerce-page) .cide-sidebar-content aside.widget.cide_newsletter .fm_newsletter_form input[type=email] {
  color: #999999;
}
body:not(.woocommerce-page) .cide-sidebar-content aside.widget.widget_tag_cloud .tagcloud a {
  color: #999999;
}

body:not(.woocommerce-page) article.cide-post-item.post-grid-2 .post-inner .info .post-categories .cat-links a {
  color: #999999;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .post-categories .cat-links a {
  color: #999999;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .post-categories .cat-links a ~ a::before {
  color: #999999;
}
body:not(.woocommerce-page) article.cide-post-item.post-list .post-inner .info .metas .posted-on {
  font-size: 0;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .post-categories .cat-links a {
  color: #999999;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .post-categories .cat-links a ~ a::before {
  color: #999999;
}
body:not(.woocommerce-page) article.cide-post-item.post-standard .post-inner .info .metas a:not(:hover) {
  color: #999999;
}

.single-post .site-main article.single-post .post-header .metas a {
  color: #999999;
}
.single-post .site-main article.single-post .info-bottom .tags-links a {
  color: #999999;
}
.single-post .site-main article.single-post .footer-post .post-navigation .nav-links a .post_nav-text:not(:hover) {
  color: #999999;
}

.single-post #comments .comment-list .comment-body .comment-content .comment-heading .comment-action a, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content .comment-heading .comment-action a {
  color: #999999;
}
.single-post #comments .comment-respond .comment-form .comment-form-comment label, .single-post #comments .comment-respond .comment-form .comment-form-author label, .single-post #comments .comment-respond .comment-form .comment-form-email label, .single-post #comments .comment-respond .comment-form .comment-form-url label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-comment label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-author label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-email label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .comment-form-url label {
  color: #999999;
}

.elementor-widget-fmtpl-carousel-posts .fmtpl-post-layout-carousel_03 .fmtpl-post-category a {
  color: #999999;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-layout-carousel_03 .fmtpl-post-meta-wrap span {
  color: #999999;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-layout-carousel_03 .fmtpl-post-meta-wrap span.fmtpl-post-meta + .fmtpl-post-meta {
  border-color: #999999;
}

/*# sourceMappingURL=pre_body_color.css.map */.jssocials-shares {
  margin: 0.2em 0;
}

.jssocials-shares * {
  box-sizing: border-box;
}

.jssocials-share {
  display: inline-block;
  vertical-align: top;
  margin: 0.3em 0.6em 0.3em 0;
}

.jssocials-share:last-child {
  margin-right: 0;
}

.jssocials-share-logo {
  width: 1em;
  vertical-align: middle;
  font-size: 1.5em;
}

img.jssocials-share-logo {
  width: auto;
  height: 1em;
}

.jssocials-share-link {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  line-height: 1;
}

.jssocials-share-link.jssocials-share-link-count {
  padding-top: 0.2em;
}

.jssocials-share-link.jssocials-share-link-count .jssocials-share-count {
  display: block;
  font-size: 0.6em;
  margin: 0 -0.5em -0.8em -0.5em;
}

.jssocials-share-link.jssocials-share-no-count {
  padding-top: 0.5em;
}

.jssocials-share-link.jssocials-share-no-count .jssocials-share-count {
  height: 1em;
}

.jssocials-share-label {
  padding-left: 0.3em;
  vertical-align: middle;
}

.jssocials-share-count-box {
  display: inline-block;
  height: 1.5em;
  padding: 0 0.3em;
  line-height: 1;
  vertical-align: middle;
  cursor: default;
}

.jssocials-share-count-box.jssocials-share-no-count {
  display: none;
}

.jssocials-share-count {
  line-height: 1.5em;
  vertical-align: middle;
}

.jssocials-share-twitter .jssocials-share-link {
  background: #00aced;
}

.jssocials-share-twitter .jssocials-share-link:hover {
  background: #0087ba;
}

.jssocials-share-facebook .jssocials-share-link {
  background: #3b5998;
}

.jssocials-share-facebook .jssocials-share-link:hover {
  background: #2d4373;
}

.jssocials-share-googleplus .jssocials-share-link {
  background: #dd4b39;
}

.jssocials-share-googleplus .jssocials-share-link:hover {
  background: #c23321;
}

.jssocials-share-linkedin .jssocials-share-link {
  background: #007bb6;
}

.jssocials-share-linkedin .jssocials-share-link:hover {
  background: #005983;
}

.jssocials-share-pinterest .jssocials-share-link {
  background: #cb2027;
}

.jssocials-share-pinterest .jssocials-share-link:hover {
  background: #9f191f;
}

.jssocials-share-email .jssocials-share-link {
  background: #3490F3;
}

.jssocials-share-email .jssocials-share-link:hover {
  background: #0e76e6;
}

.jssocials-share-stumbleupon .jssocials-share-link {
  background: #eb4823;
}

.jssocials-share-stumbleupon .jssocials-share-link:hover {
  background: #c93412;
}

.jssocials-share-whatsapp .jssocials-share-link {
  background: #29a628;
}

.jssocials-share-whatsapp .jssocials-share-link:hover {
  background: #1f7d1e;
}

.jssocials-share-telegram .jssocials-share-link {
  background: #2ca5e0;
}

.jssocials-share-telegram .jssocials-share-link:hover {
  background: #1c88bd;
}

.jssocials-share-line .jssocials-share-link {
  background: #25af00;
}

.jssocials-share-line .jssocials-share-link:hover {
  background: #1a7c00;
}

.jssocials-share-viber .jssocials-share-link {
  background: #7b519d;
}

.jssocials-share-viber .jssocials-share-link:hover {
  background: #61407b;
}

.jssocials-share-pocket .jssocials-share-link {
  background: #ef4056;
}

.jssocials-share-pocket .jssocials-share-link:hover {
  background: #e9132e;
}

.jssocials-share-messenger .jssocials-share-link {
  background: #0084ff;
}

.jssocials-share-messenger .jssocials-share-link:hover {
  background: #006acc;
}

.jssocials-share-vkontakte .jssocials-share-link {
  background: #45668e;
}

.jssocials-share-vkontakte .jssocials-share-link:hover {
  background: #344d6c;
}

.jssocials-share-rss .jssocials-share-link {
  background: #ff9900;
}

.jssocials-share-rss .jssocials-share-link:hover {
  background: #cc7a00;
}

.jssocials-share-link {
  padding: 0.5em 0.6em;
  color: #fff;
  transition: background 200ms ease-in-out, border-color 200ms ease-in-out;
}

.jssocials-share-link:hover, .jssocials-share-link:focus, .jssocials-share-link:active {
  color: #fff;
}

.jssocials-share-count-box {
  position: relative;
  height: 2.5em;
  padding: 0 0.3em;
  margin-left: 0.3em;
  background: #f5f5f5;
  transition: background 200ms ease-in-out, border-color 200ms ease-in-out;
}

.jssocials-share-count-box:hover {
  background: gainsboro;
}

.jssocials-share-count-box:hover:after {
  border-color: transparent gainsboro transparent transparent;
}

.jssocials-share-count-box:after {
  content: "";
  display: block;
  position: absolute;
  top: 0.85em;
  left: -0.3em;
  width: 0;
  height: 0;
  border-width: 0.4em 0.4em 0.4em 0;
  border-style: solid;
  border-color: transparent #f5f5f5 transparent transparent;
  transform: rotate(360deg);
  transition: background 200ms ease-in-out, border-color 200ms ease-in-out;
}

.jssocials-share-count-box .jssocials-share-count {
  line-height: 2.5em;
  color: #444;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    transform-origin: 0;
  }
  .mfp-arrow-right {
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/*!
 * Toastify js 1.12.0
 * https://github.com/apvarun/toastify-js
 * @license MIT licensed
 *
 * Copyright (C) 2018 Varun A P
 */
.toastify {
  padding: 12px 20px;
  color: #ffffff;
  display: inline-block;
  box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.12), 0 10px 36px -4px rgba(77, 96, 232, 0.3);
  background: linear-gradient(135deg, #73a5ff, #5477f5);
  position: fixed;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  max-width: calc(50% - 20px);
  z-index: 2147483647;
}

.toastify.on {
  opacity: 1;
}

.toast-close {
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  opacity: 0.4;
  padding: 0 5px;
}

.toastify-right {
  right: 15px;
}

.toastify-left {
  left: 15px;
}

.toastify-top {
  top: -150px;
}

.toastify-bottom {
  bottom: -150px;
}

.toastify-rounded {
  border-radius: 25px;
}

.toastify-avatar {
  width: 1.5em;
  height: 1.5em;
  margin: -7px 5px;
  border-radius: 2px;
}

.toastify-center {
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  max-width: fit-content;
  max-width: -moz-fit-content;
}

@media only screen and (max-width: 360px) {
  .toastify-right, .toastify-left {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
/* MIXIN*/
/* FORM */
/* VAR */
/** SPECIAL COLOR **/
/* FONT */
.header-layout .header-main {
  position: relative;
}
.header-layout .header-main .header-container {
  display: flex;
  align-items: center;
  height: inherit;
}
.header-layout.header-layout1 .header-main .header-container {
  justify-content: flex-start;
}
.header-layout.header-layout1 .header-right-control {
  margin-left: auto;
}
.header-layout.header-layout1 #site-navigation.nav-center + .header-right-control {
  margin-left: unset;
}
.header-layout.header-layout1 #site-navigation.nav-right + .header-right-control {
  margin-left: 50px;
}
.header-layout.header-layout2 .header-main .header-container {
  display: flex;
  justify-content: space-between;
}
.header-layout.header-layout2 .header-main .header-container .hamburger-menu-wrap {
  width: 200px;
}
.header-layout.header-layout3 .header-main {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.header-layout.header-layout3 .header-main .header-container {
  display: grid;
  grid-template-columns: 1fr 250px 1fr;
}
.header-layout.header-layout3 .header-bottom {
  height: 68px;
}
.header-layout.header-layout3 .header-bottom #site-navigation {
  justify-content: center;
}
.header-layout.header-layout3 .site-branding {
  width: 100%;
  text-align: center;
}
.header-layout.header-layout3 + .header-space .header-bottom {
  height: 50px;
}
.header-layout.header-layout4 .header-main .header-container {
  justify-content: space-between;
}
.header-layout.header-layout5 .header-main .header-container {
  display: grid;
  grid-template-columns: 1fr 250px 1fr;
}
.header-layout.header-layout5 .site-branding {
  width: 100%;
  text-align: center;
}
.header-layout.header-layout6 .header-main .header-container {
  display: grid;
  grid-template-columns: 1fr 250px 1fr;
}
.header-layout.header-layout6 .site-branding {
  width: 100%;
  text-align: center;
}
.header-layout.header-layout7 .header-main .header-container {
  justify-content: space-between;
}
.header-layout.header-layout8 .header-main .header-container {
  justify-content: space-between;
}
.header-layout.header-layout9 .header-main .header-container {
  justify-content: space-between;
}
.header-layout.header-layout10 .header-main .header-container {
  justify-content: space-between;
}
.header-layout.header-layout11 .header-content .header-container {
  justify-content: space-between;
}
.header-layout.header-layout11 .header-bottom #site-navigation {
  margin-right: auto;
}
.header-layout.header-layout11 .header-bottom .header-container {
  display: flex;
  align-items: center;
  height: inherit;
}

@media (min-width: 1500px) {
  .header-layout .header-main {
    margin: 0 auto;
  }
  .header-layout .header-main .header-right-control {
    align-items: stretch;
    position: inherit;
    top: 0;
    right: 0;
    bottom: -1px;
    height: auto !important;
  }
  .header-layout .header-main .header-right-control .header-element {
    display: flex;
  }
  .header-layout .header-main .header-right-control .header-element.cart_box a.cart-btn .mini-cart-contents .cart-counter > span {
    width: 22px;
    height: 22px;
    font-size: 13px;
    top: 16%;
  }
  .header-layout.header-layout2 .header-main .header-container .hamburger-menu-wrap {
    width: auto;
  }
  .header-layout.header-layout2 .header-main .header-container .site-branding {
    width: 100%;
    text-align: center;
  }
  .header-layout.header-layout2 .header-main .header-container .header-right-control .header-element.search_box > a {
    padding: 0 54px 0 55px;
  }
  .header-layout.headroom--pinned.headroom--not-top .header-main .header-right-control {
    bottom: 0;
  }
}
#topbar .header-container {
  max-width: 100%;
}

.header-layout .header-content .header-container {
  max-width: 100%;
}
.header-layout .header-content .header-container.header-bottom > .header-container {
  position: relative;
}
.header-layout .header-content .header-container.header-bottom > .header-container:before {
  display: inline-block;
  width: calc(100% - 30px);
  border-top: 1px solid rgba(122, 122, 122, 0.25);
  content: "";
  position: absolute;
  top: 0;
}
.header-layout.header-layout9 .site-branding + .header-control-wrap {
  margin-left: 0;
  margin-right: auto;
}
.header-layout.header-layout9 .site-branding + .header-control-wrap .fm-search-form {
  flex-direction: row-reverse;
}
.header-layout.header-layout9 .site-branding + .header-control-wrap .fm-search-form .search_text_input {
  border: none;
  padding-left: 0;
}
.header-layout.header-layout9 .site-branding + .header-control-wrap .fm-search-form button[type=submit] {
  background: none;
  border: none;
}
.header-layout.header-layout:not(.header-layout7):not(.header-layout8) .search_box.form .fm-search-form {
  flex-direction: row-reverse;
}
.header-layout.header-layout:not(.header-layout7):not(.header-layout8) .search_box.form .fm-search-form .search_text_input {
  border: none;
  padding-left: 0;
}
.header-layout.header-layout:not(.header-layout7):not(.header-layout8) .search_box.form .fm-search-form button[type=submit] {
  background: none;
  padding-left: 0;
}
.header-layout.header-layout:not(.header-layout7):not(.header-layout8) .header-right-control .search_box.form .fm-search-form {
  flex-direction: row;
}
.header-layout.header-layout:not(.header-layout7):not(.header-layout8) .header-right-control .search_box.form .fm-search-form .search_text_input {
  text-align: right;
}
.header-layout.header-layout7 .fm-search-form, .header-layout.header-layout8 .fm-search-form {
  border: 1px solid rgba(122, 122, 122, 0.25);
  border-radius: 35px;
}
.header-layout.header-layout7 .fm-search-form .search_text_input,
.header-layout.header-layout7 .fm-search-form button[type=submit], .header-layout.header-layout8 .fm-search-form .search_text_input,
.header-layout.header-layout8 .fm-search-form button[type=submit] {
  background: none;
  border: none;
}
.header-layout.header-layout7 .main-navigation > .nav-menu > li.menu-item, .header-layout.header-layout8 .main-navigation > .nav-menu > li.menu-item {
  height: 60px;
}
.header-layout.header-layout5 .header-right-control .my-account-box a.account-btn {
  display: flex;
  align-items: center;
}
.header-layout.header-layout5 .header-right-control .my-account-box a.account-btn svg.fm-icon + span {
  margin-right: 6px;
  order: -1;
}
.header-layout.header-layout5 .header-right-control .cart_box a.cart-btn .mini-cart-contents {
  margin-left: 3px;
}
.header-layout.header-layout5 .hamburger-box a.hamburger-menu svg.fm-icon {
  width: 26px;
  height: 26px;
}
.header-layout.header-layout11 .header-main .header-element.search_form_wrapper .fm-search-form {
  height: 55px;
  width: 500px;
}
.header-layout.header-layout11 .header-main .header-element.search_form_wrapper button[type=submit] {
  min-width: 100px;
}
.header-layout.header-layout11 .header-main .header-element.search_form_wrapper button[type=submit] svg {
  fill: #FFF !important;
  width: 20px;
  height: 20px;
}
.header-layout.header-layout11 .header-bottom .header-bottom-right-control .header-element {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}
header:not(.fmc-transparent-header) .header-layout.header-layout11 .header-element.search_form_wrapper .fm-search-form .search_text_input {
  background: #ffffff;
}

.main-navigation {
  display: flex;
}
.main-navigation ul.nav-menu {
  height: inherit;
}
.main-navigation ul.nav-menu > li.menu-item {
  height: inherit;
  margin: 0 10px;
}
.header-layout6 .main-navigation ul.nav-menu > li.menu-item {
  margin: 0 12px;
}
.main-navigation ul.nav-menu > li.menu-item > a {
  height: inherit;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  color: #fff !important;
}
.main-navigation ul.nav-menu > li.menu-item > a::after {
  bottom: 0;
  height: 1px;
}
.main-navigation .nav-menu ul li.page_item.page_item_has_children ul.children {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: #fff;
  text-align: left;
  padding: 10px 0;
  z-index: 9999;
  transition: all 0.4s ease;
  box-shadow: 7px 6px 40px 0 rgba(204, 204, 223, 0.16);
  display: block;
}
.main-navigation .nav-menu ul li.page_item.page_item_has_children:not(:hover) > ul.children {
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px);
}
.main-navigation .nav-menu ul li.page_item:hover .children .children {
  top: 100%;
  right: 100%;
  left: auto;
}
.main-navigation .nav-menu ul > li.page_item:nth-last-child(1) .children .children, .main-navigation .nav-menu ul > li.page_item:nth-last-child(2) .children .children, .main-navigation .nav-menu ul > li.page_item:nth-last-child(3) .children .children, .main-navigation .nav-menu ul > li.page_item:nth-last-child(4) .children .children {
  right: 100%;
  left: auto;
}

.header-control-wrap {
  display: flex;
  align-items: center;
}
.header-control-wrap.header-left-control {
  justify-content: flex-start;
}
.header-control-wrap.header-right-control {
  justify-content: flex-end;
}

.header-element.search_box svg.fm-icon {
  width: 22px;
  height: 22px;
}
.header-element.cart_box svg.fm-icon {
  width: 25px;
  height: 25px;
}
.header-element.my-account-box svg.fm-icon {
  width: 26px;
  height: 26px;
}
.header-element.wishlist-box svg.fm-icon {
  width: 20px;
  height: 20px;
}
.header-element.hamburger-box .hamburger-menu svg.fm-icon {
  width: 25px;
  height: 25px;
}
.top-bar-control .header-element {
  font-size: 14px;
}
.header-element > a {
  transition: all 0.3s;
}
.header-element > a > svg.fm-icon {
  transition: all 0.3s;
}
.header-element > a > svg.fm-icon + span {
  margin-left: 5px;
}
.header-main .header-element > a {
  font-size: 14px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
}
.header-element.social-icon-box a.fm-social-icon-link {
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 12px;
}
.header-element.social-icon-box a.fm-social-icon-link svg.fm-icon + .fm-social-icon-title {
  margin-left: 6px;
}
.top-bar-left-control .header-element.social-icon-box a.fm-social-icon-link:not(:last-child), .header-left-control .header-element.social-icon-box a.fm-social-icon-link:not(:last-child) {
  margin-right: 15px;
}
.top-bar-left-control .header-element.social-icon-box a.fm-social-icon-link:not(:last-child) .fm-social-icon-title, .header-left-control .header-element.social-icon-box a.fm-social-icon-link:not(:last-child) .fm-social-icon-title {
  border-right: 1px solid #e4e4e4;
  padding-right: 15px;
}
.top-bar-right-control .header-element.social-icon-box a.fm-social-icon-link:not(:first-child), .header-right-control .header-element.social-icon-box a.fm-social-icon-link:not(:first-child) {
  margin-left: 15px;
}
.top-bar-right-control .header-element.social-icon-box a.fm-social-icon-link:not(:first-child) .fm-social-icon-title, .header-right-control .header-element.social-icon-box a.fm-social-icon-link:not(:first-child) .fm-social-icon-title {
  border-left: 1px solid #e4e4e4;
  padding-left: 15px;
}
.header-element.contact-info-box svg.fm-icon + span {
  margin-left: 6px;
}
.header-element.contact-info-box .ct-title::after {
  content: ":";
  display: inline-block;
  margin-right: 3px;
}
.header-element.contact-info-box .ct-info:not(:last-child) {
  margin-right: 15px;
}
.header-element.my-account-box a.account-btn svg.fm-icon + span {
  margin-left: 6px;
}
.header-element.wishlist-box .wishlist-btn {
  display: flex;
  align-items: center;
  position: relative;
}
.header-element.wishlist-box .wishlist-btn span.wishlist_counter {
  display: inline-block;
  margin-left: 0;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  position: absolute;
  font-size: 11px;
  font-weight: 500;
  top: -10px;
  left: 75%;
  border-radius: 50%;
  background: #f33c3c;
  color: #ffffff !important;
}
.header-element.search_box.form .fm-search-form .search_text_input {
  font-size: inherit;
}
.header-element.search_box.button a.search-btn.search-btn-dropdown {
  display: inline-block;
}
.header-element.search_box.button a.search-btn.search-btn-dropdown:not(.show_text) {
  width: 24px;
  height: 24px;
  line-height: 24px;
}
.header-bottom-right-control .header-element.search_box.button a.search-btn.search-btn-dropdown {
  text-align: right;
}
.header-bottom-left-control .header-element.search_box.button a.search-btn.search-btn-dropdown + .search_form_wrapper.dropdown {
  left: 0;
  right: auto;
}
.header-element.search_box.button .search_form_wrapper.dropdown .search_form_content .fm-search-form.style1 button[type=submit] {
  color: #ffffff;
  background: #232529;
  min-width: 44px;
}
.header-element.search_box.button .search_form_wrapper.dropdown .search_form_content .fm-search-form.style1 button[type=submit] svg.fm-icon {
  fill: #ffffff;
}
.header-element.search_form_wrapper .ajax_search .fm-search-results {
  background: #ffffff;
  min-width: 800px;
}
.header-element.cart_box a.cart-btn {
  display: flex;
  align-items: center;
}
.header-element.cart_box a.cart-btn .mini-cart-contents {
  margin-left: 0;
}
.header-element.cart_box a.cart-btn .mini-cart-contents .cart-counter {
  font-size: 0;
}
.header-element.cart_box a.cart-btn .mini-cart-contents .cart-counter > span {
  font-size: 11px;
  font-weight: 500;
  position: absolute;
  top: -8px;
  left: calc(100% - 2px);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f33c3c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: #ffffff !important;
}
.header-element .currency.list-dropdown, .header-element .language.list-dropdown {
  padding: 0;
  line-height: 24px;
  font-size: 12px;
  text-transform: uppercase;
  justify-content: center;
}
.header-element .currency.list-dropdown .dropdown .current, .header-element .language.list-dropdown .dropdown .current {
  display: inline-flex;
  align-items: center;
}
.header-element .currency.list-dropdown .dropdown .current svg.fm-icon, .header-element .language.list-dropdown .dropdown .current svg.fm-icon {
  width: 8px;
  height: 8px;
  margin-left: 8px;
}
.header-element .currency.list-dropdown .dropdown ul, .header-element .language.list-dropdown .dropdown ul {
  right: 0;
  top: calc(100% + 1px);
}
.header-element .currency.list-dropdown .dropdown ul li, .header-element .language.list-dropdown .dropdown ul li {
  min-width: 80px;
}

.header-bottom {
  height: 50px;
  position: relative;
  background-color: #00548e;
}
.header-layout10 .header-bottom .header-container, .header-layout8 .header-bottom .header-container, .header-layout3 .header-bottom .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  position: relative;
}
.header-layout10 .header-bottom #site-navigation, .header-layout8 .header-bottom #site-navigation, .header-layout3 .header-bottom #site-navigation {
  justify-content: center;
  margin: 0 auto;
}
.header-layout10 .header-bottom:before {
  display: inline-block;
  width: 100%;
  border-top: 1px solid rgba(122, 122, 122, 0.15);
  content: "";
  position: absolute;
  top: 0;
}

.header-bottom-left-wrap.categories_element {
  height: 100%;
}

.product_all_categories_list {
  margin: 0 25px 0 0;
  list-style: none;
  text-align: center;
  background: #313131;
  height: 100%;
  padding: 0;
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product_all_categories_list ul {
  list-style: none;
}
.product_all_categories_list li {
  position: relative;
  text-align: left;
}
.product_all_categories_list li > ul {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  left: 100%;
  top: 0;
  padding: 0;
  background: #ffffff;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s linear 0s, visibility 0.3s linear 0s;
}
.product_all_categories_list li:hover > ul {
  visibility: visible;
  opacity: 1;
}
.product_all_categories_list li.product_cat {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #ffffff;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  padding: 0 20px 0 15px;
  background-position: right 15px top 50%;
  background-size: 15px;
  background-repeat: no-repeat;
  background-image: none;
}
.product_all_categories_list li.product_cat > ul {
  padding: 0;
  width: 100%;
  top: 100%;
  left: 0;
}
.product_all_categories_list li.product_cat > ul li.cat-item {
  display: inline-flex;
  width: 100%;
  font-size: 0;
  border-bottom: 1px solid #e6e6e6;
  min-width: 220px;
}
.product_all_categories_list li.product_cat > ul li.cat-item a {
  font-size: 13px;
  line-height: 16px;
  padding: 12px 15px;
  display: inline-flex;
  width: 100%;
}

.js-offcanvas-close {
  background: none !important;
  position: absolute;
  right: 0;
}
.js-offcanvas-close svg.fm-icon {
  width: 1rem;
  height: 1rem;
}

.fm-search-form {
  display: flex;
  position: relative;
  height: 44px;
}
.fm-search-form .twitter-typeahead {
  width: 100%;
}
.fm-search-form .search_text_input {
  height: 100%;
  border: 1px solid #e4e4e4;
  border-right: none;
  box-sizing: border-box;
}
.site-header .fm-search-form .search_text_input {
  min-width: 180px;
}
.btn-woo-circle .fm-search-form .search_text_input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.fm-search-form .btn_clear_text {
  display: none;
  align-items: center;
  height: 100%;
}
.fm-search-form .btn_clear_text svg {
  width: 12px;
  height: 12px;
}
.fm-search-form .btn_clear_text.show {
  display: flex;
  position: absolute;
  z-index: 9999;
  right: 50px;
}
.fm-search-form .search_categories {
  border: none;
  height: 100%;
  line-height: 100%;
  width: 100px;
  padding: 0 15px 0 0;
}
.fm-search-form button[type=submit] {
  margin-top: 0;
  font-size: 0;
  height: 100%;
  padding: 0 10px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border: none;
}
.fm-search-form.style2 .search_categories {
  order: -1;
}
.widget_search .fm-search-form {
  max-width: 100%;
}
.error404 .site-main .fm-search-form {
  margin: 10px auto 80px auto;
  min-width: 500px;
}
.error404 .site-main .fm-search-form .search_text_input {
  border: none;
  background-color: #f0f1f4 !important;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.error404 .site-main .fm-search-form button[type=submit] {
  width: 80px;
  color: #ffffff;
  letter-spacing: 0;
  background-color: #f33c3c;
}
.error404 .site-main .fm-search-form button[type=submit]:hover {
  opacity: 0.8;
}
.error404 .site-main .fm-search-form button[type=submit] svg {
  fill: #ffffff;
}

@media (max-width: 767px) {
  #fm-search-modal .modal-header button.close {
    width: 100%;
    justify-content: flex-start;
  }
}
#fm-search-modal .modal-header button.close {
  opacity: 1;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  margin: 30px 0 30px auto;
  padding: 10px 0;
  width: 100%;
  justify-content: flex-start;
}
#fm-search-modal .modal-header button.close .button-title {
  font-size: 12px;
  font-weight: 400;
  line-height: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: #232529;
  display: none;
}
#fm-search-modal .modal-header button.close svg.fm-icon {
  width: 25px;
  height: 25px;
  fill: #232529;
  border: 1px solid #232529;
  border-radius: 90px;
  padding: 5px;
}
#fm-search-modal .modal-header button.close svg.fm-icon:hover {
  fill: #f33c3c;
  border: 1px solid #f33c3c;
}
#fm-search-modal .modal-header button.close:hover .button-title {
  color: #f33c3c;
}
#fm-search-modal .modal-header .modal-title {
  font-size: 18px;
  color: #232529;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
}
#fm-search-modal .modal-body.search_form_wrapper {
  display: flex;
  justify-content: center;
  padding: 0;
}
#fm-search-modal .search_form_content {
  padding: 0 15px;
  width: 100%;
  max-width: 1200px;
}
#fm-search-modal .search_form_content .fm-search-form {
  height: inherit;
  width: 100%;
}
#fm-search-modal .search_form_content .fm-search-form .search_text_input {
  color: #999999;
  border: none;
  font-size: 16px;
  padding: 10px 20px;
  line-height: 30px;
  background: none 0% 0%/auto repeat scroll padding-box border-box rgb(240, 241, 244) !important;
  z-index: 111;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 3px;
}
#fm-search-modal .search_form_content .fm-search-form .search_text_input::-moz-placeholder {
  color: inherit;
}
#fm-search-modal .search_form_content .fm-search-form .search_text_input::placeholder {
  color: inherit;
}
#fm-search-modal .search_form_content .fm-search-form .search_text_input:focus {
  color: #232529;
}
#fm-search-modal .search_form_content .fm-search-form .search_text_input:focus ~ button[type=submit] {
  color: #232529;
}
#fm-search-modal .search_form_content .fm-search-form .search_text_input:focus ~ button[type=submit] svg.fm-icon {
  fill: #232529;
}
#fm-search-modal .search_form_content .fm-search-form button[type=submit] {
  width: 80px;
  border-radius: 0 3px 3px 0;
  background-color: #f33c3c;
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  z-index: 999;
  letter-spacing: 0;
}
#fm-search-modal .search_form_content .fm-search-form button[type=submit] svg.fm-icon {
  fill: #fff;
  width: 18px;
  height: 18px;
}
#fm-search-modal .search_form_content .fm-search-form.ajax_search > .twitter-typeahead {
  width: 100%;
}

/* Element - Search Box */
#fm-search-modal {
  z-index: 105000;
}
#fm-search-modal .search-modal.modal-dialog {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}
#fm-search-modal .modal-content {
  transition: none;
  width: 100vw;
  height: 190px;
  padding-top: 0;
  top: 0;
  position: fixed;
  border: none;
  border-radius: 0;
  background: #FFF;
}
#fm-search-modal .modal-header {
  justify-content: center;
  border: none;
  flex-direction: column-reverse;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  width: 100%;
  max-width: 1440px;
}
#fm-search-modal .modal-header button.close {
  margin: auto;
  position: static;
}
#fm-search-modal .modal-header button.close svg.fm-icon {
  width: 1.5rem;
  height: 1.5rem;
}
#fm-search-modal .product-cats {
  transition: all 0.5s ease 0.5s;
  transform: translateY(30px);
  text-align: center;
  margin-bottom: 100px;
  opacity: 0;
}
#fm-search-modal .search_form_content {
  transition: transform 0.5s ease 0.6s, opacity 0.5s ease 0.6s, border 0.5s;
  transform: translateY(60px);
  position: relative;
  padding: 0 15px;
  opacity: 0;
}
#fm-search-modal .search_form_content .fm-search-form {
  margin: auto;
}
#fm-search-modal .search_form_content .fm-search-form .twitter-typeahead {
  width: 100%;
}
#fm-search-modal .search_result {
  margin-top: 60px;
}
#fm-search-modal.show .product-cats,
#fm-search-modal.show .search_form_content {
  transform: translateY(0);
  opacity: 1;
}
#fm-search-modal .empty-message {
  text-align: center;
  display: inline-block;
  width: 100%;
}

.js-offcanvas-close {
  background: none !important;
  position: absolute;
  right: 0;
}
.js-offcanvas-close svg.fm-icon {
  width: 1rem;
  height: 1rem;
}

.fm-search-form {
  display: flex;
  position: relative;
  height: 44px;
}
.fm-search-form .twitter-typeahead {
  width: 100%;
}
.fm-search-form .search_text_input {
  height: 100%;
  border: 1px solid #e4e4e4;
  border-right: none;
  box-sizing: border-box;
}
.site-header .fm-search-form .search_text_input {
  min-width: 180px;
}
.btn-woo-circle .fm-search-form .search_text_input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.fm-search-form .btn_clear_text {
  display: none;
  align-items: center;
  height: 100%;
}
.fm-search-form .btn_clear_text svg {
  width: 12px;
  height: 12px;
}
.fm-search-form .btn_clear_text.show {
  display: flex;
  position: absolute;
  z-index: 9999;
  right: 50px;
}
.fm-search-form .search_categories {
  border: none;
  height: 100%;
  line-height: 100%;
  width: 100px;
  padding: 0 15px 0 0;
}
.fm-search-form button[type=submit] {
  margin-top: 0;
  font-size: 0;
  height: 100%;
  padding: 0 10px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border: none;
}
.fm-search-form.style2 .search_categories {
  order: -1;
}
.widget_search .fm-search-form {
  max-width: 100%;
}
.error404 .site-main .fm-search-form {
  margin: 10px auto 80px auto;
  min-width: 500px;
}
.error404 .site-main .fm-search-form .search_text_input {
  border: none;
  background-color: #f0f1f4 !important;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.error404 .site-main .fm-search-form button[type=submit] {
  width: 80px;
  color: #ffffff;
  letter-spacing: 0;
  background-color: #f33c3c;
}
.error404 .site-main .fm-search-form button[type=submit]:hover {
  opacity: 0.8;
}
.error404 .site-main .fm-search-form button[type=submit] svg {
  fill: #ffffff;
}

.mspvn-solutions figure.elementor-image-box-img {
  overflow: hidden;
}
.mspvn-solutions .elementor-image-box-content {
  padding: 30px 15px;
}
.mspvn-solutions .elementor-column.elementor-inner-column {
  margin: 15px;
}
.mspvn-solutions .elementor-image-box-wrapper {
  transition: box-shadow 0.3s;
}
.mspvn-solutions .elementor-image-box-wrapper p, .mspvn-solutions .elementor-image-box-wrapper h1, .mspvn-solutions .elementor-image-box-wrapper h2, .mspvn-solutions .elementor-image-box-wrapper h3, .mspvn-solutions .elementor-image-box-wrapper h4, .mspvn-solutions .elementor-image-box-wrapper h5, .mspvn-solutions .elementor-image-box-wrapper h6, .mspvn-solutions .elementor-image-box-wrapper span {
  color: #fff;
}
.mspvn-solutions .elementor-image-box-wrapper:hover {
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.1);
}

.mspvn-register .elementor-container .elementor-column {
  margin: 0 auto;
  max-width: 90%;
}
@media (min-width: 992px) {
  .mspvn-register .elementor-container .elementor-column {
    max-width: 80%;
  }
}
@media (min-width: 1200px) {
  .mspvn-register .elementor-container .elementor-column {
    max-width: 50%;
  }
}
.mspvn-register .elementor-container .elementor-column .elementor-element-populated {
  padding: 30px;
  border-radius: 15px;
}
@media (min-width: 768px) {
  .mspvn-register .elementor-container .elementor-column .elementor-element-populated {
    padding: 50px;
  }
}
.mspvn-register .wpforms-confirmation-container-full {
  padding: 20px 15px;
  border-radius: 5px;
}
.mspvn-register .wpforms-container {
  max-width: 90%;
  margin: 0 auto;
}

.mc4wp-form input[type=email] {
  border: 1px solid #eaeaea !important;
}

.mspvn-services .elementor-image-box-content {
  padding: 20px 15px;
}
.mspvn-services .elementor-image-box-description {
  font-size: 18px !important;
  min-height: 60px;
}
.mspvn-services .elementor-image-box-wrapper {
  transition: box-shadow 0.3s;
}
.mspvn-services .elementor-image-box-wrapper:hover {
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
  border-radius: 5px;
}

.mspvn-partner .swiper-slide-inner img {
  max-width: 150px;
}

.mspvn-datalist .elementor-icon-list-item .elementor-icon-list-text, .mspvn-datalist .elementor-icon-list-item a {
  opacity: 0.5;
}
.mspvn-datalist .elementor-icon-list-item .elementor-icon-list-text:hover, .mspvn-datalist .elementor-icon-list-item a:hover {
  opacity: 1;
  cursor: pointer;
}

fa.fa-search-plus.rbsZoomIcon {
  font-size: 20px;
}

.header-layout.header-layout8 .header-main .header-container {
  justify-content: flex-start !important;
}

.header-control-wrap .search_form_content button.icon svg {
  position: relative;
  top: 10px;
}

.header-wrapper #topbar {
  background-color: #eaeaea;
}

.header-element .elementor-icon i::before {
  color: #fff !important;
}

.header-element.html_box.html_right_1 {
  justify-content: center !important;
  align-items: center !important;
}
.header-element.html_box.html_right_1 .fmtpl-button-button {
  border-width: 0.15rem !important;
}

.scroll_to_top.percent_circle .up-icon {
  fill: #F33C3C !important;
}

body.home footer {
  background-color: #f0f8ff;
}

@media (min-width: 992px) {
  body.search .site-content #content, body.search .site-content .no-results.not-found {
    margin-top: 130px;
  }
}

.gform_confirmation_wrapper .gform_confirmation_message {
  margin-bottom: 10px;
}

.request-price a {
  text-decoration: underline;
}

.gform_wrapper .gfield_validation_message,
.gform_wrapper .validation_message {
  padding: 0 !important;
  margin: 5px 0 !important;
  border: none !important;
  background: none !important;
  font-size: 13px !important;
}

#msp-pick-sale .gform_footer input[type=submit] {
  padding: 7px 20px !important;
}

@media (min-width: 992px) {
  .single-product #content .type-product .product-container .product-main .product-info h1.product_title {
    font-size: 32px !important;
  }
}

.partner-wrap {
  display: flex;
  flex-wrap: wrap;
}
.partner-wrap .partner-content {
  background-color: #fff;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 350px;
  border-radius: 10px;
  padding: 15px;
}
.partner-wrap .partner-content img {
  width: 100%;
  max-width: 40%;
}
@media (min-width: 992px) {
  .partner-wrap .partner-content img {
    max-height: 170px;
  }
}
.partner-wrap .partner-content a {
  width: 100%;
  height: 100%;
}
.partner-wrap .partner-content a:hover {
  color: #000 !important;
}
.partner-wrap .partner-content a:hover h3 {
  color: #a6251d;
}
.partner-wrap .partner-info {
  background-color: #fff;
  padding: 30px 15px;
  text-align: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.partner-wrap .partner-item {
  flex: 1 1 100%;
  max-width: 100%;
  padding: 10px;
}
@media (min-width: 768px) {
  .partner-wrap .partner-item {
    flex: 1 1 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

.msp-sellers-wrap {
  display: flex;
  flex-wrap: wrap;
}
.msp-sellers-wrap .seller-item {
  text-align: center;
  margin-bottom: 30px;
  flex: 1 1 50%;
  max-width: 50%;
}
@media (min-width: 768px) {
  .msp-sellers-wrap .seller-item {
    flex: 1 1 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
@media (min-width: 992px) {
  .msp-sellers-wrap .seller-item {
    flex: 1 1 20%;
    max-width: 20%;
  }
}
.msp-sellers-wrap .seller-item a:hover h3 {
  color: #d12f25;
}
.msp-sellers-wrap .item-image {
  max-width: 50%;
  margin: 0 auto;
  padding-bottom: 5px;
}
.msp-sellers-wrap .item-image img {
  max-width: 100px;
}
.msp-sellers-wrap h3 {
  font-size: 20px;
}

.woocommerce ul.products.products-grid-style li.product.cide-product-item .product-item-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-flow: column wrap;
}

body.single-product footer.site-footer {
  background-color: #eaeaea;
}

.product-footer ul li.active a {
  color: #d12f25 !important;
}

.product-description-box {
  position: relative;
  max-height: 500px;
  overflow: hidden;
}
.product-description-box .read-more-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 50px;
  text-align: center;
  display: block;
  margin-bottom: 0;
  border-radius: 10px;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.single.single-product {
  background-color: rgb(245, 245, 250);
}
@media (min-width: 768px) {
  .single.single-product .woocommerce-product-gallery__image {
    min-height: 500px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .single.single-product .woocommerce-product-gallery__image a img {
    max-height: 500px !important;
  }
}
.single.single-product .product-container.product-msp .content-row {
  border-bottom: 1px solid transparent !important;
}

@media (min-width: 768px) {
  .product-gallery.single_gallery_medium {
    max-height: 450px !important;
  }
}

.request-price {
  background-color: #1e73be;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
}
.request-price h6 {
  margin-bottom: 0;
}
.request-price a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.request-price a:hover {
  color: #fff;
}
.request-price .text-call {
  margin-left: 5px;
}

.product-booking #msp-pick-sale {
  padding: 15px 20px;
  color: #131313;
  border-left: 2px dashed #1e73be;
  border-right: 2px dashed #1e73be;
  border-bottom: 2px dashed #1e73be;
}

.woocommerce-product-details__short-description p {
  color: #232529;
}

.product-single-msp {
  background-color: #fff;
  padding: 15px;
}
@media (min-width: 768px) {
  .product-single-msp {
    padding: 30px 60px;
    margin-top: 30px;
  }
}
.product-single-msp .woocommerce-Tabs-panel--description {
  text-align: justify;
}
.product-single-msp .woocommerce-Tabs-panel--description table {
  width: 100% !important;
}
@media (max-width: 1199px) {
  .product-single-msp .product-info.summary.entry-summary {
    width: 100% !important;
  }
}

.product-footer-msp {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 768px) {
  .product-footer-msp {
    flex-direction: row;
  }
}
.product-footer-msp .product-msp-summary {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .product-footer-msp .product-msp-summary {
    flex: 0 0 60%;
    max-width: 60%;
    margin-bottom: 0;
  }
}
.product-footer-msp .product-msp-info {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .product-footer-msp .product-msp-info {
    flex: 0 0 40%;
    max-width: 40%;
    padding: 0 15px;
  }
}
@media (min-width: 992px) {
  .product-footer-msp .product-msp-info {
    flex: 0 0 40%;
    max-width: 40%;
    padding: 0 45px;
  }
}
.product-footer-msp .product-msp-info .msp-has-border {
  padding: 15px;
  margin-bottom: 30px;
}
.product-footer-msp .product-msp-info .medal {
  color: #131313;
  display: flex;
  margin-bottom: 15px;
  padding-top: 15px;
  position: relative;
}
.product-footer-msp .product-msp-info .medal:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: transparent;
  top: 0;
  right: 0;
}
.product-footer-msp .product-msp-info .medal .material-icons {
  color: #d12f25;
}
.product-footer-msp .product-msp-info .text-infos {
  font-size: 20px;
  font-weight: bold;
}
.product-footer-msp .product-msp-info .medal-list ul,
.product-footer-msp .product-msp-info .medal-list li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-footer-msp .product-msp-info .medal-list .material-icons {
  color: green;
  margin-right: 5px;
  font-size: 24px;
}
.product-footer-msp .product-msp-info .medal-list li {
  display: flex;
  margin-bottom: 7px;
}

.msp-has-padding {
  padding: 15px;
}

.msp-has-border,
.woocommerce-Tabs-panel--document_download {
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.1), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
  border-radius: 10px;
}
.msp-has-border.is-affixed,
.woocommerce-Tabs-panel--document_download.is-affixed {
  box-shadow: none;
}
@media (min-width: 768px) {
  .msp-has-border.is-affixed .inner-wrapper-sticky,
  .woocommerce-Tabs-panel--document_download.is-affixed .inner-wrapper-sticky {
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.1), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
    border-radius: 10px;
    padding: 15px;
  }
}

.product-download .document-title {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold;
}

.product-group-links ul,
.product-group-links li {
  width: 100%;
}
@media (max-width: 991px) {
  .product-group-links a {
    width: 100%;
    text-align: center;
  }
}

.mspvn-product-related .products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .mspvn-product-related .products {
    grid-template-columns: repeat(3, 1fr);
  }
}
.mspvn-product-related .products li {
  margin-bottom: 15px !important;
}
@media (min-width: 768px) {
  .mspvn-product-related .products li {
    margin-bottom: 30px !important;
  }
}
.mspvn-product-related .products li:hover {
  border: 1px solid #2f80ed;
}
.mspvn-product-related .product-infos {
  align-items: center;
}
.mspvn-product-related .product-infos span.price strong {
  color: #c1c1c1 !important;
  font-size: 14px !important;
}

.woocommerce-Tabs-panel--document_download span,
.woocommerce-Tabs-panel--document_download p {
  color: #333;
  font-size: 18px;
}

.product-contact-list {
  display: flex;
  align-items: center;
  width: 100%;
}
.product-contact-list .contact-icon {
  padding-right: 7px;
}
.product-contact-list .contact-info a {
  width: 100%;
  display: inline-block;
}

.product-contact h4 {
  font-size: 18px;
}

.woocommerce-Tabs-panel--reviews {
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.1), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
  border-radius: 10px;
}
.woocommerce-Tabs-panel--reviews #reviews #comments ol.commentlist li.review {
  flex: 0 0 100%;
}
.woocommerce-Tabs-panel--reviews #reviews .avatar {
  display: none;
}

.single-product #reviews #comments ol.commentlist li.review .comment_container .comment-text .meta .woocommerce-review__author,
.single-product #reviews #comments ol.commentlist li.review .comment_container .comment-text .meta .woocommerce-review__published-date,
.single-product #reviews #comments ol.commentlist li.review .comment_container .comment-text .meta .woocommerce-review__awaiting-approval {
  margin-left: 0;
}

.single-product #reviews #review_form_wrapper .comment-respond #commentform .comment-form-comment,
.single-product #reviews #review_form_wrapper .comment-respond #commentform .cide_comment_fields_group {
  flex: 0 0 100%;
}

.single-product #content .type-product .product-container .product-footer .cide-wc-tabs .cide-tabs-title ~ .woocommerce-Tabs-panel {
  padding: 10px 0;
}

.single-product #reviews #review_form_wrapper .comment-respond #commentform .comment-notes {
  display: none !important;
}

.comment-form-cookies-consent {
  display: none !important;
}

.product-policy {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .product-policy {
    border: 2px dashed #eaeaea;
    padding: 25px 30px;
    margin-top: 60px;
  }
}
.product-policy ul,
.product-policy li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-policy ul {
  display: flex;
  flex-flow: column wrap;
  color: #313131;
}
@media (min-width: 768px) {
  .product-policy ul {
    flex-flow: row wrap;
  }
}
@media (min-width: 768px) {
  .product-policy li {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
.product-policy .material-icons {
  color: green;
  position: relative;
  top: 5px;
}

.product-msp-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 15px;
  background-color: #fff;
  z-index: 1000;
  width: 100%;
}

.buy-on-product .title-attach {
  margin-bottom: 20px;
}
.buy-on-product .material-icons {
  color: #d12f25;
}
.buy-on-product .attach-product-lists {
  display: flex;
  flex-wrap: wrap;
}
.buy-on-product .attach-item {
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .buy-on-product .attach-item {
    flex: 1 1 50%;
    max-width: 50%;
  }
}
@media (min-width: 992px) {
  .buy-on-product .attach-item {
    flex: 1 1 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
.buy-on-product .attach-item h3 {
  font-size: 18px;
}
.buy-on-product .attach-item:hover {
  border: 1px solid #eaeaea;
}
.buy-on-product .attach-item:hover h3 {
  color: #a6251d;
}
.buy-on-product .attach-details {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.buy-on-product .attach-thumbnail img {
  max-width: 120px;
}

.title-with-buy {
  font-weight: bold;
  margin: 0 5px;
  color: #ffa500;
}

.blog-tabs__content.column .blog-tabs__content--date.post-content-ad {
  justify-content: flex-start;
}
.blog-tabs__content.column .blog-tabs__content--date.post-content-ad .dash-language:after {
  background-color: #dadada;
  top: calc(50% - 1px);
}
.blog-tabs__content.column .blog-tabs__content--date.post-content-ad .flat-language {
  width: 20px !important;
  height: 12px;
}

.blog-intro {
  padding-top: 0;
}
.blog-article {
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .blog-article {
    margin-bottom: 5rem;
  }
}
.blog-article .full-right-section {
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 768px) {
  .blog-article .full-right-section {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .blog-article .full-right-section {
    padding-right: 0;
    padding-left: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.blog-article__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .blog-article__items {
    flex-wrap: nowrap;
  }
}
.blog-article__items--date {
  margin-bottom: 1rem;
}
.blog-article__items--date span {
  color: #222;
  letter-spacing: 1px;
  text-transform: capitalize;
  font-size: 13px;
  line-height: 13px;
}
.blog-article__items--date span:not(:last-child) {
  margin-right: 10px;
  position: relative;
  padding-right: 10px;
}
.blog-article__items--date span:not(:last-child):after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 2px;
  height: 2px;
  background-color: #939393;
  border-radius: 50%;
}
.blog-article__items--title {
  font-size: 26px;
  line-height: 36px;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .blog-article__items--title {
    font-size: 32px;
    line-height: 42px;
  }
}
@media (min-width: 992px) {
  .blog-article__items--title {
    font-size: 46px;
    line-height: 56px;
    margin-bottom: 2rem;
  }
}
.blog-article__items--info {
  flex-basis: 100%;
  order: 2;
}
@media (min-width: 768px) {
  .blog-article__items--info {
    flex-basis: 43%;
    padding-right: 50px;
    margin-bottom: 0;
    order: 1;
  }
}
@media (min-width: 992px) {
  .blog-article__items--info {
    flex-basis: 37%;
  }
}
@media (min-width: 1441px) {
  .blog-article__items--info {
    flex-basis: 34%;
  }
}
@media (min-width: 992px) and (max-height: 899px) {
  .blog-article__items--info {
    flex-basis: 40%;
  }
}
.blog-article__items--image {
  flex-basis: 100%;
  order: 1;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .blog-article__items--image {
    flex-basis: 57%;
    margin-bottom: 0;
    order: 2;
  }
}
@media (min-width: 992px) {
  .blog-article__items--image {
    flex-basis: 63%;
  }
}
@media (min-width: 1441px) {
  .blog-article__items--image {
    flex-basis: 66%;
  }
}
@media (min-width: 992px) and (max-height: 899px) {
  .blog-article__items--image {
    flex-basis: 60%;
  }
}
.blog-article__items--image .img-drop {
  padding-top: 55%;
  display: block;
}
.blog-tabs {
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .blog-tabs {
    margin-bottom: 5rem;
  }
}
.blog-tabs .full-right-section {
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 768px) {
  .blog-tabs .full-right-section {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .blog-tabs .full-right-section {
    padding-right: 0;
    padding-left: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.blog-tabs__nav {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .blog-tabs__nav {
    margin-bottom: 1.5rem;
  }
}
.blog-tabs__nav a {
  display: inline-block;
  font-size: 14px;
  line-height: 34px;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  color: #222;
  transition: color 0.5s ease;
}
@media (min-width: 768px) {
  .blog-tabs__nav a {
    font-size: 16px;
    line-height: 28px;
  }
}
.blog-tabs__nav a:not(:last-child) {
  margin-right: 20px;
}
@media (min-width: 768px) {
  .blog-tabs__nav a:not(:last-child) {
    margin-right: 40px;
  }
}
.blog-tabs__nav a.active, .blog-tabs__nav a:hover {
  color: #d12f25;
  font-weight: 500;
  border-bottom: 2px solid #d12f25;
}
@media (max-width: 991px) {
  .blog-tabs__nav a.active, .blog-tabs__nav a:hover {
    margin-bottom: 20px;
  }
}
.blog-tabs__content {
  transition: all 0.15s ease-in;
}
.blog-tabs__content:hover {
  box-shadow: 0 8px 20px rgba(209, 209, 209, 0.25);
}
.blog-tabs__content .the-excerpt {
  display: none;
}
@media (min-width: 768px) {
  .blog-tabs__content .the-excerpt {
    display: block;
  }
  .blog-tabs__content .the-excerpt p {
    font-size: 13px;
    line-height: 22px;
  }
}
.blog-tabs__content.column {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  align-items: center;
}
@media (min-width: 992px) {
  .blog-tabs__content.column {
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .blog-tabs__content.column {
    flex-direction: row;
  }
}
.blog-tabs__content.column .blog-content-wrap {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 767px) {
  .blog-tabs__content.column .blog-content-wrap {
    padding: 15px;
  }
}
.blog-tabs__content.column .blog-content-wrap {
  width: 100%;
}
@media (min-width: 992px) {
  .blog-tabs__content.column .blog-content-wrap {
    padding: 10px 20px 15px 20px;
  }
}
.blog-tabs__content.column .the-excerpt {
  width: 100%;
}
.blog-tabs__content.column .the-excerpt p {
  font-size: 13px;
}
.blog-tabs__content.column .blog-tabs__content--img {
  width: 100%;
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .blog-tabs__content.column .blog-tabs__content--img {
    flex: 0 0 30%;
    width: auto;
  }
}
.blog-tabs__content.column .blog-tabs__content--img .img-drop {
  padding-top: 55%;
}
.blog-tabs__content.column .blog-tabs__content--img .read-more {
  font-size: 12px;
}
@media (min-width: 992px) {
  .blog-tabs__content.column .blog-tabs__content--img .read-more {
    font-size: 13px;
  }
}
.blog-tabs__content.column .blog-tabs__content--date {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.blog-tabs__content.column .blog-tabs__content--date ul, .blog-tabs__content.column .blog-tabs__content--date li {
  list-style: none;
}
.blog-tabs__content.column .blog-tabs__content--date span {
  font-size: 11px;
}
.blog-tabs__content.column .blog-tabs__content--date ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
.blog-tabs__content.column .blog-tabs__content--date li {
  padding: 0 10px;
  background-color: #e3e3e3;
  margin: 0 5px;
  font-size: 8px;
  text-transform: uppercase;
  color: #444;
  opacity: 0.7;
}
.blog-tabs__content.column.has-icon .blog-tabs__content--title h2 {
  position: relative;
}
@media (min-width: 768px) {
  .blog-tabs__content.column.has-icon .blog-tabs__content--title h2 {
    padding-left: 20px;
  }
}
.blog-tabs__content.column.has-icon .blog-tabs__content--title h2:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 4px;
  left: 0;
  opacity: 0;
}
@media (min-width: 768px) {
  .blog-tabs__content.column.has-icon .blog-tabs__content--title h2:before {
    opacity: 1;
  }
}
.blog-tabs__content.column .blog-tabs__content--title {
  margin-bottom: 5px;
}
.blog-tabs__content.column .blog-tabs__content--title h2 {
  font-size: 24px;
}
.blog-tabs__content .img-drop .read-more {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
  opacity: 0;
  visibility: hidden;
  font-weight: 300;
  font-size: 16px;
  color: #fff;
}
.blog-tabs__content .img-drop:before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.75);
  z-index: 15;
}
.blog-tabs__content:hover .img-drop .read-more {
  opacity: 1;
  visibility: visible;
}
.blog-tabs__content:hover .img-drop:before {
  opacity: 1;
  visibility: visible;
}
.blog-tabs__content:hover h2 span {
  background-size: 100% 2px;
}
.blog-tabs__content--img {
  margin-bottom: 0;
  display: block;
}
.blog-tabs__content--img .img-drop {
  padding-top: 55%;
}
.blog-tabs__content--img.has-video {
  position: relative;
}
.blog-tabs__content--img.has-video:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 50px;
  height: 50px;
  border: 2px solid #222;
  background: none no-repeat right 48% center/16px auto;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .blog-tabs__content--img.has-video:after {
    width: 80px;
    height: 80px;
    background-size: 22px auto;
  }
}
.blog-tabs__content--date {
  margin-bottom: 10px;
  display: flex;
}
.blog-tabs__content--date span {
  color: #939393;
  letter-spacing: 1px;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 13px;
}
.blog-tabs__content--date span:not(:last-child) {
  margin-right: 10px;
  position: relative;
  padding-right: 10px;
}
.blog-tabs__content--date span:not(:last-child):after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 2px;
  height: 2px;
  background-color: #939393;
  border-radius: 50%;
}
.blog-tabs__content--title {
  margin-bottom: 1rem;
  display: inline-block;
  width: 100%;
  color: #222;
}
.blog-tabs__content--title:hover {
  color: #222;
  text-decoration: none;
}
@media (min-width: 768px) {
  .blog-tabs__content--title {
    overflow: hidden;
  }
}
.blog-tabs__content--title > * {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 30px;
}
@media (min-width: 768px) {
  .blog-tabs__content--title > * {
    font-size: 26px;
    line-height: 36px;
  }
}
.blog-tabs__wrap-owl .owl-nav {
  text-align: center;
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 0;
}
.blog-tabs__wrap-owl .owl-nav .disabled {
  opacity: 0;
  visibility: hidden;
}
.blog-tabs__wrap-owl .owl-nav button {
  -webkit-appearance: none;
  border: 0;
  border-radius: 0;
  outline: 0;
  display: inline-block;
  width: 7px;
  height: 10px;
  background: transparent none no-repeat center/7px auto !important;
  position: absolute;
  bottom: 4px;
  transition: opacity 0.5s ease;
}
.blog-tabs__wrap-owl .owl-nav button.owl-next {
  transform: rotate(180deg);
  right: calc(50% - 100px);
}
.blog-tabs__wrap-owl .owl-nav button.owl-prev {
  left: calc(50% - 100px);
}
.blog-tabs__wrap-owl .owl-dots {
  counter-reset: slides-num;
  position: relative;
  text-align: center;
  max-width: 150px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-around;
  margin-top: 25px;
}
@media (min-width: 768px) {
  .blog-tabs__wrap-owl .owl-dots {
    margin-top: 50px;
  }
}
@media (min-width: 992px) {
  .blog-tabs__wrap-owl .owl-dots {
    margin-top: 100px;
  }
}
.blog-tabs__wrap-owl .owl-dots .owl-dot {
  counter-increment: slides-num;
  -webkit-appearance: none;
  border: 0;
  border-radius: 0;
  outline: 0;
}
.blog-tabs__wrap-owl .owl-dots .owl-dot.active span:after {
  color: #939393;
}
.blog-tabs__wrap-owl .owl-dots .owl-dot span:after {
  content: counter(slides-num);
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.03em;
  font-weight: 200;
}
.blog-tabs .tab-blog-content .fade {
  transition-duration: 0.5s;
}

.pagination-blog .page-numbers {
  color: #222;
}
.pagination-blog .page-numbers:hover {
  color: red;
}
.pagination-blog .page-numbers.current {
  background-color: #d12f25;
  padding: 10px 15px;
  color: #fff;
  font-weight: 500;
}
.pagination-blog li {
  display: inline-block;
  font-size: 14px;
  margin: 0 11px;
}
.pagination-blog li:last-child {
  margin-right: 0;
}
.pagination-blog a.next {
  position: relative;
}
.pagination-blog a.next i.icon {
  border-radius: 0;
  outline: 0;
  display: inline-block;
  width: 7px;
  height: 10px;
  background: transparent url(//www.mspvn.com/wp-content/themes/cide-child/html/dist/css/pages/img/arrow-right-menu.png) no-repeat center/7px auto !important;
  position: absolute;
  bottom: 4px;
  transition: opacity 0.5s ease;
  transform: rotate(180deg);
  top: -10px;
}

.blog-tabs__wrap-owl .owl-nav {
  display: none !important;
}

.blog-article__wrap .owl-dots {
  margin-top: 15px;
  text-align: center;
}
@media (min-width: 992px) {
  .blog-article__wrap .owl-dots {
    margin-top: 0;
  }
}
.blog-article__wrap .owl-dot {
  width: 15px;
  height: 3px;
  background: rgba(255, 255, 255, 0.31) !important;
  border-radius: 9px;
  margin: 0 8px;
  border: none;
  outline: none;
  transition: all 0.5s ease;
}
.blog-article__wrap .owl-dot.active {
  width: 35px;
  background: #939393 !important;
}

#blog-sticky {
  padding-top: 0;
}

.blog-head-line-featured {
  margin-bottom: 20px;
}

.blog-tabs .blog-item {
  background-color: #fff;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .blog-tabs .blog-item.blog-item-info {
    margin-bottom: 0;
  }
}
.blog-tabs .swiper-button-next,
.blog-tabs .swiper-button-prev {
  top: 50px;
}
@media (min-width: 768px) {
  .blog-tabs .swiper-button-next,
  .blog-tabs .swiper-button-prev {
    top: 35px;
  }
}
.blog-tabs .swiper-button-next {
  right: 0;
}
.blog-tabs .swiper-button-prev {
  right: 45px;
  left: auto;
}
.blog-tabs .swiper-button-next:after, .blog-tabs .swiper-button-prev:after {
  font-size: 26px;
}
.blog-tabs .blog-lists {
  padding: 30px 0;
}

.list-cate-mobile {
  display: block;
}
@media (min-width: 768px) {
  .list-cate-mobile {
    display: none;
  }
}

.list-cat-desktop {
  display: none;
}
@media (min-width: 768px) {
  .list-cat-desktop {
    display: block;
  }
}
.list-cat-desktop.has-padding {
  padding: 15px 0;
}

.select-category-blog {
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .select-category-blog {
    padding: 0;
  }
}

.blog-tabs {
  margin-bottom: 0 !important;
}

.stick-wrapper {
  padding: 20px 0;
}

.blog-head-line {
  text-transform: uppercase;
  font-weight: 500;
  color: #d12f25;
}

.blog-section {
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .blog-section {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1441px) {
  .blog-section {
    padding-left: 120px;
    padding-right: 120px;
  }
}

@media (min-width: 992px) {
  .blog-single-container.wrap-content {
    margin-top: 50px;
  }
}
.blog-single-container .blog-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .blog-single-container .blog-info {
    margin-top: 0;
  }
}
.blog-single-container .blog-info ul, .blog-single-container .blog-info li {
  list-style: none;
  padding: 0;
}
.blog-single-container .blog-info span {
  color: #939393;
}
.blog-single-container .blog-info .blog-info--item .date-post {
  font-size: 14px;
}
.blog-single-container .blog-header {
  margin: 20px 0;
  text-align: left;
}
@media (min-width: 992px) {
  .blog-single-container .blog-header {
    padding: 0 0 15px 0;
    margin: 0;
  }
}
.blog-single-container .blog-header h1 {
  font-weight: 400;
}
@media (max-width: 991px) {
  .blog-single-container .blog-header h1 {
    font-size: 28px;
    line-height: 40px;
  }
}

.breadcrumb-single {
  margin-bottom: 0;
}

.blog-author {
  width: 100%;
  margin: 20px 0;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.blog-footer .share-title {
  font-weight: 300;
  font-size: 16px;
}

.share-social {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.jssocials-shares {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.jssocials-shares a {
  color: #777;
}
.jssocials-shares .jssocials-share {
  margin: 0 10px;
}
.jssocials-shares .jssocials-share:last-child {
  margin-right: 0;
}

.back-news .ti-arrow-left:before {
  font-size: 12px;
}

@media (min-width: 992px) {
  .blog-footer-wrap {
    padding: 20px 0;
  }
}

@media (min-width: 992px) {
  .recent-posts {
    background-color: #f8f8f8;
  }
}
.recent-posts .img-drop {
  padding-top: 60%;
}
.recent-posts h3 {
  font-size: 16px;
  line-height: 24px;
}
.recent-posts .blog-content-wrap {
  padding: 20px 15px;
  background-color: #fff;
}

.lasted-posts {
  padding: 30px 15px;
}
@media (min-width: 992px) {
  .lasted-posts {
    padding: 60px 30px;
  }
}
.lasted-posts h4 {
  margin-bottom: 20px;
  font-weight: 500;
  color: #d12f25;
  text-transform: uppercase;
}

.other-posts .img-drop {
  padding-top: 50%;
}
@media (min-width: 992px) {
  .container-blog-left {
    background-color: #fff;
  }
}
.container-blog-left.no-margin .blog-header {
  margin-bottom: 0;
  padding-bottom: 0;
}
.container-blog-left img {
  width: 100%;
  max-width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .container-blog-left {
    padding: 30px 20px;
  }
}
.container-blog-left.blog-content .content-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .container-blog-left.single-blog-left {
    padding: 30px 25px;
  }
}

.container-blog-right {
  margin-top: 50px;
  z-index: 1;
}
@media (min-width: 992px) {
  .container-blog-right {
    padding: 20px 15px;
    background-color: #fff;
    margin-top: 0;
  }
}
.container-blog-right h5 {
  color: #ed1c24;
  text-transform: uppercase;
  /* font-weight: 300; */
  margin-bottom: 20px;
}
.container-blog-right .other-posts {
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
}
.container-blog-right .other-posts h6 {
  color: #164397;
  line-height: 28px;
  padding-top: 15px;
}
.container-blog-right.other-posts-column a.other-posts .date-post {
  color: #939393;
  font-size: 12px;
  padding-left: 15px;
}
.container-blog-right.other-posts-column a.other-posts h6 {
  padding-top: 0;
  padding-left: 15px;
  line-height: 22px;
  font-size: 13px;
}
.container-blog-right.other-posts-column a.other-posts .post-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-blog-right.other-posts-column a.other-posts .img-drop {
  padding-top: 30%;
  flex: 0 0 35%;
  margin-bottom: auto;
}
.container-blog-right .summary-job {
  margin-bottom: 25px;
}
.container-blog-right .summary-job h5 {
  margin-bottom: 0;
}

.back-title {
  text-transform: uppercase;
  font-size: 16px;
}

.the-action-blog {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.the-action-blog .cat-description ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.the-action-blog .cat-description li {
  padding: 0 10px;
  background-color: #e3e3e3;
  margin: 0 5px;
  font-size: 10px;
  text-transform: uppercase;
  color: #444;
  opacity: 0.7;
}

.img-drop {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
.img-drop img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  transform: translateZ(0);
}

.blog-item-header {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  flex-flow: column wrap;
}
@media (min-width: 768px) {
  .blog-item-header {
    flex-flow: row wrap;
    justify-content: space-between;
  }
}

body.page-id-1304 {
  background-color: #f8f8f8;
}
body.page-id-1304 footer {
  background-color: #fff;
}

body.single-post {
  background-color: #f8f8f8;
}
body.single-post footer {
  background-color: #fff;
}

.mspvn-blog-section {
  margin: 0 auto;
  width: 100%;
  background-color: #fff;
  padding: 30px;
}
.mspvn-blog-section.none-bg {
  background-color: transparent;
}
@media (min-width: 1200px) {
  .mspvn-blog-section {
    max-width: 70%;
  }
}

.blog-link-item .img-drop {
  padding-top: 45%;
}
.blog-link-item img {
  border-radius: 5px;
}

.blog-related-column {
  display: flex;
  flex-flow: row wrap;
}
.blog-related-column .blog-related-item {
  width: 100%;
  padding: 0 20px 20px 0;
}
@media (min-width: 768px) {
  .blog-related-column .blog-related-item {
    width: 33.3333333333%;
  }
}
@media (min-width: 1200px) {
  .blog-related-column .blog-related-item {
    width: 33.3333333333%;
  }
}
.blog-related-column .blog-related-item h5 {
  margin-bottom: 5px;
}
.blog-related-column .post-item {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-content: center;
}
.blog-related-column .post-thumbnail {
  width: 100%;
}
.blog-related-column .post-sub-title {
  margin: 10px 0;
}

.mspvn-related-posts {
  margin-top: 50px;
  margin-bottom: 50px;
}
.mspvn-related-posts .blog-link-item:hover {
  color: transparent !important;
}
.mspvn-related-posts span.date-post {
  color: rgba(0, 0, 0, 0.4);
}

.read-all {
  display: flex;
  justify-content: center;
  align-content: center;
}
.read-all a {
  border: 1px solid #e3e3e3;
  padding: 15px;
}
.read-all a:hover {
  border: 1px solid #f33c3c;
}

.blog-heading-content.blog_single {
  max-width: 1200px;
  margin: 0 auto;
}

.text-center.pagination-blog {
  margin-bottom: 60px;
}

.mspvn-blog-lists .full-right-section.blog-lists {
  padding-top: 0;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
}
.blog-container .blog-wrap-container {
  margin-top: 200px;
  margin-bottom: 100px;
}

.the-blog-content {
  background-color: #fff;
  padding: 20px 30px;
}
.the-blog-content .cide-breadcrumbs {
  margin-bottom: 15px;
}
.the-blog-content h1 {
  font-size: 32px;
  margin-bottom: 15px;
}
.the-blog-content .the-blog-content_wrap {
  color: #222;
  text-align: justify;
}

.the-blog-head .cide-breadcrumbs .trail-items .trail-item:not(.trail-end)::after {
  border: 1px solid #7A7A7A;
  transform: rotate(45deg);
  border-width: 1px 1px 0 0;
}
.the-blog-head .cide-breadcrumbs .trail-items .trail-item > a:not(:hover) {
  color: #7A7A7A;
}
.the-blog-head .cide-breadcrumbs li a {
  font-size: 13px;
}
.the-blog-head .cide-breadcrumbs li.trail-end span {
  font-size: 13px;
}
.the-blog-head .cide-breadcrumbs .trail-items .trail-item > a:hover {
  color: #000;
}

.the-content-sidebar a.blog-link-item .date-post {
  color: #7a7a7a;
  font-size: 13px;
}

.the-blog-share {
  display: flex;
  align-items: center;
}
.the-blog-share .jssocials-share-link {
  border-radius: 50%;
  font-size: 12px;
  color: #fff;
}
.the-blog-share .jssocials-shares a {
  color: #fff;
}
.the-blog-share .jssocials-shares .jssocials-share {
  margin: 0 5px;
}

.blog-wrap-container-main {
  display: flex;
  margin: 0 auto;
  max-width: 1170px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .blog-wrap-container-main {
    flex-direction: row;
  }
}
.blog-wrap-container-main .blog-left {
  flex: 0 0 100%;
  background-color: #fff;
}
@media (min-width: 768px) {
  .blog-wrap-container-main .blog-left {
    flex: 0 0 70%;
  }
}
.blog-wrap-container-main .blog-right {
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .blog-wrap-container-main .blog-right {
    flex: 0 0 30%;
  }
}

.the-content-right {
  padding: 20px;
  background-color: #fff;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .the-content-right {
    margin-left: 25px;
    margin-top: 0;
  }
}
.the-content-right .blog-lists .blog-link-item h5 {
  font-size: 18px;
}

.the-blog-share {
  border-top: 1px solid #eaeaea;
  margin-top: 50px;
  padding-top: 15px;
}

.the-blog-head {
  display: flex;
}
@media (min-width: 768px) {
  .the-blog-head {
    justify-content: space-between;
  }
}
.the-blog-head .the-date {
  font-size: 13px;
}

@media (max-width: 767px) {
  .blog-item-wrap.blog-item-header h3 {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Product Page Style
--------------------------------------------------------------*/
.single-product {
  /* Clear default woocommerce */
  /* Product #Content */
  /* Product Elemments */
  /* Product Style - Special */
  /* Product Align */
}
.single-product div.images, #content .single-product div.images {
  float: none;
  width: auto;
}
.single-product div.summary, #content .single-product div.summary {
  float: none;
  width: auto;
}
.single-product div.summary.product-info table.variations tr {
  display: flex;
}
.single-product div.summary.product-info.text-center {
  text-align: center;
}
.single-product div.summary.product-info.text-center form.cart {
  display: flex;
  justify-content: center;
}
.single-product div.summary.product-info.text-center form.cart.variations_form, .single-product div.summary.product-info.text-center form.cart.grouped_form {
  flex-direction: column;
  align-items: center;
}
.single-product div.summary.product-info.text-center form.cart ul.variable-items-wrapper {
  justify-content: center;
}
.single-product div.summary.product-info.text-center .woocommerce-product-rating {
  justify-content: center;
}
.single-product div.summary.product-info.text-center .product-share {
  justify-content: center;
}
.single-product div.summary.product-info.text-center table.variations tr {
  justify-content: center;
}
.single-product div.summary.product-info.text-left {
  text-align: left;
}
.single-product div.summary.product-info.text-left form.cart {
  display: flex;
  justify-content: flex-start;
}
.single-product div.summary.product-info.text-left form.cart.variations_form, .single-product div.summary.product-info.text-left form.cart.grouped_form {
  flex-direction: column;
  align-items: flex-start;
}
.single-product div.summary.product-info.text-left form.cart ul.variable-items-wrapper {
  justify-content: flex-start;
}
.single-product div.summary.product-info.text-left .product-share {
  justify-content: flex-start;
}
.single-product div.summary.product-info.text-right {
  text-align: right;
}
.single-product div.summary.product-info.text-right form.cart {
  display: flex;
  justify-content: flex-end;
}
.single-product div.summary.product-info.text-right form.cart.variations_form, .single-product div.summary.product-info.text-right form.cart.grouped_form {
  flex-direction: column;
  align-items: flex-end;
}
.single-product div.summary.product-info.text-right form.cart ul.variable-items-wrapper {
  justify-content: flex-end;
}
.single-product div.summary.product-info.text-right .product-share {
  justify-content: flex-end;
}
.single-product div.summary.product-info.text-right table.variations tr {
  justify-content: flex-end;
}
.single-product #content .type-product .product-container .product-main .product-content {
  position: relative;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-badge {
  display: none;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery {
  margin-bottom: 30px;
  width: 100%;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .woocommerce-product-gallery__trigger::before {
  width: 8px;
  height: 8px;
  top: 11px;
  left: 11px;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .swiper-button-disabled {
  visibility: hidden;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .flex-control-paging {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 10px;
  margin-left: 50%;
  transform: translateX(-50%);
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .flex-control-paging li > a {
  display: inline-block;
  padding: 0;
  margin: 0 5px;
  color: #888;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .flex-control-paging li > a.flex-active {
  font-weight: bold;
  color: #f33c3c;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .flex-direction-nav {
  padding: 0;
  list-style: none;
  margin: 0;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .flex-direction-nav .flex-nav-prev,
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .flex-direction-nav .flex-nav-next {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  opacity: 0.15;
  transition: opacity ease 0.3s;
  border-radius: 50%;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .flex-direction-nav .flex-nav-prev a,
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .flex-direction-nav .flex-nav-next a {
  line-height: 20px;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .flex-direction-nav .flex-nav-prev svg,
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .flex-direction-nav .flex-nav-next svg {
  width: 20px;
  height: 20px;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .flex-direction-nav .flex-nav-prev:hover,
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .flex-direction-nav .flex-nav-next:hover {
  box-shadow: 0 0 20px -3px rgba(0, 0, 0, 0.2), 0 7px 6px rgba(0, 0, 0, 0.02);
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .flex-direction-nav .flex-nav-next {
  right: 10px;
  left: auto;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .flex-control-thumbs li img {
  opacity: 1;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery:hover .flex-direction-nav .flex-nav-prev, .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery:hover .flex-direction-nav .flex-nav-next {
  opacity: 1;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper {
  margin-top: 10px;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cide-prev,
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cide-next {
  top: 5px;
  width: 40px;
  justify-content: center;
  height: calc(100% - 10px);
  border-radius: 0;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cide-prev:focus,
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cide-next:focus {
  outline: none;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cide-prev:hover,
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cide-next:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cide-prev {
  left: 5px;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cide-next {
  right: 5px;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper.swiper-container-vertical li.swiper-slide img {
  max-height: 100%;
  width: auto;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper {
  position: relative;
  margin-top: 15px;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper > .flex-control-thumbs {
  overflow: initial;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper > .flex-control-thumbs li img {
  border: 1px solid transparent;
  width: -moz-max-content;
  width: max-content;
  float: none;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper > .flex-control-thumbs li img.flex-active {
  border-color: #dfdfdf;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper > .flex-control-thumbs li:hover img {
  border-color: #dfdfdf;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .swiper-pagination-bullets {
  display: none;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cide-next,
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cide-prev {
  position: absolute;
  height: 100%;
  z-index: 1;
  top: 0;
  display: flex;
  align-items: center;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cide-next {
  right: 0;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .flex-viewport {
  margin-left: 115px;
  border: 1px solid #e4e6ec;
  border-radius: 3px;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .flex-control-thumbs li {
  width: 100px;
  float: none;
  margin-bottom: 15px;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .flex-control-thumbs li img {
  border: 1px solid #e4e6ec;
  border-radius: 3px;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .flex-control-thumbs li img.flex-active {
  border-color: #f33c3c;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .flex-control-thumbs li:hover img {
  border-color: #f33c3c;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper {
  position: absolute;
  /*height: 100%;*/
  top: 0;
  left: 0;
  width: -moz-max-content;
  width: max-content;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cide-next,
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cide-prev {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 100%;
  text-align: center;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cide-next {
  top: auto;
  bottom: 0;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cide-prev > .fm-icon {
  /*transform: rotate(180deg);*/
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper.swiper-container-vertical .flex-control-thumbs {
  overflow: initial;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper.swiper-container-vertical li.swiper-slide img {
  max-height: 100%;
  width: auto;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .swiper-pagination-bullets {
  display: none;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical > .flex-control-thumbs {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: -moz-max-content;
  width: max-content;
  overflow: hidden;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cide-prev,
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cide-next {
  display: flex;
  width: calc(100% - 10px);
  align-items: center;
  justify-content: center;
  height: 40px;
  left: 5px;
  border-radius: 0;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cide-prev:focus,
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cide-next:focus {
  outline: none;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cide-prev:hover,
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cide-next:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cide-prev {
  top: 5px;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cide-next {
  bottom: 5px;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper.swiper-container-vertical li.swiper-slide img {
  height: 100%;
  width: 100%;
  margin-right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_grid .woocommerce-product-gallery__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_grid .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
  width: 100%;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_grid .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:first-of-type {
  grid-column-start: 1;
  grid-column-end: 3;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_grid .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:nth-child(2n+0):last-child {
  grid-column-start: 1;
  grid-column-end: 3;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_grid2 .woocommerce-product-gallery__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_grid2 .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
  width: 100%;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_grid2 .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:nth-child(3n+1):last-child {
  grid-column-start: 1;
  grid-column-end: 3;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_grid2 .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:nth-child(3n+0) {
  grid-column-start: 1;
  grid-column-end: 3;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_list .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}
.single-product #content .type-product .product-container .product-main .product-info .woocommerce-product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.single-product #content .type-product .product-container .product-main .product-info .woocommerce-product-rating .star-rating {
  margin: 0 8px 0 0;
}
.single-product #content .type-product .product-container .product-main .product-info .woocommerce-product-rating a.woocommerce-review-link {
  color: #999999;
}
.single-product #content .type-product .product-container .product-main .product-info h1.product_title {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
  color: #232529;
  margin-bottom: 15px;
}
.single-product #content .type-product .product-container .product-main .product-info .out-of-stock {
  font-size: 20px;
}
.single-product #content .type-product .product-container .product-main .product-info .price {
  font-size: 21px;
  font-weight: 500;
  color: #232529;
}
.single-product #content .type-product .product-container .product-main .product-info .price del {
  color: #999999;
  font-size: 16px;
}
.single-product #content .type-product .product-container .product-main .product-info .price ins {
  text-decoration: unset !important;
  color: #232529;
  font-weight: 500;
}
.single-product #content .type-product .product-container .product-main .product-info > .price {
  position: relative;
  padding-bottom: 23px;
  margin-bottom: 19px;
}
.single-product #content .type-product .product-container .product-main .product-info > .price::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #e4e6ec;
  left: 0;
  bottom: 0;
}
.single-product #content .type-product .product-container .product-main .product-info .woocs_price_code .ins {
  text-decoration: none !important;
}
.single-product #content .type-product .product-container .product-main .product-info .woocommerce-product-details__short-description {
  line-height: 1.87;
  margin-bottom: 30px;
  color: #909297;
  font-weight: 500;
}
.single-product #content .type-product .product-container .product-main .product-info .woocommerce-product-details__short-description p {
  margin-bottom: 8px;
}
.single-product #content .type-product .product-container .product-main .product-info .woocommerce-product-details__short-description ul {
  padding-left: 0;
  list-style: none;
}
.single-product #content .type-product .product-container .product-main .product-info .woocommerce-product-details__short-description ul li {
  position: relative;
  line-height: 24px;
  padding-left: 16px;
}
.single-product #content .type-product .product-container .product-main .product-info .woocommerce-product-details__short-description ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #ddd;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 0;
}
.single-product #content .type-product .product-container .product-main .product-info .woocommerce-product-details__short-description ul li + li {
  margin-top: 6px;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart {
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart .quantity {
  border: 1px solid #e4e6ec;
  height: 55px;
  min-width: 75px;
  border-radius: 0;
  position: relative;
  flex: 0 0 75px;
  margin: 0 10px 25px 0;
  border-radius: 3px;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart .quantity .quantity-group-buttons {
  border: none;
  display: flex;
  flex-direction: column;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart .quantity .quantity-group-buttons > a {
  position: absolute;
  width: 36px;
  height: 26.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e4e6ec;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart .quantity .quantity-group-buttons > a svg.fm-icon {
  width: 9px;
  height: 9px;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart .quantity .quantity-group-buttons > a.quantity-plus {
  left: 0;
  top: 0;
  border-bottom: 1px solid #e4e6ec;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart .quantity .quantity-group-buttons > a.quantity-minus {
  left: 0;
  bottom: 0;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart .quantity .input-text {
  height: 50px;
  border: none;
  display: flex;
  min-height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #232529;
  text-align: right;
  padding-right: 15px;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart .quantity.hidden {
  border: none;
  height: 0;
  min-height: 0;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper {
  flex: 0 0 100%;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button {
  display: flex;
  align-items: center;
  margin: 0 0 8px 0;
  color: #232529;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button::before {
  display: none !important;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button span.tinvwl_add_to_wishlist-text, .single-product #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button span.tinvwl_add_to_wishlist-text, .single-product #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button span.tinvwl_remove_from_wishlist-text {
  margin-left: 3px;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button svg.fm-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  fill: #999999;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button svg.fm-icon.icon-hover {
  display: none;
  fill: #aaaaaa;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button svg.fm-icon.icon-hover:hover {
  fill: #ec1d25;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button .cide_yith_wcwl_icon,
.single-product #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button .cide_tinv_wl_icon {
  border: 1px solid;
  margin-right: 10px;
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border-color: #e4e4e4;
  transition: border-color 0.25s linear 0s;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon, .single-product #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button:hover svg.fm-icon {
  display: none;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon.icon-hover, .single-product #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button:hover svg.fm-icon.icon-hover {
  display: inline-block;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button.disabled-add-wishlist {
  color: #999999;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button:hover .cide_yith_wcwl_icon,
.single-product #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button:hover .cide_tinv_wl_icon {
  border-color: #232529;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button:hover svg.fm-icon {
  fill: #232529;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart .single_add_to_cart_button {
  flex: 0 0 calc(100% - 152px);
}
.single-product #content .type-product .product-container .product-main .product-info form.cart button.single_add_to_cart_button {
  font-weight: 500;
  color: #ffffff;
  font-size: 0.9rem;
  text-transform: uppercase;
  height: 55px;
  padding: 0 15px;
  margin: 0 0 25px 0;
  letter-spacing: 2px;
  border-radius: 3px;
}
.single-product #content .type-product .product-container .product-main .product-info form.cart button.single_add_to_cart_button svg.fm-icon {
  display: none;
  width: 15px;
  height: 15px;
  margin-right: 6px;
  fill: #ffffff;
}
.single-product #content .type-product .product-container .product-main .product-info a.button.compare {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: #232529;
  height: 50px;
  border: 1px solid #232529;
  border-radius: 0;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
}
.single-product #content .type-product .product-container .product-main .product-info a.button.compare svg.fm-icon {
  margin-right: 6px;
  fill: #232529;
}
.single-product #content .type-product .product-container .product-main .product-info a.button.compare:hover {
  background: #f33c3c;
  color: #fff;
  border-color: #f33c3c;
}
.single-product #content .type-product .product-container .product-main .product-info a.button.compare:hover svg.fm-icon {
  fill: #ffffff;
}
.single-product #content .type-product .product-container .product-main .product-info .product_meta {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding-top: 25px;
  margin-top: 25px;
  font-weight: 500;
}
.single-product #content .type-product .product-container .product-main .product-info .product_meta > span {
  margin-bottom: 5px;
  margin-right: 15px;
  color: #909297;
}
.single-product #content .type-product .product-container .product-main .product-info .product_meta .posted_in {
  display: block;
}
.single-product #content .type-product .product-container .product-main .product-info .product_meta .posted_in a {
  color: #232529;
}
.single-product #content .type-product .product-container .product-main .product-info .product_meta .posted_in a:hover {
  color: #f33c3c;
}
.single-product #content .type-product .product-container .product-main .product-info .product_meta .tagged_as {
  flex: 0 0 100%;
  margin-left: 0;
}
.single-product #content .type-product .product-container .product-main .product-info .product_meta .sku_wrapper {
  display: block;
  text-transform: uppercase;
}
.single-product #content .type-product .product-container .product-main .product-info .product_meta .sku_wrapper .sku {
  color: #232529;
}
.single-product #content .type-product .product-container .product-main .product-info .product_meta .tagged_as a {
  color: #232529;
}
.single-product #content .type-product .product-container .product-main .product-info .product_meta .tagged_as a:hover {
  color: #f33c3c;
}
.single-product #content .type-product .product-container .product-main .product-info .product_meta::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #e4e4e4;
  left: 0;
  top: 0;
}
.single-product #content .type-product .product-container .product-main .product-info .product-share {
  width: 100%;
}
.single-product #content .type-product .product-container .product-main .product-info .product-share,
.single-product #content .type-product .product-container .product-main .product-info .product-share .socials-sharing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.single-product #content .type-product .product-container .product-main .product-info .product-share ul.socials-sharing {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.single-product #content .type-product .product-container .product-main .product-info .product-share ul.socials-sharing > li {
  padding: 0 10px;
}
.single-product #content .type-product .product-container .product-main .product-info .product-share ul.socials-sharing > li > a {
  display: flex;
  align-items: center;
}
.single-product #content .type-product .product-container .product-main .product-info .product-share ul.socials-sharing > li svg {
  fill: #232529;
}
.single-product #content .type-product .product-container .product-main .product-info .product-share > label {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.single-product #content .type-product .product-container .product-main .product-info .product-share > label svg {
  display: none;
}
.single-product #content .type-product .product-container .product-main .product-info .product-share > label span::after {
  display: inline-block;
  content: ":";
  margin: 0 5px 0 2px;
}
.single-product #content .type-product .product-container .product-main {
  position: relative;
}
.single-product #content .type-product .product-container .product-main.sidebar-left {
  flex-direction: row-reverse;
}
.single-product #content .type-product .product-container .product-main.sidebar-left > .row {
  flex-direction: column;
}
.single-product #content .type-product .product-container .product-main.sidebar-left > .row .product-content:before {
  left: 33.3333%;
}
.single-product #content .type-product .product-container .product-main.sidebar-left > .row .product-content > .row {
  flex-direction: column;
}
.single-product #content .type-product .product-container .product-main.sidebar-left .product-sidebar {
  margin-bottom: 2rem;
}
.single-product #content .type-product .product-container .product-main.sidebar-right {
  flex-direction: row;
}
.single-product #content .type-product .product-container .product-main.sidebar-right > .row {
  flex-direction: column;
}
.single-product #content .type-product .product-container .product-main.sidebar-right > .row .product-content:before {
  left: 66.6666%;
}
.single-product #content .type-product .product-container .product-main.sidebar-right > .row .product-content > .row {
  flex-direction: column;
}
.single-product #content .type-product .product-container .product-main.sidebar-right .product-sidebar {
  margin-bottom: 2rem;
}
.single-product #content .type-product .product-container .product-main.sidebar-left-full {
  flex-direction: row-reverse;
}
.single-product #content .type-product .product-container .product-main.sidebar-left-full > .row {
  flex-direction: column;
}
.single-product #content .type-product .product-container .product-main.sidebar-left-full > .row .product-content > .row {
  flex-direction: column;
}
.single-product #content .type-product .product-container .product-main.sidebar-left-full .related.products:before {
  width: 100%;
  left: 0;
  transform: translateX(0);
}
.single-product #content .type-product .product-container .product-main.sidebar-left-full .related.products > h2 {
  margin-bottom: 1.2rem;
}
.single-product #content .type-product .product-container .product-main.sidebar-left-full .up-sells.products:before {
  width: 100%;
  left: 0;
  transform: translateX(0);
}
.single-product #content .type-product .product-container .product-main.sidebar-left-full .up-sells.products > h2 {
  margin-bottom: 1.2rem;
}
.single-product #content .type-product .product-container .product-main.sidebar-right-full {
  flex-direction: row;
}
.single-product #content .type-product .product-container .product-main.sidebar-right-full > .row {
  flex-direction: column;
}
.single-product #content .type-product .product-container .product-main.sidebar-right-full > .row .product-content > .row {
  flex-direction: column;
}
.single-product #content .type-product .product-container .product-main.sidebar-right-full .related.products:before {
  width: 100%;
  left: 0;
  transform: translateX(0);
}
.single-product #content .type-product .product-container .product-main.sidebar-right-full .related.products > h2 {
  margin-bottom: 1.2rem;
}
.single-product #content .type-product .product-container .product-main.wide-gallery {
  display: flex;
  flex-direction: column;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery {
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  margin-bottom: 30px;
  left: 50%;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_list .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image.swiper-slide {
  opacity: 0.3;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_list .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image.swiper-slide.swiper-slide-prev, .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_list .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image.swiper-slide.swiper-slide-active, .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_list .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image.swiper-slide.swiper-slide-next {
  opacity: 1;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_list .woocommerce-product-gallery__wrapper .zoomImg {
  cursor: crosshair;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .wide_gallery_swiper .swiper-pagination {
  display: none;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product-info {
  position: relative;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product-info form.cart .single_variation_wrap .woocommerce-variation-add-to-cart {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.single-product #content .type-product .product-container .product-main.has_background {
  position: relative;
}
.single-product #content .type-product .product-container .product-main.has_background::before {
  content: "";
  position: absolute;
  width: 100vw !important;
  margin-left: -50vw;
  left: 50% !important;
  top: -55px;
  bottom: 0;
}
.single-product #content .type-product .product-container .cide-wc-tabs {
  display: -ms-flexbox;
  flex-flow: column wrap;
  max-width: 1170px;
  margin: 0 auto;
}
.single-product #content .type-product .product-container .cide-wc-tabs .cide-tabs-title {
  width: 100%;
  padding: 0;
  text-align: center;
  overflow: inherit;
}
.single-product #content .type-product .product-container .cide-wc-tabs .cide-tabs-title:before {
  display: inline-block;
  content: "";
  position: absolute;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  border-color: #e4e6ec;
}
.single-product #content .type-product .product-container .cide-wc-tabs .cide-tabs-title > li {
  border: none;
  background: none;
  display: inline-block;
  width: 100%;
  z-index: 2;
}
.single-product #content .type-product .product-container .cide-wc-tabs .cide-tabs-title > li::before, .single-product #content .type-product .product-container .cide-wc-tabs .cide-tabs-title > li::after {
  display: none;
}
.single-product #content .type-product .product-container .cide-wc-tabs .cide-tabs-title > li > a {
  position: relative;
  display: inline-block;
  padding: 0 0 2px 0;
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 500;
  color: #909297;
  text-decoration: none;
  transition: color 0.3s;
}
.single-product #content .type-product .product-container .cide-wc-tabs .cide-tabs-title > li > a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  border-bottom: 2px solid transparent;
}
.single-product #content .type-product .product-container .cide-wc-tabs .cide-tabs-title > li > a:hover {
  color: #232529;
}
.single-product #content .type-product .product-container .cide-wc-tabs .cide-tabs-title > li > a:hover::after {
  border-bottom-color: #f33c3c;
}
.single-product #content .type-product .product-container .cide-wc-tabs .cide-tabs-title > li.active > a {
  color: #232529;
}
.single-product #content .type-product .product-container .cide-wc-tabs .cide-tabs-title > li.active > a::after {
  border-bottom-color: #f33c3c;
}
.single-product #content .type-product .product-container .cide-wc-tabs .woocommerce-Tabs-panel {
  width: 100%;
}
.single-product #content .type-product .product-container .cide-wc-tabs .woocommerce-Tabs-panel h2.woocommerce-Reviews-title,
.single-product #content .type-product .product-container .cide-wc-tabs .woocommerce-Tabs-panel > h2:first-child {
  display: none;
}
.single-product #content .type-product .product-container .cide-wc-tabs .panel {
  margin-bottom: 0;
}
.single-product #content .type-product .product-container .vertical {
  flex-direction: column;
  max-width: 100%;
  display: flex;
}
.single-product #content .type-product .product-container .vertical .cide-tabs-title {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: column;
  min-width: 280px;
  text-align: left;
}
.single-product #content .type-product .product-container .vertical .cide-tabs-title > li {
  margin: 0;
  padding: 0 0 20px 0;
}
.single-product #content .type-product .product-container .product-page-sections {
  margin: 0 auto;
}
.single-product #content .type-product .product-container .product-page-sections .product-section .section-tab-header h5 {
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.single-product #content .type-product .product-container .product-page-sections .product-section .section-tab-header h5::before {
  content: "";
  width: 45px;
  height: 1px;
  background: #e4e4e4;
  position: absolute;
  left: 1px;
  bottom: 0;
}
.single-product #content .type-product .product-container .product-page-sections .product-section .section-tab-content h2 {
  display: none;
}
.single-product #content .type-product .product-container .product-page-sections .product-section ~ .product-section {
  margin-top: 50px;
}
.single-product #content .type-product .product-container .product-page-accordian {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}
.single-product #content .type-product .product-container .product-page-accordian .accordion-item.card {
  border: none;
}
.single-product #content .type-product .product-container .product-page-accordian .accordion-item.card button.btn-link {
  background: none;
  border-radius: 0;
  border-width: 0 0 1px 0;
  border-color: #e4e4e4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 30px;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  color: #232529;
}
.single-product #content .type-product .product-container .product-page-accordian .accordion-item.card button.btn-link svg.fm-icon {
  width: 12px;
  height: 12px;
}
.single-product #content .type-product .product-container .product-page-accordian .accordion-item.card button.btn-link:hover {
  color: #f33c3c;
  text-decoration: none;
}
.single-product #content .type-product .product-container .product-page-accordian .accordion-item.card button.btn-link:not(.collapsed) svg.icon-collapsed {
  display: none;
}
.single-product #content .type-product .product-container .product-page-accordian .accordion-item.card button.btn-link.collapsed svg.icon-not-collapsed {
  display: none;
}
.single-product #content .type-product .product-container .product-page-accordian .accordion-item.card button.btn-link.collapsed svg.icon-collapsed {
  display: inline-block;
}
.single-product #content .type-product .product-container .product-page-accordian .accordion-item.card .accordion-inner {
  padding-top: 1.5rem;
}
.single-product #content .type-product .product-container .product-page-accordian .accordion-item.card .accordion-inner h2,
.single-product #content .type-product .product-container .product-page-accordian .accordion-item.card .accordion-inner .h2 {
  display: none;
}
.single-product #content .type-product .product-container .product-page-accordian .accordion-item.card:first-child button.btn-link {
  border-top: none;
}
.single-product #content .type-product .product-container .product-page-accordian .accordion-item.card:last-child button.btn-link {
  border-bottom: none;
}
.single-product #content .type-product .product-container .product-footer .related.products {
  position: relative;
}
.single-product #content .type-product .product-container .product-footer .related.products:before {
  display: inline-block;
  content: "";
  position: absolute;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  border-top: 1px solid transparent;
}
.single-product #content .type-product .product-container .product-footer .related.products > h2 {
  font-size: 1.5rem;
  position: relative;
  text-align: center;
  padding-bottom: 9px;
  text-transform: capitalize;
}
.single-product #content .type-product .product-container .product-footer .related.products > h2:after {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #f33c3c;
}
.single-product #content .type-product .product-container .product-footer .related.products .cide-carousel.swiper-container-horizontal {
  padding: 20px 20px 50px;
  margin: -20px -20px -50px;
}
.single-product #content .type-product .product-container .product-footer .related.products .cide-carousel.swiper-container-horizontal ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail {
  border: 1px solid #e5e6eb;
  border-radius: 3px;
}
.single-product #content .type-product .product-container .product-footer .up-sells.products {
  position: relative;
}
.single-product #content .type-product .product-container .product-footer .up-sells.products:before {
  display: inline-block;
  content: "";
  position: absolute;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  border-top: 1px solid #e4e4e4;
}
.single-product #content .type-product .product-container .product-footer .up-sells.products > h2 {
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  position: relative;
  text-align: center;
  padding-bottom: 9px;
  text-transform: capitalize;
}
.single-product #content .type-product .product-container .product-footer .up-sells.products > h2:after {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #f33c3c;
}
.single-product #content .type-product .product-container .product-footer .up-sells.products .cide-carousel.swiper-container-horizontal {
  padding: 20px;
  margin: -20px;
}
.single-product #content .type-product .product-container .product-footer .up-sells.products .cide-carousel.swiper-container-horizontal ul.products.products-grid-style.product-item-cide-style-1 li.product .product-thumbnail {
  border: 1px solid #e5e6eb;
  border-radius: 3px;
}
.single-product #content .type-product .product-container .product-footer .cide-carousel > .swiper-pagination-bullets {
  bottom: -2px;
  display: none;
}
.single-product #content .type-product .product-container .product-footer .cide-carousel > .swiper-pagination-bullets .swiper-pagination-bullet {
  display: inline-block;
  padding: 0;
  margin: 0 5px;
  position: relative;
  background: none;
  width: 5px;
  height: 5px;
  margin: 0 4px 0 0;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 90px;
  transition: all 0.3s linear 0s;
}
.single-product #content .type-product .product-container .product-footer .cide-carousel > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 23px;
  margin: 0 9px 0 5px;
  background-color: #f33c3c;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations {
  position: relative;
  margin-bottom: 0;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations tr {
  display: flex;
  margin-bottom: 20px;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations tr td.label {
  min-width: 68px;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations tr td.label .woo-selected-variation-item-name {
  display: none;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations tr td.label label {
  position: relative;
  margin-bottom: 0;
  font-size: 12px;
  text-transform: uppercase;
  color: #000;
  line-height: 30px;
  font-weight: 700;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations tr td.label label::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 28px;
  width: 100%;
  height: 1px;
  background: #000000;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations select {
  background-image: url(//www.mspvn.com/wp-content/themes/cide-child/html/dist/css/pages/images/select_icon_single_product.svg);
  background-position: right 8px top 50%;
  border-radius: 0;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .select2-container--default {
  height: 50px;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .select2-container--default .select2-selection--single {
  border-radius: 0;
  height: 50px;
  line-height: 50px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: bold;
  color: #999999;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .select2-container--default .select2-selection--single > .select2-selection__arrow {
  height: 100%;
  width: 28px;
  background-position: left center;
  background-size: auto;
  background-repeat: no-repeat;
  background-image: url(//www.mspvn.com/wp-content/themes/cide-child/html/dist/css/pages/images/select_icon_single_product.svg);
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .select2-container--default .select2-selection--single > .select2-selection__arrow > b {
  display: none;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item.color-variable-item {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item.color-variable-item span.variable-item-span-color {
  border-radius: 50%;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item.color-variable-item span.variable-item-span-color::after {
  display: none;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item.color-variable-item:not(.radio-variable-item) {
  box-shadow: 0 0 0 1px transparent !important;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item.color-variable-item:not(.radio-variable-item):hover, .single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item.color-variable-item:not(.radio-variable-item).selected {
  box-shadow: 0 0 0 1px #e4e4e4 !important;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item.image-variable-item {
  width: 46px;
  height: 46px;
  padding: 5px;
  border-radius: 50%;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item.image-variable-item:not(.radio-variable-item) {
  box-shadow: 0 0 0 1px transparent !important;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item.image-variable-item:not(.radio-variable-item):hover, .single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item.image-variable-item:not(.radio-variable-item).selected {
  box-shadow: 0 0 0 1px #e4e4e4 !important;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item.image-variable-item > img {
  border-radius: 50%;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item {
  width: auto;
  margin: 0 10px 5px 0;
  font-size: 16px;
  line-height: 18px;
  padding: 0 6px;
  background: none;
  height: 36px;
  min-width: 36px;
  color: #999999;
  transition: box-shadow 0.25s linear 0s;
  border-radius: 0;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item span {
  font-size: inherit;
  text-transform: capitalize;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item:hover, .single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item.selected {
  color: #232529;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item.radio-variable-item {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  margin-right: 16px;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item.radio-variable-item > * {
  margin: 0 3px;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item:not(.radio-variable-item) {
  box-shadow: 0 0 0 1px #e4e4e4 !important;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item:not(.radio-variable-item):hover, .single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item:not(.radio-variable-item).selected {
  box-shadow: 0 0 0 1px #232529 !important;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .variable-items-wrapper.radio-variable-wrapper {
  display: flex;
  align-items: center;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .woo-variation-items-wrapper {
  display: flex;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .reset_variations {
  position: relative;
  display: block;
  margin: 0 0 0 15px;
  color: #000000;
  font-size: 11px;
  padding-right: 15px;
  border-bottom: 1px solid #000000;
  text-decoration: none;
  line-height: inherit;
  height: 26px;
  text-transform: uppercase;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .reset_variations::before, .single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .reset_variations::after {
  display: flex;
  content: "";
  width: 1px;
  height: 10px;
  background: #232529;
  position: absolute;
  right: 5px;
  top: 58%;
  margin-top: -5px;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .reset_variations::before {
  transform: rotate(45deg);
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .reset_variations::after {
  transform: rotate(-45deg);
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .reset_variations:hover {
  color: #f33c3c;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .reset_variations:hover::before, .single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .reset_variations:hover::after {
  background: #f33c3c;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart .single_variation_wrap .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart .single_variation_wrap .woocommerce-variation-add-to-cart .quantity {
  width: 75px;
  flex: 0 0 75px;
  margin: 0 10px 10px 0;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart .single_variation_wrap .woocommerce-variation-price {
  margin-bottom: 15px;
}
.single-product #content .type-product.product-type-variable .woocommerce-variation-add-to-cart {
  display: inline-block;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info form.cart.grouped_form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info form.cart.grouped_form .group_table {
  flex: 0 0 100%;
  border: 1px solid #e4e4e4;
  margin-bottom: 25px;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info form.cart.grouped_form .group_table tr td {
  padding: 10px 0 10px 15px;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info form.cart.grouped_form .group_table tr td.woocommerce-grouped-product-list-item__price {
  padding-left: 0;
  padding-right: 15px;
  text-align: right;
  width: 68px;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info form.cart.grouped_form .group_table tr ~ tr {
  border-top: 1px solid #e4e4e4;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item a.button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item a.button.product_type_simple {
  background: #999999;
  color: #ffffff;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  height: 50px;
  padding: 0 30px;
  min-width: 150px;
  border-radius: 0;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item a.button.product_type_simple svg.fm-icon {
  width: 15px;
  height: 15px;
  margin-right: 6px;
  fill: #ffffff;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item a.button.product_type_simple:hover {
  background: #f33c3c;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item .woocommerce-grouped-product-list-item__quantity .quantity {
  margin: 0;
  border-width: 1px;
  height: 32px;
  border-radius: 16px;
  flex: 0 0 120px;
  min-width: 120px;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item .woocommerce-grouped-product-list-item__quantity .quantity .quantity-group-buttons > a {
  height: 30px;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item .woocommerce-grouped-product-list-item__quantity .quantity .quantity-group-buttons > a svg {
  width: 10px;
  height: 10px;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item .woocommerce-grouped-product-list-item__quantity .quantity .quantity-group-buttons > a.quantity-plus {
  right: 0;
  left: auto;
  border-width: 0;
  border-left: 1px solid #e4e6ec;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item .woocommerce-grouped-product-list-item__quantity .quantity .input-text {
  height: 30px;
  font-size: 15px;
  color: #232529;
  text-align: center;
  padding: 0;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item .woocommerce-grouped-product-list-item__label label {
  margin: 0;
  line-height: 16px;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item .woocommerce-grouped-product-list-item__label label a {
  color: #232529;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item .woocommerce-grouped-product-list-item__price .woocs_price_code {
  line-height: 16px;
  color: #232529;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item .woocommerce-grouped-product-list-item__price .woocs_price_code del {
  color: #999999;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item .woocommerce-grouped-product-list-item__price .woocs_price_code ins {
  text-decoration: none !important;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info form.cart.grouped_form .woocommerce-grouped-product-list .out-of-stock {
  margin-bottom: 0;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info form.cart.grouped_form .single_add_to_cart_button {
  flex: 0 0 100%;
}
.single-product table.shop_attributes {
  border: 1px solid #e4e4e4;
  border-width: 1px 0 0 1px;
  font-size: 15px;
  width: auto;
}
.single-product table.shop_attributes tr th {
  border: 1px solid #e4e4e4;
  border-width: 0 1px 1px 0;
  color: #232529;
  font-weight: 500;
  padding: 15px;
  text-transform: capitalize;
  background: #ffffff !important;
}
.single-product table.shop_attributes tr td {
  border: 1px solid #e4e4e4;
  border-width: 0 1px 1px 0;
  font-style: normal;
  padding: 15px;
  background: #ffffff !important;
}
.single-product #reviews #comments ol.commentlist {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 15px 0;
}
.single-product #reviews #comments ol.commentlist li.review {
  position: relative;
  margin: 0 0 20px 0;
  padding: 20px 20px 10px 20px;
  border: 1px solid #e4e4e4;
  flex: 0 0 100%;
}
.single-product #reviews #comments ol.commentlist li.review:nth-child(2n+1) {
  margin-right: 20px;
}
.single-product #reviews #comments ol.commentlist li.review .comment_container img.avatar {
  float: left;
  position: absolute;
  height: auto;
  background: #c4c4c4;
  border: 1px solid #c4c4c4;
  margin: 0;
  box-shadow: none;
  border-radius: 50%;
  top: 22px;
  left: 15px;
  padding: 0;
  width: 36px;
}
.single-product #reviews #comments ol.commentlist li.review .comment_container .comment-text {
  margin: 0;
  border: none;
  border-radius: 0;
  padding: 0;
}
.single-product #reviews #comments ol.commentlist li.review .comment_container .comment-text .star-rating {
  margin-top: 0;
}
.single-product #reviews #comments ol.commentlist li.review .comment_container .comment-text .meta {
  margin-top: 0;
  margin-bottom: 10px;
}
.single-product #reviews #comments ol.commentlist li.review .comment_container .comment-text .meta .woocommerce-review__author,
.single-product #reviews #comments ol.commentlist li.review .comment_container .comment-text .meta .woocommerce-review__published-date,
.single-product #reviews #comments ol.commentlist li.review .comment_container .comment-text .meta .woocommerce-review__awaiting-approval {
  margin-left: 0;
}
.single-product #reviews #comments ol.commentlist li.review .comment_container .comment-text .meta .woocommerce-review__author {
  font-size: 15px;
  font-weight: 500;
  color: #232529;
  text-transform: uppercase;
}
.single-product #reviews #comments ol.commentlist li.review .comment_container .comment-text .meta .woocommerce-review__dash {
  display: none;
}
.single-product #reviews #comments ol.commentlist li.review .comment_container .comment-text .meta .woocommerce-review__published-date {
  font-size: 13px;
  display: block;
  line-height: 18px;
}
.single-product #reviews #comments ol.commentlist li.review .comment_container .comment-text .description {
  font-size: 15px;
  color: #232529;
}
.single-product #reviews #review_form_wrapper .comment-respond #reply-title {
  font-size: 16px;
  font-weight: 600;
  font-weight: 600;
  color: #232529;
  display: inline-block;
  margin: 0 0 10px 0;
  line-height: 20px;
  text-align: center;
}
.single-product #reviews #review_form_wrapper .comment-respond #commentform {
  display: flex;
  flex-flow: wrap;
}
.single-product #reviews #review_form_wrapper .comment-respond #commentform > * {
  flex: 0 0 100%;
  margin: 0;
}
.single-product #reviews #review_form_wrapper .comment-respond #commentform .comment-form-rating {
  display: flex;
  align-items: center;
  margin: 15px 0;
  color: #232529;
  text-transform: uppercase;
  font-weight: 500;
}
.single-product #reviews #review_form_wrapper .comment-respond #commentform .comment-form-rating > label {
  min-width: 68px;
  margin-right: 10px;
}
.single-product #reviews #review_form_wrapper .comment-respond #commentform .comment-form-rating .stars {
  min-width: 80px;
  line-height: 1;
  margin-right: 10px;
}
.single-product #reviews #review_form_wrapper .comment-respond #commentform .comment-form-rating #rating {
  max-width: 150px;
}
.single-product #reviews #review_form_wrapper .comment-respond #commentform .comment-form-comment {
  position: relative;
  margin-bottom: 20px;
}
.single-product #reviews #review_form_wrapper .comment-respond #commentform .comment-form-comment label {
  color: #232529;
  position: absolute;
  left: 8px;
  top: 0;
  transform: translateY(-10px);
  margin: 0;
  background: #ffffff;
  padding: 0 8px;
  line-height: 20px;
  z-index: 1;
  transition: top 0.25s linear 0s;
}
.single-product #reviews #review_form_wrapper .comment-respond #commentform .comment-form-comment label .required {
  color: inherit;
  font-size: inherit;
}
.single-product #reviews #review_form_wrapper .comment-respond #commentform .comment-form-comment textarea {
  font-size: 15px;
}
.single-product #reviews #review_form_wrapper .comment-respond #commentform .comment-form-comment textarea:focus ~ label, .single-product #reviews #review_form_wrapper .comment-respond #commentform .comment-form-comment textarea.has-content ~ label {
  top: 0;
  transform: translateY(-50%);
  color: #232529;
  width: auto;
}
.single-product #reviews #review_form_wrapper .comment-respond #commentform .form-submit input.submit {
  width: 100%;
  height: 55px;
  border: 1px solid #232529;
  font-size: 14px;
  font-weight: 500;
  color: #232529;
  background: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.single-product #reviews #review_form_wrapper .comment-respond #commentform .form-submit input.submit:hover {
  background: #232529;
  color: #ffffff;
}
.single-product #reviews #review_form_wrapper .comment-respond #commentform .comment-form-author,
.single-product #reviews #review_form_wrapper .comment-respond #commentform .comment-form-email {
  display: block;
  width: 100%;
  text-transform: capitalize;
  position: relative;
  margin: 0 0 20px;
}
.single-product #reviews #review_form_wrapper .comment-respond #commentform .comment-form-author label,
.single-product #reviews #review_form_wrapper .comment-respond #commentform .comment-form-email label {
  color: #232529;
  position: absolute;
  left: 10px;
  top: 0;
  transform: translateY(-50%);
  margin: 0;
  background: #ffffff;
  padding: 0 10px;
  line-height: 20px;
  z-index: 1;
  transition: top 0.25s linear 0s;
}
.single-product #reviews #review_form_wrapper .comment-respond #commentform .comment-form-author label .required,
.single-product #reviews #review_form_wrapper .comment-respond #commentform .comment-form-email label .required {
  color: inherit;
  font-size: inherit;
}
.single-product .fmc-product-control {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.single-product .product-navigation {
  display: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%);
  width: 100vw;
  left: 50%;
  z-index: 1;
}
.single-product .product-navigation .product-nav-item {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.single-product .product-navigation .product-nav-item > a {
  display: flex;
  align-items: center;
}
.single-product .product-navigation .product-nav-item > a svg {
  margin: 0 6px;
}
.single-product .product-navigation .product-nav-item > a .product_thumb {
  display: inline-block;
  width: 80px;
  border: 1px solid #e4e4e4;
  transition: border-color 0.3s;
}
.single-product .product-navigation .product-nav-item > a .product_thumb:hover {
  border-color: #f33c3c;
}
.single-product .product-navigation .product-nav-item > a > span:not(.product_thumb) {
  position: absolute;
}
.single-product .product-navigation .product-nav-item.item-prev {
  left: 30px;
}
.single-product .product-navigation .product-nav-item.item-next {
  right: 30px;
}
.single-product .product-navigation .product-nav-item.item-next > a {
  flex-direction: row-reverse;
}
.single-product .product-navigation .product-nav-item.hover_dropdown_wrapper > .dropdown_content {
  display: none !important;
  box-shadow: none;
  padding: 6px 15px;
}
.single-product .product-navigation .product-nav-item.hover_dropdown_wrapper > .dropdown_content a {
  line-height: 16px;
  color: #232529;
}
.single-product .sticky-wrapper {
  will-change: min-height;
}
.single-product .sticky-wrapper .sticky-inner {
  transform: translate(0, 0); /* For browsers don't support translate3d. */
  transform: translate3d(0, 0, 0);
  will-change: position, transform;
}
.single-product .product-page-accordian,
.single-product .woocommerce-tabs,
.single-product .section-tab-content {
  overflow-wrap: break-word;
}
.single-product.single_product_has_background #content > .container .product-main.has_background .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  opacity: 0.6;
}
.single-product.single_product_has_background #content > .container .product-main.has_background .woocommerce-product-gallery:hover .woocommerce-product-gallery__trigger {
  opacity: 1;
}
.single-product.single_product_has_background #content > .container .product-main.has_background .woocommerce-product-gallery.gallery_style_vertical .flex-control-thumbs li:hover img,
.single-product.single_product_has_background #content > .container .product-main.has_background .woocommerce-product-gallery.gallery_style_vertical .flex-control-thumbs li.swiper-slide-active img {
  opacity: 0.68;
}
.single-product.single_product_color-light .woocommerce-breadcrumb,
.single-product.single_product_color-light #content .type-product .product-container .product-main .product-info h1.product_title,
.single-product.single_product_color-light #content .type-product .product-container .product-main .product-info .price,
.single-product.single_product_color-light #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button,
.single-product.single_product_color-light #content .type-product .product-container .product-main .product-info .product_meta .sku_wrapper .sku,
.single-product.single_product_color-light #content .type-product .product-container .product-main .product-info .product_meta .posted_in a,
.single-product.single_product_color-light #content .type-product .product-container .product-main .product-info form.cart .quantity .input-text {
  color: #FFFFFF;
}
.single-product.single_product_color-light #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button:hover .cide_yith_wcwl_icon,
.single-product.single_product_color-light #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button:hover .cide_tinv_wl_icon {
  border-color: #FFFFFF;
}
.single-product.single_product_color-light #content .type-product .product-container .product-main .product-info .product-share ul.socials-sharing > li svg,
.single-product.single_product_color-light #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button:hover svg.fm-icon {
  fill: #FFFFFF;
}
.single-product.single_product_color-light #content .type-product .product-container .product-main .product-info > .price::before,
.single-product.single_product_color-light #content .type-product .product-container .product-main .product-info .product_meta::before {
  background-color: rgba(85, 85, 85, 0.3137254902);
}
.single-product.single_product_color-light .header-layout {
  border-color: rgba(85, 85, 85, 0.3137254902);
}
.single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth {
  display: flex;
}
.single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}
.single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info .product-content {
  padding-bottom: 0;
}
.single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info .product-content::before {
  display: none;
}
.single-product.single-product-layout-special #content .type-product .product-container .product-main.special.large .product-info .cide-breadcrumb-summary {
  display: none;
}
.single-product #content {
  padding-top: 15px;
  overflow-x: hidden;
}
.single-product .product-main .product-content {
  position: relative;
  padding-bottom: 50px;
  margin-bottom: 27px;
}
.single-product .product-main .product-content .product-info {
  margin-bottom: 0;
}
.single-product .product-main.sidebar-right-full .product-content, .single-product .product-main.sidebar-left-full .product-content {
  padding-bottom: 0;
  margin-bottom: 0;
}
.single-product .product-main.sidebar-right-full .product-content::before, .single-product .product-main.sidebar-left-full .product-content::before {
  display: none !important;
}
.single-product .product-main.sidebar-right-full .product-content > .content-row, .single-product .product-main.sidebar-left-full .product-content > .content-row {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .single-product .product-main.sidebar-right-full .product-content > .content-row, .single-product .product-main.sidebar-left-full .product-content > .content-row {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.single-product .product-footer {
  padding-bottom: 20px;
}
.single-product .product-footer .related,
.single-product .product-footer .up-sells {
  padding-top: 50px;
  margin-top: 50px;
  margin-bottom: 35px;
}
.single-product .product-footer .related ul.products,
.single-product .product-footer .related ul.products li.product,
.single-product .product-footer .up-sells ul.products,
.single-product .product-footer .up-sells ul.products li.product {
  margin-bottom: 0;
}
.single-product .product-footer .related > h2,
.single-product .product-footer .up-sells > h2 {
  margin-bottom: 38px;
}

@media (min-width: 576px) {
  .single-product #content .type-product .product-container .cide-wc-tabs .cide-tabs-title {
    display: block;
    min-width: unset;
  }
  .single-product #content .type-product .product-container .cide-wc-tabs .cide-tabs-title > li {
    width: -moz-max-content;
    width: max-content;
  }
  .single-product #content .type-product .product-container .cide-wc-tabs .cide-tabs-title > li a {
    padding: 0 0 18px 0;
    margin-bottom: 0;
  }
  .single-product #content .type-product .product-container .cide-wc-tabs.vertical {
    display: flex;
  }
  .single-product #content .type-product .product-container .cide-wc-tabs.vertical .cide-tabs-title {
    min-width: 280px;
  }
  .single-product #content .type-product .product-container .cide-wc-tabs.vertical .cide-tabs-title > li {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .flex-control-paging {
    bottom: 30px;
  }
  .single-product .woocommerce-tabs .panel {
    margin-bottom: 30px;
  }
  .single-product .product-footer .related.products .cide-carousel.swiper-container-horizontal {
    padding: 0 20px;
    margin: 0 -20px;
  }
  .single-product #reviews #review_form_wrapper .comment-respond #commentform {
    position: relative;
  }
  .single-product #reviews #review_form_wrapper .comment-respond #commentform .comment-form-comment,
  .single-product #reviews #review_form_wrapper .comment-respond #commentform .cide_comment_fields_group {
    flex: 0 0 100%;
  }
  .single-product #reviews #review_form_wrapper .comment-respond #commentform .comment-form-comment {
    order: 5;
  }
  .single-product #reviews #review_form_wrapper .comment-respond #commentform .comment-form-comment textarea {
    min-height: 205px;
  }
  .single-product #reviews #review_form_wrapper .comment-respond #commentform .form-submit {
    order: 6;
    flex: 0 0 100%;
    margin-left: 0;
  }
  .single-product #reviews #review_form_wrapper .comment-respond #commentform .cide_comment_fields_group {
    margin-right: 20px;
  }
  .single-product #reviews #review_form_wrapper .comment-respond #commentform .cide_comment_fields_group ~ .form-submit {
    margin-left: 0;
    margin-top: 15px;
    transform: translateY(0);
  }
  .single-product #reviews #review_form_wrapper .comment-respond #commentform .comment-form-cookies-consent {
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
  }
  .single-product #reviews #review_form_wrapper .comment-respond #commentform .comment-form-cookies-consent label {
    margin-bottom: 0;
  }
  .single-product #reviews #review_form_wrapper .comment-respond #reply-title {
    font-size: 18px;
  }
  .single-product #reviews #comments ol.commentlist li.review {
    padding-top: 15px;
    padding-left: 20px;
    flex: 0 0 100%;
  }
  .single-product #reviews #comments ol.commentlist li.review:nth-child(2n+1) {
    margin-right: 20px;
  }
  .single-product #reviews #comments ol.commentlist li.review .comment_container img.avatar {
    top: 25px;
    left: 30px;
    padding: 10px;
    width: 60px;
  }
  .single-product #reviews #comments ol.commentlist li.review .comment_container .comment-text .meta {
    margin-top: 5px;
    margin-bottom: 10px;
  }
  .single-product #reviews #comments ol.commentlist li.review .comment_container .comment-text .meta .woocommerce-review__author,
  .single-product #reviews #comments ol.commentlist li.review .comment_container .comment-text .meta .woocommerce-review__published-date,
  .single-product #reviews #comments ol.commentlist li.review .comment_container .comment-text .meta .woocommerce-review__awaiting-approval {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  /* Break Mobile - Single Product */
  .single-product {
    /* Product Style - Special */
  }
  .single-product .woocommerce-product-gallery.gallery_style_vertical {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .single-product .woocommerce-product-gallery.gallery_style_vertical .flex-viewport {
    margin-left: 0 !important;
    max-height: calc(100% - 115px);
    flex: 0 0 calc(100% - 115px);
    width: calc(100% - 115px);
  }
  .single-product .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper {
    position: relative;
    height: 490px;
    max-height: 100%;
    margin: 0;
    width: 92px;
    flex: 0 0 100px;
    max-width: 100px;
  }
  .single-product .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .flex-control-thumbs {
    height: 100%;
  }
  .single-product .product-main .product-content {
    padding-bottom: 15px;
  }
  .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery {
    margin-bottom: 0;
  }
  .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper > .flex-control-thumbs li img {
    width: 100%;
  }
  .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_grid2 {
    margin-bottom: 60px;
  }
  .single-product #content .type-product .product-container .product-main.sidebar-left > .row, .single-product #content .type-product .product-container .product-main.sidebar-left-full > .row, .single-product #content .type-product .product-container .product-main.sidebar-right > .row, .single-product #content .type-product .product-container .product-main.sidebar-right-full > .row {
    flex-direction: row;
  }
  .single-product #content .type-product .product-container .product-main.sidebar-left > .row .product-content > .row, .single-product #content .type-product .product-container .product-main.sidebar-left-full > .row .product-content > .row, .single-product #content .type-product .product-container .product-main.sidebar-right > .row .product-content > .row, .single-product #content .type-product .product-container .product-main.sidebar-right-full > .row .product-content > .row {
    flex-direction: row;
  }
  .single-product #content .type-product .product-container .product-main.sidebar-left .product-info, .single-product #content .type-product .product-container .product-main.sidebar-left-full .product-info, .single-product #content .type-product .product-container .product-main.sidebar-right .product-info, .single-product #content .type-product .product-container .product-main.sidebar-right-full .product-info {
    padding-left: 65px;
    padding-right: 0;
  }
  .single-product #content .type-product .product-container .product-main.sidebar-left .product-sidebar .widget, .single-product #content .type-product .product-container .product-main.sidebar-left-full .product-sidebar .widget, .single-product #content .type-product .product-container .product-main.sidebar-right .product-sidebar .widget, .single-product #content .type-product .product-container .product-main.sidebar-right-full .product-sidebar .widget {
    max-width: 320px;
    margin-left: auto;
  }
  .single-product #content .type-product .product-container .product-main.sidebar-left > .row, .single-product #content .type-product .product-container .product-main.sidebar-left-full > .row {
    flex-direction: row-reverse;
  }
  .single-product #content .type-product .product-container .product-main.sidebar-left .product-sidebar .widget, .single-product #content .type-product .product-container .product-main.sidebar-left-full .product-sidebar .widget {
    margin-left: initial;
  }
  .single-product #content .type-product .product-container .product-main.no-sidebar .product-gallery, .single-product #content .type-product .product-container .product-main.sticky-layout .product-gallery {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .single-product #content .type-product .product-container .product-main.no-sidebar .product-info, .single-product #content .type-product .product-container .product-main.sticky-layout .product-info {
    max-width: 33.333333%;
    width: 33.333333%;
  }
  .single-product #content .type-product .product-container .product-main.sidebar-left .product-gallery, .single-product #content .type-product .product-container .product-main.sidebar-left-full .product-gallery, .single-product #content .type-product .product-container .product-main.sidebar-right .product-gallery, .single-product #content .type-product .product-container .product-main.sidebar-right-full .product-gallery {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .single-product #content .type-product .product-container .product-main.sidebar-left .product-info, .single-product #content .type-product .product-container .product-main.sidebar-left-full .product-info, .single-product #content .type-product .product-container .product-main.sidebar-right .product-info, .single-product #content .type-product .product-container .product-main.sidebar-right-full .product-info {
    max-width: 41.666667%;
    width: 41.666667%;
  }
  .single-product #content .type-product .product-container .product-main.wide-gallery .product-info {
    width: 100%;
    padding-right: 60%;
  }
  .single-product #content .type-product .product-container .product-main.wide-gallery .product-info > form.cart {
    position: absolute;
    right: 0;
    top: 0;
    width: 35%;
  }
  .single-product #content .type-product .product-container .product-main.wide-gallery .product-info::after {
    display: inline-block;
    content: "";
    position: absolute;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-top: 1px solid #e4e4e4;
  }
  .single-product #content .type-product .product-container .product-main.wide-gallery .product-info {
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
  .single-product #content .type-product .product-container .product-main .product-content .product-page-accordian {
    margin-top: 80px;
  }
  .single-product #content .type-product .product-container .product-footer .product-page-sections .product-section .section-tab-content {
    padding-left: 115px;
  }
  .single-product #content .type-product .product-container .product-footer .cide-wc-tabs .cide-tabs-title {
    margin-bottom: 20px;
  }
  .single-product #content .type-product .product-container .product-footer .cide-wc-tabs .cide-tabs-title > li {
    padding: 0 17px;
  }
  .single-product #content .type-product .product-container .product-footer .cide-wc-tabs .cide-tabs-title ~ .woocommerce-Tabs-panel {
    padding: 20px 0;
  }
  .single-product #content .type-product .product-container .product-footer .cide-wc-tabs.vertical {
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .single-product #content .type-product .product-container .product-footer .cide-wc-tabs.vertical .cide-tabs-title {
    border-right: 1px solid #e4e4e4;
    margin-right: 68px;
  }
  .single-product #content .type-product .product-container .product-footer .cide-wc-tabs.vertical .cide-tabs-title > li {
    padding: 20px 0;
  }
  .single-product #content .type-product.product-type-variable .product-container .product-main .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item {
    margin: 0 16px 8px 0;
    padding: 15px;
    height: 48px;
    min-width: 48px;
    border-radius: 3px;
  }
  .single-product.single-product-layout-special #content {
    padding-top: 0;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special .product-content {
    padding-bottom: 0;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.clean .content-row {
    justify-content: space-between;
    align-items: center;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.clean .content-row .product-gallery {
    padding: 0;
    display: block;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.clean .content-row .product-gallery .woocommerce-product-gallery .flex-control-paging {
    bottom: 30px;
    right: 40px;
    margin: 0;
    transform: translateX(0);
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.clean .content-row .product-gallery .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
    bottom: 30px;
    top: auto;
    left: 50px;
    right: auto;
    background: transparent;
    transition: background-color 0.25s linear 0s;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.clean .content-row .product-gallery .woocommerce-product-gallery .woocommerce-product-gallery__trigger:hover {
    background: #ffffff;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.clean .content-row .product-info {
    max-width: 50%;
    width: 50%;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.clean .content-row .product-info .product_clean_wrap {
    position: relative;
    left: 50%;
    top: 50px;
    flex: 0 0 50vw;
    width: 50vw;
    max-width: 50vw;
    transform: translateX(-50vw);
    padding: 0;
    display: block;
    text-align: center;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.clean .content-row .product-info .product_clean_wrap h1.product_title {
    max-width: 450px;
    font-size: 40px;
    line-height: 48px;
    margin-left: auto;
    margin-right: auto;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.clean .content-row .product-info .product_clean_wrap .woocommerce-product-rating {
    justify-content: center;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.clean .content-row .product-info .product_clean_summary_wrap {
    width: 450px;
    max-width: 100%;
    margin-left: auto;
    margin-right: 0;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.modern {
    position: relative;
    height: -moz-max-content;
    height: max-content;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.modern::before {
    display: inline-block;
    content: "";
    position: absolute;
    width: 100vw;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #f6f6f6;
    z-index: 1;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.modern::before .content-row {
    z-index: 2;
    height: -moz-max-content;
    height: max-content;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.modern .content-row {
    justify-content: space-between;
    align-items: center;
    padding: 80px 0 0 0;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.modern .content-row .product-gallery,
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.modern .content-row .product-info {
    position: relative;
    z-index: 3;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.modern .content-row .product-info {
    flex: 0 0 380px;
    max-width: 25%;
    width: 380px;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.modern .content-row .product-info h1.product_title {
    font-size: 40px;
    line-height: 46px;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.modern .content-row .product-info > .price {
    padding-bottom: 0;
    margin-bottom: 20px;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.modern .content-row .product-info > .price::before {
    display: none;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.modern .content-row .product-info form.cart .single_variation_wrap .woocommerce-variation-add-to-cart .quantity {
    flex: 0 0 100%;
    margin: 0 0 15px 0;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.modern .content-row .product-info form.cart .single_add_to_cart_button {
    flex: 0 0 100%;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.modern .content-row .product-info form.cart .quantity {
    flex: 0 0 100%;
    margin: 0 0 15px 0;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.modern .content-row .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item {
    padding: 15px 8px;
    margin: 0 8px 8px 0;
    height: 40px;
    min-width: 40px;
    background: none;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.modern .content-row .product-gallery {
    position: relative;
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
    display: flex;
    justify-content: center;
    padding: 35px 15px 80px 15px;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.modern .content-row .product-gallery .woocommerce-product-gallery .gallery_thumb_swiper {
    margin-top: 10px;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.modern .content-row .product-gallery .woocommerce-product-gallery .flex-control-thumbs:not(swiper-wrapper) {
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.modern .content-row .product-gallery .woocommerce-product-gallery .flex-control-thumbs:not(swiper-wrapper) li {
    margin: 0 5px;
    max-width: 105px;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth {
    display: block;
    position: relative;
    height: -moz-max-content;
    height: max-content;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth::before {
    display: inline-block;
    content: "";
    position: absolute;
    width: 100vw;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #f6f6f6;
    z-index: 1;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth::before .content-row {
    z-index: 2;
    height: -moz-max-content;
    height: max-content;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-gallery {
    display: flex;
    z-index: 2;
    position: relative;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-gallery .woocommerce-product-gallery .flex-viewport {
    position: relative;
    margin: 0;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-gallery .woocommerce-product-gallery .flex-control-thumbs {
    position: absolute;
    top: 120px;
    left: auto;
    z-index: 5;
    right: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-gallery .woocommerce-product-gallery .flex-control-thumbs > li {
    width: 100%;
    max-width: 68px;
    margin-bottom: 10px;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-gallery .woocommerce-product-gallery .flex-control-thumbs > li img {
    border-color: #e4e4e4;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-gallery .woocommerce-product-gallery .flex-control-thumbs > li img:hover, .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-gallery .woocommerce-product-gallery .flex-control-thumbs > li img.flex-active {
    opacity: 0.5;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 60px;
    z-index: 3;
    display: flex;
    flex-direction: column;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info h1.product_title {
    font-size: 40px;
    line-height: 46px;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info > .price {
    padding-bottom: 0;
    margin-bottom: 20px;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info .product_meta {
    padding-top: 0;
    margin-top: 0;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info .price::before,
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info .product_meta::before,
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info .tinv-wraper {
    display: none;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info form.cart {
    order: 2;
    margin: 0;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    max-width: 100%;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info form.cart .quantity,
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info form.cart .single_variation_wrap .woocommerce-variation-add-to-cart .quantity,
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info form.cart button.single_add_to_cart_button {
    margin-bottom: 0 !important;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info form.cart .quantity {
    background: #ffffff;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info form.cart button.single_add_to_cart_button {
    flex: 0 0 280px;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info form.cart table.variations {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info form.cart table.variations tbody {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info form.cart table.variations tbody tr {
    margin-bottom: 0;
    flex-direction: column;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info form.cart table.variations tbody tr td.label label {
    padding: 0 0 10px;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info form.cart table.variations tbody tr td.woo-variation-items-wrapper {
    position: relative;
    padding-right: 50px;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info form.cart table.variations tbody tr td.woo-variation-items-wrapper .reset_variations {
    margin: 0;
    bottom: 5px;
    top: auto;
    position: absolute;
    right: 5px;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info form.cart table.variations .variable-items-wrapper .variable-item {
    margin-bottom: 0 !important;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info form.cart .single_variation_wrap {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info form.cart .single_variation_wrap .woocommerce-variation-add-to-cart {
    justify-content: flex-end;
    flex-wrap: nowrap;
    flex: 0 0 430px;
    max-width: 80%;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info form.cart .single_variation_wrap > .woocommerce-variation {
    margin-right: auto;
    margin-left: 6px;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info form.cart .single_variation_wrap .woocommerce-variation-price {
    margin-bottom: 0;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info form.cart .single_variation_wrap .woocommerce-variation-description {
    display: none;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item {
    margin: 0 10px 5px 0;
    padding: 0 6px;
    height: 36px;
    min-width: 36px;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.large .content-row {
    justify-content: space-between;
    align-items: center;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.large .content-row .product-gallery {
    padding: 0;
    display: block;
    max-width: 55%;
    width: 55%;
    flex: 0 0 55%;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.large .content-row .product-info {
    max-width: 45%;
    width: 495px;
    flex: 0 0 495px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.large .content-row .product-info .product_meta {
    margin-top: 10px;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.large .content-row .product-info .cide-breadcrumb-summary {
    order: -1;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.large .content-row .product-info .cide-breadcrumb-summary .woocommerce-breadcrumb {
    margin-bottom: 0;
  }
  .single-product.single-product-layout-special.single-product-style-fullwidth .site-header, .single-product.single-product-layout-special.single-product-style-modern .site-header, .single-product.single-product-layout-special.single-product-style-clean .site-header {
    position: fixed;
    width: 100%;
  }
  .single-product.single-product-layout-special.single-product-style-clean .site-header .header-layout {
    border-bottom-color: transparent;
  }
  .single-product.single-product-layout-special.single-product-style-clean .site-header .header-layout::after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 0;
    width: 50%;
    height: 1px;
    border-bottom: 1px solid #e4e4e4;
  }
  .single-product.single-product-layout-special.single-product-style-clean .site-header .header-layout.fm-header-sticky.headroom--pinned.headroom--not-top::after {
    display: none;
  }
  .single-product.single-product-layout-special.single-product-style-clean #content > .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .single-product #product-sidebar .widget.cide_featured_box .widget-title {
    display: none;
  }
  .single-product #product-sidebar .widget.cide_featured_box .content-box .icon {
    margin-bottom: 15px;
  }
  .single-product #product-sidebar .widget.cide_featured_box .content-box .content-text .title {
    text-transform: uppercase;
    color: #232529;
    font-size: 14px;
    margin-bottom: 10px;
  }
  .single-product #product-sidebar .widget.cide_featured_box .content-box .content-text .text {
    color: #83868c;
    font-size: 14px;
    line-height: 24px;
  }
}
@media (min-width: 1440px) {
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.clean .content-row {
    margin-left: 0;
    margin-right: 0;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.clean .content-row .product-info .product_clean_wrap {
    top: 0;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.clean .content-row .product-info .product_clean_summary_wrap {
    margin-right: auto;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-gallery .woocommerce-product-gallery .flex-control-thumbs {
    top: 150px;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-gallery .woocommerce-product-gallery .flex-control-thumbs > li {
    max-width: 117px;
    margin-bottom: 15px;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info form.cart table.variations tbody tr {
    flex: 1;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info form.cart table.variations tbody tr td.label label {
    padding: 0 0 20px;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.fullwidth .product-info form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item {
    margin: 0 16px 8px 0;
    padding: 15px;
    height: 48px;
    min-width: 48px;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.large .product-info {
    padding-bottom: 30px;
    padding-top: 30px;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.large .product-info .cide-breadcrumb-summary {
    display: block;
  }
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.large .product-info .cide-breadcrumb-summary .woocommerce-breadcrumb {
    margin-bottom: 10px;
  }
  .single-product.single-product-layout-special.single-product-style-clean #content > .container, .single-product.single-product-layout-special.single-product-style-large #content > .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .single-product.single-product-layout-special.single-product-style-clean .product-footer, .single-product.single-product-layout-special.single-product-style-large .product-footer {
    max-width: 1410px;
    margin-left: auto;
    margin-right: auto;
  }
  .single-product .product-navigation {
    display: block;
  }
}
@media (min-width: 1800px) {
  .single-product.single-product-layout-special #content .type-product .product-container .product-main.special.modern {
    position: relative;
    height: -moz-max-content;
    height: max-content;
    width: 1740px;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 991px) {
  .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_default, .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_vertical {
    margin-bottom: 10px;
  }
  .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper > .swiper-pagination-bullets .swiper-pagination-bullet, .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper > .swiper-pagination-bullets .swiper-pagination-bullet {
    display: inline-block;
    padding: 0;
    margin: 0 5px;
    position: relative;
    background: none;
    width: 18px;
    height: 18px;
  }
  .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper > .swiper-pagination-bullets .swiper-pagination-bullet::before, .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper > .swiper-pagination-bullets .swiper-pagination-bullet::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border: 6px solid #ffffff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
    box-sizing: content-box;
    background: #999;
    border-radius: 50%;
  }
  .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper > .swiper-pagination-bullets .swiper-pagination-bullet::after, .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper > .swiper-pagination-bullets .swiper-pagination-bullet::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: border-color 0.25s;
    -webkit-transition: border-color 0.25s;
  }
  .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active::after, .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    border-color: rgba(0, 0, 0, 0.06);
    border-right-color: rgba(0, 0, 0, 0.6);
  }
  .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_vertical .flex-viewport {
    margin-left: 0;
  }
  .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper {
    position: relative;
    top: -40px;
  }
  .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .flex-control-thumbs,
  .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cide-next,
  .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cide-prev {
    height: 1px;
    visibility: hidden;
    z-index: -1;
  }
  .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .swiper-pagination-bullets {
    display: block;
    position: static;
    transform: translate3d(0, 0, 0);
  }
  .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .swiper-pagination-bullets .swiper-pagination-bullet {
    display: inline-block;
    margin: 0 5px;
  }
  .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper {
    margin-top: 0;
    top: -40px;
  }
  .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .flex-control-thumbs,
  .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cide-next,
  .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cide-prev {
    height: 1px;
    visibility: hidden;
    z-index: -1;
  }
  .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .swiper-pagination-bullets {
    display: block;
    position: static;
  }
  .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_list .wide_gallery_swiper .swiper-pagination {
    display: block;
    bottom: 40px;
  }
  .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .flex-viewport {
    margin-left: 0;
  }
  .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper {
    position: relative;
    margin-top: -40px;
    top: 0;
    margin-bottom: 40px;
  }
  .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .flex-control-thumbs,
  .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cide-next,
  .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cide-prev {
    height: 1px;
    visibility: hidden;
    z-index: -1;
  }
  .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .swiper-pagination-bullets {
    display: block;
    position: static;
    transform: translate3d(0, 0, 0);
  }
  .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .swiper-pagination-bullets .swiper-pagination-bullet {
    display: inline-block;
    margin: 0 5px;
  }
  .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper {
    margin-top: 0;
    top: -40px;
  }
  .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .flex-control-thumbs,
  .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cide-next,
  .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cide-prev {
    height: 1px;
    visibility: hidden;
    z-index: -1;
  }
  .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .swiper-pagination-bullets {
    display: block;
    position: static;
  }
  .single-product #content .type-product .product-container .product-sidebar::before {
    content: "";
    width: 100%;
    display: block;
    margin-top: 30px;
    margin-bottom: 40px;
    border-top: 1px solid #e4e4e4;
  }
}
@media (max-width: 575px) {
  .single-product #content .type-product .product-container .product-main .product-info form.cart .tinv-wraper {
    flex: 0 0 100%;
  }
  .single-product #content .type-product .product-container .product-main .product-info .product_meta {
    flex-direction: column;
  }
  .single-product #content .type-product .product-container .product-main .product-info .product_meta > span + span {
    margin-left: 0;
  }
  .related.products .cide-carousel-wrap .swiper-button-next,
  .related.products .cide-carousel-wrap .swiper-button-prev {
    width: 36px;
    height: 36px;
    left: -10px;
    background-color: transparent;
    box-shadow: none;
  }
  .related.products .cide-carousel-wrap .swiper-button-next.swiper-button-next,
  .related.products .cide-carousel-wrap .swiper-button-prev.swiper-button-next {
    right: -10px;
    left: auto;
  }
}
.cide-mobile.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .flex-viewport {
  margin-left: 0;
}

.single-product .woo_sc_data_content {
  margin: 0;
}
.single-product .woo_sc_modal_content {
  background: #fafafa;
  padding: 15px;
  border-radius: 0;
  box-shadow: none;
}
.single-product div.woo_sc_btn_span span.woo_sc_size_icon {
  background: url(//www.mspvn.com/wp-content/themes/cide-child/html/dist/css/pages/images/icon_sizechart.png) no-repeat transparent;
  background-size: contain;
}
.single-product .woo_sc_frontend_btn div.woo_sc_price_btn_popup {
  margin-top: 0;
  padding: 0;
}
.single-product .woo_sc_frontend_btn div.woo_sc_price_btn_popup:focus, .single-product .woo_sc_frontend_btn div.woo_sc_price_btn_popup:hover {
  outline: none;
  box-shadow: none;
}
.single-product.single_product_has_background .woo_sc_frontend_btn div.woo_sc_price_btn_popup, .single-product.single-product-style-modern .woo_sc_frontend_btn div.woo_sc_price_btn_popup {
  background: none;
}

.cide-sticky-atc-btn {
  padding: 8px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: #fff;
  box-shadow: 0 28px 250px 0 rgba(0, 0, 0, 0.11);
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s ease-in-out, opacity 0.35s ease-in-out, visibility 0.35s ease-in-out;
}
.cide-sticky-atc-btn.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.cide-sticky-atc-btn .cide-sticky-btn-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cide-sticky-atc-btn .cide-sticky-btn-content,
.cide-sticky-atc-btn .cide-sticky-btn-cart,
.cide-sticky-atc-btn .cide-sticky-variations,
.cide-sticky-atc-btn .cide_sticky_single_variation_wrap {
  display: flex;
  align-items: center;
}
.cide-sticky-atc-btn .cide-sticky-btn-cart > form {
  display: flex;
  align-items: center;
}
.cide-sticky-atc-btn .quantity-group-buttons {
  display: none;
}
.cide-sticky-atc-btn.mobile-off,
.cide-sticky-atc-btn .tinv-wishlist,
.cide-sticky-atc-btn .woocommerce-wishlist {
  display: none;
}
.cide-sticky-atc-btn .cide-sticky-btn-price {
  margin-left: auto;
  display: none;
}
.cide-sticky-atc-btn .cide-sticky-btn-info {
  display: none;
}
.cide-sticky-atc-btn .cide-sticky-btn-thumbnail {
  max-width: 60px;
}
.cide-sticky-atc-btn .cide-sticky-btn-info .product-title {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 10px 0 0;
}
.cide-sticky-atc-btn .woocs_price_code {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  font-size: 16px;
  color: #000000;
}
.cide-sticky-atc-btn .woocs_price_code ins {
  color: inherit;
  font-size: inherit;
  margin-right: 15px;
}
.cide-sticky-atc-btn .woocs_price_code del {
  color: #868686;
  font-size: 12px;
}
.cide-sticky-atc-btn .cide-sticky-btn-cart .quantity .qty {
  font-size: 18px;
  font-weight: 500;
  border-width: 0 0 2px 0;
  border-color: #cbcbcb;
  height: 32px;
}
.cide-sticky-atc-btn button.single_add_to_cart_button,
.cide-sticky-atc-btn .cide-sticky-variations-atc,
.cide-sticky-atc-btn .cide-sticky-btn-cart .quantity {
  margin-left: 10px;
}
.single-product .cide-sticky-atc-btn button.single_add_to_cart_button,
.single-product .cide-sticky-atc-btn .cide-sticky-variations-atc {
  border: none;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 16px;
  padding: 15px 25px;
  min-width: 175px;
  text-align: center;
}
.single-product .cide-sticky-atc-btn button.single_add_to_cart_button svg,
.single-product .cide-sticky-atc-btn .cide-sticky-variations-atc svg {
  display: none;
}
.single-product .cide-sticky-atc-btn button.single_add_to_cart_button:hover,
.single-product .cide-sticky-atc-btn .cide-sticky-variations-atc:hover {
  background-color: #000000;
  color: #ffffff;
}
.cide-sticky-atc-btn .woo_sc_price_btn_popup {
  display: none;
}

@media (min-width: 576px) {
  .cide-sticky-atc-btn {
    padding: 15px 0;
  }
  .cide-sticky-atc-btn .cide-sticky-btn-info,
  .cide-sticky-atc-btn .cide-sticky-btn-price {
    display: block;
  }
}
@media (min-width: 992px) {
  .cide-sticky-atc-btn.mobile-off {
    display: block;
  }
  .cide-sticky-atc-btn button.single_add_to_cart_button,
  .cide-sticky-atc-btn .cide-sticky-variations-atc,
  .cide-sticky-atc-btn .cide-sticky-btn-cart .quantity {
    margin-left: 25px;
  }
  .cide-sticky-atc-btn button.single_add_to_cart_button:hover,
  .cide-sticky-atc-btn .cide-sticky-variations-atc:hover,
  .cide-sticky-atc-btn .cide-sticky-btn-cart .quantity:hover {
    background-color: #000000;
  }
  .cide-sticky-atc-btn .cide-sticky-btn-thumbnail {
    margin-right: 20px;
  }
}
a.product-360-button {
  position: absolute;
  z-index: 2;
  left: 45px;
  top: 20px;
  background: #fff;
  line-height: 18px;
  padding: 9px 15px;
  border-radius: 20px;
}
a.product-360-button.on_vertical_thumbs {
  left: 150px;
}
a.product-360-button:hover {
  color: #f33c3c;
}
a.product-360-button:hover svg {
  fill: #f33c3c;
}

.product-360-view-wrapper .modal-content {
  background: transparent;
  border: none;
}
.product-360-view-wrapper .modal-body {
  max-height: 786px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.product-360-view-wrapper .cide-threed-view {
  cursor: ew-resize;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  max-height: 100%;
  height: auto !important;
  background: #ffffff;
}
.product-360-view-wrapper .cide-threed-view::after {
  border-color: rgba(175, 175, 175, 0.05) rgba(175, 175, 175, 0.1) rgba(175, 175, 175, 0.15);
  border-radius: 50%;
  border-style: solid;
  border-width: 2px 2px 5px;
  bottom: 15px;
  content: "";
  height: 50%;
  left: 15px;
  position: absolute;
  right: 15px;
  z-index: 10;
}
.product-360-view-wrapper .cide-threed-view .threed-view-images {
  display: none;
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.product-360-view-wrapper .cide-threed-view .threed-view-images img {
  height: auto;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
}
.product-360-view-wrapper .cide-threed-view .threed-view-images img.current-image {
  position: static;
  visibility: visible;
  z-index: 9;
}
.product-360-view-wrapper .cide-threed-view .threed-view-images img.previous-image {
  visibility: hidden;
}
.product-360-view-wrapper .cide-threed-view .nav_bar {
  bottom: 15px;
  box-shadow: 0 1px 8px 2px rgba(0, 0, 0, 0.15);
  left: 50%;
  background: #fff;
  position: absolute;
  transform: translateX(-50%);
  padding: 0;
  border-radius: 0;
  z-index: 11;
}
.product-360-view-wrapper .cide-threed-view .nav_bar a {
  display: inline-block;
  text-decoration: none;
  font-size: 0;
  text-align: center;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  margin: 5px 8px;
  position: relative;
}
.product-360-view-wrapper .cide-threed-view .nav_bar a:before {
  content: "";
  width: 30px;
  height: 30px;
  font-size: 15px;
  border-radius: 50%;
  background: #f8f8f8;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-360-view-wrapper .cide-threed-view .nav_bar a.nav_bar_previous:before {
  content: "<";
}
.product-360-view-wrapper .cide-threed-view .nav_bar a.nav_bar_play:after {
  content: "";
  border-style: solid;
  display: block;
  position: absolute;
  top: 9px;
  left: 7px;
  border-width: 6px;
  border-color: #aaa #aaa transparent transparent;
  transform: rotateZ(45deg);
  border-radius: 0;
  width: auto;
  height: auto;
}
.product-360-view-wrapper .cide-threed-view .nav_bar a.nav_bar_stop:after {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid #aaa;
  background: #aaa;
  display: block;
  position: absolute;
  top: 8px;
  left: 8px;
}
.product-360-view-wrapper .cide-threed-view .nav_bar a.nav_bar_next:before {
  content: ">";
}
.product-360-view-wrapper .cide-threed-view .spinner {
  text-align: center;
}

/* product video style */
.flex-viewport.has-video {
  height: auto !important;
}

.video-frame {
  position: relative;
}
.video-frame .fmfw-video-iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
  position: absolute;
}
.video-frame .video-lazy-image {
  width: 100%;
  height: auto;
  visibility: hidden;
  opacity: 0;
  max-height: 100%;
}
.video-frame.lazy-video .video-lazy-image {
  opacity: 1;
  visibility: visible;
}
.video-frame.lazy-video .fmfw-video-iframe {
  z-index: -1;
}
.video-frame.lazy-video .fmfw-video-iframe.playing {
  z-index: 1;
}

.product-group-links {
  margin-bottom: 15px;
}
.product-group-links ul,
.product-group-links li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-group-links h3 {
  color: #aaa;
  font-size: 16px;
  margin-bottom: 15px;
}
.product-group-links a {
  border: 1px solid #e0e0e0;
  padding: 10px 15px;
  display: inline-block;
  margin-bottom: 10px;
  color: #333;
}
.product-group-links a:hover {
  color: #2f80ed;
  border-color: #2f80ed;
}

/* lightbox video */
a.product-video-button {
  position: absolute;
  z-index: 2;
  left: 45px;
  top: 20px;
  background: #fff;
  line-height: 18px;
  padding: 9px 15px;
  border-radius: 20px;
}
a.product-video-button.on_vertical_thumbs {
  left: 150px;
}
.product-360-button ~ a.product-video-button {
  top: 60px;
}

.product-video-view-wrapper .modal-content {
  background: transparent;
  border: none;
}
.product-video-view-wrapper .modal-body {
  height: calc(100vh - 200px);
  max-height: 786px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.product-video-view-wrapper .modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
}

@media (min-width: 768px) {
  .single-product #content .type-product .product-container .product-main .product-info .product_meta .posted_in a {
    transition: color 0.3s;
  }
}
@media (min-width: 1200px) {
  .single-product #content {
    padding-top: 15px;
  }
  .single-product #content > .container {
    max-width: 1470px;
  }
}
.page-shop-option .page-heading-wrap { /* Shop Heading */ }
.page-shop-option .page-heading-wrap .shop-heading-content {
  position: relative;
  flex-direction: column;
  justify-content: space-between;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-parent-term-link {
  display: flex;
  margin: 0 2px 0 0;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: box-shadow 0.25s linear 0s;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-parent-term-link svg.fm-icon {
  fill: #232529;
  width: 15px;
  height: 15px;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-parent-term-link:hover {
  box-shadow: 0 0 20px -3px rgba(0, 0, 0, 0.1), 0 7px 6px rgba(0, 0, 0, 0.01);
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .shop-title {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .shop-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 61px;
  height: 3px;
  margin: 0 auto;
  background-color: #232529;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap {
  max-width: 766px;
  margin: 0 auto;
  width: 100%;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-categories-carousel.cide-categories-carousel-layout1 { /* categories icons */ }
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-categories-carousel.cide-categories-carousel-layout1 ul.swiper-wrapper li.category-item {
  text-align: center;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-categories-carousel.cide-categories-carousel-layout1 ul.swiper-wrapper li.category-item a img {
  max-width: 55px;
  max-height: 55px;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-categories-carousel.cide-categories-carousel-layout2 {
  max-width: calc(100% - 60px);
  margin-top: 15px;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-categories-carousel.cide-categories-carousel-layout2 ul.swiper-wrapper li.category-item {
  text-align: center;
  list-style: none;
  padding-top: 0;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-categories-carousel.cide-categories-carousel-layout2 ul.swiper-wrapper li.category-item a img {
  width: 100%;
  max-width: 55px;
  max-height: 55px;
  border-radius: 50%;
  transition: box-shadow 0.25s linear 0s;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-categories-carousel.cide-categories-carousel-layout3 ul.swiper-wrapper li.category-item {
  text-align: center;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-categories-carousel.cide-categories-carousel-layout3 ul.swiper-wrapper li.category-item:not(.swiper-slide-visible) {
  opacity: 0;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-categories-carousel.cide-categories-carousel-layout3 + .cide_navigation_wrap .swiper-button-next, .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-categories-carousel.cide-categories-carousel-layout3 + .cide_navigation_wrap .swiper-button-prev {
  margin-top: 0;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide_navigation_wrap .swiper-button-next,
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide_navigation_wrap .swiper-button-prev {
  height: 36px;
  top: 31%;
  width: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  transition: background-color 0.3s linear 0s, left 0.3s linear 0s, right 0.3s linear 0s;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide_navigation_wrap .swiper-button-next svg,
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide_navigation_wrap .swiper-button-prev svg {
  width: 12px;
  height: 12px;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide_navigation_wrap .swiper-button-next:not(.swiper-button-disabled),
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide_navigation_wrap .swiper-button-prev:not(.swiper-button-disabled) {
  opacity: 0.6;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide_navigation_wrap .swiper-button-next:hover,
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide_navigation_wrap .swiper-button-prev:hover {
  background: #f33c3c;
  color: #ffffff;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide_navigation_wrap .swiper-button-next:hover svg,
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide_navigation_wrap .swiper-button-prev:hover svg {
  fill: #ffffff;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide_navigation_wrap .swiper-button-next {
  right: 10px;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide_navigation_wrap .swiper-button-prev {
  left: 10px;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-carousel {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-carousel ul.swiper-wrapper {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-end;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-carousel ul.swiper-wrapper li.category-item a img {
  max-width: 55px;
  max-height: 55px;
  width: auto;
  height: auto;
  margin-bottom: 5px;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-carousel ul.swiper-wrapper li.category-item a svg {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-carousel ul.swiper-wrapper li.category-item h3 {
  margin: 0;
  display: inline-flex;
  width: 100%;
  justify-content: center;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-carousel ul.swiper-wrapper li.category-item h3 a {
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-block;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-carousel ul.swiper-wrapper li.category-item .count {
  display: none;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .term-description {
  max-width: 766px;
  text-align: center;
  margin: 20px auto 0;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap:hover .cide_navigation_wrap .swiper-button-next:not(:hover),
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap:hover .cide_navigation_wrap .swiper-button-prev:not(:hover) {
  background-color: #ffffff;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap:hover .cide_navigation_wrap .swiper-button-next:not(.swiper-button-disabled),
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap:hover .cide_navigation_wrap .swiper-button-prev:not(.swiper-button-disabled) {
  opacity: 1;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap:hover .cide_navigation_wrap .swiper-button-next {
  right: -10px;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap:hover .cide_navigation_wrap .swiper-button-prev {
  left: -10px;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container.shop_control_categories_layout_layout3 .cide-categories-carousel-layout3 {
  margin: 0px auto -54px !important;
  background-color: #fff;
  border-radius: 3px;
  padding: 39px 15px 40px;
  box-shadow: 0 3px 10px 3px rgba(64, 72, 78, 0.08);
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container.shop_control_categories_layout_layout3 .cide-categories-carousel-layout3 .category-item > a, .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container.shop_control_categories_layout_layout3 .cide-categories-carousel-layout3 .category-item > h3 a {
  color: #232529 !important;
  font-weight: 500;
  letter-spacing: 2px;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container.shop_control_categories_layout_layout3 .cide-categories-carousel-layout3 .category-item > h3 a {
  position: relative;
  margin: 0 20px !important;
  padding-bottom: 5px;
  white-space: nowrap;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container.shop_control_categories_layout_layout3 .cide-categories-carousel-layout3 .category-item > h3 a:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  margin: auto;
  background-color: #f33c3c;
  transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
}
.page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container.shop_control_categories_layout_layout3 .cide-categories-carousel-layout3 .category-item:not(:hover):not(.category-active) > h3 a:after {
  opacity: 0;
  overflow: hidden;
  transform: translateY(3px);
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light .shop-title, .page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light .shop-title a {
  color: #FFFFFF;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light .shop-title svg {
  fill: #FFFFFF;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light .shop-title:after {
  background-color: #FFFFFF;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light .woocommerce-breadcrumb {
  color: #FFFFFF;
}
.woocommerce .page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light .woocommerce-breadcrumb a {
  color: #dddddd;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light .cide-carousel a {
  color: #FFFFFF;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light .cide-carousel a svg {
  fill: #FFFFFF;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light .cide-carousel a::after {
  border-color: #FFFFFF;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light .cide-carousel ul.swiper-wrapper li.category-item h3 a {
  color: #FFFFFF;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light .cide-carousel ul.swiper-wrapper li.category-item:hover h3 a::after, .page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light .cide-carousel ul.swiper-wrapper li.category-item.swiper-slide.active h3 a::after {
  border-bottom-color: #FFFFFF;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light .cide_navigation_wrap .swiper-button-next svg.fm-icon,
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light .cide_navigation_wrap .swiper-button-prev svg.fm-icon {
  fill: #FFFFFF;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light .cide-carousel-wrap:hover .cide_navigation_wrap .swiper-button-next:not(:hover),
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light .cide-carousel-wrap:hover .cide_navigation_wrap .swiper-button-prev:not(:hover) {
  background: #fff;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light .term-description p {
  color: #dddddd;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light a.cide-parent-term-link {
  border-color: rgba(255, 255, 255, 0.25);
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light a.cide-parent-term-link > span {
  color: #FFFFFF;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light a.cide-parent-term-link svg.fm-icon {
  fill: #FFFFFF;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light a.cide-parent-term-link:hover {
  border-color: rgba(255, 255, 255, 0.55);
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-dark .shop-title, .page-shop-option .page-heading-wrap .shop-heading-content.heading-color-dark .shop-title a {
  color: #232529;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-dark .shop-title svg {
  fill: #232529;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-dark .woocommerce-breadcrumb {
  color: #232529;
}
.woocommerce .page-shop-option .page-heading-wrap .shop-heading-content.heading-color-dark .woocommerce-breadcrumb a {
  color: #999999;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-dark .woocommerce-breadcrumb .swiper-button-next svg.fm-icon,
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-dark .woocommerce-breadcrumb .swiper-button-prev svg.fm-icon {
  fill: #232529;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-dark .cide-carousel a {
  color: #232529;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-dark .cide-carousel a svg {
  fill: #232529;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-dark .cide-carousel a::after {
  color: #232529;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-dark .cide-carousel ul.swiper-wrapper li.category-item h3 a {
  color: #232529;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-dark .cide-carousel ul.swiper-wrapper li.category-item:hover h3 a, .page-shop-option .page-heading-wrap .shop-heading-content.heading-color-dark .cide-carousel ul.swiper-wrapper li.category-item.swiper-slide-active h3 a {
  color: #f33c3c;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-dark .cide_navigation_wrap .swiper-button-next svg.fm-icon,
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-dark .cide_navigation_wrap .swiper-button-prev svg.fm-icon {
  fill: #232529;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-center .shop-heading-container .shop-title {
  justify-content: center;
  position: relative;
  padding-bottom: 27px;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-right .shop-heading-container .shop-title {
  justify-content: flex-end;
}
.page-shop-option .page-heading-wrap.has-divider .shop-heading-content {
  border-bottom: 1px solid;
  border-color: #e4e4e4;
}
.page-shop-option #content {
  padding-top: 80px;
}
.page-shop-option #content > .container {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.page-shop-option #content > .container #woof_results_by_ajax, .page-shop-option #content > .container #woof_results_by_ajax > .woocommerce {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.page-shop-option #content > .container .woocommerce-products-header {
  order: 1;
}
.page-shop-option #content > .container .woocommerce-notices-wrapper {
  order: 2;
}
.page-shop-option #content > .container .fmc-shop-control {
  order: 3;
}
.page-shop-option #content > .container .woof_products_top_panel {
  order: 4;
}
.page-shop-option #content > .container ul.products {
  order: 6;
}
.page-shop-option #content > .container .woocommerce-pagination {
  order: 7;
  margin-top: 8px;
}
.page-shop-option #content > .container > .sidebar-right,
.page-shop-option #content > .container > .sidebar-left {
  position: relative;
}
.page-shop-option #content > .container > .sidebar-right .main-shop-control,
.page-shop-option #content > .container > .sidebar-left .main-shop-control {
  margin-bottom: 23px;
}
.page-shop-option .woof_products_top_panel {
  margin: 0 0 15px 0;
}
.page-shop-option .woof_products_top_panel button.woof_reset_button_2 {
  display: none;
}
.page-shop-option .woof_products_top_panel .cide_reset_filter_button {
  display: flex;
  align-items: center;
  float: left;
  margin-right: 20px;
  font-size: 15px;
  color: #000;
  position: relative;
  line-height: 28px;
  padding-bottom: 0;
  font-weight: 500;
}
.page-shop-option .woof_products_top_panel .cide_reset_filter_button svg.fm-icon {
  margin-right: 6px;
  width: 15px;
  height: 15px;
  display: none;
}
.page-shop-option .woof_products_top_panel .cide_reset_filter_button::after {
  height: 1px;
  width: 100%;
  bottom: 3px;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  color: #000;
  background: #000;
}
.page-shop-option .woof_products_top_panel ul li {
  margin-right: 10px;
}
.page-shop-option .woof_products_top_panel ul li a {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  line-height: 24px;
  display: inline-block;
  padding: 2px 15px 2px 15px;
  transition: background-color ease-in-out 0.15s, color ease-in-out 0.15s;
  background-color: #f33c3c;
  border-radius: 14px;
}
.page-shop-option .woof_products_top_panel ul li a .woof_remove_ppi {
  padding-right: 0;
  padding-left: 15px;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: left center;
}
.page-shop-option .woof_products_top_panel ul li:hover a {
  color: #FFF;
  background-color: #232529;
}
.page-shop-option .woof_products_top_panel ul li:focus a {
  color: #FFF;
  background-color: #f33c3c;
}
.page-shop-option .fmc-shop-control.layout1 .before-shop-control .shop-control-quick-search .shop-control-quick-search-form {
  justify-content: center;
  font-size: 24px;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.page-shop-option .fmc-shop-control.layout1 .before-shop-control .shop-control-quick-search .shop-control-quick-search-form > select {
  max-width: 135px;
}
.page-shop-option .fmc-shop-control.layout1 .before-shop-control .shop-control-quick-search .shop-control-quick-search-form > select#product_cat {
  max-width: 168px;
}
.page-shop-option .fmc-shop-control.layout1 .before-shop-control .shop-control-quick-search .shop-control-quick-search-form > .select2-container {
  height: 24px;
  width: auto !important;
}
.page-shop-option .fmc-shop-control.layout1 .before-shop-control .shop-control-quick-search .shop-control-quick-search-form > .select2-container .select2-selection.select2-selection--single {
  border: none;
  height: auto;
  line-height: 24px;
  font-size: 24px;
  color: #232529;
  padding: 0;
}
.page-shop-option .fmc-shop-control.layout1 .before-shop-control .shop-control-quick-search .shop-control-quick-search-form button.filter-submit {
  background: #FFF;
  color: #232529;
  font-size: 11px;
  padding: 0 35px;
  line-height: 34px;
  margin: 0;
  border: 1px solid #232529;
  border-radius: 0;
  transition: color ease-in-out 0.3s, background-color ease-in-out 0.3s;
}
.page-shop-option .fmc-shop-control.layout1 .before-shop-control .shop-control-quick-search .shop-control-quick-search-form button.filter-submit:hover {
  background: #232529;
  color: #ffffff;
}
.page-shop-option .fmc-shop-control.layout1 .before-shop-control .cide-parent-term-link {
  display: none;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.9375rem;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-breadcrumb {
  order: 1;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-result-count {
  order: 2;
  color: #909297;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .cide-filter-button {
  order: 3;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .columns-switcher {
  order: 4;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-ordering {
  order: 5;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control > * {
  margin-bottom: 0;
  line-height: 20px;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-breadcrumb {
  display: none;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-breadcrumb::before, .page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-breadcrumb::after {
  display: none;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-result-count {
  display: none;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .cide-filter-button svg {
  fill: #232529;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .cide-filter-button .cide-filter-btn {
  position: relative;
  text-transform: uppercase;
  display: flex;
  display: -moz-flex;
  display: -ms-flex;
  align-items: center;
  height: 50px;
  border-radius: 3px;
  padding: 0 17px;
  background-color: #f33c3c;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .cide-filter-button .cide-filter-btn svg.fm-icon {
  width: 17px;
  height: 17px;
  transition: fill 0.25s linear 0s;
  margin-left: 0;
  margin-right: 12px;
  fill: #fff;
  transition: fill 0.25s;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .cide-filter-button .cide-filter-btn .filter-title {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  transition: color 0.25s;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .cide-filter-button .cide-filter-btn:before {
  z-index: -1;
  position: absolute;
  left: 0;
  content: "";
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  color: #ffffff;
  background: #f33c3c;
  margin-right: 10px;
  display: none;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .cide-filter-button .cide-filter-btn:not(.c-button), .page-shop-option .fmc-shop-control.layout1 .main-shop-control .cide-filter-button .cide-filter-btn .c-button__text {
  display: flex;
  align-items: center;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .cide-filter-button .cide-filter-btn:hover {
  color: #fff;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .cide-filter-button .cide-filter-btn:hover svg.fm-icon {
  fill: #fff !important;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .cide-filter-button.btn-for-sidebar {
  order: -1;
  margin-right: 15px;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .cide-filter-button:hover {
  opacity: 0.8;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .cide-filter-button:hover .filter-title {
  color: #fff !important;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .columns-switcher {
  display: none;
  align-items: center;
  justify-content: space-between;
  height: 44px;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .columns-switcher > .column-switch-btn {
  margin: 0 0.5rem 0 0;
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .columns-switcher > .column-switch-btn svg {
  width: auto;
  fill: #9f9f9f;
  transition: fill 0.25s linear 0s;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .columns-switcher > .column-switch-btn:hover svg, .page-shop-option .fmc-shop-control.layout1 .main-shop-control .columns-switcher > .column-switch-btn.active svg {
  fill: #f33c3c;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-ordering {
  height: 50px;
  margin-bottom: 0;
  background-color: #fff;
  padding: 0px 20px 0 20px;
  border-radius: 3px;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-ordering select.orderby {
  width: 178px;
  border: none;
  line-height: 50px;
  font-size: inherit;
  height: 50px;
  font-weight: 500;
  padding: 0 20px 0 0;
  background-position: right 0 top 50%;
  content: "";
  background-size: 12px;
  background-repeat: no-repeat;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-ordering select.orderby option {
  padding: 0 20px;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-ordering .select2-container.select2-container--default .select2-selection--single {
  height: auto;
  line-height: 48px;
  border: none;
  font-size: inherit;
  font-weight: 400;
  width: auto;
  padding: 0;
  display: flex;
  display: block;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-ordering .select2-container.select2-container--default .select2-selection--single > .select2-selection__rendered {
  color: #909297;
  padding: 0 20px 0 0 !important;
  position: relative;
  transition: color 0.25s linear 0s;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-ordering .select2-container.select2-container--default .select2-selection--single > .select2-selection__rendered:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 50px;
  position: absolute;
  right: 0;
  background-position: center;
  background-size: 12px;
  background-repeat: no-repeat;
  transform: rotate(90deg);
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-ordering .select2-container.select2-container--default .select2-selection--single > .select2-selection__rendered:hover {
  color: #f33c3c;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-ordering .select2-container.select2-container--default .select2-selection--single > .select2-selection__arrow {
  display: none;
}
.page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-ordering .select2-container.select2-container--default .select2-dropdown {
  min-width: 220px;
  left: -21px;
}
.page-shop-option .fmc-shop-control.control_has_product_tabs .main-shop-control {
  flex-wrap: wrap;
}
.page-shop-option .fmc-shop-control.control_has_product_tabs .fmc-products-tabs a {
  font-weight: 500;
  margin-right: 30px;
  display: inline-block;
  position: relative;
  line-height: 30px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #919191;
  transition: color 0.25s;
}
.page-shop-option .fmc-shop-control.control_has_product_tabs .fmc-products-tabs a::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 100%;
  left: 0;
  bottom: 1px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s linear 0s;
}
.page-shop-option .fmc-shop-control.control_has_product_tabs .fmc-products-tabs a:hover, .page-shop-option .fmc-shop-control.control_has_product_tabs .fmc-products-tabs a.active {
  color: #f33c3c;
}
.page-shop-option .fmc-shop-control.control_has_product_tabs .fmc-products-tabs a.active::after {
  border-bottom-color: #f33c3c;
  opacity: 0.5;
}
.page-shop-option .after-shop-control {
  position: relative;
}
.page-shop-option.shop-page-layout-background { /* Shop Background */ }
.page-shop-option.shop-page-layout-background .shop-heading-simple {
  border-bottom: 1px solid #e4e4e4;
}
.page-shop-option.shop-page-layout-background-modern { /* Shop Background Modern*/ }
.page-shop-option.shop-page-layout-background-modern .shop-heading-content {
  align-items: flex-end;
}
.page-shop-option.shop-page-layout-background-modern .shop-heading-content > .shop-heading-container {
  padding: 0;
}
.page-shop-option.shop-page-layout-background-modern .shop-heading-content .cide-carousel-wrap {
  margin-top: 60px !important;
  padding: 1px 0;
  background-color: #ffffff;
  max-width: 100% !important;
}
.page-shop-option.shop-page-layout-background-modern .shop-heading-content .cide-carousel-wrap .swiper-button-next {
  right: 15px !important;
}
.page-shop-option.shop-page-layout-background-modern .shop-heading-content .cide-carousel-wrap .swiper-button-prev {
  left: 15px !important;
}
.page-shop-option.shop-page-layout-background-modern .shop-heading-content.heading-color-light .cide-carousel a {
  color: #232529;
}
.page-shop-option.shop-page-layout-background-modern .shop-heading-content.heading-color-light .cide-carousel a svg {
  fill: #232529;
}
.page-shop-option.shop-page-layout-background-modern .shop-heading-content.heading-color-light .cide-carousel a::after {
  border-color: #232529;
}
.page-shop-option.shop-page-layout-background-modern .shop-heading-content.heading-color-light .cide-carousel ul.swiper-wrapper li.category-item h3 a {
  color: #232529;
}
.page-shop-option.shop-page-layout-background-modern .shop-heading-content.heading-color-light .cide-carousel ul.swiper-wrapper li.category-item:hover h3 a::after, .page-shop-option.shop-page-layout-background-modern .shop-heading-content.heading-color-light .cide-carousel ul.swiper-wrapper li.category-item.swiper-slide-active h3 a::after {
  border-bottom-color: #f33c3c;
}
.page-shop-option.shop-page-layout-background-modern .shop-heading-content.heading-color-light .cide_navigation_wrap .swiper-button-next svg.fm-icon,
.page-shop-option.shop-page-layout-background-modern .shop-heading-content.heading-color-light .cide_navigation_wrap .swiper-button-prev svg.fm-icon {
  fill: #232529;
}
.page-shop-option.shop-page-layout-background-modern .shop-heading-content.heading-color-light .term-description p {
  color: #dddddd;
}
.page-shop-option.shop-page-layout-background-modern .shop-heading-content.heading-color-light a.cide-parent-term-link {
  border-color: rgba(255, 255, 255, 0.25);
}
.page-shop-option.shop-page-layout-background-modern .shop-heading-content.heading-color-light a.cide-parent-term-link > span {
  color: #232529;
}
.page-shop-option.shop-page-layout-background-modern .shop-heading-content.heading-color-light a.cide-parent-term-link svg.fm-icon {
  fill: #232529;
}
.page-shop-option.shop-page-layout-background-modern .shop-heading-content.heading-color-light a.cide-parent-term-link:hover {
  border-color: rgba(255, 255, 255, 0.55);
}
.page-shop-option.shop-page-layout-background-modern #content {
  padding-top: 0;
}
.page-shop-option.shop-page-layout-background-modern #content > .container {
  background: #ffffff;
  padding-top: 40px;
}
.page-shop-option.shop-page-layout-background-modern #content .woocommerce-pagination {
  margin-bottom: 25px;
}

.filter-content-wrap .WOOF_Widget {
  width: 100%;
}
.filter-content-wrap .WOOF_Widget .widget-woof .widget-title {
  display: none;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner .widget_price_filter > h4, .filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner > h4 {
  font-weight: 500;
  font-size: 20px;
  text-transform: capitalize;
  padding-bottom: 12px;
  margin-bottom: 29px;
  position: relative;
  border-bottom: 1px solid #e4e6ec;
  position: relative;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner .widget_price_filter .price_slider_amount .button {
  height: 36px;
  font-size: 11px;
  line-height: 36px;
  padding: 0 20px;
  margin-top: 3px;
  letter-spacing: 2px;
  background-color: #232529;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner .widget_price_filter .price_slider_amount .button:hover {
  background-color: #f33c3c;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list {
  padding-left: 0;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list li {
  margin: 0 !important;
  padding: 0 !important;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list li > label {
  margin-bottom: 0 !important;
  margin-left: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 400;
  color: #909297;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list li > label:before {
  content: "";
  width: 11px;
  height: 11px;
  border: 1px solid #909297;
  display: inline-block;
  vertical-align: top;
  margin-right: 15px;
  border-radius: 50%;
  margin-top: 7px;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list li > label:hover, .filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list li > label.woof_radio_label_selected {
  color: #f33c3c;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list li > label:hover:before, .filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list li > label.woof_radio_label_selected:before {
  border-color: #f33c3c;
  background-color: #f33c3c;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li > div {
  padding: 0;
  margin: 0 8px 0 0;
  border: 1px solid #e4e4e4;
  width: 15px;
  height: 15px;
  background: none;
  border-radius: 0;
  transition: border-color 0.15s linear 0s;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li > div.checked {
  border-color: #232529;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: 1px center;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li label.woof_checkbox_label {
  font-size: 15px;
  font-weight: 500;
  color: #999999;
  padding: 0;
  margin: 0;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li label.woof_checkbox_label .woof_checkbox_count {
  color: #999999;
  font-weight: normal;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li label.woof_checkbox_label.woof_checkbox_label_selected, .filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li label.woof_checkbox_label:hover {
  color: #232529;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li .woof_childs_list_opener {
  margin-left: auto;
  margin-right: 0;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li .woof_childs_list_opener > span {
  background-size: 15px 15px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  width: 24px;
  height: 24px;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li ul.woof_childs_list {
  flex: 0 0 100%;
  padding-left: 0;
  margin: 8px 0 0 12px !important;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li:not(:last-child) {
  margin: 0 0 8px !important;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li:hover > div {
  border-color: #232529;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox input[type=radio], .filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox input[type=checkbox] {
  margin-bottom: 3px;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li > div {
  padding: 0;
  margin: 0 8px 0 0;
  border-radius: 50%;
  border: 1px solid #e4e4e4;
  width: 15px;
  height: 15px;
  background: none;
  transition: border-color 0.15s linear 0s;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li > div.checked {
  border-color: #232529;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: 1px center;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li label.woof_checkbox_label {
  font-size: 13px;
  font-weight: 500;
  color: #232529;
  padding: 0;
  margin: 0;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li label.woof_checkbox_label .woof_checkbox_count {
  color: #999999;
  font-weight: normal;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li label.woof_checkbox_label.woof_checkbox_label_selected, .filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li label.woof_checkbox_label:hover {
  color: #232529;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li .woof_childs_list_opener {
  margin-left: auto;
  margin-right: 0;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li .woof_childs_list_opener > span {
  background-size: 12px 12px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  width: 24px;
  height: 24px;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li ul.woof_childs_list {
  flex: 0 0 calc(100% - 15px);
  padding-left: 0;
  margin: 8px 0 0 15px !important;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li ul.woof_childs_list li:not(:last-child) {
  margin: 0 0 3px !important;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li ul.woof_childs_list li > label {
  font-size: 15px;
  color: #909297;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li ul.woof_childs_list li > label:hover {
  color: #f33c3c;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li:not(:last-child) {
  margin: 0 0 6px !important;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li:hover > div {
  border-color: #232529;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_color {
  display: flex;
  flex-wrap: wrap;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_color .woof_color_term {
  margin: 0 12px 8px 0;
  border: 2px solid #fafafa;
  padding: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: boxshadow 0.25s linear 0s;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_color .woof_color_term.checked, .filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_color .woof_color_term:hover {
  box-shadow: 0 0 0 1px #232529;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_label {
  display: flex;
  flex-wrap: wrap;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_label li {
  position: relative;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_label li .woof_label_count {
  position: absolute;
  top: 0;
  right: 15px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  background: #999999;
  color: #FFF;
  font-size: 10px;
  font-weight: 500;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_label li .woof_label_term {
  width: auto;
  margin: 0 15px 10px 0;
  font-size: 14px;
  padding: 5px 15px;
  line-height: 32px;
  background: none;
  height: 44px;
  min-width: 44px;
  border-radius: 22px;
  transition: border-color 0.25s linear 0s;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_label li .woof_label_term:hover, .filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_label li .woof_label_term.checked {
  border-color: #000000;
  color: #000000;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_container_color {
  margin-top: 22px;
  padding-bottom: 22px;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_container_color .woof_container_inner > h4 {
  margin-bottom: 27px;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_container_radio .woof_container_inner > h4 {
  margin-bottom: 20px;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_container_radio .woof_list_radio input.woof_radio_term {
  display: none;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_container_product_cat {
  padding-bottom: 35px;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_container_product_cat .woof_container_inner ul.woof_list li > label {
  color: #232529;
  font-size: 18px;
  transition: color 0.3s;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_container_product_cat .woof_container_inner ul.woof_list li > label:hover {
  color: #f33c3c;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_container_product_cat .woof_container_inner ul.woof_list li > label:before {
  display: none;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_container_product_cat .woof_container_inner ul.woof_list li:not(:last-child) {
  margin: 0 0 15px !important;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_container_product_cat .woof_container_inner ul.woof_list li .woof_childs_list_opener .woof_is_closed {
  background-image: none;
  color: #000000;
  text-align: center;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_container_product_cat .woof_container_inner ul.woof_list li .woof_childs_list_opener .woof_is_closed:hover {
  color: #f33c3c;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_container_product_cat .woof_container_inner ul.woof_list li .woof_childs_list_opener .woof_is_closed:after {
  content: "+";
  font-size: 20px;
  font-weight: 500;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_container_product_cat .woof_container_inner ul.woof_list li .woof_childs_list_opener .woof_is_opened {
  background-image: none;
  color: #000000;
  text-align: center;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_container_product_cat .woof_container_inner ul.woof_list li .woof_childs_list_opener .woof_is_opened:hover {
  color: #f33c3c;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_container_product_cat .woof_container_inner ul.woof_list li .woof_childs_list_opener .woof_is_opened:after {
  content: "-";
  font-weight: 500;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_container_pa_size .woof_list_label > li .woof_label_term {
  margin-right: 16px;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter {
  padding-bottom: 26px;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .widget_price_filter .price_slider_amount {
  display: flex;
  flex-direction: column;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .widget_price_filter .price_slider_amount .button {
  order: 1;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs .irs-line .irs-line-left {
  background: #868686;
  height: 3px;
  border-left: none;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs .irs-line .irs-line-mid {
  height: 3px;
  background: #000000;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs .irs-line .irs-line-right {
  background: #868686;
  height: 3px;
  border-right: none;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs .irs-min, .filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs .irs-max, .filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs .irs-from, .filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs .irs-to, .filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs .irs-single {
  border-radius: 0;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs-grid {
  display: none;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs-bar {
  height: 2px;
  background: #000000;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs-slider {
  width: 8px;
  height: 8px;
  top: 20px;
  background: #fff;
  border-radius: 0;
  border: 2px solid #000;
  box-shadow: none;
  box-sizing: content-box;
}
.woocommerce .filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .price_slider_wrapper .ui-widget-content {
  background: #e4e6ec;
  height: 3px;
  margin-bottom: 14px;
}
.woocommerce .filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .price_slider_amount .price_label {
  font-size: 16px;
  color: #909297;
}
.woocommerce .filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .price_slider_amount .price_label > span {
  font-size: 18px;
  color: #232529;
}
.woocommerce .filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .ui-slider-horizontal .ui-slider-range {
  background: #f33c3c;
  height: 3px;
}
.woocommerce .filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .ui-slider .ui-slider-handle {
  width: 16px;
  height: 16px;
  background: #fff;
  border-width: 2px;
  border-color: #f33c3c;
  top: -7px;
  margin-left: -0.5em;
}
.woocommerce .filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .ui-slider .ui-slider-handle:last-child {
  margin-left: -0.6em;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_sku_search_container .woof_sku_search_reset {
  right: 3px;
  top: 15px;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_sku_search_container .woof_sku_search_go {
  right: 23px;
  top: 15px;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_sku_search_container input[type=search] {
  height: 50px;
  box-sizing: border-box;
  border-radius: 3px;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_submit_search_form_container {
  margin: 30px 0 15px 0;
  flex: 0 0 100%;
  max-width: 100%;
}
.sidebar-left .filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_submit_search_form_container, .sidebar-right .filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_submit_search_form_container {
  margin-left: 0;
  margin-right: 0;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_submit_search_form_container button.woof_reset_search_form {
  background: #000;
  height: 48px;
  min-width: 150px;
  color: #FFF;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  transition: background 0.25s linear 0s;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_submit_search_form_container button.woof_reset_search_form:hover {
  background: #f33c3c;
}
.filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_submit_search_form_container button.woof_reset_search_form .sidebar-left, .filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_submit_search_form_container button.woof_reset_search_form .sidebar-right {
  width: 100%;
}
.filter-content-wrap.mobile-dropdown {
  display: flex;
  width: calc(100% - 32px);
  border: 1px solid #ededed;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  position: absolute;
  top: 38px;
  left: 15px;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  background: transparent;
  padding: 15px;
  transition: opacity 0.3s linear 0s;
}
.filter-content-wrap.mobile-dropdown.show {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}
.sidebar-left .filter-content-wrap.mobile-dropdown .woof_container, .sidebar-right .filter-content-wrap.mobile-dropdown .woof_container {
  padding-bottom: 0;
  margin-bottom: 0;
  background-color: #fff;
  border-radius: 3px;
  padding: 13px 27px 24px;
}
.sidebar-left .filter-content-wrap.mobile-dropdown .woof_container + .woof_container, .sidebar-right .filter-content-wrap.mobile-dropdown .woof_container + .woof_container {
  margin-top: 22px;
}
.filter-content-wrap.dropdown {
  display: flex;
  width: 100%;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  background: #FFF;
  transition: opacity 0.3s linear 0s;
  padding: 30px 20px 20px;
  border-radius: 3px;
  box-shadow: 0 3px 10px 3px rgba(64, 72, 78, 0.08);
}
.filter-content-wrap.dropdown > * {
  z-index: 2;
}
.filter-content-wrap.dropdown > .cide-close-filter-btn {
  display: block;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
  transform: translateY(-12px);
  color: #232529;
}
.filter-content-wrap.dropdown > .cide-close-filter-btn svg.fm-icon {
  width: 8px;
  height: 8px;
  margin-right: 6px;
  fill: #232529;
}
.filter-content-wrap.dropdown > .cide-close-filter-btn:hover {
  color: #f33c3c;
}
.filter-content-wrap.dropdown > .cide-close-filter-btn:hover svg.fm-icon {
  fill: #f33c3c;
}
.filter-content-wrap.dropdown > section.WOOF_Widget {
  width: 100%;
  z-index: 2;
}
.filter-content-wrap.dropdown > section.WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  flex-direction: column;
}
.filter-content-wrap.dropdown > section.WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container {
  flex: 1;
  margin: 0;
  padding: 0;
}
.filter-content-wrap.dropdown > section.WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container ~ .woof_container {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e4e4e4;
}
.filter-content-wrap.dropdown.show {
  visibility: visible;
  opacity: 1;
  z-index: 99;
}
#filter-canvas .filter-content-wrap .woof_container {
  padding: 0 15px;
  margin-bottom: 0;
}
#filter-canvas .filter-content-wrap .woof_container + .woof_container {
  margin-top: 35px;
}

#filter-canvas .offcanvas_box_head {
  display: flex;
  align-items: center;
  padding: 15px;
  justify-content: center;
}
#filter-canvas .offcanvas_box_head > h3 {
  height: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  display: none;
}
#filter-canvas .offcanvas_box_head .js-offcanvas-close.cide-close-btn {
  position: static;
}
#filter-canvas .offcanvas_box_head .js-offcanvas-close.cide-close-btn .c-button__text {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  height: 30px;
}
#filter-canvas .offcanvas_box_head .js-offcanvas-close.cide-close-btn svg.fm-icon {
  width: 25px;
  height: 25px;
  fill: #232529;
  border: 1px solid #232529;
  border-radius: 90px;
  padding: 5px;
}
#filter-canvas .offcanvas_box_head .js-offcanvas-close.cide-close-btn svg.fm-icon:hover {
  fill: #f33c3c;
  border: 1px solid #f33c3c;
}
#filter-canvas .offcanvas_box_head .js-offcanvas-close.cide-close-btn .button-title {
  display: none;
  font-size: 9px;
  font-weight: 500;
  line-height: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #232529;
}
#filter-canvas .offcanvas_box_head .js-offcanvas-close.cide-close-btn:focus {
  outline: none;
}
#filter-canvas .offcanvas_box_head .js-offcanvas-close.cide-close-btn:hover .button-title {
  color: #f33c3c;
}
#filter-canvas .offcanvas_box_head .js-offcanvas-close.cide-close-btn:hover svg {
  fill: #f33c3c;
}
#filter-canvas .filter-content-wrap .WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_submit_search_form_container button.woof_reset_search_form {
  width: 100%;
  margin-bottom: 0;
}

.familab_theme div.woof_info_popup {
  font-size: 20px;
  font-family: inherit;
  background: rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  border-radius: 3px;
  border: none;
  color: #232529;
  box-shadow: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.fmc_readmore_cart_desc, .fmc_hide_full_cart_desc {
  display: block;
  margin-top: 10px;
  font-weight: 500;
  clear: both;
  width: 120px;
  height: 32px;
  line-height: 32px;
  color: #FFF;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  text-align: center;
  background: #000;
  margin-right: auto;
  margin-left: auto;
  border-radius: 25px;
  transition: background-color 0.3s, color 0.3s;
}
.fmc_readmore_cart_desc:hover, .fmc_hide_full_cart_desc:hover {
  color: #ffffff;
  background: #f33c3c;
}

.fmc_hide_full_cart_desc {
  margin-top: -16px;
}

.fmc_block_dropdown {
  visibility: hidden;
  opacity: 0;
  height: 0;
  display: block;
  transition: all 0.3s linear 0s;
}
.fmc_block_dropdown.open {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.term-description-short-content {
  max-width: 800px;
  display: inline-block;
}

.term-description {
  background: #fafafa;
  padding: 20px;
}

.term-description-full-content {
  margin-top: 0px;
}

@media (min-width: 576px) {
  .page-shop-option .page-heading-wrap .shop-heading-content.heading-center .shop-heading-container .shop-title {
    margin-bottom: 16px;
    padding-bottom: 26px;
  }
  .page-shop-option .page-heading-wrap .shop-heading-content.heading-center .shop-heading-container .shop-title:after {
    height: 2px;
  }
  .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-carousel ul.swiper-wrapper li.category-item h3 a {
    font-size: 14px;
    letter-spacing: 2px;
  }
  .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-carousel ul.swiper-wrapper li.category-item a img {
    margin-bottom: 5px;
  }
  .woocommerce-page .page-shop-option .page-heading-wrap .shop-heading-content .woocommerce-breadcrumb {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .page-shop-option .page-heading-wrap { /* Shop Heading */ }
  .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-categories-carousel.cide-categories-carousel-layout1 {
    margin-top: 0px;
    padding-bottom: 20px;
  }
  .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-categories-carousel.cide-categories-carousel-layout2 {
    max-width: 686px;
    margin-top: 0px;
    padding-bottom: 30px;
  }
  .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-categories-carousel.cide-categories-carousel-layout2 ul.swiper-wrapper li.category-item {
    padding-top: 10px;
  }
  .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-categories-carousel.cide-categories-carousel-layout2 ul.swiper-wrapper li.category-item a img {
    max-width: 85px;
    max-height: 85px;
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-categories-carousel.cide-categories-carousel-layout2 ul.swiper-wrapper li.category-item:hover a img, .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-categories-carousel.cide-categories-carousel-layout2 ul.swiper-wrapper li.category-item.swiper-slide-active a img {
    box-shadow: 0 0 0 2px #f33c3c;
  }
  .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-carousel {
    margin-top: 35px;
  }
  .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-carousel ul.swiper-wrapper li.category-item a img {
    margin-bottom: 5px;
  }
  .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-carousel ul.swiper-wrapper li.category-item a svg {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-carousel ul.swiper-wrapper li.category-item h3 {
    margin: 0;
  }
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control {
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-breadcrumb {
    order: 1;
  }
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control .cide-filter-button {
    order: 2;
  }
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-result-count {
    order: 3;
  }
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control .columns-switcher {
    order: 4;
  }
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-ordering {
    order: 5;
  }
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control > *:last-child, .page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-ordering, .page-shop-option .fmc-shop-control.layout1 .main-shop-control .columns-switcher {
    /*
    margin-right: 0;
    margin-left: auto;
    */
  }
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-breadcrumb {
    display: block;
    margin-right: 15px;
    font-size: 12px;
  }
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-breadcrumb + .woocommerce-result-count, .page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-breadcrumb + .cide-filter-button {
    padding-left: 15px;
    position: relative;
  }
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-result-count {
    display: block;
  }
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control .cide-filter-button:not(.btn-for-sidebar) {
    margin-right: 15px;
  }
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control .cide-filter-button:hover, .page-shop-option .fmc-shop-control.layout1 .main-shop-control .cide-filter-button:hover .filter-title {
    color: #f33c3c;
  }
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control .cide-filter-button:hover svg {
    fill: #f33c3c;
  }
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control .columns-switcher {
    display: flex;
  }
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control .columns-switcher ~ .woocommerce-ordering {
    margin-left: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control .fmc-products-tabs {
    order: -2;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }
}
@media (min-width: 992px) {
  .page-shop-option #content > .container > .sidebar-right,
  .page-shop-option #content > .container > .sidebar-left {
    margin-left: -10px;
    margin-right: -10px;
  }
  .page-shop-option #content > .container > .sidebar-right > *[class*=col-],
  .page-shop-option #content > .container > .sidebar-left > *[class*=col-] {
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-shop-option .sidebar-right .filter-content-wrap {
    order: 1;
  }
  .page-shop-option .sidebar-right .filter-content-wrap section {
    width: 100%;
  }
  .page-shop-option .sidebar-left .filter-content-wrap {
    order: -1;
  }
  .page-shop-option .sidebar-left .filter-content-wrap section {
    width: 100%;
  }
  .page-shop-option .filter-content-wrap.dropdown {
    flex-direction: row;
  }
  .page-shop-option .filter-content-wrap.dropdown > section.WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone {
    flex-direction: row;
  }
  .page-shop-option .filter-content-wrap.dropdown > section.WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container ~ .woof_container {
    margin: 0 15px 0 0;
    padding-top: 0;
    border-top: none;
  }
  .page-shop-option .filter-content-wrap.mobile-dropdown {
    left: 0;
    width: calc(100% - 4px);
    visibility: visible;
    opacity: 1;
    z-index: 99;
    position: static;
    border: none;
    flex-direction: column;
    width: 100%;
  }
  .page-shop-option .btn-for-sidebar {
    display: none;
  }
}
@media (min-width: 1025px) {
  .page-shop-option .filter-content-wrap.dropdown > section.WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone {
    flex-direction: row;
  }
  .page-shop-option .filter-content-wrap.dropdown > section.WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container ~ .woof_container {
    margin: 0 0 0 2.5rem;
  }
  .page-shop-option #content > .container .sidebar-left .filter-content-wrap.mobile-dropdown,
  .page-shop-option #content > .container .sidebar-left .filter-content-wrap.dropdown, .page-shop-option #content > .container .sidebar-right .filter-content-wrap.mobile-dropdown,
  .page-shop-option #content > .container .sidebar-right .filter-content-wrap.dropdown {
    padding: 0px 0 0 0;
  }
}
@media (min-width: 1200px) {
  .shop-page-layout-full-width .header-container, .shop-page-layout-full-width .footer-container, .shop-page-layout-full-width #content > .container, .shop-page-layout-full-width .shop-heading-container {
    width: 100%;
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
  .page-shop-option #content {
    padding-bottom: 70px;
    padding-top: 100px;
  }
  .page-shop-option .page-heading-wrap { /* Shop Heading */ }
  .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap {
    max-width: 800px;
  }
  .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-carousel.cide-categories-carousel-layout3 {
    max-width: 689px;
  }
  .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide-carousel:not(.swiper-container-initialized) .category-item {
    flex: 1;
  }
  .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container.shop_control_categories_layout_layout3 .cide_navigation_wrap {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    bottom: 17px;
  }
  .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container.shop_control_categories_layout_layout3 .cide_navigation_wrap .swiper-button-prev:not(:hover) svg, .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container.shop_control_categories_layout_layout3 .cide_navigation_wrap .swiper-button-next:not(:hover) svg {
    fill: #999999;
  }
  #filter-canvas .offcanvas-content {
    padding: 0 30px;
  }
}
@media (min-width: 1500px) {
  .shop-page-layout-full-width .header-container,
  .shop-page-layout-full-width .footer-container,
  .shop-page-layout-full-width #content > .container,
  .shop-page-layout-full-width .shop-heading-container {
    width: 100%;
    max-width: 100%;
    padding-left: 88px;
    padding-right: 88px;
  }
}
@media (max-width: 1199px) {
  .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap:hover .cide_navigation_wrap .swiper-button-next {
    right: 0;
  }
  .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap:hover .cide_navigation_wrap .swiper-button-prev {
    left: 0;
  }
  .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container.shop_control_categories_layout_layout3 .cide-categories-carousel-layout3 {
    margin: 0 15px -40px !important;
    padding: 29px 15px 25px;
  }
}
@media (max-width: 767px) {
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-ordering {
    height: 48px;
  }
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-ordering select.orderby {
    height: 48px;
    line-height: 48px;
    width: 120px;
  }
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-ordering .select2-container.select2-container--default .select2-dropdown {
    min-width: 162px;
  }
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-ordering .select2-container.select2-container--default .select2-selection--single {
    line-height: 48px;
  }
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control .woocommerce-ordering .select2-container.select2-container--default .select2-selection--single > .select2-selection__rendered:before {
    height: 48px;
  }
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control .cide-filter-button .cide-filter-btn {
    height: 48px;
  }
}
@media (max-width: 575px) {
  #content > .container .main-shop-control > * {
    display: none;
  }
  #content > .container .main-shop-control > .fmc-products-tabs, #content > .container .main-shop-control > .woocommerce-ordering, #content > .container .main-shop-control > .cide-filter-button {
    display: block;
  }
  #content > .container .main-shop-control .fmc-products-tabs {
    display: none;
  }
  #content > .container .main-shop-control .fmc-products-tabs a {
    margin-right: 15px;
    padding-bottom: 0;
    margin-bottom: 8px;
  }
  #content > .container .main-shop-control .fmc-products-tabs a::after {
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .page-shop-option #content {
    padding-top: 60px;
  }
  .page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light .woocommerce-breadcrumb {
    margin-bottom: 0;
  }
  .page-shop-option .fmc-shop-control.control_has_product_tabs .fmc-products-tabs {
    display: inline-flex;
    flex-wrap: wrap;
  }
  .page-shop-option .fmc-shop-control.control_has_product_tabs .fmc-products-tabs a {
    line-height: 20px;
  }
  .page-shop-option .page-heading-wrap .shop-heading-content.heading-center .shop-heading-container .shop-title {
    margin-bottom: 10px;
    padding-bottom: 14px;
  }
  .page-shop-option .page-heading-wrap .shop-heading-content.heading-center .shop-heading-container .shop-title:after {
    height: 2px;
  }
  .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container.shop_control_categories_layout_layout3 .cide-categories-carousel-layout3 {
    margin: 0 15px -30px !important;
    padding: 19px 15px 20px;
  }
  .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide_navigation_wrap .swiper-button-next {
    top: 21%;
    background-color: #f33c3c !important;
  }
  .page-shop-option .page-heading-wrap .shop-heading-content .shop-heading-container .cide-carousel-wrap .cide_navigation_wrap .swiper-button-prev {
    top: 21%;
    background-color: #f33c3c !important;
  }
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-dark .woocommerce-breadcrumb {
  color: #232529;
}

.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light .woocommerce-breadcrumb a {
  color: #FFFFFF;
}
.page-shop-option .page-heading-wrap .shop-heading-content.heading-color-light .woocommerce-breadcrumb span::before {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

@media (min-width: 768px) {
  .page-shop-option .fmc-shop-control.layout1 .main-shop-control .cide-filter-button {
    order: -1;
  }
}
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 2em;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/* fallback */
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v128/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2) format("woff2");
}
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.elementor-section h2.elementor-heading-title {
  color: #d12f25 !important;
}

.elementor-element.msp-button-blue .fmtpl-button .fmtpl-button-button {
  background-color: #1e73be !important;
  border-color: #1e73be !important;
  color: #fff;
}
.elementor-element.msp-button-blue .fmtpl-button .fmtpl-button-button:hover {
  background-color: #00548e !important;
}
.elementor-element .fmtpl-button .fmtpl-button-button {
  background-color: #d12f25 !important;
  border-color: #d12f25;
  color: #fff !important;
}
.elementor-element .fmtpl-button .fmtpl-button-button:hover {
  background-color: #a6251d !important;
  color: #fff !important;
}

#site-navigation li.menu-item .elementor-heading-title {
  color: #d12f25 !important;
}

.main-navigation ul.nav-menu li.menu-item a:hover {
  color: #d12f25 !important;
}

.header-layout .header-main .header-right-control .header-element.search_box > a {
  padding: 0 15px;
  background-color: transparent;
}

.header-layout .header-main .header-right-control .header-element.search_box .search-btn-modal > a svg.fm-icon {
  fill: #313131 !important;
}

.header-layout .header-main .header-right-control .header-element.search_box > a {
  background-color: transparent !important;
}

span.select2-container.select2-container--default {
  width: 100% !important;
}

.gfield_label {
  color: #000;
}

.gfield_required {
  display: none !important;
}

.gform_wrapper .gform_validation_errors {
  display: none !important;
}

body.page-id-5742 .blog-heading-content {
  margin-bottom: -1px;
}

.single-product #content .type-product .product-container .cide-wc-tabs .cide-tabs-title:before {
  display: none !important;
}

.single-product #content .type-product .product-container .cide-wc-tabs .cide-tabs-title {
  text-align: left !important;
}

.mfp-auto-cursor .mfp-content {
  background-color: #fff;
  border-radius: 10px;
  padding: 45px 30px;
}
@media (min-width: 768px) {
  .mfp-auto-cursor .mfp-content {
    max-width: 650px;
    margin: 0 auto;
    padding: 60px 30px 30px 30px;
  }
}

.btn-woo-flat.familab_theme button.mfp-close {
  background-color: transparent;
  font-size: 30px;
  color: #d12f25;
  border-radius: 10px;
}

.productName {
  color: #313131;
}

.tt-menu {
  width: 100%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.tt-dataset {
  width: 100%;
}
.tt-dataset .product-results-list {
  border-bottom: 1px solid #dadada;
}
.tt-dataset .product-results-list:hover h3 {
  color: #00548e;
}
.tt-dataset .product-results-list:last-child {
  border: 1px solid transparent;
}

.product-results-list {
  width: 100%;
  background-color: #fff;
}
.product-results-list a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.product-results-list a .description {
  padding: 10px;
}
.product-results-list h3 {
  font-size: 18px;
}

.tt-menu {
  background-color: #fff;
  z-index: 1000;
}

.twitter-typeahead {
  width: 100%;
}

.EmptyMessage {
  padding: 10px 15px;
}

.msp-loading {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #d12f25;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.search-wrapform {
  width: 100%;
  position: relative;
}
.search-wrapform span.material-icons {
  position: absolute;
  top: 15px;
  left: 10px;
  font-size: 20px;
}
.search-wrapform input[type=text] {
  padding: 0 30px;
}
.search-wrapform .msp-loading {
  position: absolute;
  top: 11px;
  right: 10px;
}

.msp-categories {
  position: relative;
}
.msp-categories:hover {
  cursor: pointer;
}
.msp-categories .material-icons {
  position: absolute;
  top: 11px;
  right: 30px;
  z-index: 1000;
  color: #fff;
}

.msp-error-404 .material-icons {
  font-size: 100px;
}

.page-heading-content {
  color: #fff !important;
}
.page-heading-content .page-heading-title, .page-heading-content a {
  color: #fff !important;
}
.page-heading-content .page-heading-title:after {
  background-color: #fff !important;
}
.page-heading-content .trail-items .trail-item:not(.trail-end):after {
  border-color: #fff !important;
}

.blog-heading-content {
  height: 300px;
  padding-top: 110px;
  background-image: url(//www.mspvn.com/wp-content/themes/cide-child/html/upload/bg-header.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (min-width: 992px) {
  .blog-heading-content {
    padding-top: 230px;
    height: 450px;
  }
}

.has-flex-center {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .filter-content-wrap.mobile-dropdown {
    background-color: #fff !important;
  }
}
.tinvwl_add_to_wishlist_button {
  display: none !important;
}

.page-heading-content.blog-heading-content.single-page {
  position: relative;
}

.page-heading-content.blog-heading-content.single-page:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.55);
  width: 100%;
}

.btn-mspvn .fmtpl-button-default {
  background-color: #E9662E !important;
  border-color: #E9662E !important;
  line-height: 21px;
  color: #fff !important;
  letter-spacing: 0.36px;
  padding: 13px 26px;
  text-transform: uppercase !important;
  border: 2px solid #E9662E !important;
}

.btn-mspvn .fmtpl-button-default:hover {
  background-color: transparent !important;
  border-color: #E9662E !important;
  color: #E9662E !important;
  border: 2px solid #E9662E !important;
  text-transform: uppercase !important;
}

.header-layout .header-main .header-right-control .header-element.search_box > a {
  padding: 0 15px;
  background-color: transparent;
}

.header-layout .header-main .header-right-control .header-element.search_box > a svg.fm-icon {
  fill: #000 !important;
}

span.select2-container.select2-container--default {
  width: 100% !important;
}

.gfield_label {
  color: #000;
}

.gfield_required {
  display: none !important;
}

.gform_wrapper .gform_validation_errors {
  display: none !important;
}

/*# sourceMappingURL=style.css.map */.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}