@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:var(--wc-form-color-background,#fff);color:var(--wc-form-color-text,#000);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:#444}.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:#444;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:var(--wp-admin-theme-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 var(--wp-admin-theme-color,#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:#444}.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 var(--wp-admin-theme-color,#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 var(--wp-admin-theme-color,#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 var(--wp-admin-theme-color,#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:var(--wp-admin-theme-color,#0073aa)}:root {
  --color_body: #666666;
  --color_main: #b79b6c;
  --color_heading: #1a1a1a;
  --color_border: #e5e5e5;
  --color_link: #1a1a1a;
  --color_link_hover: #b79b6c;
  --color_light: #FFFFFF;
  --color_dark: #1a1a1a;
  --color_button_background: #1a1a1a;
  --color_button_background_hover: #b79b6c;
  --color_input_text: #868686;
  --color_input_text_focus: #1a1a1a;
  --color_input_border: #d9d9d9;
  --color_input_border_focus: #1a1a1a;
  --header_container_width: 1460px;
  --header_height: 76px;
  --header_height_sticky: 76px;
  --header_height_mobile: 60px;
  --header_color_bg: #ffffff;
  --header_color_bg_bottom: #f5f5f5;
  --header_color_bg_sticky: #ffffff;
  --header_color_bg_transparent: transparent;
  --header_color_text: #1a1a1a;
  --header_color_text_bottom: #1a1a1a;
  --header_color_text_sticky: #1a1a1a;
  --header_color_text_transparent: #1a1a1a;
  --header_color_text_hover: #b79b6c;
  --header_color_text_hover_bottom: #b79b6c;
  --header_color_text_hover_sticky: #b79b6c;
  --header_color_text_hover_transparent: #b79b6c;
  --header_color_divider: #d9d9d9;
  --header_color_divider_transparent: #d9d9d930;
  --topbar_height: 40px;
  --topbar_color_bg: #ffffff;
  --topbar_color_divider: #d9d9d9;
  --announcement_bg: #b79b6c;
  --hamburger_canvas_bg: #ffffff;
  --hamburger_canvas_color: #1a1a1a;
  --footer_color: unset;
  --footer_main_color: unset;
  --footer_bg: unset;
  --footer_main_bg: unset;
  --site_content_bg: unset;
  --blog_list_bg: unset;
  --header_logo_width: 92px;
  --header_logo_box_width: 130px;
  --header_logo_padding_top: 0;
  --header_logo_padding_right: 0;
  --header_logo_padding_bottom: 0;
  --header_logo_padding_left: 0;
  --header_logo_width_mobile: 90px;
}

html {
  font-size: 1rem;
}

body {
  position: relative;
  color: var(--color_body);
  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: var(--color_link);
}
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;
}
a:hover {
  color: var(--color_link_hover);
  text-decoration: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--color_heading);
  font-weight: bold;
}

svg {
  max-width: 100%;
  display: inline-block;
  height: auto;
}
svg.fm-icon {
  width: 1rem;
  height: 1rem;
}
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);
}
.header-left-control .hover_dropdown_wrapper .dropdown_content {
  left: 0;
  right: auto;
}

td, th {
  border-color: var(--color_border);
  border-style: solid;
  border-width: 1px;
  padding: 10px;
}

.woocommerce .post-password-form input[type=submit], .familab_theme .post-password-form input[type=submit], .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 {
  display: inline-flex;
  height: 46px;
  padding: 0 15px;
  font-size: 1rem;
  line-height: 1rem;
  letter-spacing: -0.02rem;
  font-weight: bold;
  text-transform: capitalize;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  border: none;
  background-color: var(--color_button_background);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.woocommerce .post-password-form input[type=submit] svg, .familab_theme .post-password-form input[type=submit] svg, .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 .post-password-form input[type=submit]:hover, .familab_theme .post-password-form input[type=submit]:hover, .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: var(--color_button_background_hover);
}

.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 {
  display: inline-flex;
  height: 46px;
  padding: 0 15px;
  font-size: 1rem;
  line-height: 1rem;
  letter-spacing: -0.02rem;
  font-weight: bold;
  text-transform: capitalize;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  border: none;
  background-color: var(--color_button_background);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.familab_theme #respond input#submit.disabled svg,
.familab_theme #respond input#submit:disabled[disabled] svg,
.familab_theme a.button:disabled svg, .familab_theme a.button:disabled[disabled] svg,
.familab_theme button.button:disabled svg,
.familab_theme button.button:disabled[disabled] svg,
.familab_theme input.button:disabled svg,
.familab_theme input.button:disabled[disabled] svg,
.familab_theme #respond input#submit.alt svg, .familab_theme a.button.alt svg,
.familab_theme button.button.alt svg, .familab_theme input.button.alt svg {
  fill: #ffffff;
}

.gostro_comment_fields_group p > label, .comment-form-comment > label, .woocommerce form .form-row label, .woocommerce-page form .form-row label {
  font-weight: 700;
  line-height: 1.25rem;
  margin-bottom: 5px;
}
.gostro_comment_fields_group p > label .required, .comment-form-comment > label .required, .woocommerce form .form-row label .required, .woocommerce-page form .form-row label .required {
  color: inherit;
  font-size: inherit;
}

input[type=email], input[type=search], input[type=number], input[type=url], input[type=tel], input[type=text], input[type=password] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 100%;
  border: 2px solid var(--color_input_border);
  background-color: transparent;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-shadow: none;
  -webkit-transition: border-color 0.35s linear 0s;
  -moz-transition: border-color 0.35s linear 0s;
  -ms-transition: border-color 0.35s linear 0s;
  -o-transition: border-color 0.35s linear 0s;
  transition: border-color 0.35s linear 0s;
  vertical-align: middle;
  padding: 0 1rem;
  height: 46px;
  box-sizing: border-box;
}
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: var(--color_input_border_focus);
  color: var(--color_input_text_focus);
  -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: 0.5rem;
  vertical-align: middle;
}
input[type=search] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: border-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: var(--color_input_border);
  -webkit-text-fill-color: var(--color_input_text);
}
input:focus:-webkit-autofill {
  border-color: var(--color_input_border);
}
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: 2px solid var(--color_input_border);
  background-color: transparent;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-shadow: none;
  -webkit-transition: border-color 0.35s linear 0s;
  -moz-transition: border-color 0.35s linear 0s;
  -ms-transition: border-color 0.35s linear 0s;
  -o-transition: border-color 0.35s linear 0s;
  transition: border-color 0.35s linear 0s;
  vertical-align: middle;
  padding: 0 1rem;
  height: 46px;
  box-sizing: border-box;
  padding: 10px 15px;
  min-height: 190px;
  overflow: auto;
}
textarea:focus {
  outline: none;
  border-color: var(--color_input_border_focus);
  color: var(--color_input_text_focus);
  -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: 2px solid var(--color_input_border);
  background-color: transparent;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-shadow: none;
  -webkit-transition: border-color 0.35s linear 0s;
  -moz-transition: border-color 0.35s linear 0s;
  -ms-transition: border-color 0.35s linear 0s;
  -o-transition: border-color 0.35s linear 0s;
  transition: border-color 0.35s linear 0s;
  vertical-align: middle;
  padding: 0 1rem;
  height: 46px;
  box-sizing: border-box;
  padding-right: 30px;
  background-position: right 10px top 50%;
  background-size: auto 16px;
  background-repeat: no-repeat;
  background-image: url("/wp-content/themes/gostro/assets/images/select_icon.svg");
  padding-left: 15px;
  padding-right: 15px;
}
select:focus {
  outline: none;
  border-color: var(--color_input_border_focus);
  color: var(--color_input_text_focus);
  -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 {
  border-radius: 3px;
  border: 2px solid var(--color_input_border);
  -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: var(--color_input_border_focus);
  color: var(--color_input_text_focus);
  -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;
  padding: 0 1rem;
  height: 46px;
  line-height: 42px;
}
.familab_theme .select2-container--default .select2-selection--single > .select2-selection__arrow {
  height: 100%;
  top: 0;
}
.familab_theme .select2-container--default .select2-selection--single > .select2-selection__rendered {
  display: inline;
  padding-left: 0 !important;
  color: inherit;
  line-height: inherit;
}

.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(/wp-content/themes/gostro/assets/images/select_icon.svg);
}
.shop-control-quick-search .select2-container.select2-container--default .select2-selection--single > .select2-selection__arrow {
  background-image: url(/wp-content/themes/gostro/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: var(--color_heading);
}
.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: var(--color_heading);
}

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

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

#content {
  background-color: var(--site_content_bg);
  padding: 3.5rem 0;
}
.home:not(.blog) #content, #content.content-only {
  padding: 0;
}

.gostro-sidebar-content aside.widget ~ .widget, .product-sidebar aside.widget ~ .widget {
  margin-top: 35px;
  padding-top: 35px;
  border-top: 1px solid var(--color_border);
}
.gostro-sidebar-content aside.widget .widget-title, .gostro-sidebar-content aside.widget .wp-block-group__inner-container > h2, .gostro-sidebar-content aside.widget.widget_search .wp-block-search__label, .product-sidebar aside.widget .widget-title, .product-sidebar aside.widget .wp-block-group__inner-container > h2, .product-sidebar aside.widget.widget_search .wp-block-search__label {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  line-height: 1;
  padding: 0;
  color: var(--color_heading);
  font-weight: bold;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 2rem;
}
.gostro-sidebar-content aside.widget .gostro-posts-list, .product-sidebar aside.widget .gostro-posts-list {
  padding-left: 0;
  padding-right: 0;
  list-style: none;
}
.gostro-sidebar-content aside.widget .gostro-posts-list .post-item, .product-sidebar aside.widget .gostro-posts-list .post-item {
  display: flex;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  counter-increment: my-awesome-counter;
}
.gostro-sidebar-content aside.widget .gostro-posts-list .post-item::before, .product-sidebar aside.widget .gostro-posts-list .post-item::before {
  content: counter(my-awesome-counter);
  font-size: 12px;
  color: #ffffff;
  background: var(--color_heading);
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 20px;
  display: none;
}
.gostro-sidebar-content aside.widget .gostro-posts-list .post-item .post-list-thumb, .product-sidebar aside.widget .gostro-posts-list .post-item .post-list-thumb {
  margin-right: 18px;
  flex: 0 0 82px;
}
.gostro-sidebar-content aside.widget .gostro-posts-list .post-item .post-list-thumb img, .product-sidebar aside.widget .gostro-posts-list .post-item .post-list-thumb img {
  max-width: 100%;
  height: 100%;
  margin-bottom: 0;
  aspect-ratio: 11/8;
  object-fit: cover;
}
.gostro-sidebar-content aside.widget .gostro-posts-list .post-item .post-list-content, .product-sidebar aside.widget .gostro-posts-list .post-item .post-list-content {
  display: flex;
  flex-direction: column;
}
.gostro-sidebar-content aside.widget .gostro-posts-list .post-item .post-list-content .post-list-category, .product-sidebar aside.widget .gostro-posts-list .post-item .post-list-content .post-list-category {
  font-size: 10px;
  line-height: 12px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 6px;
  display: none;
}
.gostro-sidebar-content aside.widget .gostro-posts-list .post-item .post-list-content .post-list-category a, .product-sidebar aside.widget .gostro-posts-list .post-item .post-list-content .post-list-category a {
  color: var(--color_body);
  line-height: inherit;
}
.gostro-sidebar-content aside.widget .gostro-posts-list .post-item .post-list-content .post-list-category:hover a, .product-sidebar aside.widget .gostro-posts-list .post-item .post-list-content .post-list-category:hover a {
  color: var(--color_heading);
}
.gostro-sidebar-content aside.widget .gostro-posts-list .post-item .post-list-content .post-list-title, .product-sidebar aside.widget .gostro-posts-list .post-item .post-list-content .post-list-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25rem;
  color: var(--color_heading);
  margin-bottom: 6px;
  order: 2;
}
.gostro-sidebar-content aside.widget .gostro-posts-list .post-item .post-list-content .post-list-meta, .product-sidebar aside.widget .gostro-posts-list .post-item .post-list-content .post-list-meta {
  font-size: 0.875rem;
  line-height: 1rem;
  color: var(--color_body);
  font-weight: bold;
  order: 1;
  margin-top: -2px;
  margin-bottom: 5px;
  font-style: italic;
}
.gostro-sidebar-content aside.widget .gostro-posts-list .post-item.has_background .cat-links, .product-sidebar aside.widget .gostro-posts-list .post-item.has_background .cat-links {
  font-size: 0;
  line-height: 12px;
  display: none;
}
.gostro-sidebar-content aside.widget .gostro-posts-list .post-item.has_background .cat-links a, .product-sidebar aside.widget .gostro-posts-list .post-item.has_background .cat-links a {
  font-size: 10px;
  line-height: 12px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--color_body);
  display: none;
}
.gostro-sidebar-content aside.widget .gostro-posts-list .post-item.has_background .cat-links a:hover, .product-sidebar aside.widget .gostro-posts-list .post-item.has_background .cat-links a:hover {
  color: var(--color_heading);
}
.gostro-sidebar-content aside.widget .gostro-posts-list .post-item.has_background .cat-links a:first-child, .product-sidebar aside.widget .gostro-posts-list .post-item.has_background .cat-links a:first-child {
  display: block;
}
.gostro-sidebar-content aside.widget .gostro-posts-list .post-item.has_background .post-list-meta .posted-on, .product-sidebar aside.widget .gostro-posts-list .post-item.has_background .post-list-meta .posted-on {
  font-size: 0;
  line-height: 1;
}
.gostro-sidebar-content aside.widget .gostro-posts-list .post-item.has_background .post-list-meta .posted-on a, .product-sidebar aside.widget .gostro-posts-list .post-item.has_background .post-list-meta .posted-on a {
  font-size: 0.875rem;
  line-height: inherit;
  color: var(--color_main);
  font-weight: 400;
  font-style: italic;
}
.gostro-sidebar-content aside.widget .gostro-posts-list .post-item.has_background .post-list-meta .post-author, .product-sidebar aside.widget .gostro-posts-list .post-item.has_background .post-list-meta .post-author {
  display: none;
}
.gostro-sidebar-content aside.widget .gostro-posts-list .post-item:not(.has_background) .post-list-meta .posted-on, .product-sidebar aside.widget .gostro-posts-list .post-item:not(.has_background) .post-list-meta .posted-on {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: inherit;
  color: var(--color_main);
  display: block;
}
.gostro-sidebar-content aside.widget .gostro-posts-list .post-item ~ .post-item, .product-sidebar aside.widget .gostro-posts-list .post-item ~ .post-item {
  margin-top: 1.25rem;
  padding-bottom: 0;
}
.gostro-sidebar-content aside.widget > *, .gostro-sidebar-content aside.widget > ul, .gostro-sidebar-content aside.widget > div, .gostro-sidebar-content aside.widget > form, .product-sidebar aside.widget > *, .product-sidebar aside.widget > ul, .product-sidebar aside.widget > div, .product-sidebar aside.widget > form {
  padding-left: 0;
  padding-right: 0;
}
.gostro-sidebar-content aside.widget > .archive-dropdown, .gostro-sidebar-content aside.widget > select, .product-sidebar aside.widget > .archive-dropdown, .product-sidebar aside.widget > select {
  padding-left: 15px;
  padding-right: 15px;
}
.gostro-sidebar-content aside.widget.widget_search .fm-search-form, .product-sidebar aside.widget.widget_search .fm-search-form {
  height: 46px;
  width: 100%;
}
.gostro-sidebar-content aside.widget.widget_search .fm-search-form .search_suggestions_wrap, .product-sidebar aside.widget.widget_search .fm-search-form .search_suggestions_wrap {
  display: none;
}
.gostro-sidebar-content aside.widget.widget_search .fm-search-form .form-input-wrap, .product-sidebar aside.widget.widget_search .fm-search-form .form-input-wrap {
  display: inline-flex;
  align-items: center;
  align-content: center;
  width: 100%;
}
.gostro-sidebar-content aside.widget.widget_search .fm-search-form .btn_clear_text, .product-sidebar aside.widget.widget_search .fm-search-form .btn_clear_text {
  display: none;
}
.gostro-sidebar-content aside.widget.widget_search .fm-search-form input.search_text_input, .product-sidebar aside.widget.widget_search .fm-search-form input.search_text_input {
  border-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-appearance: none;
}
.gostro-sidebar-content aside.widget.widget_search .fm-search-form input.search_text_input::placeholder, .product-sidebar aside.widget.widget_search .fm-search-form input.search_text_input::placeholder {
  color: inherit;
  font-weight: inherit;
}
.gostro-sidebar-content aside.widget.widget_search .fm-search-form button[type=submit], .product-sidebar aside.widget.widget_search .fm-search-form button[type=submit] {
  width: 54px;
  padding: 0;
  flex: 0 0 54px;
  letter-spacing: 0;
}
.gostro-sidebar-content aside.widget.widget_search .wp-block-search .wp-block-search__input, .product-sidebar aside.widget.widget_search .wp-block-search .wp-block-search__input {
  border-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.gostro-sidebar-content aside.widget.widget_search .wp-block-search .wp-block-search__input::placeholder, .product-sidebar aside.widget.widget_search .wp-block-search .wp-block-search__input::placeholder {
  color: inherit;
  font-weight: inherit;
}
.gostro-sidebar-content aside.widget.widget_search .wp-block-search .wp-block-search__button, .gostro-sidebar-content aside.widget.widget_search .wp-block-search.wp-block-search__text-button .wp-block-search__button, .product-sidebar aside.widget.widget_search .wp-block-search .wp-block-search__button, .product-sidebar aside.widget.widget_search .wp-block-search.wp-block-search__text-button .wp-block-search__button {
  margin: 0;
  width: 80px;
  padding: 0;
  flex: 0 0 80px;
  letter-spacing: 0;
  display: inline-flex;
  height: 46px;
  padding: 0 15px;
  font-size: 1rem;
  line-height: 1rem;
  letter-spacing: -0.02rem;
  font-weight: bold;
  text-transform: capitalize;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  border: none;
  background-color: var(--color_button_background);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.gostro-sidebar-content aside.widget.widget_search .wp-block-search .wp-block-search__button svg, .gostro-sidebar-content aside.widget.widget_search .wp-block-search.wp-block-search__text-button .wp-block-search__button svg, .product-sidebar aside.widget.widget_search .wp-block-search .wp-block-search__button svg, .product-sidebar aside.widget.widget_search .wp-block-search.wp-block-search__text-button .wp-block-search__button svg {
  fill: #ffffff;
}
.gostro-sidebar-content aside.widget.widget_search .wp-block-search .wp-block-search__button:hover, .gostro-sidebar-content aside.widget.widget_search .wp-block-search.wp-block-search__text-button .wp-block-search__button:hover, .product-sidebar aside.widget.widget_search .wp-block-search .wp-block-search__button:hover, .product-sidebar aside.widget.widget_search .wp-block-search.wp-block-search__text-button .wp-block-search__button:hover {
  background-color: var(--color_main);
}
.gostro-sidebar-content aside.widget.widget_categories ul, .gostro-sidebar-content aside.widget ul.wp-block-categories-list, .gostro-sidebar-content aside.widget ul.wc-block-product-categories-list, .gostro-sidebar-content aside.widget.widget_meta ul, .gostro-sidebar-content aside.widget.widget_archive ul, .product-sidebar aside.widget.widget_categories ul, .product-sidebar aside.widget ul.wp-block-categories-list, .product-sidebar aside.widget ul.wc-block-product-categories-list, .product-sidebar aside.widget.widget_meta ul, .product-sidebar aside.widget.widget_archive ul {
  margin-top: -3px;
}
.gostro-sidebar-content aside.widget.widget_categories ul li, .gostro-sidebar-content aside.widget.widget_categories ul li.cat-item-all, .gostro-sidebar-content aside.widget ul.wp-block-categories-list li, .gostro-sidebar-content aside.widget ul.wp-block-categories-list li.cat-item-all, .gostro-sidebar-content aside.widget ul.wc-block-product-categories-list li, .gostro-sidebar-content aside.widget ul.wc-block-product-categories-list li.cat-item-all, .gostro-sidebar-content aside.widget.widget_meta ul li, .gostro-sidebar-content aside.widget.widget_meta ul li.cat-item-all, .gostro-sidebar-content aside.widget.widget_archive ul li, .gostro-sidebar-content aside.widget.widget_archive ul li.cat-item-all, .product-sidebar aside.widget.widget_categories ul li, .product-sidebar aside.widget.widget_categories ul li.cat-item-all, .product-sidebar aside.widget ul.wp-block-categories-list li, .product-sidebar aside.widget ul.wp-block-categories-list li.cat-item-all, .product-sidebar aside.widget ul.wc-block-product-categories-list li, .product-sidebar aside.widget ul.wc-block-product-categories-list li.cat-item-all, .product-sidebar aside.widget.widget_meta ul li, .product-sidebar aside.widget.widget_meta ul li.cat-item-all, .product-sidebar aside.widget.widget_archive ul li, .product-sidebar aside.widget.widget_archive ul li.cat-item-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 20px;
  padding: 8px 0;
  font-size: 12px;
}
.gostro-sidebar-content aside.widget.widget_categories ul li a, .gostro-sidebar-content aside.widget.widget_categories ul li.cat-item-all a, .gostro-sidebar-content aside.widget ul.wp-block-categories-list li a, .gostro-sidebar-content aside.widget ul.wp-block-categories-list li.cat-item-all a, .gostro-sidebar-content aside.widget ul.wc-block-product-categories-list li a, .gostro-sidebar-content aside.widget ul.wc-block-product-categories-list li.cat-item-all a, .gostro-sidebar-content aside.widget.widget_meta ul li a, .gostro-sidebar-content aside.widget.widget_meta ul li.cat-item-all a, .gostro-sidebar-content aside.widget.widget_archive ul li a, .gostro-sidebar-content aside.widget.widget_archive ul li.cat-item-all a, .product-sidebar aside.widget.widget_categories ul li a, .product-sidebar aside.widget.widget_categories ul li.cat-item-all a, .product-sidebar aside.widget ul.wp-block-categories-list li a, .product-sidebar aside.widget ul.wp-block-categories-list li.cat-item-all a, .product-sidebar aside.widget ul.wc-block-product-categories-list li a, .product-sidebar aside.widget ul.wc-block-product-categories-list li.cat-item-all a, .product-sidebar aside.widget.widget_meta ul li a, .product-sidebar aside.widget.widget_meta ul li.cat-item-all a, .product-sidebar aside.widget.widget_archive ul li a, .product-sidebar aside.widget.widget_archive ul li.cat-item-all a {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--color_heading);
  margin-left: 0;
  margin-right: auto;
}
.gostro-sidebar-content aside.widget.widget_categories ul li a::before, .gostro-sidebar-content aside.widget.widget_categories ul li.cat-item-all a::before, .gostro-sidebar-content aside.widget ul.wp-block-categories-list li a::before, .gostro-sidebar-content aside.widget ul.wp-block-categories-list li.cat-item-all a::before, .gostro-sidebar-content aside.widget ul.wc-block-product-categories-list li a::before, .gostro-sidebar-content aside.widget ul.wc-block-product-categories-list li.cat-item-all a::before, .gostro-sidebar-content aside.widget.widget_meta ul li a::before, .gostro-sidebar-content aside.widget.widget_meta ul li.cat-item-all a::before, .gostro-sidebar-content aside.widget.widget_archive ul li a::before, .gostro-sidebar-content aside.widget.widget_archive ul li.cat-item-all a::before, .product-sidebar aside.widget.widget_categories ul li a::before, .product-sidebar aside.widget.widget_categories ul li.cat-item-all a::before, .product-sidebar aside.widget ul.wp-block-categories-list li a::before, .product-sidebar aside.widget ul.wp-block-categories-list li.cat-item-all a::before, .product-sidebar aside.widget ul.wc-block-product-categories-list li a::before, .product-sidebar aside.widget ul.wc-block-product-categories-list li.cat-item-all a::before, .product-sidebar aside.widget.widget_meta ul li a::before, .product-sidebar aside.widget.widget_meta ul li.cat-item-all a::before, .product-sidebar aside.widget.widget_archive ul li a::before, .product-sidebar aside.widget.widget_archive ul li.cat-item-all a::before {
  margin-right: 10px;
  content: "";
  display: block;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #b4b4b4;
  display: none;
}
.gostro-sidebar-content aside.widget.widget_categories ul li a:hover, .gostro-sidebar-content aside.widget.widget_categories ul li.cat-item-all a:hover, .gostro-sidebar-content aside.widget ul.wp-block-categories-list li a:hover, .gostro-sidebar-content aside.widget ul.wp-block-categories-list li.cat-item-all a:hover, .gostro-sidebar-content aside.widget ul.wc-block-product-categories-list li a:hover, .gostro-sidebar-content aside.widget ul.wc-block-product-categories-list li.cat-item-all a:hover, .gostro-sidebar-content aside.widget.widget_meta ul li a:hover, .gostro-sidebar-content aside.widget.widget_meta ul li.cat-item-all a:hover, .gostro-sidebar-content aside.widget.widget_archive ul li a:hover, .gostro-sidebar-content aside.widget.widget_archive ul li.cat-item-all a:hover, .product-sidebar aside.widget.widget_categories ul li a:hover, .product-sidebar aside.widget.widget_categories ul li.cat-item-all a:hover, .product-sidebar aside.widget ul.wp-block-categories-list li a:hover, .product-sidebar aside.widget ul.wp-block-categories-list li.cat-item-all a:hover, .product-sidebar aside.widget ul.wc-block-product-categories-list li a:hover, .product-sidebar aside.widget ul.wc-block-product-categories-list li.cat-item-all a:hover, .product-sidebar aside.widget.widget_meta ul li a:hover, .product-sidebar aside.widget.widget_meta ul li.cat-item-all a:hover, .product-sidebar aside.widget.widget_archive ul li a:hover, .product-sidebar aside.widget.widget_archive ul li.cat-item-all a:hover {
  color: var(--color_main);
}
.gostro-sidebar-content aside.widget.widget_categories ul li.cat-item-all, .gostro-sidebar-content aside.widget ul.wp-block-categories-list li.cat-item-all, .gostro-sidebar-content aside.widget ul.wc-block-product-categories-list li.cat-item-all, .gostro-sidebar-content aside.widget.widget_meta ul li.cat-item-all, .gostro-sidebar-content aside.widget.widget_archive ul li.cat-item-all, .product-sidebar aside.widget.widget_categories ul li.cat-item-all, .product-sidebar aside.widget ul.wp-block-categories-list li.cat-item-all, .product-sidebar aside.widget ul.wc-block-product-categories-list li.cat-item-all, .product-sidebar aside.widget.widget_meta ul li.cat-item-all, .product-sidebar aside.widget.widget_archive ul li.cat-item-all {
  padding-top: 0;
}
.gostro-sidebar-content aside.widget.widget_categories ul li ul.children, .gostro-sidebar-content aside.widget ul.wp-block-categories-list li ul.children, .gostro-sidebar-content aside.widget ul.wc-block-product-categories-list li ul.children, .gostro-sidebar-content aside.widget.widget_meta ul li ul.children, .gostro-sidebar-content aside.widget.widget_archive ul li ul.children, .product-sidebar aside.widget.widget_categories ul li ul.children, .product-sidebar aside.widget ul.wp-block-categories-list li ul.children, .product-sidebar aside.widget ul.wc-block-product-categories-list li ul.children, .product-sidebar aside.widget.widget_meta ul li ul.children, .product-sidebar aside.widget.widget_archive ul li ul.children {
  flex: 0 0 100%;
  padding-left: 12px;
  margin-top: 8px;
}
.gostro-sidebar-content aside.widget.widget_categories ul li ul.children > li:last-child, .gostro-sidebar-content aside.widget ul.wp-block-categories-list li ul.children > li:last-child, .gostro-sidebar-content aside.widget ul.wc-block-product-categories-list li ul.children > li:last-child, .gostro-sidebar-content aside.widget.widget_meta ul li ul.children > li:last-child, .gostro-sidebar-content aside.widget.widget_archive ul li ul.children > li:last-child, .product-sidebar aside.widget.widget_categories ul li ul.children > li:last-child, .product-sidebar aside.widget ul.wp-block-categories-list li ul.children > li:last-child, .product-sidebar aside.widget ul.wc-block-product-categories-list li ul.children > li:last-child, .product-sidebar aside.widget.widget_meta ul li ul.children > li:last-child, .product-sidebar aside.widget.widget_archive ul li ul.children > li:last-child {
  padding-bottom: 0;
}
.gostro-sidebar-content aside.widget.widget_categories ul > ul > li:last-child, .gostro-sidebar-content aside.widget ul.wp-block-categories-list > ul > li:last-child, .gostro-sidebar-content aside.widget ul.wc-block-product-categories-list > ul > li:last-child, .gostro-sidebar-content aside.widget.widget_meta ul > ul > li:last-child, .gostro-sidebar-content aside.widget.widget_archive ul > ul > li:last-child, .product-sidebar aside.widget.widget_categories ul > ul > li:last-child, .product-sidebar aside.widget ul.wp-block-categories-list > ul > li:last-child, .product-sidebar aside.widget ul.wc-block-product-categories-list > ul > li:last-child, .product-sidebar aside.widget.widget_meta ul > ul > li:last-child, .product-sidebar aside.widget.widget_archive ul > ul > li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.gostro-sidebar-content aside.widget.widget_nav_menu li.menu-item, .product-sidebar aside.widget.widget_nav_menu li.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 20px;
  padding: 8px 0;
  font-size: 16px;
}
.gostro-sidebar-content aside.widget.widget_nav_menu li.menu-item a, .product-sidebar aside.widget.widget_nav_menu li.menu-item a {
  display: flex;
  align-items: center;
  font-size: inherit;
  font-weight: 400;
  text-transform: capitalize;
  margin-left: 0;
  margin-right: auto;
}
.gostro-sidebar-content aside.widget.widget_nav_menu li.menu-item a.toggle-submenu, .product-sidebar aside.widget.widget_nav_menu li.menu-item a.toggle-submenu {
  display: none;
}
.gostro-sidebar-content aside.widget.widget_nav_menu li.menu-item a:not(:hover), .product-sidebar aside.widget.widget_nav_menu li.menu-item a:not(:hover) {
  color: var(--color_heading);
}
.gostro-sidebar-content aside.widget.widget_nav_menu li.menu-item-has-children, .product-sidebar aside.widget.widget_nav_menu li.menu-item-has-children {
  padding-bottom: 0;
  border-bottom: none;
}
.gostro-sidebar-content aside.widget.widget_nav_menu li.menu-item-has-children ul.sub-menu, .product-sidebar aside.widget.widget_nav_menu li.menu-item-has-children ul.sub-menu {
  margin-top: 8px;
  flex: 0 0 100%;
  padding-left: 12px;
}
.gostro-sidebar-content aside.widget.widget_nav_menu > li:first-child, .product-sidebar aside.widget.widget_nav_menu > li:first-child {
  padding-top: 0;
}
.gostro-sidebar-content aside.widget.widget_archive li a::before, .product-sidebar aside.widget.widget_archive li a::before {
  margin-right: 10px;
  content: "";
  display: block;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #b4b4b4;
}
.gostro-sidebar-content aside.widget.widget_archive li a:hover::before, .product-sidebar aside.widget.widget_archive li a:hover::before {
  border-left-color: var(--color_main);
}
.gostro-sidebar-content aside.widget.widget_archive li:last-child, .product-sidebar aside.widget.widget_archive li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.gostro-sidebar-content aside.widget.widget_archive > li:first-child, .product-sidebar aside.widget.widget_archive > li:first-child {
  padding-top: 0;
}
.gostro-sidebar-content aside.widget.widget_archive .select2-container, .product-sidebar aside.widget.widget_archive .select2-container {
  max-width: 100%;
}
.gostro-sidebar-content aside.widget.gostro_newsletter .text, .product-sidebar aside.widget.gostro_newsletter .text {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.gostro-sidebar-content aside.widget.gostro_newsletter .fm_newsletter_form, .product-sidebar aside.widget.gostro_newsletter .fm_newsletter_form {
  display: flex;
  height: 46px;
}
.gostro-sidebar-content aside.widget.gostro_newsletter .fm_newsletter_form input[type=email], .product-sidebar aside.widget.gostro_newsletter .fm_newsletter_form input[type=email] {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-width: 1px;
}
.gostro-sidebar-content aside.widget.gostro_newsletter .fm_newsletter_form input[type=submit], .product-sidebar aside.widget.gostro_newsletter .fm_newsletter_form input[type=submit] {
  height: 100%;
  display: inline-flex;
  height: 46px;
  padding: 0 15px;
  font-size: 1rem;
  line-height: 1rem;
  letter-spacing: -0.02rem;
  font-weight: bold;
  text-transform: capitalize;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  border: none;
  background-color: var(--color_button_background);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.gostro-sidebar-content aside.widget.gostro_newsletter .fm_newsletter_form input[type=submit] svg, .product-sidebar aside.widget.gostro_newsletter .fm_newsletter_form input[type=submit] svg {
  fill: #ffffff;
}
.gostro-sidebar-content aside.widget.gostro_newsletter .fm_newsletter_form input[type=submit]:hover, .product-sidebar aside.widget.gostro_newsletter .fm_newsletter_form input[type=submit]:hover {
  background-color: var(--color_main);
}
.gostro-sidebar-content aside.widget.widget_tag_cloud, .gostro-sidebar-content aside.widget.widget_product_tag_cloud, .product-sidebar aside.widget.widget_tag_cloud, .product-sidebar aside.widget.widget_product_tag_cloud {
  margin-bottom: 35px;
}
.gostro-sidebar-content aside.widget.widget_tag_cloud .tagcloud, .gostro-sidebar-content aside.widget.widget_tag_cloud .wp-block-tag-cloud, .gostro-sidebar-content aside.widget.widget_product_tag_cloud .tagcloud, .gostro-sidebar-content aside.widget.widget_product_tag_cloud .wp-block-tag-cloud, .product-sidebar aside.widget.widget_tag_cloud .tagcloud, .product-sidebar aside.widget.widget_tag_cloud .wp-block-tag-cloud, .product-sidebar aside.widget.widget_product_tag_cloud .tagcloud, .product-sidebar aside.widget.widget_product_tag_cloud .wp-block-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.gostro-sidebar-content aside.widget.widget_tag_cloud .tagcloud a, .gostro-sidebar-content aside.widget.widget_tag_cloud .wp-block-tag-cloud a, .gostro-sidebar-content aside.widget.widget_product_tag_cloud .tagcloud a, .gostro-sidebar-content aside.widget.widget_product_tag_cloud .wp-block-tag-cloud a, .product-sidebar aside.widget.widget_tag_cloud .tagcloud a, .product-sidebar aside.widget.widget_tag_cloud .wp-block-tag-cloud a, .product-sidebar aside.widget.widget_product_tag_cloud .tagcloud a, .product-sidebar aside.widget.widget_product_tag_cloud .wp-block-tag-cloud a {
  display: inline-block;
  font-size: 16px !important;
  font-weight: 400;
  color: var(--color_body);
  border: 1px solid var(--color_border);
  padding: 0.75rem 1rem;
  line-height: 18px;
  margin: 0 5px 10px 5px;
  text-transform: capitalize;
  -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;
}
.gostro-sidebar-content aside.widget.widget_tag_cloud .tagcloud a:hover, .gostro-sidebar-content aside.widget.widget_tag_cloud .wp-block-tag-cloud a:hover, .gostro-sidebar-content aside.widget.widget_product_tag_cloud .tagcloud a:hover, .gostro-sidebar-content aside.widget.widget_product_tag_cloud .wp-block-tag-cloud a:hover, .product-sidebar aside.widget.widget_tag_cloud .tagcloud a:hover, .product-sidebar aside.widget.widget_tag_cloud .wp-block-tag-cloud a:hover, .product-sidebar aside.widget.widget_product_tag_cloud .tagcloud a:hover, .product-sidebar aside.widget.widget_product_tag_cloud .wp-block-tag-cloud a:hover {
  color: var(--color_heading);
  border-color: var(--color_heading);
}
.gostro-sidebar-content aside.widget.widget_recent_comments ul, .product-sidebar aside.widget.widget_recent_comments ul {
  list-style: none;
}
.gostro-sidebar-content aside.widget.widget_pages li.page_item.page_item_has_children, .product-sidebar aside.widget.widget_pages li.page_item.page_item_has_children {
  padding-bottom: 0;
}
.gostro-sidebar-content aside.widget.widget_pages li.page_item.page_item_has_children > ul.children, .product-sidebar aside.widget.widget_pages li.page_item.page_item_has_children > ul.children {
  margin-top: 8px;
}
.gostro-sidebar-content aside.widget.widget_pages > ul > li.page_item:first-child, .product-sidebar aside.widget.widget_pages > ul > li.page_item:first-child {
  padding-top: 0;
}
.gostro-sidebar-content aside.widget.widget_pages > ul > li.page_item:last-child, .product-sidebar aside.widget.widget_pages > ul > li.page_item:last-child {
  padding-bottom: 0;
}
.gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list {
  margin-top: -3px;
}
.gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li.cat-item-all, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li.cat-item-all, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li.cat-item-all, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li.cat-item-all, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li.cat-item-all, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li.cat-item-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 20px;
  padding: 8px 0;
  font-size: 12px;
}
.gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li a, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li.cat-item-all a, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li a, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li.cat-item-all a, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li a, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li.cat-item-all a, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li a, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li.cat-item-all a, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li a, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li.cat-item-all a, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li a, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li.cat-item-all a {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--color_heading);
  margin-left: 0;
  margin-right: auto;
}
.gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li a::before, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li.cat-item-all a::before, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li a::before, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li.cat-item-all a::before, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li a::before, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li.cat-item-all a::before, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li a::before, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li.cat-item-all a::before, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li a::before, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li.cat-item-all a::before, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li a::before, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li.cat-item-all a::before {
  margin-right: 10px;
  content: "";
  display: block;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #b4b4b4;
  display: none;
}
.gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li a:hover, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li.cat-item-all a:hover, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li a:hover, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li.cat-item-all a:hover, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li a:hover, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li.cat-item-all a:hover, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li a:hover, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li.cat-item-all a:hover, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li a:hover, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li.cat-item-all a:hover, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li a:hover, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li.cat-item-all a:hover {
  color: var(--color_main);
}
.gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li.cat-item-all, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li:first-child, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li.cat-item-all, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li:first-child, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li.cat-item-all, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li:first-child, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li.cat-item-all, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li:first-child, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li.cat-item-all, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li:first-child, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li.cat-item-all, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li:first-child {
  padding-top: 0;
}
.gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li:last-child, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li:last-child, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li:last-child, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li:last-child, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li:last-child, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li ul.children, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li ul.children, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li ul.children, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li ul.children, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li ul.children, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li ul.children {
  flex: 0 0 100%;
  padding-left: 12px;
}
.gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li ul.children > li:first-child, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li ul.children > li:first-child, .gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li ul.children > li:first-child, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-categories-list > li ul.children > li:first-child, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-archives-list > li ul.children > li:first-child, .product-sidebar aside.widget_block .wp-block-group__inner-container ul.wp-block-latest-posts__list > li ul.children > li:first-child {
  margin-top: 8px;
}
.gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ol.wp-block-latest-comments, .product-sidebar aside.widget_block .wp-block-group__inner-container ol.wp-block-latest-comments {
  padding-left: 0;
}
.gostro-sidebar-content aside.widget_block .wp-block-group__inner-container ol.wp-block-latest-comments li.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta, .product-sidebar aside.widget_block .wp-block-group__inner-container ol.wp-block-latest-comments li.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
  line-height: 1.3;
}
.gostro-sidebar-content aside.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, .product-sidebar aside.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: var(--color_main);
  margin-right: 3px;
}

#product-sidebar .widget {
  display: block;
}
.widget.widget_products ul.product_list_widget {
  padding: 0;
}
.widget.widget_products ul.product_list_widget li {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 20px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--color_border);
  padding-left: 95px;
  min-height: 105px;
}
.widget.widget_products ul.product_list_widget li a {
  font-size: 15px;
  font-weight: 400;
  color: var(--color_heading);
}
.widget.widget_products ul.product_list_widget li a img {
  float: left;
  margin-left: 0;
  margin-right: 15px;
  box-shadow: none;
  width: 80px;
  height: 85px;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 20px;
}
.widget.widget_products ul.product_list_widget li a span.product-title {
  margin-bottom: 2px;
  display: block;
}
.widget.widget_products ul.product_list_widget li .star-rating {
  order: -1;
  margin: 0;
  font-size: 11px;
  width: 82px;
  margin-bottom: 6px;
}
.widget.widget_products ul.product_list_widget li:first-child {
  border-top: none;
  padding-top: 0;
  min-height: 85px;
}
.widget.widget_products ul.product_list_widget li:first-child a img {
  top: 0;
}

@media (max-width: 991px) {
  .sidebar-right, .sidebar-left {
    flex-direction: column;
  }
  .sidebar-right .gostro-sidebar-content, .sidebar-left .gostro-sidebar-content {
    order: 2;
    padding-top: 3.5rem;
    margin-top: 3.5rem;
    border-top: 1px solid var(--color_border);
  }
}
.site-header {
  position: relative;
  z-index: 100;
  width: 100%;
}

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

.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 {
  width: var(--header_logo_box_width);
  padding-top: var(--header_logo_paddingtop);
  padding-right: var(--header_logo_paddingright);
  padding-bottom: var(--header_logo_paddingbottom);
  padding-left: var(--header_logo_paddingleft);
}
.site-branding .site-logo {
  width: var(--header_logo_width);
  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;
  color: var(--header_color_text);
}

.header-element {
  font-size: inherit;
  color: var(--header_color_text);
}
.top-bar-control .header-element {
  font-size: 0.875rem;
}
.header-element > a {
  transition: all 0.3s;
  color: var(--header_color_text);
}
.header-element > a > svg {
  transition: all 0.3s;
  fill: var(--header_color_text);
}
.header-element > a > svg + span {
  margin-left: 5px;
}
.header-main .header-element > a {
  font-size: 0.875rem;
  text-transform: capitalize;
  display: flex;
  align-items: center;
}
.header-element.search_box.button {
  position: relative;
}
.header-element.search_box.button .search-btn.search-btn-dropdown {
  position: relative;
  display: inline-block;
}
.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-btn.search-btn-dropdown:not(.show_text) {
  width: 24px;
  height: 24px;
  line-height: 24px;
}
.header-bottom-right-control .header-element.search_box.button .search-btn.search-btn-dropdown {
  text-align: right;
}
.header-bottom-left-control .header-element.search_box.button .search-btn.search-btn-dropdown + .search_form_wrapper.dropdown {
  left: 0;
  right: auto;
}
.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);
}
.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.form .fm-search-form {
  height: 46px;
}
.header-element.search_box.form .fm-search-form .form-input-wrap {
  display: flex;
  width: 100%;
}
.header-element.search_box.form .fm-search-form .search_suggestions_wrap {
  display: none;
}
.header-element.search_box.form .fm-search-form .search_text_input {
  font-size: inherit;
}
.header-element.search_box a {
  color: var(--header_color_text);
}
.header-element.search_box a svg {
  fill: var(--header_color_text);
}
.header-element.cart_box > a {
  position: relative;
}
.header-element.cart_box > a .cart-counter {
  font-size: 0;
}
.header-element.cart_box > a, .header-element.cart_box > a span {
  color: var(--header_color_text);
}
.header-element.cart_box > a svg {
  fill: var(--header_color_text);
}
.header-element.cart_box a.cart-btn {
  display: flex;
  align-items: center;
}
.header-element.cart_box a.cart-btn .cart-title {
  font-size: 14px;
  font-weight: bold;
  color: var(--color_heading);
  letter-spacing: -0.02em;
}
.header-element.cart_box a.cart-btn .mini-cart-contents {
  margin-left: 0;
}
.header-element.cart_box a.cart-btn .mini-cart-contents .cart_sub_total {
  font-size: 14px;
  font-weight: bold;
  color: var(--color_heading);
  letter-spacing: -0.02em;
  margin-left: 18px;
}
.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: bold;
  position: absolute;
  top: 11px;
  left: 15px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color_main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: #ffffff !important;
}
.header-element.cart_box a.cart-btn .c-button__text {
  line-height: 0;
  font-size: 0;
}
.header-element.cart_box a.cart-btn .c-button__text > svg {
  float: left;
  margin-right: 10px;
}
.header-element.cart_box a.cart-btn .c-button__text .cart-title {
  display: inline-block;
  margin-top: 4px;
}
.header-element.cart_box a.cart-btn .c-button__text .mini-cart-contents {
  margin-top: 13px;
  display: block;
}
.header-element.cart_box a.cart-btn .c-button__text .mini-cart-contents .cart_sub_total {
  display: block;
  margin-bottom: 4px;
}
.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;
}
.header-element.social-icon-box {
  display: flex;
  align-items: center;
}
.header-element.social-icon-box a.fm-social-icon-link {
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 12px;
  color: var(--header_color_text);
}
.header-element.social-icon-box a.fm-social-icon-link svg {
  fill: var(--header_color_text);
}
.header-element.social-icon-box a.fm-social-icon-link svg + .fm-social-icon-title {
  margin-left: 6px;
}
.header-element.contact-info-box {
  color: var(--header_color_text);
}
.header-element.contact-info-box svg {
  fill: var(--header_color_text);
}
.header-element.contact-info-box svg + 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.hamburger-box > a {
  color: var(--header_color_text);
}
.header-element.hamburger-box > a svg {
  fill: var(--header_color_text);
}
.header-element.my-account-box a.account-btn {
  color: var(--header_color_text);
}
.header-element.my-account-box a.account-btn svg {
  fill: var(--header_color_text);
}
.header-element.my-account-box a.account-btn svg + span {
  margin-left: 6px;
}
.header-element.wishlist-box .wishlist-btn {
  display: flex;
  align-items: center;
  position: relative;
  color: var(--header_color_text);
}
.header-element.wishlist-box .wishlist-btn svg {
  fill: var(--header_color_text);
}
.header-element.wishlist-box .wishlist-btn span.wishlist_counter {
  margin-left: 3px;
  font-size: 11px;
  font-weight: 700;
  position: absolute;
  top: 11px;
  left: 50%;
  width: 20px;
  height: 20px;
  line-height: 0;
  border-radius: 50%;
  background: var(--color_main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
}
.header-element.search_form_wrapper button[type=submit] svg {
  width: 1.25rem;
  height: 1.25rem;
}
.header-element.search_form_wrapper .ajax_search .fm-search-results {
  background: #ffffff;
  min-width: 800px;
}
.header-element.search_box svg, .header-element.cart_box svg, .header-element.my-account-box svg, .header-element.wishlist-box svg, .header-element.hamburger-box svg {
  width: 1.5rem;
  height: 1.5rem;
}
.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.75rem;
}
.header-right-control .header-element:not(.cart_box):not(.wishlist-box):not(.search_box):not(.my-account-box) {
  margin-left: 0.75rem;
}
.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;
}

.currency.list-dropdown, .language.list-dropdown {
  background-color: #ffffff;
  display: flex;
  line-height: 24px;
  font-size: 1rem;
  text-transform: uppercase;
  justify-content: center;
  border: 1px solid #b1b1b1;
  padding: 6px 10px 4px 10px;
  border-radius: 18px;
  min-width: 66px;
}
.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;
  width: 100%;
  text-align: center;
}
.currency.list-dropdown .dropdown .current, .language.list-dropdown .dropdown .current {
  display: inline-flex;
  align-items: center;
}
.currency.list-dropdown .dropdown .current svg, .language.list-dropdown .dropdown .current svg {
  margin-left: 3px;
}
.header-element.html_box .currency.list-dropdown .dropdown .current span.selected, .header-element.html_box .language.list-dropdown .dropdown .current span.selected {
  position: relative;
  padding-right: 13px;
}
.header-element.html_box .currency.list-dropdown .dropdown .current span.selected:before, .header-element.html_box .language.list-dropdown .dropdown .current span.selected:before {
  content: "";
  display: block;
  width: 22px;
  height: 100%;
  position: absolute;
  right: -6px;
  background-position: center right;
  background-size: 16px;
  background-repeat: no-repeat;
  background-image: url(/wp-content/themes/gostro/assets/images/select_icon_sort.svg);
  z-index: 1;
}
.top-bar.light .header-element.html_box .currency.list-dropdown .dropdown .current span.selected:before, .top-bar.light .header-element.html_box .language.list-dropdown .dropdown .current span.selected:before {
  background-image: url(/wp-content/themes/gostro/assets/images/select_icon_sort_w.svg);
}
.header-element.html_box .currency.list-dropdown .dropdown .current span.selected > img, .header-element.html_box .language.list-dropdown .dropdown .current span.selected > img {
  margin-top: -3px;
}
.currency.list-dropdown .dropdown ul, .language.list-dropdown .dropdown ul {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: -10px;
  top: calc(100% + 6px);
  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-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;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.currency.list-dropdown .dropdown ul li, .language.list-dropdown .dropdown ul li {
  min-width: 68px;
  padding: 3px 0;
  background: #ffffff;
  text-align: center;
}
.currency.list-dropdown .dropdown ul li:first-child, .language.list-dropdown .dropdown ul li:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.currency.list-dropdown .dropdown ul li:last-child, .language.list-dropdown .dropdown ul li:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.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: var(--color_heading);
}
.currency.list-dropdown .dropdown ul li a.woocs_flag_view_item_current, .language.list-dropdown .dropdown ul li a.woocs_flag_view_item_current {
  color: var(--color_main);
  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;
}

.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;
}

.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;
  width: var(--header_container_width);
}
.site-footer .footer-wrap {
  background-color: var(--footer_bg);
  color: var(--footer_color);
  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;
}
.site-footer .footer-section.footer_main {
  background-color: var(--footer_main_bg);
  color: var(--footer_main_color);
  border-top: 1px solid var(--color_border);
}
.site-footer .footer-section.footer_main .footer-items {
  flex: 1;
}
.site-footer .footer-section.footer_main .footer-items .footer-copyright {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 30px 15px;
}

.theme-gostro #cart-canvas .offcanvas-content .cart_box_head {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 20px 0 20px;
}

#hamburger-canvas .hamburger-screen-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  align-content: space-between;
  overflow-y: auto;
  overflow-x: hidden;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-head {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  background: #fafafa;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-head .hm-logo {
  display: flex;
  justify-content: space-between;
  width: 6rem;
}
#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;
  width: 100%;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-bottom {
  margin-top: auto;
  margin-bottom: 1px;
  padding: 1rem 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-bottom > div ~ div {
  margin-top: 1rem;
}

#account-canvas .spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid;
  border-top-color: transparent;
  -webkit-animation: spin infinite 1s linear;
  animation: spin infinite 1s linear;
}
#account-canvas .woocommerce-form-login .woocommerce-LostPassword, #account-canvas .woocommerce-form-login .lost_password, #account-canvas .woocommerce-form-register .woocommerce-LostPassword, #account-canvas .woocommerce-form-register .lost_password {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  font-weight: 500;
}
#account-canvas .woocommerce-form-login .password-input, #account-canvas .woocommerce-form-register .password-input {
  width: 100%;
}
#account-canvas .woocommerce-form-login .password-input .show-password-input, #account-canvas .woocommerce-form-register .password-input .show-password-input {
  top: 50%;
  transform: translateY(-50%);
}
#account-canvas .woocommerce-form-login .acount-form-switch, #account-canvas .woocommerce-form-register .acount-form-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
}
#account-canvas .woocommerce-form-login .acount-form-switch a, #account-canvas .woocommerce-form-register .acount-form-switch a {
  margin-left: 5px;
  color: var(--color_heading);
}
#account-canvas .woocommerce-form-login .acount-form-switch a::after, #account-canvas .woocommerce-form-register .acount-form-switch a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color_heading);
  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;
}
#account-canvas .woocommerce-form-login .acount-form-switch a:hover::after, #account-canvas .woocommerce-form-register .acount-form-switch a:hover::after {
  opacity: 1;
}
.woocommerce-account #account-canvas .woocommerce-form-login #username, #fm-account-modal #account-canvas .woocommerce-form-login #username {
  margin-bottom: 0;
}
.woocommerce-account #account-canvas .woocommerce-form-login #password::placeholder, #fm-account-modal #account-canvas .woocommerce-form-login #password::placeholder {
  display: none;
}
#account-canvas .woocommerce-form-login .woocommerce-LostPassword .woocommerce-form-login__rememberme {
  margin: 0;
}
#account-canvas .woocommerce-form-login .woocommerce-LostPassword .woocommerce-form-login__rememberme #rememberme {
  margin-top: -3px;
}
#account-canvas .woocommerce-form-login .input-text#username::placeholder, #account-canvas .woocommerce-form-login .input-text#password::placeholder {
  opacity: 0;
}
#account-canvas .woocommerce-form-login button.woocommerce-form-login__submit {
  height: 46px;
  padding: 0 25px;
  width: 100%;
  margin: 0;
}
.woocommerce #account-canvas .woocommerce-form-login button.woocommerce-form-login__submit {
  margin-right: 0;
}
#account-canvas .woocommerce-form-register .woocommerce-privacy-policy-text {
  font-size: 15px;
  color: var(--color_body);
  margin-bottom: 25px;
}
#account-canvas .woocommerce-form-register .woocommerce-privacy-policy-text a {
  color: var(--color_main);
}
#account-canvas .woocommerce-form-register button.woocommerce-form-register__submit {
  height: 46px;
  padding: 0 25px;
  width: 100%;
  margin: 0;
}
#account-canvas .woocommerce-lost-password .woocommerce {
  max-width: 500px;
  margin: 50px auto;
}
#account-canvas .woocommerce-lost-password .woocommerce p {
  font-size: 15px;
}
#account-canvas .woocommerce-lost-password .woocommerce form .form-row {
  width: 100%;
}
#account-canvas .woocommerce-lost-password .woocommerce button.button {
  height: 46px;
  padding: 0 25px;
  width: 100%;
  margin: 0;
}
#account-canvas .woocommerce-lost-password .woocommerce .input-text {
  height: 46px;
  background: #ffffff;
  margin-bottom: 10px;
}
@media (min-width: 1200px) {
  #account-canvas .woocommerce-lost-password .woocommerce {
    margin: 100px auto;
  }
}
#account-canvas .woocommerce-form-login .lost_password, #account-canvas .woocommerce-form-register .lost_password {
  transform: translateY(-2px);
}
#account-canvas .account_form_content {
  display: flex;
  flex-direction: column;
  align-content: space-between;
  justify-content: center;
  margin: 1.5rem 20px;
  position: relative;
}
#account-canvas .account_form_content .gostro-close-btn {
  position: absolute;
  line-height: 24px;
  width: auto;
  right: 0;
  top: 0;
  height: 24px;
}
#account-canvas .account_form_content .nav-tabs {
  position: absolute;
  left: 0;
  top: 0;
  border: none;
}
#account-canvas .account_form_content .nav-tabs .nav-link {
  padding: 0;
  border: none;
  font-weight: 600;
  font-size: 15px;
  text-transform: capitalize;
  color: var(--color_body);
  margin-right: 20px;
}
#account-canvas .account_form_content .nav-tabs .nav-link.active {
  color: var(--color_heading);
}
#account-canvas .account_form_content .tab-content .woocommerce-form {
  padding: 0;
  border: none;
}
#account-canvas .woocommerce-form .woocommerce-error {
  padding-left: 20px;
}

.fm-search-form {
  display: flex;
  position: relative;
}
.fm-search-form .twitter-typeahead {
  width: 100%;
  height: 100%;
}
.fm-search-form .search_text_input {
  height: 100%;
  box-sizing: border-box;
}
.fm-search-form .btn_clear_text {
  display: none;
  align-items: center;
  height: 100%;
}
.fm-search-form .btn_clear_text svg {
  width: 0.75rem !important;
  height: 0.75rem !important;
}
.fm-search-form .btn_clear_text.show {
  display: flex;
  position: absolute;
  z-index: 9999;
  right: 10px;
}
.site-header .fm-search-form .search_categories {
  border: none;
  height: 100%;
  line-height: 100%;
  width: 150px;
  padding: 0 15px 0 0;
}
.site-header .fm-search-form .search_categories ~ .select2-container.select2-container--default .select2-selection--single {
  border: none;
}
.site-header .fm-search-form .search_categories ~ .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 15px;
}
.site-header .fm-search-form .search_categories ~ .select2-container.select2-container--default .select2-dropdown {
  transform: translateX(-50%);
}
.fm-search-form button[type=submit] {
  margin-top: 0;
  font-size: 0;
  height: 100%;
  line-height: 100%;
  padding: 0 10px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border: none;
  letter-spacing: 0;
}
.fm-search-form .search_suggestions_wrap {
  margin-top: 1rem;
}
.fm-search-form .search_suggestions_wrap .suggestion-item {
  text-transform: capitalize;
  padding: 2px 8px;
  background: #f1f1f1;
  margin: 0 3px;
  font-size: 0.8rem;
}

.ajax_search.fm-search-form .fm-search-results {
  background-color: #ffffff;
  padding: 1rem 0;
  margin: 0 -1rem;
  width: calc(100% + 1rem);
  overflow-y: auto;
}
.ajax_search.fm-search-form .fm-search-results .fm-dataset {
  display: flex;
  flex-wrap: wrap;
}
.ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item {
  flex: 0 0 33.3333%;
  width: 33.3333%;
  display: flex;
  flex-direction: column;
  padding: 0 0 0 1rem;
  text-align: left;
  margin-bottom: 1rem;
}
.ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .result_item_top_info .star-rating {
  display: none;
}
.ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item > a.item-link {
  display: inline-block;
  width: 100%;
}
.ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item > a.item-link img {
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}
.ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .result_item_info {
  font-size: 16px;
  margin-bottom: 0;
}
.ajax_search.fm-search-form .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: var(--color_body);
}
.ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .result_item_title {
  line-height: 18px;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 6px;
}
.ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .price {
  margin: 0;
}
.ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .price .woocs_price_code {
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
  font-size: 15px;
  font-weight: 400;
}
.ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .price .woocommerce-Price-amount {
  color: #666;
  font-size: 1em;
  line-height: 1.2;
  font-weight: 400;
}
.ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .price ins .woocommerce-Price-amount {
  color: var(--color_main);
  font-size: 1em;
  margin-right: 6px;
  font-weight: 400;
}
.ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .price del {
  text-decoration: none;
  position: relative;
}
.ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .price del .woocommerce-Price-amount {
  color: #999999;
  font-size: 0.85em;
  font-weight: 400;
}
.ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .price del:before {
  width: 100%;
  height: 1px;
  display: block;
  content: "";
  background-color: #aaaaaa;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
}
.ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .price bdi {
  display: inline-flex;
}
.ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .price bdi .woocommerce-Price-currencySymbol {
  order: -1;
}
.search_box.form .ajax_search.fm-search-form .fm-search-results, .search_form_wrapper.header-element .ajax_search.fm-search-form .fm-search-results, .gostro-mobile .ajax_search.fm-search-form .fm-search-results {
  width: 100%;
  height: auto;
  max-height: 25rem;
  min-width: 320px;
  max-width: 100%;
  background-color: #ffffff;
  top: 46px !important;
  border-top: none;
  left: 0 !important;
  right: 0;
  padding: 1rem;
  margin: 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08);
}
.search_box.form .ajax_search.fm-search-form .fm-search-results .fm-dataset, .search_form_wrapper.header-element .ajax_search.fm-search-form .fm-search-results .fm-dataset, .gostro-mobile .ajax_search.fm-search-form .fm-search-results .fm-dataset {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.search_box.form .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item, .search_form_wrapper.header-element .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item, .gostro-mobile .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item {
  flex: 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  padding: 0;
  margin-bottom: 1rem;
}
.search_box.form .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item > a, .search_form_wrapper.header-element .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item > a, .gostro-mobile .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item > a {
  display: flex;
  flex-direction: row;
  width: 85px;
  flex: 0 0 85px;
  max-width: 85px;
  height: max-content;
}
.search_box.form .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item > a img, .search_form_wrapper.header-element .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item > a img, .gostro-mobile .ajax_search.fm-search-form .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 .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .result_item_info, .search_form_wrapper.header-element .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .result_item_info, .gostro-mobile .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .result_item_info {
  height: max-content;
  font-size: 14px;
  font-weight: 400;
}
.search_box.form .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .star-rating, .search_form_wrapper.header-element .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .star-rating, .gostro-mobile .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .star-rating {
  display: none;
}
.search_box.form .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .product-item-cat-title, .search_form_wrapper.header-element .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .product-item-cat-title, .gostro-mobile .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .product-item-cat-title {
  font-size: 10px;
}
.search_box.form .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .result_item_title, .search_form_wrapper.header-element .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .result_item_title, .gostro-mobile .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .result_item_title {
  line-height: 16px;
  margin-bottom: 8px;
}
.search_box.form .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .amount, .search_form_wrapper.header-element .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .amount, .gostro-mobile .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .amount {
  font-size: 15px;
  font-weight: 400;
}
.search_box.form .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item:last-child, .search_form_wrapper.header-element .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item:last-child, .gostro-mobile .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item:last-child {
  margin-bottom: 0;
}

#fm-search-modal {
  z-index: 99999;
}
#fm-search-modal .search-modal {
  max-width: 100%;
}
#fm-search-modal .modal-content {
  transition: none;
  width: 100vw;
  height: 100vh;
  padding-top: 0;
  top: 0;
  left: 0;
  position: fixed;
  border: none;
  border-radius: 0;
  background: #FFF;
}
#fm-search-modal .modal-content.result_search_active .modal-header button.close {
  margin: 1rem auto 0 auto;
}
#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: center;
  width: 100%;
  max-width: 1440px;
}
#fm-search-modal .modal-header .modal-title {
  font-size: 1rem;
  color: var(--color_heading);
  width: 100%;
}
#fm-search-modal .modal-header button.close {
  position: static;
  opacity: 1;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  margin: 1.5rem auto 1rem auto;
  padding: 0;
  -webkit-transition: margin 0.35s linear 0s;
  -moz-transition: margin 0.35s linear 0s;
  -ms-transition: margin 0.35s linear 0s;
  -o-transition: margin 0.35s linear 0s;
  transition: margin 0.35s linear 0s;
}
#fm-search-modal .modal-header button.close .button-title {
  display: inline-block !important;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #555555;
}
#fm-search-modal .modal-header button.close svg.fm-icon {
  fill: var(--color_heading);
  width: 9px;
  height: 9px;
  margin-left: 5px;
}
#fm-search-modal .modal-body.search_form_wrapper {
  display: flex;
  justify-content: center;
  padding: 0;
}
#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 {
  width: 100%;
  max-width: 960px;
  transition: transform 0.5s ease 0.6s, opacity 0.5s ease 0.6s, border 0.5s;
  transform: translateY(60px);
  position: relative;
  padding: 10px 15px;
  opacity: 0;
}
#fm-search-modal .search_form_content .fm-search-form {
  margin: auto;
  width: 100%;
  flex-wrap: wrap;
}
#fm-search-modal .search_form_content .fm-search-form .btn_clear_text.show {
  right: 50px;
}
#fm-search-modal .search_form_content .fm-search-form .form-input-wrap {
  width: 100%;
  flex: 0 0 100%;
  display: flex;
  position: relative;
}
#fm-search-modal .search_form_content .fm-search-form .search_suggestions_wrap {
  width: 100%;
  flex: 0 0 100%;
}
#fm-search-modal .search_form_content .fm-search-form .search_text_input {
  height: 46px;
  z-index: 111;
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-appearance: none;
}
#fm-search-modal .search_form_content .fm-search-form .search_text_input::placeholder {
  color: inherit;
}
#fm-search-modal .search_form_content .fm-search-form button[type=submit] {
  position: absolute;
  right: 0;
  top: 0;
  bottom: auto;
  background: none;
  color: var(--color_heading);
  z-index: 999;
  letter-spacing: inherit;
  width: 3rem;
  height: 100%;
}
#fm-search-modal .search_form_content .fm-search-form button[type=submit] svg.fm-icon {
  fill: var(--color_heading);
  width: 1.25rem;
  height: 1.25rem;
}
#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%;
}

.default-nav-menu ul {
  list-style: none;
  padding: 8px 0;
}
.default-nav-menu ul li {
  position: relative;
  line-height: 1.5rem;
  padding: 8px 0;
}
.default-nav-menu ul li 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 li a.toggle-submenu .toggle-icon {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  justify-content: flex-end;
}
.default-nav-menu ul li 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 li 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 li.open > a.toggle-submenu .toggle-icon::before {
  display: none;
}
.default-nav-menu ul li.open > a.toggle-submenu .toggle-icon::after {
  display: inline-block;
}
.default-nav-menu ul li.menu-item > ul.sub-menu {
  list-style: none;
  visibility: hidden;
  opacity: 0;
  height: 0;
  padding: 0 0 0 0.75rem;
  -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 li.menu-item > ul.sub-menu li:last-child {
  padding-bottom: 0;
}
.default-nav-menu ul li.menu-item.menu-item-has-children {
  padding-bottom: 0;
}
.default-nav-menu ul li.menu-item.menu-item-has-children > .sub-menu {
  margin-top: 8px;
}
.default-nav-menu ul li.menu-item.open > ul.sub-menu {
  visibility: visible;
  opacity: 1;
  height: auto;
  margin-top: 8px;
}
.default-nav-menu ul li.page_item > ul.children {
  list-style: none;
  visibility: hidden;
  opacity: 0;
  height: 0;
  padding: 0 0 0 0.75rem;
  -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 li.page_item.open > ul.children {
  visibility: visible;
  opacity: 1;
  height: auto;
  margin-top: 8px;
}
.default-nav-menu ul li.page_item_has_children {
  padding-bottom: 0;
}
.default-nav-menu ul li.page_item_has_children > ul.children {
  margin-top: 8px;
}

#mobile-header-canvas {
  width: 300px;
  z-index: 99999;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  align-content: space-between;
}
#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 var(--color_border);
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-title h3 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color_heading);
  font-weight: bold;
  margin: 0;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-navigation {
  width: 100%;
  padding: 0.5rem 20px 0 20px;
  overflow-y: auto;
  overflow-x: hidden;
}
#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 {
  padding-top: 0;
  padding-bottom: 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 var(--color_border);
  margin-top: auto;
  margin-bottom: 1px;
  padding: 1.5rem 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-bottom a.fm-social-icon-link {
  margin-right: 20px;
}
#mobile-header-canvas.c-offcanvas--full-fade {
  width: 100%;
}

.theme-gostro .woosc-area a.button svg {
  margin-right: 6px;
}
.theme-gostro .woosc-area .woosc_table tr.tr-content td, .theme-gostro .woosc-area .woosc_table tr.tr-content th, .theme-gostro .woosc-area .woosc_table tr.tr-description td, .theme-gostro .woosc-area .woosc_table tr.tr-description th, .theme-gostro .woosc-area .woosc_table tr.tr-additional td, .theme-gostro .woosc-area .woosc_table tr.tr-additional th {
  vertical-align: top !important;
}
.theme-gostro .woosc-area .woosc_table tr.tr-description ul {
  padding-left: 17px;
}
.theme-gostro .woosc-area .woosc_table tr th, .theme-gostro .woosc-area .woosc_table tr td,
.theme-gostro .woosc-area table.shop_attributes {
  background: none !important;
  border: none !important;
}
.theme-gostro .woosc-area .woosc_table tr th p, .theme-gostro .woosc-area .woosc_table tr td p,
.theme-gostro .woosc-area table.shop_attributes p {
  margin-bottom: 0;
}
.theme-gostro .woosc-area .woosc_table tr th, .theme-gostro .woosc-area .woosc_table tr td {
  padding: 10px 10px 10px 0;
}
.theme-gostro .woosc-area .woosc_table tr th.td-label, .theme-gostro .woosc-area .woosc_table tr td.td-label {
  padding-left: 15px;
}
.theme-gostro .woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr td {
  padding: 10px 10px 10px 0;
  max-width: 250px;
}
.theme-gostro .woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr td.td-label {
  padding-left: 15px;
  font-weight: bold;
}
.theme-gostro .woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr:hover td {
  background: #ffffff !important;
}
.theme-gostro .woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr:nth-child(2n):hover td {
  background: #fbfbfb !important;
}
.theme-gostro .woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-close .woosc-table-close-icon:not(:hover) {
  background-color: #ffffff;
}

#woosc_table thead tr th {
  background-color: #ffffff !important;
  vertical-align: top;
}

#popup-modal .modal-header, #popup-modal .modal-footer {
  padding: 0;
  margin: 0;
  border: none;
  position: absolute;
  right: 0.5rem;
  z-index: 1;
}
#popup-modal .modal-header {
  top: 0.5rem;
}
#popup-modal .modal-header button.close {
  margin: 0;
  padding: 0;
  width: 2rem;
  height: 2rem;
}
#popup-modal .modal-footer {
  bottom: 0.5rem;
  left: 0.5rem;
  text-align: center;
  display: block;
}
#popup-modal .modal-body {
  padding: 0;
  margin: 0;
  border: none;
}
#popup-modal section.elementor-section {
  left: 0 !important;
  max-width: 100%;
  width: max-content;
}

.comment-form .comment-form-comment, .comment-form .comment-form-author, .comment-form .comment-form-email, .comment-form .comment-form-url {
  text-align: left;
}
.comment-form .comment-form-cookies-consent {
  display: inline-flex;
  align-items: flex-start;
}
.comment-form .comment-form-cookies-consent input#wp-comment-cookies-consent {
  margin-top: 3px;
}
.comment-form .comment-form-cookies-consent label[for=wp-comment-cookies-consent] {
  line-height: 1.25rem;
  text-align: left;
  margin-bottom: 0;
  font-weight: 500;
}

.theme-gostro .cart_box_content ul.cart_list {
  list-style: none;
  padding-left: 0;
}
.theme-gostro .cart_box_content ul.cart_list li.mini_cart_item {
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  margin-top: 20px;
  padding: 20px 25px 0 86px;
  min-height: 90px;
  border-top: 1px solid var(--color_border);
}
.theme-gostro .cart_box_content ul.cart_list li.mini_cart_item img {
  position: absolute;
  left: 0;
  top: 20px;
  margin: 0;
  width: 68px;
  display: block;
}
.theme-gostro .cart_box_content ul.cart_list li.mini_cart_item .remove {
  position: absolute;
  right: 0;
  top: 20px;
  font-size: 12px;
  font-weight: 600;
  background: none;
}
.theme-gostro .cart_box_content ul.cart_list li.mini_cart_item .remove svg {
  width: 0.8rem;
  height: 0.8rem;
}
.theme-gostro .cart_box_content ul.cart_list li.mini_cart_item a {
  transition: color 0.3s;
  display: block;
  line-height: 18px;
  font-weight: 400;
}
.theme-gostro .cart_box_content ul.cart_list li.mini_cart_item dl {
  margin: 0;
  display: inline-block;
  border: none;
  padding: 0;
  clear: both;
}
.theme-gostro .cart_box_content ul.cart_list li.mini_cart_item dl * {
  padding-bottom: 0;
  margin-bottom: 0;
}
.theme-gostro .cart_box_content ul.cart_list li.mini_cart_item dl dt {
  font-weight: 400;
  color: #999999;
}
.theme-gostro .cart_box_content ul.cart_list li.mini_cart_item dl dd {
  font-weight: 400;
  color: var(--color_heading);
}
.theme-gostro .cart_box_content ul.cart_list li.mini_cart_item dl.variation {
  font-size: 14px;
  font-weight: 400;
  color: var(--color_heading);
  display: inline-flex;
  flex-wrap: wrap;
  line-height: 16px;
  margin-top: 6px;
}
.theme-gostro .cart_box_content ul.cart_list li.mini_cart_item dl.variation dt {
  color: var(--color_body);
  font-weight: inherit;
}
.theme-gostro .cart_box_content ul.cart_list li.mini_cart_item dl.variation dd {
  margin-left: 3px;
  font-weight: inherit;
}
.theme-gostro .cart_box_content ul.cart_list li.mini_cart_item dl.variation dd + dt {
  margin-left: 6px;
}
.theme-gostro .cart_box_content ul.cart_list li.mini_cart_item dl.variation dd + dt::before {
  content: "/";
  content: var(--color_body);
  margin-right: 6px;
}
.theme-gostro .cart_box_content ul.cart_list li.mini_cart_item .quantity-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}
.theme-gostro .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: 2px;
}
.theme-gostro .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: 16px;
  font-weight: 500;
  line-height: inherit;
  height: 20px;
}
.theme-gostro .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;
  border-radius: 50%;
  justify-content: center;
  flex: 0 0 15px;
  display: none;
}
.theme-gostro .cart_box_content ul.cart_list li.mini_cart_item .quantity-wrap .woocommerce-mini-cart-item__qty .quantity > a svg {
  fill: var(--color_body);
  width: 7px;
  height: 7px;
}
.theme-gostro .cart_box_content ul.cart_list li.mini_cart_item .quantity-wrap .woocs_special_price_code .amount {
  color: var(--color_heading);
  font-weight: 500;
}
.theme-gostro .cart_box_content ul.cart_list li.mini_cart_item:first-child {
  margin-top: 0;
  border-top: none;
}
.theme-gostro .cart_box_content ul.cart_list li.mini_cart_item bdi {
  display: flex;
}
.theme-gostro .cart_box_content ul.cart_list li.mini_cart_item bdi .woocommerce-Price-currencySymbol {
  order: -1;
}
.theme-gostro .cart_box_content .woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--color_heading);
  border-top: 2px dashed var(--color_border);
  padding-top: 25px;
}
.theme-gostro .cart_box_content .woocommerce-mini-cart__total strong {
  font-weight: 500 !important;
}
.theme-gostro .cart_box_content .woocommerce-mini-cart__total .woocs_special_price_code {
  font-size: 30px;
  font-weight: 500;
}
.theme-gostro .cart_box_content .woocommerce-mini-cart__total .woocs_special_price_code bdi {
  display: flex;
}
.theme-gostro .cart_box_content .woocommerce-mini-cart__total .woocs_special_price_code bdi .woocommerce-Price-currencySymbol {
  order: -1;
}
.theme-gostro .cart_box_content .woocommerce-mini-cart__buttons {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  margin-top: 25px;
}
.theme-gostro .cart_box_content .woocommerce-mini-cart__buttons a.button {
  background: #a0a0a0 !important;
  color: #ffffff !important;
}
.theme-gostro .cart_box_content .woocommerce-mini-cart__buttons a.button + .button {
  margin-top: 15px;
}
.theme-gostro .cart_box_content .woocommerce-mini-cart__buttons a.button.checkout {
  background-color: var(--color_heading) !important;
}
.theme-gostro .cart_box_content .woocommerce-mini-cart__buttons a.button:hover {
  text-decoration: none;
}
.theme-gostro .cart_box_content .gostro-free-shipping-msg {
  font-size: 15px;
  color: var(--color_heading);
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.theme-gostro .cart_box_content .gostro-free-shipping-msg .woocommerce-Price-amount {
  margin-left: 5px;
}
.theme-gostro .cart_box_content .gostro-free-shipping-msg .woocommerce-Price-amount bdi {
  display: flex;
}
.theme-gostro .cart_box_content .gostro-free-shipping-msg .woocommerce-Price-amount bdi .woocommerce-Price-currencySymbol {
  order: -1;
}
.theme-gostro .cart_box_content .gostro-free-shipping-msg svg {
  width: 20px;
  height: 20px;
  fill: var(--color_heading);
  margin-right: 10px;
}
.cart_box_content .gostro-cart-empty-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.cart_box_content .gostro-cart-empty-box .woocommerce-mini-cart__empty-icon {
  text-align: center;
  margin-bottom: 20px;
}
.cart_box_content .gostro-cart-empty-box .woocommerce-mini-cart__empty-icon svg {
  width: 80px;
  height: 80px;
  fill: var(--color_body);
}
.cart_box_content .gostro-cart-empty-box .woocommerce-mini-cart__empty-message {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  color: var(--color_dark);
  margin-bottom: 30px;
}
.cart_box_content .gostro-cart-empty-box .gostro-parent-term-link svg {
  margin-left: 0.5rem;
}
.cart_box_content .gostro-cart-empty-box ~ .gostro-free-shipping-msg {
  flex-wrap: wrap;
  justify-content: center;
  z-index: 2;
  color: var(--color_dark);
  position: absolute;
  bottom: 35px;
}
.cart_box_content .gostro-cart-empty-box ~ .gostro-free-shipping-msg svg {
  fill: var(--color_dark);
}
.theme-gostro .offcanvas-content .cart_box_content .woocommerce-mini-cart__total {
  margin-top: auto;
  margin-bottom: 0;
}
.theme-gostro .cart_box.hover_dropdown_wrapper .cart_box_content {
  padding: 30px 20px 20px;
  width: 390px;
}
.theme-gostro .cart_box.hover_dropdown_wrapper .cart_box_content ul.cart_list {
  margin-bottom: 20px;
  max-height: 350px;
  position: relative;
}
.theme-gostro .cart_box.hover_dropdown_wrapper .cart_box_content ul.cart_list li.mini_cart_item .remove {
  right: 10px;
}
.theme-gostro .cart_box.hover_dropdown_wrapper .cart_box_content .woocommerce-mini-cart__total {
  font-size: 16px;
}
.theme-gostro .cart_box.hover_dropdown_wrapper .cart_box_content .woocommerce-mini-cart__total .woocs_special_price_code {
  font-size: 20px;
}
.theme-gostro .cart_box.hover_dropdown_wrapper .cart_box_content .woocommerce-mini-cart__buttons {
  justify-content: space-between;
}
.theme-gostro .cart_box.hover_dropdown_wrapper .cart_box_content .woocommerce-mini-cart__buttons a.button {
  width: calc(50% - 8px);
  height: 43px;
}
.theme-gostro .cart_box.hover_dropdown_wrapper .cart_box_content .gostro-cart-empty-box {
  position: static;
  background: #ffffff;
  padding: 30px 0;
}
.theme-gostro .cart_box.hover_dropdown_wrapper .cart_box_content .gostro-cart-empty-box .woocommerce-mini-cart__empty-icon {
  margin-bottom: 10px;
}
.theme-gostro .cart_box.hover_dropdown_wrapper .cart_box_content .gostro-cart-empty-box .woocommerce-mini-cart__empty-icon svg {
  width: 50px;
  height: 50px;
}
.theme-gostro .cart_box.hover_dropdown_wrapper .cart_box_content .gostro-cart-empty-box .woocommerce-mini-cart__empty-message {
  color: var(--color_heading);
}
.theme-gostro .cart_box.hover_dropdown_wrapper .cart_box_content .gostro-cart-empty-box .gostro-parent-term-link {
  border: 2px solid var(--color_heading);
  color: #fff !important;
}
.theme-gostro .cart_box.hover_dropdown_wrapper .cart_box_content .gostro-cart-empty-box .gostro-parent-term-link svg {
  fill: #fff !important;
}
.theme-gostro .cart_box.hover_dropdown_wrapper .cart_box_content .gostro-cart-empty-box ~ .gostro-free-shipping-msg {
  position: static;
  color: var(--color_heading);
}
.theme-gostro .cart_box.hover_dropdown_wrapper .cart_box_content .gostro-cart-empty-box ~ .gostro-free-shipping-msg svg {
  fill: var(--color_heading);
}
.cart_box_content.dropdown_content .woocommerce-mini-cart__empty-message {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--color_heading);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0;
  padding: 30px 0;
}

ol.flex-control-nav {
  /* # Nav Control Gostro 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;
  border-radius: 50%;
}
ol.flex-control-nav li a.flex-active::before {
  background-color: var(--color_heading);
}

.page-heading-wrap ~ .header-breadcrumb-wrap {
  margin-top: 15px;
}

.gostro-breadcrumbs .trail-items {
  padding: 0;
  margin: 0;
  color: var(--color_body);
}
.page-heading-content .gostro-breadcrumbs .trail-items {
  margin: 0;
}
.gostro-breadcrumbs .trail-items .trail-item, .gostro-breadcrumbs .trail-items .trail-item a {
  font-size: 14px;
  font-weight: normal;
  text-transform: capitalize;
}
.gostro-breadcrumbs .trail-items .trail-item {
  color: var(--color_body);
  display: inline-block;
}
.gostro-breadcrumbs .trail-items .trail-item:not(.trail-end)::after {
  display: inline-block;
  margin: 0 8px;
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid var(--color_border);
  transform: rotate(45deg);
  border-width: 1px 1px 0 0;
}

.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.swiper-button-disabled,
.familab_theme .swiper-button-prev.swiper-button-disabled {
  opacity: 0.2;
}

.gostro-carousel-wrap {
  position: relative;
}

.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;
}

.post-navigation {
  clear: both;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--color_border);
  border-bottom: 1px solid var(--color_border);
}
.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 var(--color_border);
}
.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;
}

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

.pagination {
  display: block;
  clear: both;
  margin: 0;
  border-radius: 0;
}

a.page-numbers, a.post-page-numbers, span.page-numbers, span.post-page-numbers {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  align-content: center;
  margin: 0 5px;
  padding: 0 !important;
  border: none !important;
  width: 44px;
  height: 44px;
  background: #f4f4f4;
  color: var(--color_heading);
}
a.page-numbers.next, a.page-numbers.prev, a.post-page-numbers.next, a.post-page-numbers.prev, span.page-numbers.next, span.page-numbers.prev, span.post-page-numbers.next, span.post-page-numbers.prev {
  padding: 0;
  font-size: 0;
}
a.page-numbers.current, a.post-page-numbers.current, span.page-numbers.current, span.post-page-numbers.current {
  background-color: var(--color_heading) !important;
  color: #ffffff !important;
}
.pagination-style1 a.page-numbers, .pagination-style1 a.post-page-numbers, .pagination-style1 span.page-numbers, .pagination-style1 span.post-page-numbers {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.pagination-style2 a.page-numbers, .pagination-style2 a.post-page-numbers, .pagination-style2 span.page-numbers, .pagination-style2 span.post-page-numbers {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.page-links {
  clear: both;
}

.nav-links {
  display: inline-block;
  width: 100%;
}

.nav-links ul.page-numbers, .page-links ul.page-numbers, .woocommerce-pagination ul.page-numbers {
  width: 100%;
  display: flex;
  list-style: none;
  padding-left: 0;
}
.nav-links ul.page-numbers li:first-child > .page-numbers, .page-links ul.page-numbers li:first-child > .page-numbers, .woocommerce-pagination ul.page-numbers li:first-child > .page-numbers {
  margin-left: 0;
}
.nav-links ul.page-numbers li:last-child > .page-numbers, .page-links ul.page-numbers li:last-child > .page-numbers, .woocommerce-pagination ul.page-numbers li:last-child > .page-numbers {
  margin-right: 0;
}
.pagination-align-left .nav-links ul.page-numbers, .pagination-align-left .page-links ul.page-numbers, .pagination-align-left .woocommerce-pagination ul.page-numbers {
  justify-content: flex-start;
}
.pagination-align-center .nav-links ul.page-numbers, .pagination-align-center .page-links ul.page-numbers, .pagination-align-center .woocommerce-pagination ul.page-numbers {
  justify-content: center;
}
.pagination-align-right .nav-links ul.page-numbers, .pagination-align-right .page-links ul.page-numbers, .pagination-align-right .woocommerce-pagination ul.page-numbers {
  justify-content: flex-end;
}

.modal-dialog .gostro-close-btn {
  font-size: 0 !important;
  background: none !important;
  border: none !important;
}
.modal-dialog .gostro-close-btn:hover {
  background: none !important;
}
.modal-dialog.account-modal .account_form_content .nav {
  justify-content: center;
}

.js-offcanvas .gostro-close-btn {
  background: none !important;
  border: none !important;
  padding: 0;
  height: auto;
}
.js-offcanvas .gostro-close-btn .c-button__text {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  height: 30px;
}
.js-offcanvas .gostro-close-btn svg.fm-icon {
  width: 9px;
  height: 90px;
  margin: 0 0 0 5px;
  fill: var(--color_heading);
}
.js-offcanvas .gostro-close-btn .button-title {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  line-height: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color_heading);
}
.js-offcanvas .gostro-close-btn:focus {
  outline: none;
}
.js-offcanvas#cart-canvas .offcanvas_box_head, .js-offcanvas#cart-canvas .cart_box_head, .js-offcanvas#filter-canvas .offcanvas_box_head, .js-offcanvas#filter-canvas .cart_box_head {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.js-offcanvas#cart-canvas div > h3, .js-offcanvas#filter-canvas div > h3 {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.3;
  padding: 0 0 8px;
  z-index: 1;
  width: auto;
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 0;
  line-height: 20px;
}
.js-offcanvas#cart-canvas div > h3:after, .js-offcanvas#filter-canvas div > h3:after {
  width: 100%;
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  background: var(--color_heading);
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
}
.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;
  position: relative;
  padding-left: 0;
  padding-right: 0;
}
.js-offcanvas .cart_box_content {
  padding: 0 20px;
  margin: 0;
  height: calc(100% - 55px);
}
.js-offcanvas .cart_box_content .widget_shopping_cart_content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-content: space-between;
}
.js-offcanvas .cart_box_content .widget_shopping_cart_content ul.cart_list {
  overflow-y: auto;
  list-style: none;
  margin-left: -20px;
  margin-right: -20px;
  padding: 0 20px 20px 20px;
}
.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/11;
  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;
}
.js-offcanvas.is-open {
  z-index: 99999;
}

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

.elementor-widget:not(:last-child) {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 600px) {
  body {
    position: initial;
  }
}
.theme-gostro .kirki-customizer-loading-wrapper {
  background-image: url("/wp-content/themes/gostro/assets/images/fm_logo.svg");
}

.woocommerce .star-rating {
  color: #ffd015;
}
.woocommerce .star-rating, .woocommerce .star-rating span {
  width: 80px;
  letter-spacing: 4px;
  font-size: 12px;
  min-height: 1rem;
}
.woocommerce ul.products li.product .star-rating {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
}

.woo-variation-swatches.wvs-style-squared .variable-items-wrapper .variable-item {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.woo-variation-swatches.wvs-style-rounded .variable-items-wrapper .variable-item {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.woo-variation-swatches.wvs-style-rounded.single-product .variable-items-wrapper .variable-item.button-variable-item, .woo-variation-swatches.wvs-style-rounded #woosq-popup .variable-items-wrapper .variable-item.button-variable-item {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item) {
  padding: 3px;
}
.woo-variation-swatches .variable-items-wrapper .color-variable-item.color-variable-item-white:not(.selected) .variable-item-contents {
  border: 1px solid #f4f4f4;
  border-radius: inherit;
}

.woocommerce ul.products:before, .woocommerce ul.products:after {
  content: none;
}
.woocommerce ul.products li.product.gostro-product-item .product-item-wrap {
  display: block;
  position: relative;
}
.woocommerce ul.products li.product.gostro-product-item .product-item-wrap .product-thumbnail {
  position: relative;
  overflow: hidden;
}
.woocommerce ul.products li.product.gostro-product-item .product-item-wrap .product-thumbnail .product-thumbnail-zoom {
  display: block;
}
.woocommerce ul.products li.product.gostro-product-item .product-item-wrap .product-thumbnail img {
  margin-bottom: 0;
  background: #f6f6f6;
}
.woocommerce ul.products li.product.gostro-product-item .product-item-wrap .product-thumbnails--hover img {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.woocommerce ul.products li.product.gostro-product-item .product-item-wrap .product-thumbnails--hover .hover-image {
  position: absolute;
  top: 0;
  opacity: 0;
}
.woocommerce ul.products li.product.gostro-product-item .product-item-wrap:hover .hover-image {
  opacity: 1;
}
.woocommerce div:not(.swiper-container) > ul.products li.product.gostro-product-item {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.woocommerce ul.products button.woosq-btn, .woocommerce ul.products button.woosc-btn {
  display: none;
}
.woocommerce ul.products button.woosc-btn-added:before {
  display: none;
}
.woocommerce ul.products.products-grid-style li.product {
  margin-bottom: 1.5rem;
}
.woocommerce ul.products.products-grid-style li.product .fmc-flashs-group {
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 1;
  top: 10px;
  right: auto;
  left: 10px;
}
.woocommerce ul.products.products-grid-style li.product .fmc-flashs-group .woocommerce-badge {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  height: 28px;
  line-height: 28px;
  text-align: center;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  min-width: 50px;
  border-radius: 3px;
  font-weight: bold;
}
.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: 20px;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_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 .gostro_thumb_action > a.yith-wcqv-button, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action > button.woosq-btn, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action > button.woosc-btn {
  display: none;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action > .added_to_cart.wc-forward {
  display: none;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action > .button, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action > .added_to_cart {
  letter-spacing: inherit;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action > *:hover, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action > .button.added, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action > button.woosc-btn-added, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action .tinvwl_add_to_wishlist_button:hover {
  background-color: var(--color_main);
  border: var(--color_main);
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action > *:hover svg, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action > .button.added svg, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action > button.woosc-btn-added svg, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action .tinvwl_add_to_wishlist_button:hover svg {
  fill: #fff;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action .tinvwl_add_to_wishlist_button {
  display: inherit;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  letter-spacing: inherit;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action.bottom {
  bottom: 0;
  top: auto;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action.bottom > *:hover, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action.bottom .add_to_cart_button.added, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action.bottom .woosc-added, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action.bottom .compare.added, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action.bottom a.inited-add-wishlist.tinvwl-product-in-list {
  background-color: var(--color_button_background_hover);
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action.bottom > *:hover svg, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action.bottom .add_to_cart_button.added svg, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action.bottom .woosc-added svg, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action.bottom .compare.added svg, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action.bottom a.inited-add-wishlist.tinvwl-product-in-list svg {
  fill: #fff;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action.bottom > *:hover .tinvwl_add_to_wishlist_button, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action.bottom .add_to_cart_button.added .tinvwl_add_to_wishlist_button, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action.bottom .woosc-added .tinvwl_add_to_wishlist_button, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action.bottom .compare.added .tinvwl_add_to_wishlist_button, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action.bottom a.inited-add-wishlist.tinvwl-product-in-list .tinvwl_add_to_wishlist_button {
  border: var(--color_button_background_hover) !important;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_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 .gostro_item_title_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column-reverse;
}
.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 .gostro_item_title_wrapper .star-rating {
  margin-bottom: 0;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .product-item-cat-link {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 5px;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .product-item-cat-link:not(:hover) {
  color: var(--color_body);
}
.woocommerce ul.products.products-grid-style li.product .product-infos .woocommerce-loop-product__title {
  font-size: 17px;
  line-height: 1.33;
  font-weight: bold;
  padding: 0;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .woocommerce-loop-product__title a:not(:hover) {
  color: inherit;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .price {
  margin: 0;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .price .woocs_price_code {
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
  font-size: 16px;
  font-weight: 400;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .price .woocommerce-Price-amount {
  color: #666;
  font-size: 1em;
  line-height: 1.2;
  font-weight: 400;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .price ins .woocommerce-Price-amount {
  color: var(--color_main);
  font-size: 1em;
  margin-right: 6px;
  font-weight: 400;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .price del {
  text-decoration: none;
  position: relative;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .price del .woocommerce-Price-amount {
  color: #999999;
  font-size: 0.85em;
  font-weight: 400;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .price del:before {
  width: 100%;
  height: 1px;
  display: block;
  content: "";
  background-color: #aaaaaa;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .price bdi {
  display: inline-flex;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .price bdi .woocommerce-Price-currencySymbol {
  order: -1;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .variations_form {
  margin-top: 0;
  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 4px 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.color-variable-item-white:not(:hover) .variable-item-span-color {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !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-gostro-style-1 li.product .product_item_countdown {
  margin: 5px -5px 0;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product_item_countdown .box-count {
  padding: 5px;
  margin: 0 5px;
  font-size: 8px;
  line-height: 1;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product_item_countdown .box-count .num {
  font-size: 12px;
  line-height: 1.2;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product_item_countdown .box-count ~ .box-count {
  margin-left: 0px;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-thumbnail {
  margin-bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-thumbnail .gostro_thumb_action {
  opacity: 0;
  left: 0;
  padding: 10px 0;
  visibility: hidden;
  background-color: transparent;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-thumbnail .gostro_thumb_action > * {
  color: #fff;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
  font-weight: 400;
  margin: 0 5px 10px;
  background-color: var(--color_button_background);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  font-size: 0;
  text-align: 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;
  letter-spacing: inherit;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-thumbnail .gostro_thumb_action > * > svg {
  font-size: 15px;
  fill: #fff;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 100%;
  max-width: 100%;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-thumbnail .gostro_thumb_action .tinv-wishlist.tinv-wraper {
  background-color: transparent;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-thumbnail .gostro_thumb_action .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button {
  -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;
  background-color: var(--color_button_background);
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-thumbnail .gostro_thumb_action .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button:hover, .woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-thumbnail .gostro_thumb_action .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.inited-add-wishlist.tinvwl-product-in-list {
  background-color: var(--color_button_background_hover);
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-thumbnail .gostro_thumb_action .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button svg.fm-icon {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-thumbnail .gostro_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-gostro-style-1 li.product .product-thumbnail .gostro_thumb_action > .added_to_cart.wc-forward:hover:after {
  fill: #fff;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-infos {
  text-align: left;
  position: relative;
  padding-top: 19px;
  display: flex;
  flex-direction: column;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-infos .gostro_item_title_wrapper {
  margin-bottom: 5px;
  flex-direction: column;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-infos .gostro_item_title_wrapper .woocommerce-loop-product__title {
  margin-bottom: 5px;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-infos .star-rating {
  order: -2;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-infos .price {
  line-height: 1;
  margin-top: 1px;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-infos .price .woocs_price_code {
  flex-direction: column;
  display: block;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-infos .price .woocs_price_code ins {
  order: -1;
  margin-bottom: 7px;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-infos .price .woocs_price_code ins .woocommerce-Price-amount {
  margin: 0;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-1 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-gostro-style-2 li.product .product-item-wrap {
  display: flex;
  align-items: self-start;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-2 li.product .product-item-wrap .product_item_countdown, .woocommerce ul.products.products-grid-style.product-item-gostro-style-2 li.product .product-item-wrap .fmc-flashs-group {
  display: none !important;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-2 li.product .product-item-wrap .product-thumbnail {
  width: 92px;
  flex: 0 0 92px;
  margin: 0 20px 0 0;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-2 li.product .product-item-wrap .product-infos {
  flex: 1 1 auto;
  margin-top: -6px;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-2 li.product .product-item-wrap .product-infos .woocommerce-loop-product__title {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-2 li.product .product-item-wrap .product-infos .star-rating {
  margin: 0;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-2 li.product .product-item-wrap .product-infos .variations_form {
  margin-top: 0;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-4 li.product {
  text-align: center;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-4 li.product .product-thumbnail .gostro_thumb_action {
  bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-4 li.product .product-thumbnail .gostro_thumb_action > * {
  color: #232529;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  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: inherit;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-4 li.product .product-thumbnail .gostro_thumb_action > * > svg {
  fill: #232529;
  display: inline-block;
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-4 li.product .product-infos {
  text-align: inherit;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-4 li.product .product-infos .price .woocs_price_code {
  display: inline-block;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-4 li.product .variations_form.wvs-archive-variation-wrapper .variable-items-wrapper {
  justify-content: center;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .fmc-flashs-group {
  top: 8px;
  right: auto;
  left: 8px;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom {
  bottom: 0;
  right: 0;
  left: auto;
  width: auto;
  background: #fff;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.button, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.add_to_cart_button, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_external, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_simple, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosq-btn, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosc-btn {
  width: 58px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 0;
  letter-spacing: inherit;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: none;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.button svg, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.add_to_cart_button svg, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_external svg, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_simple svg, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosq-btn svg, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosc-btn svg {
  fill: var(--color_heading);
  width: 20px;
  height: 20px;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.button.added, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.add_to_cart_button.added, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_external.added, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_simple.added, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosq-btn.added, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosc-btn.added {
  background-color: var(--color_main);
  border-color: var(--color_main);
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.button.added svg, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.add_to_cart_button.added svg, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_external.added svg, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_simple.added svg, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosq-btn.added svg, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosc-btn.added svg {
  fill: #ffffff;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosc-btn-added {
  background-color: var(--color_main);
  border-color: var(--color_main);
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosc-btn-added svg {
  fill: #ffffff;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_simple svg {
  width: 22px;
  height: 22px;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right {
  height: calc(100% - 40px);
  top: 10px;
  right: 10px;
  bottom: auto;
  align-items: flex-start;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper {
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper:hover {
  background: none;
  border: none;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper .tinvwl_add_to_wishlist_button, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper .tinvwl_add_to_wishlist_button:hover {
  background: none;
  border: none;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper .tinvwl_add_to_wishlist_button .gostro_tinv_wl_icon {
  display: flex;
  height: 100%;
  align-items: center;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper .tinvwl_add_to_wishlist_button svg {
  height: 20px;
  width: 20px;
  fill: var(--color_heading);
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper .tinvwl_add_to_wishlist_button:hover svg {
  fill: var(--color_heading);
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper .tinvwl_add_to_wishlist_button:hover svg:hover {
  fill: var(--color_main);
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper .tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper .tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg:hover {
  fill: var(--color_main);
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-infos {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-infos .price {
  margin-bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-infos .price + .variations_form {
  margin-top: 0;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-infos .star-rating {
  margin-bottom: 0;
  order: 2;
  margin-top: 8px;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-infos .gostro_item_title_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-infos .gostro_item_title_wrapper .tinv-wraper {
  flex: 0 0 20px;
  text-align: right;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-infos .variations_form {
  background: none !important;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-infos .variations_form ul.variations {
  padding: 0;
}
.woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-infos .variations_form ul.variations .woo-variation-items-wrapper {
  margin: 0;
}
.woocommerce ul.products.products-list2-style {
  margin-bottom: 0;
}
.woocommerce ul.products.products-list2-style li.product {
  margin-bottom: 1.5rem;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap {
  display: flex;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .fmc-flashs-group {
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 1;
  top: 10px;
  right: auto;
  left: 10px;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .fmc-flashs-group .woocommerce-badge {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  height: 28px;
  line-height: 28px;
  text-align: center;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  min-width: 50px;
  border-radius: 3px;
  font-weight: bold;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .fmc-flashs-group .woocommerce-badge.sold_out .fm-icon {
  display: none;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail {
  flex: 0 0 120px;
  width: 120px;
  margin-bottom: 0;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action {
  position: absolute;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom {
  bottom: 0;
  right: 0;
  left: auto;
  width: auto;
  background: #fff;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.button, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.add_to_cart_button, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_external, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_simple {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 0;
  letter-spacing: inherit;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: none;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.button svg, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.add_to_cart_button svg, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_external svg, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_simple svg {
  fill: var(--color_heading);
  width: 20px;
  height: 20px;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.button.added, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.add_to_cart_button.added, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_external.added, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_simple.added {
  background-color: var(--color_main);
  border-color: var(--color_main);
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.button.added svg, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.add_to_cart_button.added svg, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_external.added svg, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_simple.added svg {
  fill: #ffffff;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_simple svg {
  width: 22px;
  height: 22px;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right {
  height: 40px;
  top: 0;
  right: 0;
  bottom: auto;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper {
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  justify-content: center;
  align-items: center;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper:hover {
  background: none;
  border: none;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper .tinvwl_add_to_wishlist_button {
  margin: 0;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper .tinvwl_add_to_wishlist_button, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper .tinvwl_add_to_wishlist_button:hover {
  background: none;
  border: none;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper .tinvwl_add_to_wishlist_button .gostro_tinv_wl_icon {
  display: flex;
  height: 100%;
  align-items: center;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper .tinvwl_add_to_wishlist_button svg {
  height: 20px;
  width: 20px;
  fill: var(--color_heading);
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper .tinvwl_add_to_wishlist_button:hover svg {
  fill: var(--color_heading);
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper .tinvwl_add_to_wishlist_button:hover svg:hover {
  fill: var(--color_main);
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper .tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper .tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg:hover {
  fill: var(--color_main);
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos {
  padding-left: 15px;
  flex: 0 0 calc(100% - 120px);
  width: calc(100% - 120px);
  line-height: 24px;
  display: flex;
  flex-direction: column;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .price {
  margin: 0;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .price .woocs_price_code {
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
  font-size: 16px;
  font-weight: 400;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .price .woocommerce-Price-amount {
  color: #666;
  font-size: 1em;
  line-height: 1.2;
  font-weight: 400;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .price ins .woocommerce-Price-amount {
  color: var(--color_main);
  font-size: 1em;
  margin-right: 6px;
  font-weight: 400;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .price del {
  text-decoration: none;
  position: relative;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .price del .woocommerce-Price-amount {
  color: #999999;
  font-size: 0.85em;
  font-weight: 400;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .price del:before {
  width: 100%;
  height: 1px;
  display: block;
  content: "";
  background-color: #aaaaaa;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .price bdi {
  display: inline-flex;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .price bdi .woocommerce-Price-currencySymbol {
  order: -1;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .product-item-cat-link {
  order: 0;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 5px;
  margin-bottom: 5px;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .product-item-cat-link:not(:hover) {
  color: var(--color_body);
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .woocommerce-loop-product__title {
  order: 1;
  font-size: 17px;
  line-height: 1.33;
  font-weight: bold;
  padding: 0;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .woocommerce-loop-product__title a:not(:hover) {
  color: inherit;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .star-rating {
  order: 2;
  margin-bottom: 0.5rem;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .price {
  order: 3;
  margin-bottom: 0.5rem;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .variations_form {
  order: 4;
  margin: 0;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .variations_form .woo-variation-items-wrapper {
  margin: 0;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .product-item-excerpt {
  order: 5;
  margin-top: 0.5rem;
  max-height: 75px;
  overflow-y: hidden;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .product-item-excerpt + .variations_form {
  margin-bottom: 0.5rem;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos a.added_to_cart.wc-forward {
  display: none;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos ul.variable-items-wrapper {
  justify-content: flex-start;
}

.elementor-element .fmtpl-products ul.products {
  margin-bottom: 0;
  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: -15px;
  margin-right: -15px;
}
.elementor-element .fmtpl-products div:not(.swiper-container) > ul.products li.product {
  padding-left: 15px;
  padding-right: 15px;
}

.product_item_countdown {
  display: flex;
  flex-wrap: wrap;
}
.product_item_countdown .box-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 5px 0;
  background: #ffffff;
  border: 1px solid #cccccc;
  padding: 5px 10px;
}
.product_item_countdown .box-count ~ .box-count {
  margin-left: 10px;
}

@media (min-width: 576px) {
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail {
    flex: 0 0 200px;
    width: 200px;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos {
    flex: 0 0 calc(100% - 200px);
    width: calc(100% - 200px);
  }
}
@media (min-width: 768px) {
  .woocommerce ul.products button.woosq-btn, .woocommerce ul.products button.woosc-btn {
    display: inline-flex;
  }
  .woocommerce ul.products.products-grid-style li.product {
    margin-bottom: 2rem;
  }
  .woocommerce ul.products.products-grid-style li.product .fmc-flashs-group {
    top: 1.25rem;
    left: 1.25rem;
  }
  .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action > a.yith-wcqv-button, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action > button.woosq-btn, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action > button.woosc-btn {
    display: inline-flex;
  }
  .woocommerce ul.products.products-grid-style li.product .product-thumbnail .gostro_thumb_action > button.woosc-btn {
    order: 4;
  }
  .woocommerce ul.products.products-grid-style li.product .product-infos .variations_form {
    margin-top: 19px;
  }
  .woocommerce ul.products.products-grid-style li.product .product-infos .product-top-infos, .woocommerce ul.products.products-grid-style li.product .product-infos .gostro_item_title_wrapper {
    align-items: center;
    flex-direction: row;
  }
  .woocommerce ul.products.products-grid-style li.product .product-infos .product-top-infos .woocommerce-loop-product__title, .woocommerce ul.products.products-grid-style li.product .product-infos .gostro_item_title_wrapper .woocommerce-loop-product__title {
    font-size: 18px;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-1 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-gostro-style-1 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-gostro-style-1 li.product .product-thumbnail .gostro_thumb_action.bottom {
    -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-gostro-style-1 li.product .product-thumbnail .gostro_thumb_action > *:hover {
    background-color: var(--color_button_background_hover);
    border: var(--color_button_background_hover);
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-thumbnail .gostro_thumb_action > *:hover svg {
    fill: #fff;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-thumbnail .gostro_thumb_action > *:hover a.tinvwl_add_to_wishlist_button .icon-hover.fm-icon {
    display: inline-block;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-thumbnail .gostro_thumb_action > *:hover a.tinvwl_add_to_wishlist_button .fm-icon:not(.icon-hover) {
    display: none;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-1 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-gostro-style-1 li.product .product-thumbnail:hover .gostro_thumb_action {
    opacity: 1;
    visibility: visible;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-thumbnail:hover .gostro_thumb_action.bottom {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-infos .gostro_item_title_wrapper {
    order: -1;
    flex-direction: row;
    display: flex;
    align-items: self-start;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-infos .gostro_item_title_wrapper .woocommerce-loop-product__title {
    margin-bottom: 0;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product.sale .product-infos .gostro_item_title_wrapper, .woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product.product-type-grouped .product-infos .gostro_item_title_wrapper {
    position: relative;
    padding-right: 60px;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product.sale .product-infos .gostro_item_title_wrapper .price, .woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product.product-type-grouped .product-infos .gostro_item_title_wrapper .price {
    position: absolute;
    right: 0;
    top: 0;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product.sale .product-infos .gostro_item_title_wrapper .price .woocs_price_code, .woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product.product-type-grouped .product-infos .gostro_item_title_wrapper .price .woocs_price_code {
    display: inline-flex;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-4 li.product .product-thumbnail .gostro_thumb_action {
    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-gostro-style-4 li.product .product-thumbnail .gostro_thumb_action > *:hover {
    background-color: var(--color_button_background_hover);
    border: var(--color_button_background_hover);
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-4 li.product .product-thumbnail .gostro_thumb_action > *:hover svg {
    fill: #fff;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-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-gostro-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-gostro-style-4 li.product .product-thumbnail:hover .gostro_thumb_action {
    opacity: 1;
    visibility: visible;
    bottom: 15px;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-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-gostro-style-14 li.product .fmc-flashs-group {
    top: 20px;
    left: 20px;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail {
    margin-bottom: 26px;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom {
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
    visibility: hidden;
    opacity: 0;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.button, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.add_to_cart_button, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_external, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_simple, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosq-btn, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosc-btn {
    -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 ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.button:hover, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.button.added, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.add_to_cart_button:hover, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.add_to_cart_button.added, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_external:hover, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_external.added, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_simple:hover, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_simple.added, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosq-btn:hover, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosq-btn.added, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosc-btn:hover, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosc-btn.added {
    background-color: var(--color_main) !important;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.button:hover svg, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.button.added svg, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.add_to_cart_button:hover svg, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.add_to_cart_button.added svg, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_external:hover svg, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_external.added svg, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_simple:hover svg, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_simple.added svg, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosq-btn:hover svg, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosq-btn.added svg, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosc-btn:hover svg, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosc-btn.added svg {
    fill: #ffffff;
    -webkit-transition: fill 0.2s linear 0s;
    -moz-transition: fill 0.2s linear 0s;
    -ms-transition: fill 0.2s linear 0s;
    -o-transition: fill 0.2s linear 0s;
    transition: fill 0.2s linear 0s;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right {
    top: 0;
    right: 20px;
    padding-top: 20px;
    height: auto;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper {
    width: 46px;
    height: 46px;
    -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 ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper .tinvwl_add_to_wishlist_button, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper .tinvwl_add_to_wishlist_button:hover {
    background: #fff;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper .tinvwl_add_to_wishlist_button:hover svg {
    fill: var(--color_main);
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail:hover .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom {
    -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-gostro-style-14 li.product .product-infos {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-infos .woocommerce-loop-product__title {
    margin-bottom: 10px;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-infos .price + .variations_form {
    margin-top: 6px;
  }
  .woocommerce ul.products.products-list2-style li.product {
    width: 50% !important;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .fmc-flashs-group {
    top: 15px;
    left: 15px;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail {
    flex: 0 0 160px;
    width: 160px;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom {
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
    visibility: hidden;
    opacity: 0;
    display: flex;
    -webkit-transition: opacity 0.4s, transform 0.35s, visibility 0.3s;
    -moz-transition: opacity 0.4s, transform 0.35s, visibility 0.3s;
    -ms-transition: opacity 0.4s, transform 0.35s, visibility 0.3s;
    -o-transition: opacity 0.4s, transform 0.35s, visibility 0.3s;
    transition: opacity 0.4s, transform 0.35s, visibility 0.3s;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosq-btn, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosc-btn {
    width: 50px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 0;
    letter-spacing: inherit;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: none;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosq-btn svg, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosc-btn svg {
    fill: var(--color_heading);
    width: 20px;
    height: 20px;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.button, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.add_to_cart_button, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_external, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_simple, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosq-btn, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosc-btn {
    width: 50px;
    height: 44px;
    -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 ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.button:hover, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.button.added, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.add_to_cart_button:hover, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.add_to_cart_button.added, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_external:hover, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_external.added, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_simple:hover, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_simple.added, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosq-btn:hover, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosq-btn.added, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosc-btn:hover, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosc-btn.added {
    background-color: var(--color_main) !important;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.button:hover svg, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.button.added svg, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.add_to_cart_button:hover svg, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.add_to_cart_button.added svg, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_external:hover svg, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_external.added svg, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_simple:hover svg, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.product_type_simple.added svg, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosq-btn:hover svg, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosq-btn.added svg, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosc-btn:hover svg, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosc-btn.added svg {
    fill: #ffffff;
    -webkit-transition: fill 0.2s linear 0s;
    -moz-transition: fill 0.2s linear 0s;
    -ms-transition: fill 0.2s linear 0s;
    -o-transition: fill 0.2s linear 0s;
    transition: fill 0.2s linear 0s;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosc-btn-added {
    background-color: var(--color_main);
    border-color: var(--color_main);
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom button.woosc-btn-added svg {
    fill: #ffffff;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right {
    top: 15px;
    right: 15px;
    height: auto;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper {
    -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;
    background-color: #ffffff;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper .tinvwl_add_to_wishlist_button, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper .tinvwl_add_to_wishlist_button:hover {
    background: none;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right .tinvwl-loop-button-wrapper .tinvwl_add_to_wishlist_button:hover svg {
    fill: var(--color_main);
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail:hover .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom {
    -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-list2-style li.product .product-item-wrap .product-infos {
    flex: 0 0 calc(100% - 160px);
    width: calc(100% - 160px);
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .gostro_item_button_wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .gostro_item_button_wrapper a.button.yith-wcqv-button, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .gostro_item_button_wrapper a.button.compare, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .gostro_item_button_wrapper button.woosq-btn.yith-wcqv-button, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .gostro_item_button_wrapper button.woosq-btn.compare, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .gostro_item_button_wrapper button.woosc-btn.yith-wcqv-button, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .gostro_item_button_wrapper button.woosc-btn.compare {
    display: flex;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .gostro_item_button_wrapper a.button:not(:hover):not(.added), .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .gostro_item_button_wrapper button.woosq-btn:not(:hover):not(.added), .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .gostro_item_button_wrapper button.woosc-btn:not(:hover):not(.added) {
    background: var(--color_button_background);
    color: #FFF;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .gostro_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 .gostro_item_button_wrapper button.woosq-btn:not(:hover):not(.added) svg.fm-icon, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .gostro_item_button_wrapper button.woosc-btn:not(:hover):not(.added) svg.fm-icon {
    fill: #ffffff;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .gostro_item_button_wrapper button.woosq-btn, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .gostro_item_button_wrapper button.woosc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .gostro_item_button_wrapper button.woosq-btn svg, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .gostro_item_button_wrapper button.woosc-btn svg {
    margin-right: 6px;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .gostro_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 .gostro_item_button_wrapper .variations_form ul.variations {
    margin: 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .woocommerce ul.products.medium-columns-1 li.product, .elementor-element .fmtpl-products ul.products.medium-columns-1 li.product {
    width: 100%;
  }
  .woocommerce ul.products.medium-columns-1.product-item-border li.product, .elementor-element .fmtpl-products ul.products.medium-columns-1.product-item-border li.product {
    padding-left: 0;
    padding-right: 0;
  }
  .woocommerce ul.products.medium-columns-2 li.product, .elementor-element .fmtpl-products ul.products.medium-columns-2 li.product {
    width: 50%;
  }
  .woocommerce ul.products.medium-columns-2.product-item-border li.product, .elementor-element .fmtpl-products ul.products.medium-columns-2.product-item-border li.product {
    width: calc(100%/2 - 1px);
    padding-left: 0;
    padding-right: 0;
  }
  .woocommerce ul.products.medium-columns-3 li.product, .elementor-element .fmtpl-products ul.products.medium-columns-3 li.product {
    width: 33.3333333333%;
  }
  .woocommerce ul.products.medium-columns-3.product-item-border li.product, .elementor-element .fmtpl-products ul.products.medium-columns-3.product-item-border li.product {
    width: calc(100%/3 - 1px);
    padding-left: 0;
    padding-right: 0;
  }
  .woocommerce ul.products.medium-columns-4 li.product, .elementor-element .fmtpl-products ul.products.medium-columns-4 li.product {
    width: 25%;
  }
  .woocommerce ul.products.medium-columns-4.product-item-border li.product, .elementor-element .fmtpl-products ul.products.medium-columns-4.product-item-border li.product {
    width: calc(100%/4 - 1px);
    padding-left: 0;
    padding-right: 0;
  }
  .elementor-element .fmtpl-products div:not(.swiper-container) > ul.products, .woocommerce div:not(.swiper-container) > ul.products, .woocommerce:not(.swiper-container) > ul.products {
    margin-left: -10px;
    margin-right: -10px;
  }
  .elementor-element .fmtpl-products div:not(.swiper-container) > ul.products li.product, .woocommerce div:not(.swiper-container) > ul.products li.product, .woocommerce:not(.swiper-container) > ul.products li.product {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 1025px) {
  .woocommerce ul.products.products-grid-style li.product {
    margin-bottom: 2.5rem;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-border li.product .product-thumbnail:hover .gostro_thumb_action {
    bottom: 15px;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-item-wrap .product_item_countdown .box-count {
    padding: 5px 8px;
    font-size: 12px;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-item-wrap .product_item_countdown .box-count .num {
    font-size: 18px;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-12 li.product .product-item-wrap::before {
    width: calc(100% + 30px);
    height: calc(100% + 80px);
    transform: translate3d(-15px, -15px, 0);
  }
  .woocommerce ul.products.products-list2-style li.product {
    margin-bottom: 2rem;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos {
    padding-left: 20px;
  }

  .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(100%/2 - 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(100%/3 - 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(100%/4 - 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(100%/5 - 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(100%/6 - 1px);
    padding-left: 0;
    padding-right: 0;
  }
  .woocommerce div:not(.swiper-container) > ul.products {
    margin-left: -15px;
    margin-right: -15px;
  }
  .woocommerce div:not(.swiper-container) > ul.products li.product {
    padding-left: 15px;
    padding-right: 15px;
  }
  .woocommerce:not(.swiper-container) > ul.products {
    margin-left: -15px;
    margin-right: -15px;
  }
  .woocommerce:not(.swiper-container) > ul.products li.product {
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail {
    flex: 0 0 220px;
    width: 220px;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos {
    flex: 0 0 calc(100% - 220px);
    width: calc(100% - 220px);
  }
}
@media (min-width: 1440px) {
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-1 li.product .product-infos .gostro_item_title_wrapper {
    align-items: self-start;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail {
    flex: 0 0 46%;
    width: 46%;
  }
  .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos {
    padding-left: 30px;
    flex: 0 0 54%;
    width: 54%;
  }
}
@media (max-width: 767px) {
  .woocommerce ul.products.products-grid-style .wvs-archive-variation-wrapper .variable-item:not(.radio-variable-item) {
    width: 20px;
    height: 20px;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-4 li.product .product-thumbnail .gostro_thumb_action.bottom > * {
    width: 36px;
    height: 36px;
    margin: 0;
    position: absolute;
    bottom: 5px;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-4 li.product .product-thumbnail .gostro_thumb_action.bottom .tinv-wraper {
    display: none;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action > .woosq-btn, .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action > .woosc-btn {
    display: none !important;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.right {
    top: 0;
    right: 0;
  }
  .woocommerce ul.products.products-grid-style.product-item-gostro-style-14 li.product .product-thumbnail .gostro_product_item_thumb_action_wrap .gostro_thumb_action.bottom a.button {
    width: 40px;
    height: 40px;
  }

  .woocommerce ul.products.small-columns-1 li.product, .elementor-element .fmtpl-products ul.products.small-columns-1 li.product {
    width: 100% !important;
  }
  .woocommerce ul.products.small-columns-2 li.product, .elementor-element .fmtpl-products ul.products.small-columns-2 li.product {
    width: 50% !important;
  }
  .woocommerce div:not(.swiper-container) > ul.products, .woocommerce:not(.swiper-container) > ul.products, .elementor-element .fmtpl-products div: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, .elementor-element .fmtpl-products div:not(.swiper-container) > ul.products li.product {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
.gostro-mobile ul.products.product-item-layout_m_01 li.product {
  margin-bottom: 2.5rem;
  text-align: center;
}
.gostro-mobile ul.products.product-item-layout_m_01 li.product .product-infos {
  align-items: center;
  text-align: center;
}
.gostro-mobile ul.products.product-item-layout_m_01 li.product .product-infos .woocommerce-loop-product__title {
  line-height: 16px;
  margin-bottom: 5px;
}
.gostro-mobile ul.products.product-item-layout_m_01 li.product .product-infos .woocommerce-loop-product__title + .price {
  margin-top: 5px;
}
.gostro-mobile ul.products.product-item-layout_m_01 li.product .product-infos .price {
  margin-bottom: 0;
}
.gostro-mobile ul.products.product-item-layout_m_01 li.product .product-infos .star-rating {
  margin-bottom: 0;
}
.gostro-mobile ul.products.product-item-layout_m_01 li.product .product-infos a.button svg, .gostro-mobile ul.products.product-item-layout_m_01 li.product .product-infos a.button.add_to_cart_button svg {
  margin-right: 6px;
}
.gostro-mobile ul.products.product-item-layout_m_02 li.product {
  margin-bottom: 2.5rem;
}
.gostro-mobile ul.products.product-item-layout_m_02 li.product .product-thumbnail {
  overflow: unset !important;
  margin-bottom: 0.5rem;
}
.gostro-mobile ul.products.product-item-layout_m_02 li.product .product-thumbnail .gostro_thumb_action.bottom {
  bottom: -21px;
  right: 5px;
  z-index: 1;
  width: auto;
}
.gostro-mobile ul.products.product-item-layout_m_02 li.product .product-thumbnail .gostro_thumb_action.bottom a.button {
  font-size: 0;
  padding: 0;
  background: var(--color_heading);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 500;
  border: 2px solid #FFF;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}
.gostro-mobile ul.products.product-item-layout_m_02 li.product .product-thumbnail .gostro_thumb_action.bottom a.button svg {
  fill: #ffffff;
  margin: 0;
}
.gostro-mobile ul.products.product-item-layout_m_02 li.product .product-thumbnail .gostro_thumb_action.bottom a.button.added {
  background-color: var(--color_main);
}
.gostro-mobile ul.products.product-item-layout_m_02 li.product .product-infos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.gostro-mobile ul.products.product-item-layout_m_02 li.product .product-infos a.product-item-cat-link {
  order: 1;
  margin-bottom: 2px;
}
.gostro-mobile ul.products.product-item-layout_m_02 li.product .product-infos .woocommerce-loop-product__title {
  order: 2;
  margin-bottom: 0.5rem;
}
.gostro-mobile ul.products.product-item-layout_m_02 li.product .product-infos .product-price-wrapper {
  order: 3;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 18px;
}
.gostro-mobile ul.products.product-item-layout_m_02 li.product .product-infos .product-price-wrapper .price {
  margin: 0;
}
.gostro-mobile ul.products.product-item-layout_m_02 li.product .product-infos .product-price-wrapper .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button {
  margin: 0;
}
.gostro-mobile ul.products.product-item-layout_m_02 li.product .product-infos .variations_form {
  order: 5;
  margin-top: 3px;
}

/*
* 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: var(--color_main);
}
.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 input[type=text], .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=text], .elementor-widget-fmtpl-newsletter .fmtpl-newsletter .newsletter-form-content .mc4wp-form .fm_newsletter_form input[type=text]:focus, .elementor-widget-fmtpl-newsletter .fmtpl-newsletter .newsletter-form-content .mc4wp-form .fm_newsletter_form input[type=email], .elementor-widget-fmtpl-newsletter .fmtpl-newsletter .newsletter-form-content .mc4wp-form .fm_newsletter_form input[type=email]:focus {
  height: auto !important;
}
.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], .elementor-widget-fmtpl-newsletter .fmtpl-newsletter.newsletter_horizontal .mc4wp-form .fm_newsletter_form input[type=text] {
  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: 18px;
  height: 18px;
  margin-right: 8px;
  fill: #666;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list .fmtpl-post-meta-box {
  display: flex;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list .fmtpl-post-meta-box .fmtpl-post-author_avatar img {
  border-radius: 50%;
  margin-right: 10px;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list .fmtpl-post-meta-box .fmtpl-post-meta-wrap {
  display: flex;
  flex-direction: column;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list .fmtpl-post-meta-box .fmtpl-post-meta-wrap a.fmtpl-post-author {
  font-weight: bold;
  color: var(--color_heading);
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-carousel-box-heading .fmtpl-carousel-box-title {
  margin-bottom: 5px;
  color: #1A1A1A;
  font-family: "DM Sans", Sans-serif;
  font-size: 28px;
  font-weight: 700;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-carousel-box-heading .fmtpl-carousel-box-desc {
  margin-bottom: 37px;
  color: #666666;
  font-family: "DM Sans", Sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-category {
  margin: 0 0 6px 0;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-category a {
  font-family: "DM Sans", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-title {
  margin: 0 0 8px 0;
  font-family: "DM Sans", Sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4em;
  color: var(--color_heading);
}
.elementor-widget-fmtpl-carousel-posts .fmtpl_post_excerpt {
  font-family: "DM Sans", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 17px 0;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-meta-wrap span {
  font-family: "DM Sans", Sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: 1em;
}

@media (min-width: 1440px) {
  .elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.fmtpl-post-layout-modern .fmtpl-post-carousel-item {
    position: relative;
    padding-left: 30%;
  }
  .elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.fmtpl-post-layout-modern .fmtpl-post-carousel-item .wp-post-image {
    max-width: 100%;
    width: 100%;
    height: 100%;
    aspect-ratio: 570/430;
    object-fit: cover;
  }
  .elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.fmtpl-post-layout-modern .fmtpl-post-content {
    position: absolute;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 55%;
  }
}
.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: 14px 25px;
  background: #f4f4f4;
  color: #1a1a1a;
}

.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;
}

.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;
  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-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: var(--color_heading);
}
.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: var(--color_heading);
}
.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(/wp-content/themes/gostro/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: var(--color_heading);
}
.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-images .fmtpl-carousel-images .fmtpl-elementor_image a {
  display: block;
  overflow: hidden;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images .fmtpl-elementor_image a img {
  -webkit-transition: all 0.4s linear 0s;
  -moz-transition: all 0.4s linear 0s;
  -ms-transition: all 0.4s linear 0s;
  -o-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images .fmtpl-elementor_image:hover a 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);
}

.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner .fmtpl-elementor_image {
  overflow: hidden;
}
.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.98);
}
.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;
  margin-left: 5px;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner .fmtpl-elementor_content .fmtpl-products-count .count-value {
  margin-right: 5px;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner .fmtpl-elementor_content .fmtpl-products-count .products-count-title {
  margin-right: 0;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner .fmtpl-elementor_content .fmtpl-products-count.left .count-value {
  float: left;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner .fmtpl-elementor_content .fmtpl-products-count.left .products-count-title {
  margin-right: 5px;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner .fmtpl-button-default.fmtpl-carousel-item-btn {
  transition: background 0.3s linear 0s, color 0.3s linear 0s, border 0.3s linear 0s, opacity 0.3s linear 0s, visibility 0.3s linear 0s;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner:not(.inner_box_content) .fmtpl-elementor_content {
  display: flex;
  align-items: center;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner .fmtpl-item-title a {
  color: #1A1A1A;
  font-family: "DM Sans", Sans-serif;
  font-size: 24px;
  font-weight: 400;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner .fmtpl-products-count {
  margin-bottom: 0px;
  font-family: "DM Sans", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner .fmtpl-carousel-item-btn {
  width: 45px;
  height: 45px;
  border-radius: 50px 50px 50px 50px;
  color: #000000;
  background-color: #FFFFFF;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner .fmtpl-carousel-item-btn svg {
  fill: #000000;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner.fmtpl-carousel-categories-banner-layout-default.inner_box_content .fmtpl-elementor_content {
  display: flex;
  align-items: center;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner.fmtpl-carousel-categories-banner-layout-default.inner_box_content .fmtpl-carousel-item-btn {
  margin-left: auto;
  margin-right: 0;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner.fmtpl-carousel-categories-banner-layout-style1:not(.inner_box_content) .fmtpl-elementor_image {
  position: relative;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner.fmtpl-carousel-categories-banner-layout-style1:not(.inner_box_content) .fmtpl-carousel-item-btn {
  z-index: 1;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner.fmtpl-carousel-categories-banner-layout-style2:not(.inner_box_content) .fmtpl-elementor_image {
  position: relative;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner.fmtpl-carousel-categories-banner-layout-style2:not(.inner_box_content) .fmtpl-elementor_content {
  text-align: center;
  justify-content: center;
}
.elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner.fmtpl-carousel-categories-banner-layout-style2 .fmtpl-elementor_image img {
  border-radius: 50%;
}

.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;
}

.elementor-widget-gostro_slider {
  overflow: hidden;
}
.elementor-widget-gostro_slider .fmtpl-elementor-swiper-slide-wrap {
  grid-gap: 0;
}
.elementor-widget-gostro_slider .fmtpl-elementor-main-swiper {
  overflow: visible;
}
.elementor-widget-gostro_slider .fmtpl-elementor-main-swiper .swiper-wrapper {
  z-index: 1;
}
.elementor-widget-gostro_slider .fmtpl-elementor-main-swiper .elementor-swiper-button {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  z-index: 3;
}
.elementor-widget-gostro_slider .fmtpl-elementor-main-swiper .elementor-swiper-button > span {
  margin: 0;
}
.elementor-widget-gostro_slider .fmtpl-elementor-main-swiper .elementor-swiper-button.elementor-swiper-button-prev {
  left: -15px;
  justify-content: flex-end;
}
.elementor-widget-gostro_slider .fmtpl-elementor-main-swiper .elementor-swiper-button.elementor-swiper-button-prev > span {
  margin-right: 6px;
  margin-left: 0 !important;
}
.elementor-widget-gostro_slider .fmtpl-elementor-main-swiper .elementor-swiper-button.elementor-swiper-button-next {
  right: -15px;
  justify-content: flex-start;
}
.elementor-widget-gostro_slider .fmtpl-elementor-main-swiper .elementor-swiper-button.elementor-swiper-button-next > span {
  margin-left: 6px;
  margin-right: 0 !important;
}
.elementor-widget-gostro_slider .fmtpl-elementor-main-swiper::before, .elementor-widget-gostro_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-gostro_slider .fmtpl-elementor-main-swiper::before {
  left: -10px;
}
.elementor-widget-gostro_slider .fmtpl-elementor-main-swiper::after {
  right: -10px;
}

.fmtpl-elementor-widget .nav-tabs {
  border-bottom: none;
}
.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: var(--color_main);
}

.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: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
}
.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 {
  opacity: 1;
  visibility: visible;
}
.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: var(--color_heading);
  border-color: var(--color_heading);
}
.elementor-pagination-type-progressbar .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-progressbar {
  height: 2px;
  position: static;
  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: var(--color_heading);
}
.elementor-element .fmtpl-button-default, .elementor-element .gostro-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 .gostro-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;
}
.elementor-element .fmtpl-products .fmtpl-products-button-wrapper {
  line-height: 0;
}

@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-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: var(--color_body);
  line-height: inherit;
  border: 1px solid var(--color_border);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  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: var(--color_main);
  color: var(--color_heading);
}
.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: var(--color_heading);
  border: none;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-submit-container button.wpforms-submit:hover {
  background: var(--color_main);
}
.elementor-widget.elementor-widget-wpforms.contact_form_v3 div.wpforms-container .wpforms-form .wpforms-field-label {
  display: block;
  font-weight: 500;
  font-size: 12px;
  float: none;
  line-height: 1.3;
  margin: 0 0 8px 0;
  padding: 0;
  color: #000;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.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: var(--color_input_border);
  height: 50px;
}
.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: var(--color_input_border_focus);
}
.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: 12px;
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  height: 50px;
  padding: 0 20px;
  min-width: 160px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #FFF;
  background: #000;
  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: var(--color_main);
  color: #ffffff;
  border: none;
}

.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: var(--color_main);
  }
  .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-fmtpl-carousel-products .swiper-container-horizontal ul.products.products-grid-style > li.product {
    margin-bottom: 0 !important;
  }

  .elementor-widget-gostro_slider .fmtpl-elementor-main-swiper .elementor-swiper-button.elementor-swiper-button-prev {
    left: -45px;
  }
  .elementor-widget-gostro_slider .fmtpl-elementor-main-swiper .elementor-swiper-button.elementor-swiper-button-next {
    right: -45px;
  }
  .elementor-widget-gostro_slider .fmtpl-elementor-main-swiper::before, .elementor-widget-gostro_slider .fmtpl-elementor-main-swiper::after {
    width: 30px;
  }
  .elementor-widget-gostro_slider .fmtpl-elementor-main-swiper::before {
    left: -30px;
  }
  .elementor-widget-gostro_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: 0;
    transform: translate(-45%, -50%);
  }
  .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper:hover .elementor-swiper-button.elementor-swiper-button-next {
    right: 0;
    transform: translate(45%, -50%);
  }
  .elementor-element .fmtpl-button-default, .elementor-element .gostro-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 .gostro-button-default .fmtpl-btn-icon {
    display: flex;
    align-items: center;
  }
  .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 .gostro-product-pin-item .pin_content_wrap:hover {
    background: #ffffff;
  }
  .elementor-widget-fmtpl-product-pin .gostro-product-pin-item .pin_content_wrap:hover .pin-product-box {
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 1025px) {
  .elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner.fmtpl-carousel-categories-banner-layout-default.inner_box_content .fmtpl-carousel-item-btn {
    margin-right: 1rem;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.25s linear 0s, visibility 0.25s linear 0s, margin-right 0.25s linear 0s;
    -moz-transition: opacity 0.25s linear 0s, visibility 0.25s linear 0s, margin-right 0.25s linear 0s;
    -ms-transition: opacity 0.25s linear 0s, visibility 0.25s linear 0s, margin-right 0.25s linear 0s;
    -o-transition: opacity 0.25s linear 0s, visibility 0.25s linear 0s, margin-right 0.25s linear 0s;
    transition: opacity 0.25s linear 0s, visibility 0.25s linear 0s, margin-right 0.25s linear 0s;
  }
  .elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner.fmtpl-carousel-categories-banner-layout-default.inner_box_content .elementor-fmtpl-category-carousel-banner:hover .fmtpl-carousel-item-btn {
    margin-right: 0;
    opacity: 1;
    visibility: visible;
  }
  .elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner.fmtpl-carousel-categories-banner-layout-style1 .fmtpl-carousel-item-btn {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.25s linear 0s, visibility 0.25s linear 0s;
    -moz-transition: opacity 0.25s linear 0s, visibility 0.25s linear 0s;
    -ms-transition: opacity 0.25s linear 0s, visibility 0.25s linear 0s;
    -o-transition: opacity 0.25s linear 0s, visibility 0.25s linear 0s;
    transition: opacity 0.25s linear 0s, visibility 0.25s linear 0s;
  }
  .elementor-widget-fmtpl-carousel-categories-banner .fmtpl-carousel-categories-banner.fmtpl-carousel-categories-banner-layout-style1 .fmtpl-elementor_image:hover .fmtpl-carousel-item-btn {
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 1200px) {
  .elementor-widget-fmtpl-product-pin .gostro-product-pin-item .pin_content_wrap .pin-product-box {
    width: 250px;
  }
}
@media (max-width: 767px) {
  .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .elementor-swiper-button {
    top: 50% !important;
  }
  .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .elementor-swiper-button.elementor-swiper-button-prev {
    transform: translate(-50%, -50%);
    left: 3px;
  }
  .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .elementor-swiper-button.elementor-swiper-button-next {
    transform: translate(50%, -50%);
    right: 3px;
  }
}
@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,
.page-shop-option .page-heading-wrap .gostro-carousel-wrap > .container,
.page-shop-option .shop-heading-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  #woosq-popup {
    background-color: #f5f5f5;
  }
  #woosq-popup .thumbnails .thumbnails-ori {
    background-color: #f5f5f5;
  }
  #woosq-popup .thumbnails .thumbnails-ori 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 {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 1;
    letter-spacing: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #woosq-popup .thumbnails .slick-slider .slick-arrow:before {
    font-size: 20px;
    color: #aaaaaa;
  }
  #woosq-popup .thumbnails .slick-slider .slick-arrow.slick-prev {
    left: 5px;
  }
  #woosq-popup .thumbnails .slick-slider .slick-arrow.slick-next {
    right: 5px;
  }
  #woosq-popup .thumbnails .slick-slider .slick-arrow:hover {
    background-color: transparent;
  }
  #woosq-popup .thumbnails .slick-slider .slick-arrow:hover:before {
    color: var(--color_main);
  }
  #woosq-popup .thumbnails .slick-slider .slick-dots li.slick-active button:before {
    background-color: transparent;
    box-shadow: 0 0 0 2px var(--color_main);
  }
  #woosq-popup button.mfp-close {
    background: none;
    padding: 0;
    margin: 5px 5px 0 0;
    letter-spacing: inherit;
  }
  #woosq-popup button.mfp-close:before {
    font-size: 20px;
    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;
    height: 100%;
    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 {
    margin: 0 8px 0 0;
  }
  #woosq-popup .summary .woocommerce-product-rating a.woocommerce-review-link {
    color: var(--color_body);
  }
  #woosq-popup .summary h1.product_title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--color_heading);
    margin-bottom: 18px;
    text-transform: unset;
    letter-spacing: 0;
  }
  #woosq-popup .summary .out-of-stock {
    font-size: 28px;
  }
  #woosq-popup .summary .price {
    margin-bottom: 1.5rem;
  }
  #woosq-popup .summary .price {
    margin: 0;
  }
  #woosq-popup .summary .price .woocs_price_code {
    display: inline-flex;
    align-items: center;
    flex-direction: row-reverse;
    font-size: 28px;
    font-weight: 400;
  }
  #woosq-popup .summary .price .woocommerce-Price-amount {
    color: #666;
    font-size: 1em;
    line-height: 1.2;
    font-weight: 400;
  }
  #woosq-popup .summary .price ins .woocommerce-Price-amount {
    color: var(--color_main);
    font-size: 1em;
    margin-right: 6px;
    font-weight: 400;
  }
  #woosq-popup .summary .price del {
    text-decoration: none;
    position: relative;
  }
  #woosq-popup .summary .price del .woocommerce-Price-amount {
    color: #999999;
    font-size: 0.85em;
    font-weight: 400;
  }
  #woosq-popup .summary .price del:before {
    width: 100%;
    height: 1px;
    display: block;
    content: "";
    background-color: #aaaaaa;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
  }
  #woosq-popup .summary .price bdi {
    display: inline-flex;
  }
  #woosq-popup .summary .price bdi .woocommerce-Price-currencySymbol {
    order: -1;
  }
  #woosq-popup .summary .woocs_price_code .ins {
    text-decoration: none !important;
  }
  #woosq-popup .summary .woocommerce-product-details__short-description {
    line-height: 1.5;
    margin-bottom: 1.75rem;
  }
  #woosq-popup .summary .woocommerce-product-details__short-description p {
    margin-bottom: 0.5rem;
  }
  #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: 1.5;
    padding-left: 16px;
  }
  #woosq-popup .summary .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;
  }
  #woosq-popup .summary .woocommerce-product-details__short-description ul li + li {
    margin-top: 6px;
  }
  #woosq-popup .summary a.gostro-product-read-more-btn {
    font-size: 14px;
    color: #1a1a1a;
    line-height: 16px;
    border-bottom: 1px solid #6e6e6e;
    font-weight: 500;
  }
  #woosq-popup .summary a.gostro-product-read-more-btn:hover {
    color: var(--color_main);
  }
  #woosq-popup .summary form.cart {
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }
  #woosq-popup .summary form.cart .quantity {
    border: 2px solid #d5d5d5;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    height: 50px;
    min-width: 140px;
    position: relative;
    flex: 0 0 140px;
    width: 140px;
    margin: 0 10px 25px 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: 50px;
    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 {
    border: none;
    display: flex;
    min-height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #000;
    -moz-appearance: textfield;
  }
  #woosq-popup .summary form.cart .quantity.hidden {
    border: none;
    height: 0;
    min-height: 0;
  }
  #woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist {
    margin-right: 10px;
  }
  #woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button {
    display: inline-flex;
    height: 50px;
    padding: 0 15px;
    font-size: 1rem;
    line-height: 1rem;
    letter-spacing: -0.02rem;
    font-weight: bold;
    text-transform: capitalize;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: var(--color_heading);
    border: none;
    background-color: #f3f3f3;
    -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;
    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 svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: var(--color_heading);
  }
  #woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button:hover {
    background-color: var(--color_main);
    color: #ffffff;
  }
  #woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button:hover svg {
    fill: #ffffff;
  }
  #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: 0;
  }
  #woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list {
    background-color: var(--color_main);
    color: #ffffff;
  }
  #woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg {
    fill: #ffffff;
  }
  #woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button.disabled-add-wishlist {
    opacity: 0.5;
    background-color: #f3f3f3;
    color: var(--color_heading);
  }
  #woosq-popup .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button.disabled-add-wishlist svg {
    fill: var(--color_heading);
  }
  #woosq-popup .summary form.cart .woosc-btn {
    display: inline-flex;
    height: 50px;
    padding: 0 15px;
    font-size: 1rem;
    line-height: 1rem;
    letter-spacing: -0.02rem;
    font-weight: bold;
    text-transform: capitalize;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: var(--color_heading);
    border: none;
    background-color: #f3f3f3;
    -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;
    order: 9;
  }
  #woosq-popup .summary form.cart .woosc-btn svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: var(--color_heading);
  }
  #woosq-popup .summary form.cart .woosc-btn:hover {
    background-color: var(--color_main);
    color: #ffffff;
  }
  #woosq-popup .summary form.cart .woosc-btn:hover svg {
    fill: #ffffff;
  }
  #woosq-popup .summary form.cart .woosc-btn.woosc-added svg {
    display: none;
  }
  #woosq-popup .summary form.cart .tinv-wraper, #woosq-popup .summary form.cart .woosc-btn {
    width: calc(50% - 5px);
    flex: 0 0 calc(50% - 5px);
    margin-bottom: 10px;
  }
  #woosq-popup .summary form.cart .single_add_to_cart_button {
    flex: 0 0 calc(100% - 150px);
    width: calc(100% - 150px);
  }
  #woosq-popup .summary form.cart button.single_add_to_cart_button {
    font-weight: bold;
    color: #ffffff;
    font-size: 1rem;
    height: 50px;
    padding: 0 15px;
    margin: 0 0 10px 0;
  }
  #woosq-popup .summary form.cart button.single_add_to_cart_button svg.fm-icon {
    margin-right: 6px;
    fill: #ffffff;
    flex: 0 0 1rem;
  }
  #woosq-popup .summary form.cart button.single_add_to_cart_button .gostro-add-to-cart-text {
    text-align: left;
  }
  #woosq-popup .summary form.cart .single_variation_wrap {
    width: 100%;
  }
  #woosq-popup .summary .product_meta {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
  #woosq-popup .summary .product_meta > span {
    margin-bottom: 5px;
  }
  #woosq-popup .summary .product_meta > span + span {
    margin-left: 0;
  }
  #woosq-popup .summary .product_meta .posted_in {
    display: block;
  }
  #woosq-popup .summary .product_meta .posted_in a {
    color: var(--color_heading);
  }
  #woosq-popup .summary .product_meta .posted_in a:hover {
    color: var(--color_main);
  }
  #woosq-popup .summary .product_meta .tagged_as {
    flex: 0 0 100%;
    width: 100%;
    margin-left: 0;
  }
  #woosq-popup .summary .product_meta .sku_wrapper {
    display: block;
  }
  #woosq-popup .summary .product_meta .sku_wrapper .sku {
    color: var(--color_heading);
  }
  #woosq-popup .summary .product_meta .tagged_as a {
    color: var(--color_heading);
  }
  #woosq-popup .summary .product_meta .tagged_as a:hover {
    color: var(--color_main);
  }
  #woosq-popup .summary .product-share {
    width: 100%;
  }
  #woosq-popup .summary .product-share, #woosq-popup .summary .product-share .socials-sharing {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  #woosq-popup .summary .product-share ul.socials-sharing {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
  }
  #woosq-popup .summary .product-share ul.socials-sharing > li {
    padding: 0 10px;
  }
  #woosq-popup .summary .product-share ul.socials-sharing > li svg {
    fill: var(--color_heading);
  }
  #woosq-popup .summary .product-share > label {
    margin-bottom: 0;
    display: flex;
    align-items: center;
  }
  #woosq-popup .summary .product-share > label svg {
    display: none;
  }
  #woosq-popup .summary .product-share > label span::after {
    display: inline-block;
    content: ":";
    margin: 0 5px 0 2px;
  }
  #woosq-popup .summary form.cart {
    display: flex;
  }
  #woosq-popup .summary a.gostro-product-read-more-btn, #woosq-popup .summary .product_meta, #woosq-popup .summary .product-share {
    display: none;
  }
  #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations {
    position: relative;
    margin-bottom: 1.5rem;
  }
  #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations tr {
    display: flex;
    margin-bottom: 0;
    flex-direction: column;
    border-top: 1px solid var(--color_border);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations tr:last-child {
    border-bottom: 1px solid var(--color_border);
  }
  #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations tr td, #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations tr th {
    padding-top: 0;
    padding-bottom: 0;
  }
  #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations tr td.label {
    margin-bottom: 6px;
    min-width: 68px;
    display: flex;
    align-items: center;
    width: 100% !important;
    line-height: 1.5rem;
  }
  #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations tr td.label .woo-selected-variation-item-name {
    font-weight: 400;
    color: var(--color_body);
    font-style: italic;
  }
  #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations tr td.label label {
    position: relative;
    margin-bottom: 0;
    color: var(--color_heading);
    line-height: inherit;
    font-weight: 700;
  }
  #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations select {
    background-image: url(/wp-content/themes/gostro/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 .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .select2-container--default {
    height: 50px;
  }
  #woosq-popup .single-product .type-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: var(--color_body);
  }
  #woosq-popup .single-product .type-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(/wp-content/themes/gostro/assets/images/select_icon_single_product.svg);
  }
  #woosq-popup .single-product .type-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 .single-product .type-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 var(--color_border) !important;
    margin: 3px 10px 3px 0;
  }
  #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item:not(.radio-variable-item):hover, #woosq-popup .single-product .type-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 var(--color_heading) !important;
  }
  #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.color-variable-item, #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.image-variable-item {
    width: 40px;
    height: 40px;
    padding: 3px;
    box-shadow: 0 0 0 1px transparent !important;
  }
  #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.color-variable-item:hover, #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.color-variable-item.selected, #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.image-variable-item:hover, #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.image-variable-item.selected {
    box-shadow: 0 0 0 1px var(--color_border) !important;
  }
  #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.color-variable-item.disabled, #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.image-variable-item.disabled {
    box-shadow: 0 0 0 1px #00000010 !important;
  }
  #woosq-popup .single-product .type-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 .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.color-variable-item.color-variable-item-white:not(.selected) .variable-item-contents {
    border: 1px solid #f4f4f4;
    border-radius: inherit;
  }
  #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.image-variable-item.image-variable-item-white:not(.selected) .variable-item-contents {
    border: 1px solid #f4f4f4;
    border-radius: inherit;
  }
  #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item {
    width: auto;
    margin: 3px 10px 3px 0;
    font-size: 16px;
    line-height: 18px;
    padding: 0 6px;
    background: none;
    height: 40px;
    min-width: 40px;
    color: var(--color_body);
    -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: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
  }
  #woosq-popup .single-product .type-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 .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item:hover, #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item.selected {
    color: var(--color_heading);
  }
  #woosq-popup .single-product .type-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 .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.radio-variable-item > * {
    margin: 0 3px;
  }
  #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .variable-items-wrapper.radio-variable-wrapper {
    display: flex;
    align-items: center;
  }
  #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .woo-variation-items-wrapper {
    display: flex;
    align-items: center;
  }
  #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .reset_variations {
    position: relative;
    display: block;
    margin: 0 0 0 15px;
    color: var(--color_heading);
    font-size: 15px;
    padding-right: 15px;
    border-bottom: 1px solid var(--color_border);
    text-decoration: none;
    line-height: inherit;
    height: 30px;
  }
  #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .reset_variations::before, #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .reset_variations::after {
    display: flex;
    content: "";
    width: 1px;
    height: 12px;
    background: var(--color_heading);
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -3px;
  }
  #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .reset_variations::before {
    transform: rotate(45deg);
  }
  #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .reset_variations::after {
    transform: rotate(-45deg);
  }
  #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .reset_variations:hover {
    color: var(--color_main);
  }
  #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .reset_variations:hover::before, #woosq-popup .single-product .type-product.product-type-variable .summary form.cart.variations_form table.variations .reset_variations:hover::after {
    background: var(--color_main);
  }
  #woosq-popup .single-product .type-product.product-type-variable .summary form.cart .single_variation_wrap .woocommerce-variation-add-to-cart {
    display: flex;
    flex-wrap: wrap;
  }
  #woosq-popup .single-product .type-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 .single-product .type-product.product-type-variable .summary form.cart .single_variation_wrap .woocommerce-variation-price:not(:empty) {
    margin-bottom: 15px;
  }
  #woosq-popup .single-product .type-product.product-type-variable .woocommerce-variation-add-to-cart {
    display: inline-block;
  }
  #woosq-popup .single-product .type-product.product-type-grouped .summary form.cart.grouped_form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #woosq-popup .single-product .type-product.product-type-grouped .summary form.cart.grouped_form .group_table {
    flex: 0 0 100%;
    width: 100%;
    border: none;
    margin-bottom: 25px;
  }
  #woosq-popup .single-product .type-product.product-type-grouped .summary form.cart.grouped_form .group_table tr td {
    padding: 10px 0 10px 15px;
    vertical-align: middle;
  }
  #woosq-popup .single-product .type-product.product-type-grouped .summary form.cart.grouped_form .group_table tr td.woocommerce-grouped-product-list-item__quantity {
    padding-left: 0;
  }
  #woosq-popup .single-product .type-product.product-type-grouped .summary form.cart.grouped_form .group_table tr td.woocommerce-grouped-product-list-item__price {
    padding-left: 0;
    text-align: right;
    width: 68px;
  }
  #woosq-popup .single-product .type-product.product-type-grouped .summary form.cart.grouped_form .group_table tr ~ tr {
    border-top: 1px solid var(--color_border);
  }
  #woosq-popup .single-product .type-product.product-type-grouped .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item {
    display: table-row;
  }
  #woosq-popup .single-product .type-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 .single-product .type-product.product-type-grouped .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item a.button.product_type_simple {
    background: var(--color_body);
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    height: 50px;
    padding: 0 30px;
    min-width: 150px;
  }
  #woosq-popup .single-product .type-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 .single-product .type-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: var(--color_main);
  }
  #woosq-popup .single-product .type-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;
    border-radius: 16px;
    flex: 0 0 100px;
    min-width: 100px;
    width: 100px;
  }
  #woosq-popup .single-product .type-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 .single-product .type-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 .single-product .type-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: var(--color_heading);
  }
  #woosq-popup .single-product .type-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 .single-product .type-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: var(--color_heading);
  }
  #woosq-popup .single-product .type-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 {
    display: flex;
    justify-content: flex-end;
    line-height: 16px;
    color: var(--color_heading);
  }
  #woosq-popup .single-product .type-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: var(--color_body);
    margin-right: 6px;
  }
  #woosq-popup .single-product .type-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 .single-product .type-product.product-type-grouped .summary form.cart.grouped_form .woocommerce-grouped-product-list .out-of-stock {
    margin-bottom: 0;
  }
  #woosq-popup .single-product .type-product.product-type-grouped .summary form.cart.grouped_form .single_add_to_cart_button {
    flex: 0 0 100%;
  }
  #woosq-popup .single-product .product .summary .summary-content {
    width: 99%;
  }
}
@media (max-width: 1023px) {
  #woosq-popup {
    height: max-content !important;
    overflow-y: auto;
  }
}
@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;
  }

  .theme-gostro:not(.gostro-mobile) .header-mobile > .container .site-branding {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .hidden_on_mobile {
    display: none !important;
  }
}
.header-mobile {
  height: var(--header_height_mobile);
  background: var(--header_color_bg);
}
.header-mobile > .container {
  height: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
}
.header-mobile > .container .site-branding {
  padding: 0;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0;
  justify-content: center;
}
.header-mobile > .container .site-branding .site-logo {
  width: var(--header_logo_width_mobile);
}
.header-mobile > .container .mobile-nav-btn > a {
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 15px;
  height: 1.5rem;
  width: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--header_color_text);
}
.header-mobile > .container .mobile-nav-btn > a svg {
  width: inherit;
  height: inherit;
  fill: var(--header_color_text);
}
.header-mobile > .container .header-element.cart_box a.cart-btn > span.c-button__text {
  display: flex;
  align-items: center;
}
.header-mobile .site-logo a.logo {
  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;
}
.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;
  justify-content: flex-start;
}
.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;
  justify-content: flex-start;
}
.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);
}
.home .header-mobile.header-mobile-sticky.headroom--pinned.headroom--not-top {
  border-bottom: none;
}
.header-mobile .header-element > a, .header-mobile .header-element.my-account-box a.account-btn span.c-button__text {
  display: flex;
  align-items: center;
}
.site-header:not(.fmc-transparent-header) .header-mobile {
  /* border-bottom: 1px solid var(--color_border) */
}
.single-product .header-mobile, .home.blog .header-mobile, .single-post .header-mobile {
  border-bottom: 1px solid var(--color_border);
}

.error-404.not-found, .no-results.not-found {
  text-align: center;
}
.error-404.not-found .fm-search-form, .no-results.not-found .fm-search-form {
  display: inline-flex;
  height: 46px;
  min-width: 320px;
}
.error-404.not-found .fm-search-form .form-input-wrap, .no-results.not-found .fm-search-form .form-input-wrap {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
.error-404.not-found .fm-search-form .search_text_input, .no-results.not-found .fm-search-form .search_text_input {
  border-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.error-404.not-found .fm-search-form button[type=submit], .no-results.not-found .fm-search-form button[type=submit] {
  line-height: initial;
  min-width: 50px;
}

.error404 #content {
  padding-top: 90px;
}
.error404 ul.products {
  margin-top: 20px;
}
.error404 .site-main .fm-search-form {
  margin: 10px auto 80px auto;
  min-width: 500px;
}
.error404 .site-main .fm-search-form button[type=submit] {
  width: 80px;
  color: #ffffff;
}
.error404 .site-main .fm-search-form button[type=submit] svg {
  fill: #ffffff;
  width: 20px;
  height: 20px;
}

.theme-gostro form.woocommerce-form-track-order .form-row-first, .theme-gostro form.woocommerce-form-track-order .form-row-last {
  width: 100% !important;
  padding: 0;
  margin-bottom: 1.5rem;
}
.theme-gostro form.woocommerce-form-track-order .form-row {
  padding: 0;
}
.theme-gostro form.woocommerce-form-track-order button[type=submit] {
  width: 100%;
}

/*# 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);
  }
  .c-offcanvas--right {
    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: DM Sans;font-weight: 400;font-size: 16px;line-height: 24px;letter-spacing: -0.02rem;}body {color:#666666;}body button.close svg { fill: #666666;}h1, .h1{font-family: DM Sans;font-weight: 400;font-size: 2.5rem;line-height: 1.5;letter-spacing: -0.32px;text-transform: none;}h1, .h1 {color:#1a1a1a;}h1, .h1 button.close svg { fill: #1a1a1a;}h1 svg.stroke, .h1 svg.stroke{stroke:#1a1a1a;}h1 svg.fill, .h1 svg.fill{fill:#1a1a1a;}h2, .h2{font-family: DM Sans;font-weight: 700;font-size: 2rem;line-height: 1.5;letter-spacing: -0.32px;text-transform: none;}h2, .h2 {color:#1a1a1a;}h2, .h2 button.close svg { fill: #1a1a1a;}h2 svg.stroke, .h2 svg.stroke{stroke:#1a1a1a;}h2 svg.fill, .h2 svg.fill{fill:#1a1a1a;}h3, .h3{font-family: DM Sans;font-weight: 700;font-size: 1.75rem;line-height: 1.5;letter-spacing: -0.32px;text-transform: none;}h3, .h3 {color:#1a1a1a;}h3, .h3 button.close svg { fill: #1a1a1a;}h3 svg.stroke, .h3 svg.stroke{stroke:#1a1a1a;}h3 svg.fill, .h3 svg.fill{fill:#1a1a1a;}h4, .h4{font-family: DM Sans;font-weight: 400;font-size: 1.5rem;line-height: 1.5;letter-spacing: -0.32px;text-transform: none;}h4, .h4 {color:#1a1a1a;}h4, .h4 button.close svg { fill: #1a1a1a;}h4 svg.stroke, .h4 svg.stroke{stroke:#1a1a1a;}h4 svg.fill, .h4 svg.fill{fill:#1a1a1a;}h5, .h5{font-family: DM Sans;font-weight: 400;font-size: 1.25rem;line-height: 1.5;letter-spacing: -0.32px;text-transform: none;}h5, .h5 {color:#1a1a1a;}h5, .h5 button.close svg { fill: #1a1a1a;}h5 svg.stroke, .h5 svg.stroke{stroke:#1a1a1a;}h5 svg.fill, .h5 svg.fill{fill:#1a1a1a;}h6, .h6{font-family: DM Sans;font-weight: 400;font-size: 1rem;line-height: 1.5;letter-spacing: -0.32px;text-transform: none;}h6, .h6 {color:#1a1a1a;}h6, .h6 button.close svg { fill: #1a1a1a;}h6 svg.stroke, .h6 svg.stroke{stroke:#1a1a1a;}h6 svg.fill, .h6 svg.fill{fill:#1a1a1a;}.fmc-announcement-box{font-family: DM Sans;font-weight: 500;font-size: 14px;line-height: 20px;letter-spacing: -0.02rem;font-style: normal;font-weight: 500;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 > ul > li > a, .site-header .main-navigation > .nav-menu > ul > li > a{font-family: DM Sans;font-weight: 400;font-size: 16px;line-height: 24px;letter-spacing: -0.02rem;text-transform: capitalize;}.site-header .main-navigation > ul > li > a, .site-header .main-navigation > .nav-menu > ul > li > a {color:#1a1a1a;}.site-header .main-navigation > ul > li > a, .site-header .main-navigation > .nav-menu > ul > li > a button.close svg { fill: #1a1a1a;}@media(min-width: 1700px) {.container{ max-width:1700px;}.header-mobile > .container, .page-heading-wrap > .container, #content > .container, .site-content .page-heading-wrap .page-heading-container, .site-content .shop-heading-container, .header-breadcrumb-wrap > .container, .term-description-full-content > .container { max-width:1700px;}.elementor-section.elementor-section-boxed > .elementor-container { max-width:1700px;}}.search_box{margin-left:30px;}.cart_box{margin-left:20px;}.wishlist-box{margin-left:20px;}@media (min-width: 1200px) {.fm-search-form{width: 330px;}}.shop-heading-content{background-image: url(https://gostro.familab.net/wp-content/uploads/2022/04/banner_shop2.jpg);background-repeat:no-repeat;background-position:center top;background-size:cover;background-attachment:scroll;}.woocommerce-badge.on_sale {color: #ffffff;background-color: #55a61d;;}.woocommerce-badge.new {color: #000000;background-color: #ffd000;;}.woocommerce-badge.featured {color: #ffffff;background-color: #fe4819;;}.woocommerce-badge.sold_out {color: #fb1c1c;background-color: #ffffff50;;}@media (min-width: 992px) {.single-product .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper{height: 400px;}}@media (min-width: 1200px) {.single-product .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper{height: 692px;}}section.comments-area {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid var(--color_border);
  clear: both;
}
section.comments-area .comments-title {
  margin-bottom: 2rem;
  font-weight: 400;
}
section.comments-area .comment-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
  text-align: left;
}
section.comments-area .comment-list + #respond {
  margin-top: 55px;
}
section.comments-area .comment-list .comment.depth-1:not(.parent) {
  padding-bottom: 20px;
  border-bottom: solid 1px var(--color_border);
  margin-bottom: 20px;
}
section.comments-area .comment-list .comment-body {
  display: flex;
  flex-wrap: wrap;
}
section.comments-area .comment-list .comment-body .comment-content {
  flex: 0 0 100%;
  max-width: 100%;
}
section.comments-area .comment-list .comment-body .comment-content .comment-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
section.comments-area .comment-list .comment-body .comment-content .comment-heading .comment-info {
  display: flex;
  flex-direction: column;
}
section.comments-area .comment-list .comment-body .comment-content .comment-heading .comment-info .author-display-name, section.comments-area .comment-list .comment-body .comment-content .comment-heading .comment-info .author-display-name a {
  font-weight: 500;
  font-style: normal;
  text-transform: capitalize;
  color: var(--color_heading);
  font-size: 20px;
}
section.comments-area .comment-list .comment-body .comment-content .comment-heading .comment-info time {
  font-size: 13px;
  color: #b0b0b0;
}
section.comments-area .comment-list .comment-body .comment-content .comment-heading .comment-action a {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color_body);
  margin-right: 10px;
}
section.comments-area .comment-list .comment-body .comment-content .comment-heading .comment-action a:last-child {
  margin-right: 0;
}
section.comments-area .comment-list .comment-body .comment-content .comment-heading .comment-action a:hover {
  color: var(--color_heading);
}
section.comments-area .comment-list .comment-body .comment-content .comment-text p:last-child {
  margin-bottom: 0;
}
section.comments-area .comment-list .comment-body .user-avatar {
  flex: 0 0 75px;
}
section.comments-area .comment-list .comment-body .user-avatar + .comment-content {
  flex: 0 0 calc(100% - 75px);
  max-width: calc(100% - 75px);
}
section.comments-area .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;
  border-radius: 0;
}
section.comments-area .comment-list .comment-body #respond {
  flex: 0 0 100%;
  margin-top: 35px;
  padding-top: 55px;
  padding-bottom: 25px;
  border-top: 1px solid var(--color_border);
}
section.comments-area .comment-list .comment-body #respond #reply-title {
  display: flex;
  justify-content: space-between;
  line-height: 1.2;
}
section.comments-area .comment-list .comment-body #respond #reply-title #cancel-comment-reply-link {
  font-size: 15px;
}
section.comments-area .comment-list .comment-body #respond #commentform .form-submit {
  margin-bottom: 0;
}
section.comments-area .comment-list .children {
  padding-left: 0;
  list-style: none;
  text-align: left;
}
section.comments-area .comment-list .children > li {
  padding-left: 30px;
}
section.comments-area .comment-list .children .comment {
  margin-top: 20px;
  border-top: 1px solid var(--color_border);
  padding-top: 20px;
}
section.comments-area .comment-list .children .comment:not(.parent):last-child {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color_border);
  margin-bottom: 20px;
}
section.comments-area .comment-list .pingback, section.comments-area .comment-list .trackback {
  margin-bottom: 1.5rem;
  text-align: left;
}
section.comments-area .comment-respond #reply-title {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 400;
  color: var(--color_heading);
}
section.comments-area .comment-respond .comment-form p {
  margin-bottom: 23px;
}
section.comments-area .comment-respond .comment-form .gostro_comment_fields_group {
  display: flex;
  flex-wrap: wrap;
}
section.comments-area .comment-respond .comment-form .gostro_comment_fields_group > p {
  width: calc((100% - 60px)/3);
  margin-right: 30px;
  margin-bottom: 10px;
}
section.comments-area .comment-respond .comment-form .gostro_comment_fields_group > p:nth-child(3n) {
  margin-right: 0;
}
section.comments-area .comment-respond .comment-form .gostro_comment_fields_group > p.comment-form-cookies-consent {
  width: 100%;
  margin-right: 0;
  margin-bottom: 20px;
  display: flex;
}
.single-post section.comments-area .comment-respond .comment-form .gostro_comment_fields_group > p.comment-form-cookies-consent {
  justify-content: center;
}
section.comments-area .comment-respond .comment-form .form-submit input#submit {
  width: 200px;
}
section.comments-area .comment-respond .comment-form .comment-form-cookies-consent {
  margin-bottom: 10px;
  margin-top: 10px;
}
section.comments-area .comment-navigation {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 1025px) {
  section.comments-area .comment-list .comment-body .comment-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
  section.comments-area .comment-list .comment-body .user-avatar {
    flex: 0 0 145px;
  }
  section.comments-area .comment-list .comment-body .user-avatar + .comment-content {
    flex: 0 0 calc(100% - 145px);
    max-width: calc(100% - 145px);
  }
  section.comments-area .comment-list .comment-body .user-avatar .comment-author img {
    width: 120px;
    margin-right: 25px;
  }
  section.comments-area .comment-list .comment.depth-1:not(.parent), section.comments-area .comment-list .children .comment:not(.parent):last-child {
    padding-bottom: 35px;
    margin-bottom: 35px;
  }
  section.comments-area .comment-list .children .comment {
    margin-top: 35px;
    padding-top: 35px;
  }
  section.comments-area .comment-list .children > li.comment {
    padding-left: 60px;
  }
  section.comments-area .comment-respond #reply-title {
    font-size: 30px;
  }
  section.comments-area .comments-title {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  section.comments-area .comment-respond .comment-form .gostro_comment_fields_group > p {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  section.comments-area .comment-list .children > li {
    padding-left: 1.25rem;
  }
  section.comments-area .comment-list .comment-body .comment-content .comment-heading .comment-info .author-display-name, section.comments-area .comment-list .comment-body .comment-content .comment-heading .comment-info .author-display-name a {
    font-size: 15px;
  }
  section.comments-area .comments-title {
    font-size: 1.5rem;
  }
  section.comments-area .h1, section.comments-area h1 {
    font-size: 2.5rem;
  }
  section.comments-area .h2, section.comments-area h2 {
    font-size: 2rem;
  }
  section.comments-area .h3, section.comments-area h3 {
    font-size: 1.75rem;
  }
  section.comments-area .h4, section.comments-area h4 {
    font-size: 1.5rem;
  }
  section.comments-area .h5, section.comments-area h5 {
    font-size: 1.25rem;
  }
  section.comments-area .h6, section.comments-area h6 {
    font-size: 1rem;
  }
}

/*# sourceMappingURL=blog_comments.css.map */
.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;
  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;
  border-radius: 50%;
  font-weight: 700;
}
.scroll_to_top.percent_circle .backtotop-round {
  transform: rotate(-90deg);
  fill: none;
  stroke: var(--color_main);
  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;
}

/*# sourceMappingURL=customize_scroll_to_top.css.map */
/* Element - Page heading */
:root {
  --blog_heading_height: 200px;
  --blog_heading_bg: transparent;
  --blog_heading_divider_color: red;
  --blog_heading_padding_top: 0;
  --blog_heading_padding_right: 0;
  --blog_heading_padding_bottom: 0;
  --blog_heading_padding_left: 0;
  --blog_heading_height_mobile: 150px;
  --blog_heading_padding_mobile_top: 0;
  --blog_heading_padding_mobile_right: 0;
  --blog_heading_padding_mobile_bottom: 0;
  --blog_heading_padding_mobile_left: 0;
}

.page-heading-content {
  display: flex;
  position: relative;
  color: var(--color_body);
  align-items: center;
}
.page-heading-content .woocommerce-breadcrumb,
.page-heading-content .woocommerce-breadcrumb > a {
  color: var(--color_body);
}
.page-heading-content.heading-color-light {
  color: var(--color_light);
}
.page-heading-content.heading-color-light .woocommerce-breadcrumb, .page-heading-content.heading-color-light .woocommerce-breadcrumb a {
  color: var(--color_light);
}
.page-heading-content.heading-color-light .page-heading-title {
  color: var(--color_light);
}
.page-heading-content.heading-color-light .gostro-breadcrumbs .trail-items .trail-item, .page-heading-content.heading-color-light .gostro-breadcrumbs .trail-items .trail-item a {
  color: var(--color_light);
}
.page-heading-content.heading-color-light .gostro-breadcrumbs .trail-items .trail-item:not(.trail-end)::after {
  border-color: rgba(255, 255, 255, 0.6);
}
.page-heading-content.heading-color-light ul li a, .page-heading-content.heading-color-light ul.blog_category_list li a {
  color: var(--color_light);
}
.woocommerce-page .page-heading-content.heading-color-light .woocommerce-breadcrumb span::before {
  border-color: rgba(255, 255, 255, 0.6);
}
.page-heading-content.heading-color-dark {
  color: var(--color_dark);
}
.page-heading-content.heading-color-dark .woocommerce-breadcrumb {
  color: var(--color_dark);
}
.page-heading-content.heading-color-dark .page-heading-title {
  color: var(--color_dark);
}
.page-heading-content.heading-color-dark .gostro-breadcrumbs .trail-items .trail-item:not(.trail-end)::after {
  border-color: rgba(0, 0, 0, 0.6);
}
.woocommerce-page .page-heading-content.heading-color-dark .woocommerce-breadcrumb span::before {
  border-color: rgba(0, 0, 0, 0.6);
}
.page-heading-content .page-heading-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.page-heading-content .page-heading-container {
  z-index: 2;
}
.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;
}

.blog-heading-content {
  background-color: var(--blog_heading_bg);
  height: var(--blog_heading_height);
  padding-top: var(--blog_heading_padding_top);
  padding-right: var(--blog_heading_padding_right);
  padding-bottom: var(--blog_heading_padding_bottom);
  padding-left: var(--blog_heading_padding_left);
}
.page-heading-wrap.has-divider .blog-heading-content {
  border-bottom: 1px solid var(--blog_heading_divider_color);
}
.blog-heading-content.has_overlay .page-heading-overlay {
  background-color: var(--blog_heading_bg);
}

@media (max-width: 767px) {
  .page-heading-content .page-heading-title, .page-heading-content .page-heading-title.blog-title, .page-heading-content .page-heading-title.shop-title, .blog-heading-content .page-heading-title, .blog-heading-content .page-heading-title.blog-title, .blog-heading-content .page-heading-title.shop-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .blog-heading-content {
    height: var(--blog_heading_height_mobile);
    padding-top: var(--blog_heading_padding_mobile_top);
    padding-right: var(--blog_heading_padding_mobile_right);
    padding-bottom: var(--blog_heading_padding_mobile_bottom);
    padding-left: var(--blog_heading_padding_mobile_left);
  }
}

/*# sourceMappingURL=page_heading.css.map */
.fm-header-sticky {
  position: fixed;
  width: 100%;
  z-index: 2;
}
#topbar + .fm-header-sticky.headroom--top {
  position: absolute;
}
.fmc-announcement-box ~ .site-content .fm-header-sticky.headroom--top {
  position: absolute;
}
.fm-header-sticky.headroom {
  will-change: transform;
  -webkit-transition: -webkit-transform 300ms linear, background-color 300ms linear, height 300ms linear;
  transition: transform 300ms linear, background-color 300ms linear, height 300ms 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: 0 2px 4px 0 rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 4px 0 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;
}
.fm-header-sticky.headroom--pinned.headroom--not-top .search_form_wrapper .search_form_content .fm-search-form .search_text_input::placeholder {
  color: #aaaaaa;
}
.fm-header-sticky.headroom--unpinned.always-sticky {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}
.fm-header-sticky.headroom--unpinned.always-sticky.headroom--not-top {
  position: fixed;
  top: 0;
  border-bottom: none;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.07);
}
#topbar + .fm-header-sticky.headroom--unpinned.always-sticky.headroom--not-top {
  position: fixed;
}
.fm-header-sticky.headroom--unpinned:not(.always-sticky) {
  top: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.fm-header-sticky.headroom--not-top {
  height: var(--header_height_sticky);
}
.theme-gostro .fm-header-sticky.headroom--not-top {
  background-color: var(--header_color_bg_sticky);
}
.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.site-logo .sticky-logo {
  display: block;
}
.fm-header-sticky.headroom--not-top .has-sticky-logo.site-logo .logo-img:not(.sticky-logo) {
  display: none;
}
.fm-header-sticky.headroom--not-top .header-main {
  height: 100%;
}
.fm-header-sticky.headroom--not-top .header-main a.logo.text {
  color: var(--header_color_text_sticky);
}
.fm-header-sticky.headroom--not-top .header-main a.logo.text:hover {
  color: var(--header_color_text_hover_sticky);
}
.fm-header-sticky.headroom--not-top .mobile-nav-btn > a {
  color: var(--header_color_text_sticky);
}
.fm-header-sticky.headroom--not-top .mobile-nav-btn > a svg {
  fill: var(--header_color_text_sticky);
}
.fm-header-sticky.headroom--not-top .header-main .header-element {
  color: var(--header_color_text_sticky);
}
.fm-header-sticky.headroom--not-top .header-main .header-element.search_box.form .fm-search-form .search_text_input, .fm-header-sticky.headroom--not-top .header-main .header-element.search_form_wrapper .fm-search-form .search_text_input {
  color: var(--header_color_text_sticky);
  border-color: inherit !important;
}
.fm-header-sticky.headroom--not-top .header-main .header-element.search_box.form .fm-search-form button[type=submit], .fm-header-sticky.headroom--not-top .header-main .header-element.search_form_wrapper .fm-search-form button[type=submit] {
  border-color: var(--header_color_text_sticky) !important;
}
.fm-header-sticky.headroom--not-top .header-main .header-element.search_box.button a, .fm-header-sticky.headroom--not-top .header-main .header-element.search_box.button a span {
  color: var(--header_color_text_sticky);
}
.fm-header-sticky.headroom--not-top .header-main .header-element.search_box.button a svg {
  fill: var(--header_color_text_sticky);
}
.fm-header-sticky.headroom--not-top .header-main .header-element.search_box.button a:hover, .fm-header-sticky.headroom--not-top .header-main .header-element.search_box.button a:hover span {
  color: var(--header_color_text_hover_sticky);
}
.fm-header-sticky.headroom--not-top .header-main .header-element.search_box.button a:hover svg, .fm-header-sticky.headroom--not-top .header-main .header-element.search_box.button a:hover svg {
  fill: var(--header_color_text_hover_sticky);
}
.fm-header-sticky.headroom--not-top .header-main .header-element.cart_box, .fm-header-sticky.headroom--not-top .header-main .header-element.cart_box a, .fm-header-sticky.headroom--not-top .header-main .header-element.cart_box a span, .fm-header-sticky.headroom--not-top .header-main .header-element.my-account-box, .fm-header-sticky.headroom--not-top .header-main .header-element.my-account-box a, .fm-header-sticky.headroom--not-top .header-main .header-element.my-account-box a span, .fm-header-sticky.headroom--not-top .header-main .header-element.wishlist-box, .fm-header-sticky.headroom--not-top .header-main .header-element.wishlist-box a, .fm-header-sticky.headroom--not-top .header-main .header-element.wishlist-box a span, .fm-header-sticky.headroom--not-top .header-main .header-element.hamburger-box, .fm-header-sticky.headroom--not-top .header-main .header-element.hamburger-box a, .fm-header-sticky.headroom--not-top .header-main .header-element.hamburger-box a span, .fm-header-sticky.headroom--not-top .header-main .header-element.social-icon-box, .fm-header-sticky.headroom--not-top .header-main .header-element.social-icon-box a, .fm-header-sticky.headroom--not-top .header-main .header-element.social-icon-box a span {
  color: var(--header_color_text_sticky);
}
.fm-header-sticky.headroom--not-top .header-main .header-element.cart_box a svg, .fm-header-sticky.headroom--not-top .header-main .header-element.my-account-box a svg, .fm-header-sticky.headroom--not-top .header-main .header-element.wishlist-box a svg, .fm-header-sticky.headroom--not-top .header-main .header-element.hamburger-box a svg, .fm-header-sticky.headroom--not-top .header-main .header-element.social-icon-box a svg {
  fill: var(--header_color_text_sticky);
}
.fm-header-sticky.headroom--not-top .header-main .header-element.cart_box > a:hover, .fm-header-sticky.headroom--not-top .header-main .header-element.cart_box > a:hover span, .fm-header-sticky.headroom--not-top .header-main .header-element.my-account-box > a:hover, .fm-header-sticky.headroom--not-top .header-main .header-element.my-account-box > a:hover span, .fm-header-sticky.headroom--not-top .header-main .header-element.wishlist-box > a:hover, .fm-header-sticky.headroom--not-top .header-main .header-element.wishlist-box > a:hover span, .fm-header-sticky.headroom--not-top .header-main .header-element.hamburger-box > a:hover, .fm-header-sticky.headroom--not-top .header-main .header-element.hamburger-box > a:hover span, .fm-header-sticky.headroom--not-top .header-main .header-element.social-icon-box > a:hover, .fm-header-sticky.headroom--not-top .header-main .header-element.social-icon-box > a:hover span {
  color: var(--header_color_text_hover_sticky);
}
.fm-header-sticky.headroom--not-top .header-main .header-element.cart_box > a:hover svg, .fm-header-sticky.headroom--not-top .header-main .header-element.cart_box > a:hover svg, .fm-header-sticky.headroom--not-top .header-main .header-element.my-account-box > a:hover svg, .fm-header-sticky.headroom--not-top .header-main .header-element.my-account-box > a:hover svg, .fm-header-sticky.headroom--not-top .header-main .header-element.wishlist-box > a:hover svg, .fm-header-sticky.headroom--not-top .header-main .header-element.wishlist-box > a:hover svg, .fm-header-sticky.headroom--not-top .header-main .header-element.hamburger-box > a:hover svg, .fm-header-sticky.headroom--not-top .header-main .header-element.hamburger-box > a:hover svg, .fm-header-sticky.headroom--not-top .header-main .header-element.social-icon-box > a:hover svg, .fm-header-sticky.headroom--not-top .header-main .header-element.social-icon-box > a:hover svg {
  fill: var(--header_color_text_hover_sticky);
}
.fm-header-sticky.headroom--not-top .header-main .header-element.contact-info-box, .fm-header-sticky.headroom--not-top .header-main .header-element.contact-info-box span {
  color: var(--header_color_text_sticky);
}
.fm-header-sticky.headroom--not-top .header-main .header-element.contact-info-box svg, .fm-header-sticky.headroom--not-top .header-main .header-element.contact-info-box svg {
  fill: var(--header_color_text_sticky);
}
.fm-header-sticky.headroom--not-top .header-main .header-element.currency-box > span.label, .fm-header-sticky.headroom--not-top .header-main .header-element.currency-box .dropdown > .current, .fm-header-sticky.headroom--not-top .header-main .header-element.currency-box .dropdown > .current span, .fm-header-sticky.headroom--not-top .header-main .header-element.language-box > span.label, .fm-header-sticky.headroom--not-top .header-main .header-element.language-box .dropdown > .current, .fm-header-sticky.headroom--not-top .header-main .header-element.language-box .dropdown > .current span {
  color: var(--header_color_text_sticky);
}
.fm-header-sticky.headroom--not-top .header-main .header-element.currency-box .dropdown > .current svg, .fm-header-sticky.headroom--not-top .header-main .header-element.currency-box svg, .fm-header-sticky.headroom--not-top .header-main .header-element.language-box .dropdown > .current svg, .fm-header-sticky.headroom--not-top .header-main .header-element.language-box svg {
  fill: var(--header_color_text_sticky);
}
.fm-header-sticky.headroom--not-top .header-main .header-element.html_right_1, .fm-header-sticky.headroom--not-top .header-main .header-element.html_left_1 {
  color: var(--header_color_text_sticky);
}
.fm-header-sticky.headroom--not-top .header-main .header-element.html_right_1 svg, .fm-header-sticky.headroom--not-top .header-main .header-element.html_right_1 svg, .fm-header-sticky.headroom--not-top .header-main .header-element.html_left_1 svg, .fm-header-sticky.headroom--not-top .header-main .header-element.html_left_1 svg {
  fill: var(--header_color_text_sticky);
}
.fm-header-sticky.headroom--not-top #site-navigation > .nav-menu > li > a, .fm-header-sticky.headroom--not-top #site-navigation > .nav-menu > li > a span {
  color: var(--header_color_text_sticky);
}
.fm-header-sticky.headroom--not-top #site-navigation > .nav-menu > li > a svg, .fm-header-sticky.headroom--not-top #site-navigation > .nav-menu > li > a svg {
  fill: var(--header_color_text_sticky);
}
.fm-header-sticky.headroom--not-top #site-navigation > .nav-menu > li > a:hover {
  color: var(--header_color_text_hover_sticky);
}

.fm-header-sticky .header-element.cart_box .cart_box_content.dropdown_content {
  overflow-y: auto;
}

body:not(.gostro-mobile).has-offcanvas--overlay.hasVerticalScrollbar .fm-header-sticky {
  padding-right: 17px;
}

.admin-bar .site-content .header-mobile {
  z-index: 99999;
}

/*# sourceMappingURL=header_sticky.css.map */
.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%;
}
.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: var(--color_heading);
  -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, .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon:hover {
  fill: var(--color_main);
}
.tinv-wishlist .tinv-header > h2 {
  text-transform: capitalize;
}
.tinv-wishlist .tinvwl-buttons-group button i.ftinvwl-key::before, .tinv-wishlist .tinvwl-buttons-group button i.ftinvwl-times::before, .tinv-wishlist .tinvwl-buttons-group button i.ftinvwl-heart-o::before {
  top: 0;
}

@media (max-width: 640px) {
  .tinv-wishlist .tinv-header > h2 {
    text-align: center;
    font-size: 22px;
  }
}
.tinv-modal.tinv-modal-open button.tinvwl_button_close, .tinv-modal.tinv-modal-open button.tinvwl_button_view {
  border: 2px solid var(--color_heading);
  background: #ffffff;
  color: var(--color_heading);
  font-size: 11px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 20px;
  font-weight: bold;
  -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;
}
.tinv-modal.tinv-modal-open button.tinvwl_button_close:hover, .tinv-modal.tinv-modal-open button.tinvwl_button_view:hover {
  background: var(--color_heading);
  color: #ffffff;
}

/*# sourceMappingURL=element_wishlist.css.map */
@media (min-width: 768px) {
  .hover_dropdown_wrapper .dropdown_content {
    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;
  }
  .hover_dropdown_wrapper:hover .dropdown_content {
    visibility: visible;
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    pointer-events: unset;
  }

  .woocommerce .post-password-form input[type=submit], .familab_theme .post-password-form input[type=submit], .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 {
    height: 46px;
    padding: 0 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;
  }

  .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 {
    height: 46px;
    padding: 0 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;
  }

  .gostro_comment_fields_group p > label, .woocommerce form .form-row label, .woocommerce-page form .form-row label {
    margin-bottom: 10px;
  }

  input[type=email], input[type=search], input[type=number], input[type=url], input[type=tel], input[type=text], input[type=password] {
    height: 46px;
  }

  select {
    height: 46px;
  }

  .familab_theme .select2-container--default .select2-selection--single {
    height: 46px;
    line-height: 42px;
  }

  .header-main {
    height: var(--header_height);
  }

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

  .header-layout {
    background-color: var(--header_color_bg);
    border-bottom-color: var(--header_color_divider);
  }
  .header-layout .header-main {
    border-bottom-color: inherit;
  }
  .header-layout .header-bottom {
    background-color: var(--header_color_bg_bottom);
  }
  .header-layout .header-content .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 .site-branding {
    margin-right: auto;
  }
  .header-layout.header-layout3 .header-main .header-container {
    display: grid;
    grid-template-columns: 1fr var(--header_logo_box_width) 1fr;
  }
  .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-layout4 .header-main .header-container {
    justify-content: space-between;
  }
  .header-layout.header-layout4 .header-main .header-container .header-control-wrap.header-left-control, .header-layout.header-layout4 .header-main .header-container .header-control-wrap.header-right-control {
    flex: 1;
  }
  .header-layout.header-layout5 .header-main .header-container {
    display: grid;
    grid-template-columns: 1fr var(--header_logo_box_width) 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 var(--header_logo_box_width) 1fr;
  }
  .header-layout.header-layout6 .site-branding {
    width: 100%;
    text-align: center;
  }
  .header-layout.header-layout12 .hamburger-menu-wrap {
    margin-right: 1.5rem;
  }
  .header-layout.header-layout12 .header-main .header-container {
    justify-content: flex-start;
  }
  .header-layout.header-layout12 .header-right-control {
    margin-left: auto;
  }
  .header-layout.header-layout12 #site-navigation.nav-center + .header-right-control {
    margin-left: unset;
  }
  .header-layout.header-layout12 #site-navigation.nav-right + .header-right-control {
    margin-left: 50px;
  }
  .header-layout.header-layout13 .hamburger-menu-wrap {
    margin-right: 0.5rem;
  }
  .header-layout.header-layout13 .header-main .header-container {
    display: grid;
    grid-template-columns: 1fr var(--header_logo_box_width) 1fr;
  }
  .header-layout.header-layout13 .header-main .header-left-wrap {
    display: flex;
    align-items: center;
  }
  .header-layout.header-layout13 .site-branding {
    width: 100%;
    text-align: center;
  }
  .header-layout.header-layout .search_box.form .fm-search-form .search_text_input, .header-layout.header-layout .search_form_wrapper .fm-search-form .search_text_input {
    background: none !important;
    height: 100%;
    border-width: 1px;
    border-right: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-color: #ababab;
    color: var(--color_body);
  }
  .header-layout.header-layout .search_box.form .fm-search-form .search_text_input::placeholder, .header-layout.header-layout .search_form_wrapper .fm-search-form .search_text_input::placeholder {
    color: inherit;
    line-height: inherit;
  }
  .header-layout.header-layout .search_box.form .fm-search-form .search_text_input:focus, .header-layout.header-layout .search_form_wrapper .fm-search-form .search_text_input:focus {
    background: #ffffff !important;
    color: var(--color_heading);
  }
  .header-layout.header-layout .search_box.form .fm-search-form button[type=submit], .header-layout.header-layout .search_form_wrapper .fm-search-form button[type=submit] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-right: 0;
    letter-spacing: 0;
    padding-left: 0;
    width: 50px;
    background: none;
    border: 1px solid #ababab;
    border-left: 0;
  }
  .header-layout.header-layout .search_box.form .fm-search-form button[type=submit] svg, .header-layout.header-layout .search_form_wrapper .fm-search-form button[type=submit] svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--header_color_text);
  }
  .header-layout.header-layout .search_box.form .fm-search-form .search_text_input {
    border-width: 1px;
    border-left: 0 !important;
    padding-left: 0 !important;
    border-right: 1px solid #ababab !important;
    border-radius: 0 3px 3px 0 !important;
  }
  .header-layout.header-layout .search_box.form .fm-search-form button[type=submit] {
    order: -1;
    border-radius: 3px 0 0 3px !important;
    border-right: 0 !important;
    border-left: 1px solid #ababab;
  }
  .header-layout.header-layout .search_form_wrapper .fm-search-form {
    height: 46px;
  }
  .header-layout.header-layout5 .header-right-control .my-account-box a.account-btn {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .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: 1.5rem;
    height: 1.5rem;
  }

  .site-branding .site-logo.has-sticky-logo .sticky-logo {
    display: none;
  }

  .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("/wp-content/themes/gostro/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%;
  }

  .header-bottom {
    height: 60px;
    position: relative;
  }
  .header-layout3 .header-bottom .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: inherit;
    position: relative;
  }
  .header-layout3 .header-bottom #site-navigation {
    justify-content: center;
    margin: 0 auto;
  }

  .header-element > a:hover {
    color: var(--header_color_text_hover);
  }
  .header-element.cart_box > a:hover, .header-element.cart_box > a:hover span {
    color: var(--header_color_text_hover);
  }
  .header-element.cart_box > a:hover svg, .header-element.cart_box > a:hover span svg {
    fill: var(--header_color_text_hover);
  }
  .site-header .header-bottom-left-control .header-element.cart_box > a, .site-header .header-bottom-left-control .header-element.cart_box > a span, .site-header .header-bottom-right-control .header-element.cart_box > a, .site-header .header-bottom-right-control .header-element.cart_box > a span {
    color: var(--header_color_text_bottom);
  }
  .site-header .header-bottom-left-control .header-element.cart_box > a svg, .site-header .header-bottom-left-control .header-element.cart_box > a span svg, .site-header .header-bottom-right-control .header-element.cart_box > a svg, .site-header .header-bottom-right-control .header-element.cart_box > a span svg {
    fill: var(--header_color_text_bottom);
  }
  .site-header .header-bottom-left-control .header-element.cart_box > a:hover, .site-header .header-bottom-left-control .header-element.cart_box > a:hover span, .site-header .header-bottom-right-control .header-element.cart_box > a:hover, .site-header .header-bottom-right-control .header-element.cart_box > a:hover span {
    color: var(--header_color_text_hover_bottom);
  }
  .site-header .header-bottom-left-control .header-element.cart_box > a:hover svg, .site-header .header-bottom-left-control .header-element.cart_box > a:hover span svg, .site-header .header-bottom-right-control .header-element.cart_box > a:hover svg, .site-header .header-bottom-right-control .header-element.cart_box > a:hover span svg {
    fill: var(--header_color_text_hover_bottom);
  }
  .header-element.cart_box a.cart-btn .c-button__text > svg {
    margin-right: 15px;
  }
  .header-element.cart_box a.cart-btn .c-button__text .mini-cart-contents {
    margin-left: 24px;
  }
  .header-element.search_box.button:hover .search_form_wrapper.dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    pointer-events: unset;
  }
  .header-element.search_box a:hover {
    color: var(--header_color_text_hover);
  }
  .header-element.search_box a:hover svg {
    fill: var(--header_color_text_hover);
  }
  .site-header .header-bottom-left-control .header-element.search_box a, .site-header .header-bottom-right-control .header-element.search_box a {
    color: var(--header_color_text_bottom);
  }
  .site-header .header-bottom-left-control .header-element.search_box a svg, .site-header .header-bottom-right-control .header-element.search_box a svg {
    fill: var(--header_color_text_bottom);
  }
  .site-header .header-bottom-left-control .header-element.search_box a:hover, .site-header .header-bottom-right-control .header-element.search_box a:hover {
    color: var(--header_color_text_hover_bottom);
  }
  .site-header .header-bottom-left-control .header-element.search_box a:hover svg, .site-header .header-bottom-right-control .header-element.search_box a:hover svg {
    fill: var(--header_color_text_hover_bottom);
  }
  .header-element.cart_box svg.fm-icon, .header-element.my-account-box svg.fm-icon {
    width: 26px;
    height: 26px;
  }
  .header-element.hamburger-box svg.fm-icon {
    width: 32px;
    height: 32px;
  }
  .header-element.search_box svg.fm-icon {
    width: 26px;
    height: 26px;
  }
  .header-element.wishlist-box svg.fm-icon {
    width: 24px;
    height: 24px;
  }
  .header-element.hamburger-box > a:hover, .header-element.wishlist-box > a:hover, .header-element.my-account-box > a:hover {
    color: var(--header_color_text_hover);
  }
  .header-element.hamburger-box > a:hover svg, .header-element.wishlist-box > a:hover svg, .header-element.my-account-box > a:hover svg {
    fill: var(--header_color_text_hover);
  }
  .site-header .header-bottom-left-control .header-element.hamburger-box > a, .site-header .header-bottom-right-control .header-element.hamburger-box > a, .site-header .header-bottom-left-control .header-element.wishlist-box > a, .site-header .header-bottom-right-control .header-element.wishlist-box > a, .site-header .header-bottom-left-control .header-element.my-account-box > a, .site-header .header-bottom-right-control .header-element.my-account-box > a {
    color: var(--header_color_text_bottom);
  }
  .site-header .header-bottom-left-control .header-element.hamburger-box > a svg, .site-header .header-bottom-right-control .header-element.hamburger-box > a svg, .site-header .header-bottom-left-control .header-element.wishlist-box > a svg, .site-header .header-bottom-right-control .header-element.wishlist-box > a svg, .site-header .header-bottom-left-control .header-element.my-account-box > a svg, .site-header .header-bottom-right-control .header-element.my-account-box > a svg {
    fill: var(--header_color_text_bottom);
  }
  .site-header .header-bottom-left-control .header-element.hamburger-box > a:hover, .site-header .header-bottom-right-control .header-element.hamburger-box > a:hover, .site-header .header-bottom-left-control .header-element.wishlist-box > a:hover, .site-header .header-bottom-right-control .header-element.wishlist-box > a:hover, .site-header .header-bottom-left-control .header-element.my-account-box > a:hover, .site-header .header-bottom-right-control .header-element.my-account-box > a:hover {
    color: var(--header_color_text_hover_bottom);
  }
  .site-header .header-bottom-left-control .header-element.hamburger-box > a:hover svg, .site-header .header-bottom-right-control .header-element.hamburger-box > a:hover svg, .site-header .header-bottom-left-control .header-element.wishlist-box > a:hover svg, .site-header .header-bottom-right-control .header-element.wishlist-box > a:hover svg, .site-header .header-bottom-left-control .header-element.my-account-box > a:hover svg, .site-header .header-bottom-right-control .header-element.my-account-box > a:hover svg {
    fill: var(--header_color_text_hover_bottom);
  }
  .site-header .header-bottom-left-control .header-element.social-icon-box a.fm-social-icon-link, .site-header .header-bottom-right-control .header-element.social-icon-box a.fm-social-icon-link {
    color: var(--header_color_text_bottom);
  }
  .site-header .header-bottom-left-control .header-element.social-icon-box a.fm-social-icon-link svg, .site-header .header-bottom-right-control .header-element.social-icon-box a.fm-social-icon-link svg {
    fill: var(--header_color_text_bottom);
  }
  .site-header .header-bottom-left-control .header-element.social-icon-box a.fm-social-icon-link:hover, .site-header .header-bottom-right-control .header-element.social-icon-box a.fm-social-icon-link:hover {
    color: var(--header_color_text_hover_bottom);
  }
  .site-header .header-bottom-left-control .header-element.social-icon-box a.fm-social-icon-link:hover svg, .site-header .header-bottom-right-control .header-element.social-icon-box a.fm-social-icon-link:hover svg {
    fill: var(--header_color_text_hover_bottom);
  }
  .top-bar-left-control .header-element.social-icon-box a.fm-social-icon-link, .header-left-control .header-element.social-icon-box a.fm-social-icon-link, .header-bottom-left-control .header-element.social-icon-box a.fm-social-icon-link {
    margin-right: 20px;
  }
  .top-bar-left-control .header-element.social-icon-box a.fm-social-icon-link:last-child, .header-left-control .header-element.social-icon-box a.fm-social-icon-link:last-child, .header-bottom-left-control .header-element.social-icon-box a.fm-social-icon-link:last-child {
    margin-right: 0;
  }
  .top-bar-right-control .header-element.social-icon-box a.fm-social-icon-link, .header-right-control .header-element.social-icon-box a.fm-social-icon-link, .header-bottom-right-control .header-element.social-icon-box a.fm-social-icon-link {
    margin-left: 20px;
  }
  .top-bar-right-control .header-element.social-icon-box a.fm-social-icon-link:first-child, .header-right-control .header-element.social-icon-box a.fm-social-icon-link:first-child, .header-bottom-right-control .header-element.social-icon-box a.fm-social-icon-link:first-child {
    margin-left: 0;
  }
  .top-bar-center-control .header-element.social-icon-box a.fm-social-icon-link, .header-center-control .header-element.social-icon-box a.fm-social-icon-link, .header-bottom-center-control .header-element.social-icon-box a.fm-social-icon-link {
    margin-left: 10px;
    margin-right: 10px;
  }
  .site-header .header-bottom-left-control .header-element.contact-info-box, .site-header .header-bottom-right-control .header-element.contact-info-box {
    color: var(--header_color_text_bottom);
  }
  .site-header .header-bottom-left-control .header-element.contact-info-box svg, .site-header .header-bottom-right-control .header-element.contact-info-box svg {
    fill: var(--header_color_text_bottom);
  }
  .header-bottom .header-element {
    color: var(--header_color_text_bottom);
  }

  .currency.list-dropdown .dropdown ul li:hover, .language.list-dropdown .dropdown ul li:hover {
    background: #f4f4f4;
  }
  .currency.list-dropdown .dropdown:hover ul, .language.list-dropdown .dropdown:hover ul {
    visibility: visible;
    opacity: 1;
  }

  .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;
  }

  .theme-gostro #cart-canvas .gostro-close-btn .button-title:hover {
    color: var(--color_main);
  }

  #hamburger-canvas .gostro-close-btn .button-title:hover {
    color: var(--color_main);
  }

  .theme-gostro #account-canvas .account_form_content .gostro-close-btn .button-title:hover {
    color: var(--color_main);
  }

  .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .product-item-cat-title:hover {
    color: var(--color_heading);
  }
  #fm-search-modal .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .result_item_top_info {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }
  #fm-search-modal .ajax_search.fm-search-form .fm-search-results .fm-dataset .search-result-item .result_item_top_info .star-rating {
    display: block;
  }
  .search_box.form .ajax_search.fm-search-form .fm-search-results, .search_form_wrapper.header-element .ajax_search.fm-search-form .fm-search-results {
    min-width: 330px;
    left: -44px !important;
  }

  #fm-search-modal .modal-header button.close:hover .button-title {
    color: var(--color_main);
  }
  #fm-search-modal .modal-header button.close:hover svg.fm-icon {
    fill: var(--color_main);
  }

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

  #popup-modal.show .modal-dialog {
    width: max-content;
  }
  #popup-modal.show .modal-footer {
    left: auto;
  }

  .js-offcanvas .gostro-close-btn:hover svg.fm-icon {
    fill: var(--color_main);
  }
  .js-offcanvas .gostro-close-btn:hover .button-title {
    color: var(--color_main);
  }

  .theme-gostro .cart_box_content ul.cart_list li.mini_cart_item .remove:hover {
    fill: var(--color_heading);
  }
  .theme-gostro .cart_box_content ul.cart_list li.mini_cart_item a:not(:hover) {
    color: var(--color_heading);
  }
  .theme-gostro .cart_box_content ul.cart_list li.mini_cart_item .quantity-wrap .woocommerce-mini-cart-item__qty .quantity > a:hover {
    border-color: var(--color_heading);
  }
  .theme-gostro .cart_box_content ul.cart_list li.mini_cart_item .quantity-wrap .woocommerce-mini-cart-item__qty .quantity > a:hover svg {
    fill: var(--color_heading);
  }
  .theme-gostro .cart_box_content .woocommerce-mini-cart__buttons {
    flex-direction: row-reverse;
  }
  .theme-gostro .cart_box_content .woocommerce-mini-cart__buttons a.button {
    width: calc(50% - 5px);
  }
  .theme-gostro .cart_box_content .woocommerce-mini-cart__buttons a.button + .button {
    margin-top: 0;
  }
  .theme-gostro .cart_box_content .woocommerce-mini-cart__buttons a.button:hover, .theme-gostro .cart_box_content .woocommerce-mini-cart__buttons a.button.checkout:hover {
    background-color: var(--color_main) !important;
  }
  .cart_box_content .gostro-cart-empty-box .gostro-parent-term-link:hover {
    background: var(--color_main);
    color: var(--color_light);
    border-color: var(--color_main);
  }
  .cart_box_content .gostro-cart-empty-box .gostro-parent-term-link:hover svg {
    fill: var(--color_light);
  }
  .theme-gostro .cart_box.hover_dropdown_wrapper .cart_box_content .gostro-cart-empty-box .gostro-parent-term-link:hover {
    border-color: var(--color_main);
    background-color: var(--color_main);
    color: #ffffff;
  }
  .theme-gostro .cart_box.hover_dropdown_wrapper .cart_box_content .gostro-cart-empty-box .gostro-parent-term-link:hover svg {
    fill: #ffffff;
  }

  ol.flex-control-nav {
    /* # Nav Control Gostro Theme */
  }
  ol.flex-control-nav li a:hover::before {
    background-color: var(--color_heading);
  }

  #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 .gostro-close-btn {
    display: none;
  }
  #fm-account-modal.show .account-modal .modal-content .modal-body {
    background: #ffffff;
    padding: 20px 30px 35px;
  }
  #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 {
    text-align: center;
    height: 2.25rem;
    padding: 0 30px;
    width: auto;
    border: none;
    color: var(--color_body);
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.3;
    padding: 0 0 8px;
    z-index: 1;
    width: auto;
    display: flex;
    justify-content: center;
    position: relative;
  }
  #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%;
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    background: var(--color_heading);
    left: 50%;
    transform: translateX(-50%);
    bottom: -2px;
  }
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content ul.nav-tabs li.nav-item a.nav-link.active {
    color: var(--color_heading);
  }
  #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: var(--color_heading);
  }
  #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 .spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid;
    border-top-color: transparent;
    -webkit-animation: spin infinite 1s linear;
    animation: spin infinite 1s linear;
  }
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-login .woocommerce-LostPassword, #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-login .lost_password, #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-register .woocommerce-LostPassword, #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-register .lost_password {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8125rem;
    font-weight: 500;
  }
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-login .password-input, #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-register .password-input {
    width: 100%;
  }
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-login .password-input .show-password-input, #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-register .password-input .show-password-input {
    top: 50%;
    transform: translateY(-50%);
  }
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-login .acount-form-switch, #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-register .acount-form-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
  }
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-login .acount-form-switch a, #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-register .acount-form-switch a {
    margin-left: 5px;
    color: var(--color_heading);
  }
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-login .acount-form-switch a::after, #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-register .acount-form-switch a::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color_heading);
    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;
  }
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-login .acount-form-switch a:hover::after, #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-register .acount-form-switch a:hover::after {
    opacity: 1;
  }
  .woocommerce-account #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-login #username, #fm-account-modal #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-login #username {
    margin-bottom: 0;
  }
  .woocommerce-account #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-login #password::placeholder, #fm-account-modal #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-login #password::placeholder {
    display: none;
  }
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-login .woocommerce-LostPassword .woocommerce-form-login__rememberme {
    margin: 0;
  }
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-login .woocommerce-LostPassword .woocommerce-form-login__rememberme #rememberme {
    margin-top: -3px;
  }
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-login .input-text#username::placeholder, #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-login .input-text#password::placeholder {
    opacity: 0;
  }
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-login button.woocommerce-form-login__submit {
    height: 46px;
    padding: 0 25px;
    width: 100%;
    margin: 0;
  }
  .woocommerce #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-login button.woocommerce-form-login__submit {
    margin-right: 0;
  }
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-register .woocommerce-privacy-policy-text {
    font-size: 15px;
    color: var(--color_body);
    margin-bottom: 25px;
  }
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-register .woocommerce-privacy-policy-text a {
    color: var(--color_main);
  }
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form-register button.woocommerce-form-register__submit {
    height: 46px;
    padding: 0 25px;
    width: 100%;
    margin: 0;
  }
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-lost-password .woocommerce {
    max-width: 500px;
    margin: 50px auto;
  }
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-lost-password .woocommerce p {
    font-size: 15px;
  }
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-lost-password .woocommerce form .form-row {
    width: 100%;
  }
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-lost-password .woocommerce button.button {
    height: 46px;
    padding: 0 25px;
    width: 100%;
    margin: 0;
  }
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-lost-password .woocommerce .input-text {
    height: 46px;
    background: #ffffff;
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-lost-password .woocommerce {
    margin: 100px auto;
  }
}
@media (min-width: 768px) {
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form {
    font-size: 15px;
    padding: 50px 25px 30px 25px;
    border: 1px solid var(--color_border);
    margin: 0;
  }
  #fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form .woocommerce-error {
    padding-left: 20px;
  }
}
@media (min-width: 768px) {
  #fm-account-modal form.woocommerce-form.woocommerce-form-register .form-row, #fm-account-modal form.woocommerce-form.woocommerce-form-login .form-row {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .header-breadcrumb-wrap {
    display: block;
  }
}
@media (min-width: 768px) {
  .comment-navigation a:hover, .posts-navigation a:hover, .post-navigation a:hover {
    color: var(--color_main);
  }
}
@media (min-width: 768px) {
  a.page-numbers, a.post-page-numbers {
    -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;
  }
  a.page-numbers:hover, a.post-page-numbers:hover {
    background-color: var(--color_heading) !important;
    color: #ffffff !important;
  }
  a.page-numbers:hover svg, a.post-page-numbers:hover svg {
    fill: #ffffff !important;
  }
}
@media (min-width: 768px) {
  .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);
    transform: translateY(39px);
    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: -30px;
    left: 0;
    content: "";
    width: 100%;
    height: 40px;
    background-color: transparent;
  }
  .nav-menu li > ul ul {
    left: 100%;
    top: 10px;
    transform: translate(3px, -40px);
  }
  .nav-menu li > ul ul:before {
    top: 0;
    left: -3px;
    width: 3px;
    height: 100%;
  }
  .nav-menu li > ul.mega-menu-container ul {
    transform: translate(0);
  }
  .nav-menu li li {
    display: block;
    margin: 0;
    padding: 5px 25px;
  }
  .nav-menu li li a {
    font-weight: 400;
    text-transform: none;
    line-height: 1.4;
  }
  .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), .nav-menu li li.menu-level-2 > a:not(:hover), .nav-menu li li.menu-level-3 > a:not(:hover) {
    color: var(--color_body);
  }
  .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: calc(100% + 25px);
    left: 0;
    min-width: 200px;
    background-color: #fff;
    text-align: left;
    padding: 20px 5px;
    z-index: 9999;
    -webkit-transition: transform 0.5s ease-in-out 0.1s, opacity 0.4s ease-in 0.3s, visibility 0.4s ease-in 0.3s;
    -moz-transition: transform 0.5s ease-in-out 0.1s, opacity 0.4s ease-in 0.3s, visibility 0.4s ease-in 0.3s;
    -o-transition: transform 0.5s ease-in-out 0.1s, opacity 0.4s ease-in 0.3s, visibility 0.4s ease-in 0.3s;
    transition: transform 0.5s ease-in-out 0.1s, opacity 0.4s ease-in 0.3s, visibility 0.4s ease-in 0.3s;
    -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: 0;
    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(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
  }
  .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% + 24px);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .nav-menu .menu-item.menu-item-mega.menu-item-custom-width > .sub-menu {
    top: calc(100% + 24px);
  }
  .nav-menu .menu-item.menu-item-mega.menu-item-custom-width > .sub-menu:before {
    top: -24px;
  }
  .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:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .nav-menu .menu-item:hover .sub-menu .sub-menu {
    /*top: 100%;*/
    top: 0;
  }
  .nav-menu > .menu-item:nth-last-child(1) .sub-menu .sub-menu,
.nav-menu > .menu-item:nth-last-child(2) .sub-menu .sub-menu,
.nav-menu > .menu-item:nth-last-child(3) .sub-menu .sub-menu,
.nav-menu > .menu-item:nth-last-child(4) .sub-menu .sub-menu {
    right: 100%;
    left: auto;
  }
}
@media (min-width: 768px) {
  .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;
  }
  .header-layout13 .main-navigation ul.nav-menu > li.menu-item:first-child {
    margin-left: 0;
  }
  .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: -3px;
  }
  .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;
  }
}
@media (min-width: 768px) {
  .site-navigation a i {
    margin-right: 5px;
  }
  .site-navigation li.menu-level-0 > a:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -3px;
    transition: all 0.3s;
    width: 0;
    height: 2px;
    border-bottom: 2px solid var(--header_color_text_hover);
  }
  .site-navigation li.menu-level-0.current-menu-item > a:after, .site-navigation li.menu-level-0:hover > a:after {
    width: 100%;
    left: 0;
  }
  .site-navigation li.menu-level-0.current-menu-item.menu-item-home > a:after {
    border-bottom-color: var(--header_color_text_hover_transparent);
  }
  .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: 5px 0;
    position: static;
  }
  .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;
  }
}
@media (min-width: 768px) {
  #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;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
  }
  #site-navigation ul.nav-menu .menu-item-badge .badge-title {
    font-size: 9px;
    text-transform: uppercase;
    color: inherit !important;
  }
  #site-navigation ul.nav-menu li.menu-item > a {
    color: var(--header_color_text);
  }
  #site-navigation ul.nav-menu li.menu-item > a:hover {
    color: var(--header_color_text_hover);
  }
  .header-layout3 .header-bottom #site-navigation ul.nav-menu li.menu-item > a {
    color: var(--header_color_text_bottom);
  }
  .header-layout3 .header-bottom #site-navigation ul.nav-menu li.menu-item > a:hover {
    color: var(--header_color_text_hover_bottom);
  }
}
@media (min-width: 768px) {
  body:not(.gostro-mobile) .c-offcanvas.is-open .offcanvas-content {
    overflow: unset;
  }
  body:not(.gostro-mobile) .c-offcanvas.is-open .offcanvas-content .cart_box_content {
    height: calc(100% - 65px);
  }
  body:not(.gostro-mobile) .c-offcanvas.is-open .offcanvas-content .cart_box_content .woocommerce-mini-cart {
    position: relative;
    margin-bottom: 20px;
  }
  body:not(.gostro-mobile) .c-offcanvas.is-open .offcanvas-content .cart_box_content .widget_shopping_cart_content > p.woocommerce-mini-cart__total {
    padding: 25px 0 0;
  }
  body:not(.gostro-mobile) .c-offcanvas.is-open .offcanvas-content .cart_box_content .gostro-free-shipping-msg {
    padding: 0 20px;
  }
  body:not(.gostro-mobile) .c-offcanvas.is-open .offcanvas-content .filter-content-wrap {
    position: relative;
    height: calc(100% - 100px);
  }
  body:not(.gostro-mobile) .c-offcanvas.is-open#hamburger-canvas .hamburger-screen-inner {
    overflow: unset;
  }
  body:not(.gostro-mobile) .c-offcanvas.is-open#hamburger-canvas .hamburger-screen-inner .hamburger-screen-head, body:not(.gostro-mobile) .c-offcanvas.is-open#hamburger-canvas .hamburger-screen-inner .hamburger-bottom {
    padding: 1.5rem 30px;
  }
  body:not(.gostro-mobile) .c-offcanvas.is-open#hamburger-canvas .hamburger-screen-inner .hamburger-screen-content {
    position: relative;
  }
  body:not(.gostro-mobile) .c-offcanvas.is-open#hamburger-canvas .hamburger-screen-inner .hamburger-screen-content > .hamburger-navigation {
    overflow-y: auto;
    overflow-x: hidden;
  }
  body:not(.gostro-mobile) .fm-search-form.ajax_search .fm-search-results {
    max-height: 30rem;
    background-color: #ffffff;
  }
  body:not(.gostro-mobile) .fm-search-form.ajax_search .fm-search-results .fm-dataset-search {
    position: relative;
    height: 100%;
  }
  body:not(.gostro-mobile) .fm-search-form.ajax_search .fm-search-results.tt-open {
    height: 30rem;
  }
  body:not(.gostro-mobile) .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results, body:not(.gostro-mobile) .search_form_wrapper.header-element .fm-search-form.ajax_search .fm-search-results {
    padding: 20px 0;
  }
  body:not(.gostro-mobile) .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results .fm-dataset-search, body:not(.gostro-mobile) .search_form_wrapper.header-element .fm-search-form.ajax_search .fm-search-results .fm-dataset-search {
    padding: 0 20px;
    display: block;
  }
}
@media (min-width: 768px) {
  body:not(.gostro-mobile).has-offcanvas--overlay.hasVerticalScrollbar {
    padding-right: 17px;
  }
}
@media (min-width: 768px) {
  .theme-gostro form.woocommerce-form-track-order .form-row-first, .theme-gostro form.woocommerce-form-track-order .form-row-last {
    width: calc(50% - 15px);
  }
  .theme-gostro form.woocommerce-form-track-order button[type=submit] {
    margin-top: 5px;
  }
}
@media (min-width: 992px) {
  #content .sidebar-left {
    flex-direction: row;
  }
  #content .sidebar-right {
    flex-direction: row-reverse;
  }

  .error404 .page-title-404 {
    font-size: 200px;
    font-weight: 600;
  }
}
@media (min-width: 1025px) {
  .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item {
    flex: 0 0 25%;
    width: 25%;
  }

  #fm-search-modal .modal-header .modal-title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }
  #fm-search-modal .modal-header button.close {
    margin-top: 3.5rem;
    margin-bottom: 5rem;
    -webkit-transition: margin 0.35s linear 0s;
    -moz-transition: margin 0.35s linear 0s;
    -ms-transition: margin 0.35s linear 0s;
    -o-transition: margin 0.35s linear 0s;
    transition: margin 0.35s linear 0s;
  }
  #fm-search-modal .modal-content.result_search_active .modal-header button.close {
    margin: 1rem auto 0rem auto;
  }
  #fm-search-modal .search_form_content .fm-search-form {
    max-width: 800px;
  }
  #fm-search-modal .search_form_content .fm-search-form .search_text_input {
    height: 46px;
  }
  #fm-search-modal .search_form_content .fm-search-form button[type=submit] svg.fm-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  /*
  #search-canvas {
    .offcanvas-content {
      .js-offcanvas-close {
        &.gostro-close-btn {
          margin-bottom: 80px;
          margin-top: 60px;
        }
      }
      .search_form_content {
        .fm-search-form {
          .search_text_input {
            font-size: 32px;
            padding: 0 0 25px 0;
            height: 68px;
          }
          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 ul.nav-tabs li.nav-item a.nav-link:not(:hover):not(.active):after {
    background: none;
  }
  #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;
  }
}
@media (min-width: 1200px) {
  .theme-gostro .cart_box_content ul.cart_list li.mini_cart_item {
    padding-left: 110px;
    min-height: 110px;
  }
  .theme-gostro .cart_box_content ul.cart_list li.mini_cart_item img {
    width: 86px;
    height: 90px !important;
  }
  .theme-gostro .cart_box_content .woocommerce-mini-cart__buttons a.button {
    width: calc(50% - 10px);
  }
  .theme-gostro .cart_box.hover_dropdown_wrapper .cart_box_content {
    padding: 20px 20px 0;
  }
  .theme-gostro .offcanvas-content .cart_box_content {
    padding: 1rem 30px 1.5rem 30px;
  }
  .theme-gostro .offcanvas-content .cart_box_content .woocommerce-mini-cart__total {
    padding-bottom: 15px;
  }

  .theme-gostro #cart-canvas.c-offcanvas {
    width: 460px;
  }
  .theme-gostro #cart-canvas.c-offcanvas.c-offcanvas--right {
    transform: translate3d(460px, 0, 0);
  }
  .theme-gostro #cart-canvas.c-offcanvas.c-offcanvas--left {
    transform: translate3d(-460px, 0, 0);
  }
  .theme-gostro #cart-canvas.c-offcanvas.is-open {
    transform: translate3d(0, 0, 0);
  }
  .theme-gostro #cart-canvas.c-offcanvas .offcanvas-content .cart_box_head {
    padding: 2rem 30px 0 30px;
  }

  .theme-gostro #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;
  }

  body:not(.gostro-mobile) .c-offcanvas.is-open#filter-canvas .offcanvas-content {
    padding: 0;
  }
  body:not(.gostro-mobile) .c-offcanvas.is-open#filter-canvas .offcanvas-content .offcanvas_box_head {
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }
  body:not(.gostro-mobile) .c-offcanvas.is-open#hamburger-canvas .hamburger-screen-inner .hamburger-screen-head, body:not(.gostro-mobile) .c-offcanvas.is-open#hamburger-canvas .hamburger-screen-inner .hamburger-bottom {
    padding: 1.5rem 30px;
  }
}
@media (min-width: 1440px) {
  .main-navigation ul.nav-menu > li.menu-item {
    margin: 0 18px;
  }
  .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;
  }

  .gostro-breadcrumbs .trail-items .trail-item {
    display: inline-block;
  }
  .gostro-breadcrumbs .trail-items .trail-item:not(.trail-end)::after {
    margin: 0 11px 0 9px;
  }

  .related.products .gostro-carousel-wrap .swiper-button-next, .related.products .gostro-carousel-wrap.swiper-container-rtl .swiper-button-prev {
    right: -22px;
    width: 44px;
    height: 44px;
  }
  .related.products .gostro-carousel-wrap .swiper-button-prev, .related.products .gostro-carousel-wrap.swiper-container-rtl .swiper-button-next {
    left: -22px;
    width: 44px;
    height: 44px;
  }

  .error404 .site-main .fm-search-form {
    margin-bottom: 180px;
  }
}

/*# sourceMappingURL=desktop_theme.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}ol,ul{box-sizing:border-box}:root :where(.wp-block-list.has-background){padding:1.25em 2.375em}