@charset "UTF-8";
/*
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
/* line 11, ../../_dev/css/custom/animate.scss */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 18, ../../_dev/css/custom/animate.scss */
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* line 23, ../../_dev/css/custom/animate.scss */
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

/* line 31, ../../_dev/css/custom/animate.scss */
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  /* line 37, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 44, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 51, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 58, ../../_dev/css/custom/animate.scss */
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  /* line 65, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 72, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 79, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 86, ../../_dev/css/custom/animate.scss */
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

/* line 92, ../../_dev/css/custom/animate.scss */
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  /* line 100, ../../_dev/css/custom/animate.scss */
  from, 50%, to {
    opacity: 1;
  }

  /* line 104, ../../_dev/css/custom/animate.scss */
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  /* line 110, ../../_dev/css/custom/animate.scss */
  from, 50%, to {
    opacity: 1;
  }

  /* line 114, ../../_dev/css/custom/animate.scss */
  25%, 75% {
    opacity: 0;
  }
}

/* line 119, ../../_dev/css/custom/animate.scss */
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  /* line 127, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  /* line 132, ../../_dev/css/custom/animate.scss */
  50% {
    -webkit-transform: scale3d(1.15, 1.15, 1.15);
    transform: scale3d(1.15, 1.15, 1.15);
  }

  /* line 137, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  /* line 144, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  /* line 149, ../../_dev/css/custom/animate.scss */
  50% {
    -webkit-transform: scale3d(1.15, 1.15, 1.15);
    transform: scale3d(1.15, 1.15, 1.15);
  }

  /* line 154, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* line 160, ../../_dev/css/custom/animate.scss */
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  /* line 166, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  /* line 171, ../../_dev/css/custom/animate.scss */
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  /* line 176, ../../_dev/css/custom/animate.scss */
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  /* line 181, ../../_dev/css/custom/animate.scss */
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  /* line 186, ../../_dev/css/custom/animate.scss */
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  /* line 191, ../../_dev/css/custom/animate.scss */
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  /* line 196, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  /* line 203, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  /* line 208, ../../_dev/css/custom/animate.scss */
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  /* line 213, ../../_dev/css/custom/animate.scss */
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  /* line 218, ../../_dev/css/custom/animate.scss */
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  /* line 223, ../../_dev/css/custom/animate.scss */
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  /* line 228, ../../_dev/css/custom/animate.scss */
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  /* line 233, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* line 239, ../../_dev/css/custom/animate.scss */
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  /* line 245, ../../_dev/css/custom/animate.scss */
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  /* line 250, ../../_dev/css/custom/animate.scss */
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  /* line 255, ../../_dev/css/custom/animate.scss */
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  /* line 262, ../../_dev/css/custom/animate.scss */
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  /* line 267, ../../_dev/css/custom/animate.scss */
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  /* line 272, ../../_dev/css/custom/animate.scss */
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

/* line 278, ../../_dev/css/custom/animate.scss */
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  /* line 284, ../../_dev/css/custom/animate.scss */
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  /* line 289, ../../_dev/css/custom/animate.scss */
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  /* line 294, ../../_dev/css/custom/animate.scss */
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  /* line 299, ../../_dev/css/custom/animate.scss */
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  /* line 304, ../../_dev/css/custom/animate.scss */
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  /* line 309, ../../_dev/css/custom/animate.scss */
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  /* line 316, ../../_dev/css/custom/animate.scss */
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  /* line 321, ../../_dev/css/custom/animate.scss */
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  /* line 326, ../../_dev/css/custom/animate.scss */
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  /* line 331, ../../_dev/css/custom/animate.scss */
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  /* line 336, ../../_dev/css/custom/animate.scss */
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  /* line 341, ../../_dev/css/custom/animate.scss */
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* line 347, ../../_dev/css/custom/animate.scss */
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  /* line 355, ../../_dev/css/custom/animate.scss */
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  /* line 360, ../../_dev/css/custom/animate.scss */
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  /* line 365, ../../_dev/css/custom/animate.scss */
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  /* line 370, ../../_dev/css/custom/animate.scss */
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  /* line 375, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  /* line 382, ../../_dev/css/custom/animate.scss */
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  /* line 387, ../../_dev/css/custom/animate.scss */
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  /* line 392, ../../_dev/css/custom/animate.scss */
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  /* line 397, ../../_dev/css/custom/animate.scss */
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  /* line 402, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

/* line 408, ../../_dev/css/custom/animate.scss */
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  /* line 416, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  /* line 421, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 426, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 431, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 436, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  /* line 443, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  /* line 448, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 453, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 458, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 463, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* line 469, ../../_dev/css/custom/animate.scss */
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  /* line 477, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: none;
    transform: none;
  }

  /* line 482, ../../_dev/css/custom/animate.scss */
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  /* line 487, ../../_dev/css/custom/animate.scss */
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  /* line 492, ../../_dev/css/custom/animate.scss */
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  /* line 497, ../../_dev/css/custom/animate.scss */
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  /* line 502, ../../_dev/css/custom/animate.scss */
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  /* line 507, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  /* line 514, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: none;
    transform: none;
  }

  /* line 519, ../../_dev/css/custom/animate.scss */
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  /* line 524, ../../_dev/css/custom/animate.scss */
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  /* line 529, ../../_dev/css/custom/animate.scss */
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  /* line 534, ../../_dev/css/custom/animate.scss */
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  /* line 539, ../../_dev/css/custom/animate.scss */
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  /* line 544, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: none;
    transform: none;
  }
}

/* line 550, ../../_dev/css/custom/animate.scss */
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  /* line 556, ../../_dev/css/custom/animate.scss */
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  /* line 561, ../../_dev/css/custom/animate.scss */
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  /* line 566, ../../_dev/css/custom/animate.scss */
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  /* line 571, ../../_dev/css/custom/animate.scss */
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  /* line 576, ../../_dev/css/custom/animate.scss */
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  /* line 581, ../../_dev/css/custom/animate.scss */
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  /* line 586, ../../_dev/css/custom/animate.scss */
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }

  /* line 591, ../../_dev/css/custom/animate.scss */
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

@keyframes jello {
  /* line 598, ../../_dev/css/custom/animate.scss */
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  /* line 603, ../../_dev/css/custom/animate.scss */
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  /* line 608, ../../_dev/css/custom/animate.scss */
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  /* line 613, ../../_dev/css/custom/animate.scss */
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  /* line 618, ../../_dev/css/custom/animate.scss */
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  /* line 623, ../../_dev/css/custom/animate.scss */
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  /* line 628, ../../_dev/css/custom/animate.scss */
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }

  /* line 633, ../../_dev/css/custom/animate.scss */
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

/* line 639, ../../_dev/css/custom/animate.scss */
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  /* line 647, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 652, ../../_dev/css/custom/animate.scss */
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  /* line 658, ../../_dev/css/custom/animate.scss */
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  /* line 663, ../../_dev/css/custom/animate.scss */
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  /* line 668, ../../_dev/css/custom/animate.scss */
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  /* line 674, ../../_dev/css/custom/animate.scss */
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  /* line 679, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  /* line 687, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 692, ../../_dev/css/custom/animate.scss */
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  /* line 698, ../../_dev/css/custom/animate.scss */
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  /* line 703, ../../_dev/css/custom/animate.scss */
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  /* line 708, ../../_dev/css/custom/animate.scss */
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  /* line 714, ../../_dev/css/custom/animate.scss */
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  /* line 719, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* line 726, ../../_dev/css/custom/animate.scss */
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  /* line 732, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 737, ../../_dev/css/custom/animate.scss */
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  /* line 743, ../../_dev/css/custom/animate.scss */
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  /* line 749, ../../_dev/css/custom/animate.scss */
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  /* line 754, ../../_dev/css/custom/animate.scss */
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  /* line 759, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  /* line 766, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 771, ../../_dev/css/custom/animate.scss */
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  /* line 777, ../../_dev/css/custom/animate.scss */
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  /* line 783, ../../_dev/css/custom/animate.scss */
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  /* line 788, ../../_dev/css/custom/animate.scss */
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  /* line 793, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: none;
    transform: none;
  }
}

/* line 799, ../../_dev/css/custom/animate.scss */
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  /* line 805, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 810, ../../_dev/css/custom/animate.scss */
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  /* line 816, ../../_dev/css/custom/animate.scss */
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  /* line 822, ../../_dev/css/custom/animate.scss */
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  /* line 827, ../../_dev/css/custom/animate.scss */
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  /* line 832, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  /* line 839, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 844, ../../_dev/css/custom/animate.scss */
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  /* line 850, ../../_dev/css/custom/animate.scss */
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  /* line 856, ../../_dev/css/custom/animate.scss */
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  /* line 861, ../../_dev/css/custom/animate.scss */
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  /* line 866, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: none;
    transform: none;
  }
}

/* line 872, ../../_dev/css/custom/animate.scss */
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  /* line 878, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 883, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  /* line 889, ../../_dev/css/custom/animate.scss */
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  /* line 895, ../../_dev/css/custom/animate.scss */
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  /* line 900, ../../_dev/css/custom/animate.scss */
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  /* line 905, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  /* line 912, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 917, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  /* line 923, ../../_dev/css/custom/animate.scss */
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  /* line 929, ../../_dev/css/custom/animate.scss */
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  /* line 934, ../../_dev/css/custom/animate.scss */
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  /* line 939, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: none;
    transform: none;
  }
}

/* line 945, ../../_dev/css/custom/animate.scss */
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  /* line 951, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 956, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  /* line 962, ../../_dev/css/custom/animate.scss */
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  /* line 968, ../../_dev/css/custom/animate.scss */
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  /* line 973, ../../_dev/css/custom/animate.scss */
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  /* line 978, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  /* line 985, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 990, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  /* line 996, ../../_dev/css/custom/animate.scss */
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  /* line 1002, ../../_dev/css/custom/animate.scss */
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  /* line 1007, ../../_dev/css/custom/animate.scss */
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  /* line 1012, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 1018, ../../_dev/css/custom/animate.scss */
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  /* line 1024, ../../_dev/css/custom/animate.scss */
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  /* line 1029, ../../_dev/css/custom/animate.scss */
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  /* line 1035, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  /* line 1043, ../../_dev/css/custom/animate.scss */
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  /* line 1048, ../../_dev/css/custom/animate.scss */
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  /* line 1054, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

/* line 1061, ../../_dev/css/custom/animate.scss */
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  /* line 1067, ../../_dev/css/custom/animate.scss */
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  /* line 1072, ../../_dev/css/custom/animate.scss */
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  /* line 1078, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  /* line 1086, ../../_dev/css/custom/animate.scss */
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  /* line 1091, ../../_dev/css/custom/animate.scss */
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  /* line 1097, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

/* line 1104, ../../_dev/css/custom/animate.scss */
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  /* line 1110, ../../_dev/css/custom/animate.scss */
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  /* line 1116, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  /* line 1124, ../../_dev/css/custom/animate.scss */
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  /* line 1130, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

/* line 1137, ../../_dev/css/custom/animate.scss */
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  /* line 1143, ../../_dev/css/custom/animate.scss */
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  /* line 1149, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  /* line 1157, ../../_dev/css/custom/animate.scss */
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  /* line 1163, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

/* line 1170, ../../_dev/css/custom/animate.scss */
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  /* line 1176, ../../_dev/css/custom/animate.scss */
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  /* line 1181, ../../_dev/css/custom/animate.scss */
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  /* line 1187, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  /* line 1195, ../../_dev/css/custom/animate.scss */
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  /* line 1200, ../../_dev/css/custom/animate.scss */
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  /* line 1206, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

/* line 1213, ../../_dev/css/custom/animate.scss */
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  /* line 1219, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
  }

  /* line 1223, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  /* line 1229, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
  }

  /* line 1233, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 1;
  }
}

/* line 1238, ../../_dev/css/custom/animate.scss */
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  /* line 1244, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  /* line 1250, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  /* line 1258, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  /* line 1264, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1271, ../../_dev/css/custom/animate.scss */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  /* line 1277, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  /* line 1283, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  /* line 1291, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  /* line 1297, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1304, ../../_dev/css/custom/animate.scss */
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  /* line 1310, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }

  /* line 1316, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  /* line 1324, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }

  /* line 1330, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1337, ../../_dev/css/custom/animate.scss */
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  /* line 1343, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  /* line 1349, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  /* line 1357, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  /* line 1363, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1370, ../../_dev/css/custom/animate.scss */
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  /* line 1376, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }

  /* line 1382, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  /* line 1390, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }

  /* line 1396, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1403, ../../_dev/css/custom/animate.scss */
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  /* line 1409, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  /* line 1415, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  /* line 1423, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  /* line 1429, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1436, ../../_dev/css/custom/animate.scss */
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  /* line 1442, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  /* line 1448, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  /* line 1456, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  /* line 1462, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1469, ../../_dev/css/custom/animate.scss */
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  /* line 1475, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  /* line 1481, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  /* line 1489, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  /* line 1495, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1502, ../../_dev/css/custom/animate.scss */
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  /* line 1508, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 1512, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  /* line 1518, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 1522, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
  }
}

/* line 1527, ../../_dev/css/custom/animate.scss */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  /* line 1533, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 1537, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  /* line 1545, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 1549, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

/* line 1556, ../../_dev/css/custom/animate.scss */
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  /* line 1562, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 1566, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  /* line 1574, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 1578, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

/* line 1585, ../../_dev/css/custom/animate.scss */
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  /* line 1591, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 1595, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  /* line 1603, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 1607, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

/* line 1614, ../../_dev/css/custom/animate.scss */
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  /* line 1620, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 1624, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  /* line 1632, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 1636, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

/* line 1643, ../../_dev/css/custom/animate.scss */
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  /* line 1649, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 1653, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  /* line 1661, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 1665, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

/* line 1672, ../../_dev/css/custom/animate.scss */
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  /* line 1678, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 1682, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  /* line 1690, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 1694, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

/* line 1701, ../../_dev/css/custom/animate.scss */
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  /* line 1707, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 1711, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  /* line 1719, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 1723, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

/* line 1730, ../../_dev/css/custom/animate.scss */
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  /* line 1736, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 1740, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  /* line 1748, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 1752, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

/* line 1759, ../../_dev/css/custom/animate.scss */
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  /* line 1765, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  /* line 1772, ../../_dev/css/custom/animate.scss */
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  /* line 1779, ../../_dev/css/custom/animate.scss */
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  /* line 1786, ../../_dev/css/custom/animate.scss */
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  /* line 1793, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  /* line 1802, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  /* line 1809, ../../_dev/css/custom/animate.scss */
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  /* line 1816, ../../_dev/css/custom/animate.scss */
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  /* line 1823, ../../_dev/css/custom/animate.scss */
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  /* line 1830, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

/* line 1838, ../../_dev/css/custom/animate.scss */
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  /* line 1846, ../../_dev/css/custom/animate.scss */
  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;
  }

  /* line 1854, ../../_dev/css/custom/animate.scss */
  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;
  }

  /* line 1861, ../../_dev/css/custom/animate.scss */
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  /* line 1867, ../../_dev/css/custom/animate.scss */
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  /* line 1872, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  /* line 1879, ../../_dev/css/custom/animate.scss */
  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;
  }

  /* line 1887, ../../_dev/css/custom/animate.scss */
  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;
  }

  /* line 1894, ../../_dev/css/custom/animate.scss */
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  /* line 1900, ../../_dev/css/custom/animate.scss */
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  /* line 1905, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

/* line 1911, ../../_dev/css/custom/animate.scss */
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  /* line 1919, ../../_dev/css/custom/animate.scss */
  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;
  }

  /* line 1927, ../../_dev/css/custom/animate.scss */
  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;
  }

  /* line 1934, ../../_dev/css/custom/animate.scss */
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  /* line 1940, ../../_dev/css/custom/animate.scss */
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  /* line 1945, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  /* line 1952, ../../_dev/css/custom/animate.scss */
  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;
  }

  /* line 1960, ../../_dev/css/custom/animate.scss */
  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;
  }

  /* line 1967, ../../_dev/css/custom/animate.scss */
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  /* line 1973, ../../_dev/css/custom/animate.scss */
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  /* line 1978, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

/* line 1984, ../../_dev/css/custom/animate.scss */
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  /* line 1992, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  /* line 1997, ../../_dev/css/custom/animate.scss */
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  /* line 2003, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  /* line 2011, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  /* line 2016, ../../_dev/css/custom/animate.scss */
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  /* line 2022, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

/* line 2029, ../../_dev/css/custom/animate.scss */
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  /* line 2037, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  /* line 2042, ../../_dev/css/custom/animate.scss */
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  /* line 2048, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  /* line 2056, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  /* line 2061, ../../_dev/css/custom/animate.scss */
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  /* line 2067, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

/* line 2074, ../../_dev/css/custom/animate.scss */
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  /* line 2082, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  /* line 2088, ../../_dev/css/custom/animate.scss */
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  /* line 2094, ../../_dev/css/custom/animate.scss */
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  /* line 2100, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  /* line 2108, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  /* line 2114, ../../_dev/css/custom/animate.scss */
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  /* line 2120, ../../_dev/css/custom/animate.scss */
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  /* line 2126, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 2133, ../../_dev/css/custom/animate.scss */
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  /* line 2141, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 2145, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  /* line 2153, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 2157, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

/* line 2164, ../../_dev/css/custom/animate.scss */
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  /* line 2172, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  /* line 2180, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  /* line 2190, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  /* line 2198, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 2207, ../../_dev/css/custom/animate.scss */
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  /* line 2213, ../../_dev/css/custom/animate.scss */
  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;
  }

  /* line 2221, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  /* line 2231, ../../_dev/css/custom/animate.scss */
  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;
  }

  /* line 2239, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 2248, ../../_dev/css/custom/animate.scss */
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  /* line 2254, ../../_dev/css/custom/animate.scss */
  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;
  }

  /* line 2262, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  /* line 2272, ../../_dev/css/custom/animate.scss */
  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;
  }

  /* line 2280, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 2289, ../../_dev/css/custom/animate.scss */
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  /* line 2295, ../../_dev/css/custom/animate.scss */
  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;
  }

  /* line 2303, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  /* line 2313, ../../_dev/css/custom/animate.scss */
  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;
  }

  /* line 2321, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 2330, ../../_dev/css/custom/animate.scss */
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  /* line 2336, ../../_dev/css/custom/animate.scss */
  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;
  }

  /* line 2344, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  /* line 2354, ../../_dev/css/custom/animate.scss */
  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;
  }

  /* line 2362, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 2371, ../../_dev/css/custom/animate.scss */
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  /* line 2377, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  /* line 2383, ../../_dev/css/custom/animate.scss */
  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 {
  /* line 2393, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  /* line 2399, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

/* line 2408, ../../_dev/css/custom/animate.scss */
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  /* line 2414, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  /* line 2420, ../../_dev/css/custom/animate.scss */
  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 {
  /* line 2430, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  /* line 2436, ../../_dev/css/custom/animate.scss */
  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;
  }
}

/* line 2445, ../../_dev/css/custom/animate.scss */
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  /* line 2451, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  /* line 2457, ../../_dev/css/custom/animate.scss */
  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 {
  /* line 2467, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  /* line 2473, ../../_dev/css/custom/animate.scss */
  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;
  }
}

/* line 2482, ../../_dev/css/custom/animate.scss */
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  /* line 2488, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  /* line 2494, ../../_dev/css/custom/animate.scss */
  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 {
  /* line 2504, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  /* line 2510, ../../_dev/css/custom/animate.scss */
  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;
  }
}

/* line 2519, ../../_dev/css/custom/animate.scss */
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  /* line 2525, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  /* line 2531, ../../_dev/css/custom/animate.scss */
  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 {
  /* line 2541, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  /* line 2547, ../../_dev/css/custom/animate.scss */
  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;
  }
}

/* line 2556, ../../_dev/css/custom/animate.scss */
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  /* line 2562, ../../_dev/css/custom/animate.scss */
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  /* line 2569, ../../_dev/css/custom/animate.scss */
  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;
  }

  /* line 2578, ../../_dev/css/custom/animate.scss */
  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;
  }

  /* line 2588, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  /* line 2596, ../../_dev/css/custom/animate.scss */
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  /* line 2603, ../../_dev/css/custom/animate.scss */
  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;
  }

  /* line 2612, ../../_dev/css/custom/animate.scss */
  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;
  }

  /* line 2622, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

/* line 2629, ../../_dev/css/custom/animate.scss */
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  /* line 2637, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  /* line 2643, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  /* line 2651, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  /* line 2657, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 2664, ../../_dev/css/custom/animate.scss */
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  /* line 2672, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 2676, ../../_dev/css/custom/animate.scss */
  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 {
  /* line 2684, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 2688, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

/* line 2695, ../../_dev/css/custom/animate.scss */
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  /* line 2701, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  /* line 2707, ../../_dev/css/custom/animate.scss */
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  /* line 2713, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  /* line 2719, ../../_dev/css/custom/animate.scss */
  50% {
    opacity: 1;
  }
}

/* line 2724, ../../_dev/css/custom/animate.scss */
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  /* line 2730, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 2738, ../../_dev/css/custom/animate.scss */
  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 {
  /* line 2748, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 2756, ../../_dev/css/custom/animate.scss */
  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);
  }
}

/* line 2765, ../../_dev/css/custom/animate.scss */
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  /* line 2771, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 2779, ../../_dev/css/custom/animate.scss */
  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 {
  /* line 2789, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 2797, ../../_dev/css/custom/animate.scss */
  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);
  }
}

/* line 2806, ../../_dev/css/custom/animate.scss */
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  /* line 2812, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 2820, ../../_dev/css/custom/animate.scss */
  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 {
  /* line 2830, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 2838, ../../_dev/css/custom/animate.scss */
  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);
  }
}

/* line 2847, ../../_dev/css/custom/animate.scss */
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  /* line 2853, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 2861, ../../_dev/css/custom/animate.scss */
  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 {
  /* line 2871, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 2879, ../../_dev/css/custom/animate.scss */
  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);
  }
}

/* line 2888, ../../_dev/css/custom/animate.scss */
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  /* line 2894, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 2898, ../../_dev/css/custom/animate.scss */
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  /* line 2904, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  /* line 2910, ../../_dev/css/custom/animate.scss */
  from {
    opacity: 1;
  }

  /* line 2914, ../../_dev/css/custom/animate.scss */
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  /* line 2920, ../../_dev/css/custom/animate.scss */
  to {
    opacity: 0;
  }
}

/* line 2925, ../../_dev/css/custom/animate.scss */
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  /* line 2931, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 2939, ../../_dev/css/custom/animate.scss */
  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 {
  /* line 2951, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 2959, ../../_dev/css/custom/animate.scss */
  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);
  }
}

/* line 2970, ../../_dev/css/custom/animate.scss */
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  /* line 2976, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 2982, ../../_dev/css/custom/animate.scss */
  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 {
  /* line 2992, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 2998, ../../_dev/css/custom/animate.scss */
  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;
  }
}

/* line 3007, ../../_dev/css/custom/animate.scss */
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  /* line 3013, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 3019, ../../_dev/css/custom/animate.scss */
  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 {
  /* line 3029, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 3035, ../../_dev/css/custom/animate.scss */
  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;
  }
}

/* line 3044, ../../_dev/css/custom/animate.scss */
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  /* line 3050, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 3058, ../../_dev/css/custom/animate.scss */
  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 {
  /* line 3070, ../../_dev/css/custom/animate.scss */
  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);
  }

  /* line 3078, ../../_dev/css/custom/animate.scss */
  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);
  }
}

/* line 3089, ../../_dev/css/custom/animate.scss */
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  /* line 3095, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  /* line 3101, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  /* line 3108, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  /* line 3114, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 3120, ../../_dev/css/custom/animate.scss */
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  /* line 3126, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  /* line 3132, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  /* line 3139, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  /* line 3145, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 3151, ../../_dev/css/custom/animate.scss */
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  /* line 3157, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  /* line 3163, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  /* line 3170, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  /* line 3176, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 3182, ../../_dev/css/custom/animate.scss */
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  /* line 3188, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  /* line 3194, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  /* line 3201, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  /* line 3207, ../../_dev/css/custom/animate.scss */
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 3213, ../../_dev/css/custom/animate.scss */
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  /* line 3219, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  /* line 3224, ../../_dev/css/custom/animate.scss */
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  /* line 3232, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  /* line 3237, ../../_dev/css/custom/animate.scss */
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

/* line 3244, ../../_dev/css/custom/animate.scss */
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  /* line 3250, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  /* line 3255, ../../_dev/css/custom/animate.scss */
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  /* line 3263, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  /* line 3268, ../../_dev/css/custom/animate.scss */
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

/* line 3275, ../../_dev/css/custom/animate.scss */
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  /* line 3281, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  /* line 3286, ../../_dev/css/custom/animate.scss */
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  /* line 3294, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  /* line 3299, ../../_dev/css/custom/animate.scss */
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

/* line 3306, ../../_dev/css/custom/animate.scss */
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  /* line 3312, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  /* line 3317, ../../_dev/css/custom/animate.scss */
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  /* line 3325, ../../_dev/css/custom/animate.scss */
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  /* line 3330, ../../_dev/css/custom/animate.scss */
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

/* line 3337, ../../_dev/css/custom/animate.scss */
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/**/
@-webkit-keyframes blurFadeIn {
  /* line 3343, ../../_dev/css/custom/animate.scss */
  0% {
    opacity: 0;
    transform: scale(1.3);
  }

  /* line 3347, ../../_dev/css/custom/animate.scss */
  50% {
    opacity: 0.5;
  }

  /* line 3351, ../../_dev/css/custom/animate.scss */
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes blurFadeIn {
  /* line 3357, ../../_dev/css/custom/animate.scss */
  0% {
    opacity: 0;
    transform: scale(1.3);
  }

  /* line 3361, ../../_dev/css/custom/animate.scss */
  50% {
    opacity: 0.5;
  }

  /* line 3364, ../../_dev/css/custom/animate.scss */
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* line 3369, ../../_dev/css/custom/animate.scss */
.blurFadeIn {
  -webkit-animation-name: blurFadeIn;
  animation-name: blurFadeIn;
}

@-webkit-keyframes blurFadeInDown {
  /* line 3374, ../../_dev/css/custom/animate.scss */
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  /* line 3382, ../../_dev/css/custom/animate.scss */
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes blurFadeInDown {
  /* line 3392, ../../_dev/css/custom/animate.scss */
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  /* line 3400, ../../_dev/css/custom/animate.scss */
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

/* line 3409, ../../_dev/css/custom/animate.scss */
.blurFadeInDown {
  -webkit-animation-name: blurFadeInDown;
  animation-name: blurFadeInDown;
}

@-webkit-keyframes passing {
  /* line 3414, ../../_dev/css/custom/animate.scss */
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
  }

  /* line 3418, ../../_dev/css/custom/animate.scss */
  50% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }

  /* line 3422, ../../_dev/css/custom/animate.scss */
  100% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0;
  }
}

@keyframes passing {
  /* line 3428, ../../_dev/css/custom/animate.scss */
  0% {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
  }

  /* line 3433, ../../_dev/css/custom/animate.scss */
  50% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }

  /* line 3438, ../../_dev/css/custom/animate.scss */
  100% {
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0;
  }
}

@-webkit-keyframes passing-reverse {
  /* line 3446, ../../_dev/css/custom/animate.scss */
  0% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0;
  }

  /* line 3451, ../../_dev/css/custom/animate.scss */
  50% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }

  /* line 3456, ../../_dev/css/custom/animate.scss */
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
  }
}

@keyframes passing-reverse {
  /* line 3463, ../../_dev/css/custom/animate.scss */
  0% {
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0;
  }

  /* line 3469, ../../_dev/css/custom/animate.scss */
  50% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }

  /* line 3475, ../../_dev/css/custom/animate.scss */
  100% {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
  }
}

/* line 36, ../../_dev/css/custom/custom.scss */
.oneline {
  display: block;
  word-wrap: break-word;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* Font Awesome Start */
@font-face {
  font-family: 'FontAwesome';
  src: url("../css/fontawesome-webfont.eot?v=4.7.0");
  src: url("../css/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../css/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../css/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../css/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../css/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Ionicons";
  src: url("../css/ionicons.eot?v=2.0.0");
  src: url("../css/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"), url("../css/ionicons.ttf?v=2.0.0") format("truetype"), url("../css/ionicons.woff?v=2.0.0") format("woff"), url("../css/ionicons.svg?v=2.0.0#Ionicons") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* line 62, ../../_dev/css/custom/custom.scss */
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 71, ../../_dev/css/custom/custom.scss */
.fa-lg {
  font-size: 1.33333333em;
  line-height: .75em;
  vertical-align: -15%;
}

/* line 77, ../../_dev/css/custom/custom.scss */
.fa-2x {
  font-size: 2em;
}

/* line 81, ../../_dev/css/custom/custom.scss */
.fa-3x {
  font-size: 3em;
}

/* line 85, ../../_dev/css/custom/custom.scss */
.fa-4x {
  font-size: 4em;
}

/* line 89, ../../_dev/css/custom/custom.scss */
.fa-5x {
  font-size: 5em;
}

/* line 93, ../../_dev/css/custom/custom.scss */
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

/* line 98, ../../_dev/css/custom/custom.scss */
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
/* line 102, ../../_dev/css/custom/custom.scss */
.fa-ul > li {
  position: relative;
}

/* line 107, ../../_dev/css/custom/custom.scss */
.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14285714em;
  top: .14285714em;
  text-align: center;
}
/* line 113, ../../_dev/css/custom/custom.scss */
.fa-li.fa-lg {
  left: -1.85714em;
}

/* line 118, ../../_dev/css/custom/custom.scss */
.fa-border {
  padding: .2em .25em .15em;
  border: solid .08em #eee;
  border-radius: .1em;
}

/* line 124, ../../_dev/css/custom/custom.scss */
.fa-pull-left {
  float: left;
}

/* line 128, ../../_dev/css/custom/custom.scss */
.fa-pull-right {
  float: right;
}

/* line 133, ../../_dev/css/custom/custom.scss */
.fa.fa-pull-left {
  margin-right: .3em;
}
/* line 136, ../../_dev/css/custom/custom.scss */
.fa.fa-pull-right {
  margin-left: .3em;
}

/* line 141, ../../_dev/css/custom/custom.scss */
.pull-right {
  float: right;
}

/* line 145, ../../_dev/css/custom/custom.scss */
.pull-left {
  float: left;
}

/* line 150, ../../_dev/css/custom/custom.scss */
.fa.pull-left {
  margin-right: .3em;
}
/* line 153, ../../_dev/css/custom/custom.scss */
.fa.pull-right {
  margin-left: .3em;
}

/* line 158, ../../_dev/css/custom/custom.scss */
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

/* line 163, ../../_dev/css/custom/custom.scss */
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  /* line 169, ../../_dev/css/custom/custom.scss */
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  /* line 174, ../../_dev/css/custom/custom.scss */
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  /* line 182, ../../_dev/css/custom/custom.scss */
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  /* line 187, ../../_dev/css/custom/custom.scss */
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

/* line 194, ../../_dev/css/custom/custom.scss */
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* line 201, ../../_dev/css/custom/custom.scss */
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* line 208, ../../_dev/css/custom/custom.scss */
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

/* line 215, ../../_dev/css/custom/custom.scss */
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

/* line 222, ../../_dev/css/custom/custom.scss */
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

/* line 230, ../../_dev/css/custom/custom.scss */
:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
  filter: none;
}

/* line 235, ../../_dev/css/custom/custom.scss */
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

/* line 244, ../../_dev/css/custom/custom.scss */
.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

/* line 251, ../../_dev/css/custom/custom.scss */
.fa-stack-1x {
  line-height: inherit;
}

/* line 255, ../../_dev/css/custom/custom.scss */
.fa-stack-2x {
  font-size: 2em;
}

/* line 259, ../../_dev/css/custom/custom.scss */
.fa-inverse {
  color: white;
}

/* line 263, ../../_dev/css/custom/custom.scss */
.fa-glass:before {
  content: "\f000";
}

/* line 267, ../../_dev/css/custom/custom.scss */
.fa-music:before {
  content: "\f001";
}

/* line 271, ../../_dev/css/custom/custom.scss */
.fa-search:before {
  content: "\f002";
}

/* line 275, ../../_dev/css/custom/custom.scss */
.fa-envelope-o:before {
  content: "\f003";
}

/* line 279, ../../_dev/css/custom/custom.scss */
.fa-heart:before {
  content: "\f004";
}

/* line 283, ../../_dev/css/custom/custom.scss */
.fa-star:before {
  content: "\f005";
}

/* line 287, ../../_dev/css/custom/custom.scss */
.fa-star-o:before {
  content: "\f006";
}

/* line 291, ../../_dev/css/custom/custom.scss */
.fa-user:before {
  content: "\f007";
}

/* line 295, ../../_dev/css/custom/custom.scss */
.fa-film:before {
  content: "\f008";
}

/* line 299, ../../_dev/css/custom/custom.scss */
.fa-th-large:before {
  content: "\f009";
}

/* line 303, ../../_dev/css/custom/custom.scss */
.fa-th:before {
  content: "\f00a";
}

/* line 307, ../../_dev/css/custom/custom.scss */
.fa-th-list:before {
  content: "\f00b";
}

/* line 311, ../../_dev/css/custom/custom.scss */
.fa-check:before {
  content: "\f00c";
}

/* line 315, ../../_dev/css/custom/custom.scss */
.fa-remove:before, .fa-close:before, .fa-times:before {
  content: "\f00d";
}

/* line 319, ../../_dev/css/custom/custom.scss */
.fa-search-plus:before {
  content: "\f00e";
}

/* line 323, ../../_dev/css/custom/custom.scss */
.fa-search-minus:before {
  content: "\f010";
}

/* line 327, ../../_dev/css/custom/custom.scss */
.fa-power-off:before {
  content: "\f011";
}

/* line 331, ../../_dev/css/custom/custom.scss */
.fa-signal:before {
  content: "\f012";
}

/* line 335, ../../_dev/css/custom/custom.scss */
.fa-gear:before, .fa-cog:before {
  content: "\f013";
}

/* line 339, ../../_dev/css/custom/custom.scss */
.fa-trash-o:before {
  content: "\f014";
}

/* line 343, ../../_dev/css/custom/custom.scss */
.fa-home:before {
  content: "\f015";
}

/* line 347, ../../_dev/css/custom/custom.scss */
.fa-file-o:before {
  content: "\f016";
}

/* line 351, ../../_dev/css/custom/custom.scss */
.fa-clock-o:before {
  content: "\f017";
}

/* line 355, ../../_dev/css/custom/custom.scss */
.fa-road:before {
  content: "\f018";
}

/* line 359, ../../_dev/css/custom/custom.scss */
.fa-download:before {
  content: "\f019";
}

/* line 363, ../../_dev/css/custom/custom.scss */
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

/* line 367, ../../_dev/css/custom/custom.scss */
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

/* line 371, ../../_dev/css/custom/custom.scss */
.fa-inbox:before {
  content: "\f01c";
}

/* line 375, ../../_dev/css/custom/custom.scss */
.fa-play-circle-o:before {
  content: "\f01d";
}

/* line 379, ../../_dev/css/custom/custom.scss */
.fa-rotate-right:before, .fa-repeat:before {
  content: "\f01e";
}

/* line 383, ../../_dev/css/custom/custom.scss */
.fa-refresh:before {
  content: "\f021";
}

/* line 387, ../../_dev/css/custom/custom.scss */
.fa-list-alt:before {
  content: "\f022";
}

/* line 391, ../../_dev/css/custom/custom.scss */
.fa-lock:before {
  content: "\f023";
}

/* line 395, ../../_dev/css/custom/custom.scss */
.fa-flag:before {
  content: "\f024";
}

/* line 399, ../../_dev/css/custom/custom.scss */
.fa-headphones:before {
  content: "\f025";
}

/* line 403, ../../_dev/css/custom/custom.scss */
.fa-volume-off:before {
  content: "\f026";
}

/* line 407, ../../_dev/css/custom/custom.scss */
.fa-volume-down:before {
  content: "\f027";
}

/* line 411, ../../_dev/css/custom/custom.scss */
.fa-volume-up:before {
  content: "\f028";
}

/* line 415, ../../_dev/css/custom/custom.scss */
.fa-qrcode:before {
  content: "\f029";
}

/* line 419, ../../_dev/css/custom/custom.scss */
.fa-barcode:before {
  content: "\f02a";
}

/* line 423, ../../_dev/css/custom/custom.scss */
.fa-tag:before {
  content: "\f02b";
}

/* line 427, ../../_dev/css/custom/custom.scss */
.fa-tags:before {
  content: "\f02c";
}

/* line 431, ../../_dev/css/custom/custom.scss */
.fa-book:before {
  content: "\f02d";
}

/* line 435, ../../_dev/css/custom/custom.scss */
.fa-bookmark:before {
  content: "\f02e";
}

/* line 439, ../../_dev/css/custom/custom.scss */
.fa-print:before {
  content: "\f02f";
}

/* line 443, ../../_dev/css/custom/custom.scss */
.fa-camera:before {
  content: "\f030";
}

/* line 447, ../../_dev/css/custom/custom.scss */
.fa-font:before {
  content: "\f031";
}

/* line 451, ../../_dev/css/custom/custom.scss */
.fa-bold:before {
  content: "\f032";
}

/* line 455, ../../_dev/css/custom/custom.scss */
.fa-italic:before {
  content: "\f033";
}

/* line 459, ../../_dev/css/custom/custom.scss */
.fa-text-height:before {
  content: "\f034";
}

/* line 463, ../../_dev/css/custom/custom.scss */
.fa-text-width:before {
  content: "\f035";
}

/* line 467, ../../_dev/css/custom/custom.scss */
.fa-align-left:before {
  content: "\f036";
}

/* line 471, ../../_dev/css/custom/custom.scss */
.fa-align-center:before {
  content: "\f037";
}

/* line 475, ../../_dev/css/custom/custom.scss */
.fa-align-right:before {
  content: "\f038";
}

/* line 479, ../../_dev/css/custom/custom.scss */
.fa-align-justify:before {
  content: "\f039";
}

/* line 483, ../../_dev/css/custom/custom.scss */
.fa-list:before {
  content: "\f03a";
}

/* line 487, ../../_dev/css/custom/custom.scss */
.fa-dedent:before, .fa-outdent:before {
  content: "\f03b";
}

/* line 491, ../../_dev/css/custom/custom.scss */
.fa-indent:before {
  content: "\f03c";
}

/* line 495, ../../_dev/css/custom/custom.scss */
.fa-video-camera:before {
  content: "\f03d";
}

/* line 499, ../../_dev/css/custom/custom.scss */
.fa-photo:before, .fa-image:before, .fa-picture-o:before {
  content: "\f03e";
}

/* line 503, ../../_dev/css/custom/custom.scss */
.fa-pencil:before {
  content: "\f040";
}

/* line 507, ../../_dev/css/custom/custom.scss */
.fa-map-marker:before {
  content: "\f041";
}

/* line 511, ../../_dev/css/custom/custom.scss */
.fa-adjust:before {
  content: "\f042";
}

/* line 515, ../../_dev/css/custom/custom.scss */
.fa-tint:before {
  content: "\f043";
}

/* line 519, ../../_dev/css/custom/custom.scss */
.fa-edit:before, .fa-pencil-square-o:before {
  content: "\f044";
}

/* line 523, ../../_dev/css/custom/custom.scss */
.fa-share-square-o:before {
  content: "\f045";
}

/* line 527, ../../_dev/css/custom/custom.scss */
.fa-check-square-o:before {
  content: "\f046";
}

/* line 531, ../../_dev/css/custom/custom.scss */
.fa-arrows:before {
  content: "\f047";
}

/* line 535, ../../_dev/css/custom/custom.scss */
.fa-step-backward:before {
  content: "\f048";
}

/* line 539, ../../_dev/css/custom/custom.scss */
.fa-fast-backward:before {
  content: "\f049";
}

/* line 543, ../../_dev/css/custom/custom.scss */
.fa-backward:before {
  content: "\f04a";
}

/* line 547, ../../_dev/css/custom/custom.scss */
.fa-play:before {
  content: "\f04b";
}

/* line 551, ../../_dev/css/custom/custom.scss */
.fa-pause:before {
  content: "\f04c";
}

/* line 555, ../../_dev/css/custom/custom.scss */
.fa-stop:before {
  content: "\f04d";
}

/* line 559, ../../_dev/css/custom/custom.scss */
.fa-forward:before {
  content: "\f04e";
}

/* line 563, ../../_dev/css/custom/custom.scss */
.fa-fast-forward:before {
  content: "\f050";
}

/* line 567, ../../_dev/css/custom/custom.scss */
.fa-step-forward:before {
  content: "\f051";
}

/* line 571, ../../_dev/css/custom/custom.scss */
.fa-eject:before {
  content: "\f052";
}

/* line 575, ../../_dev/css/custom/custom.scss */
.fa-chevron-left:before {
  content: "\f053";
}

/* line 579, ../../_dev/css/custom/custom.scss */
.fa-chevron-right:before {
  content: "\f054";
}

/* line 583, ../../_dev/css/custom/custom.scss */
.fa-plus-circle:before {
  content: "\f055";
}

/* line 587, ../../_dev/css/custom/custom.scss */
.fa-minus-circle:before {
  content: "\f056";
}

/* line 591, ../../_dev/css/custom/custom.scss */
.fa-times-circle:before {
  content: "\f057";
}

/* line 595, ../../_dev/css/custom/custom.scss */
.fa-check-circle:before {
  content: "\f058";
}

/* line 599, ../../_dev/css/custom/custom.scss */
.fa-question-circle:before {
  content: "\f059";
}

/* line 603, ../../_dev/css/custom/custom.scss */
.fa-info-circle:before {
  content: "\f05a";
}

/* line 607, ../../_dev/css/custom/custom.scss */
.fa-crosshairs:before {
  content: "\f05b";
}

/* line 611, ../../_dev/css/custom/custom.scss */
.fa-times-circle-o:before {
  content: "\f05c";
}

/* line 615, ../../_dev/css/custom/custom.scss */
.fa-check-circle-o:before {
  content: "\f05d";
}

/* line 619, ../../_dev/css/custom/custom.scss */
.fa-ban:before {
  content: "\f05e";
}

/* line 623, ../../_dev/css/custom/custom.scss */
.fa-arrow-left:before {
  content: "\f060";
}

/* line 627, ../../_dev/css/custom/custom.scss */
.fa-arrow-right:before {
  content: "\f061";
}

/* line 631, ../../_dev/css/custom/custom.scss */
.fa-arrow-up:before {
  content: "\f062";
}

/* line 635, ../../_dev/css/custom/custom.scss */
.fa-arrow-down:before {
  content: "\f063";
}

/* line 639, ../../_dev/css/custom/custom.scss */
.fa-mail-forward:before, .fa-share:before {
  content: "\f064";
}

/* line 643, ../../_dev/css/custom/custom.scss */
.fa-expand:before {
  content: "\f065";
}

/* line 647, ../../_dev/css/custom/custom.scss */
.fa-compress:before {
  content: "\f066";
}

/* line 651, ../../_dev/css/custom/custom.scss */
.fa-plus:before {
  content: "\f067";
}

/* line 655, ../../_dev/css/custom/custom.scss */
.fa-minus:before {
  content: "\f068";
}

/* line 659, ../../_dev/css/custom/custom.scss */
.fa-asterisk:before {
  content: "\f069";
}

/* line 663, ../../_dev/css/custom/custom.scss */
.fa-exclamation-circle:before {
  content: "\f06a";
}

/* line 667, ../../_dev/css/custom/custom.scss */
.fa-gift:before {
  content: "\f06b";
}

/* line 671, ../../_dev/css/custom/custom.scss */
.fa-leaf:before {
  content: "\f06c";
}

/* line 675, ../../_dev/css/custom/custom.scss */
.fa-fire:before {
  content: "\f06d";
}

/* line 679, ../../_dev/css/custom/custom.scss */
.fa-eye:before {
  content: "\f06e";
}

/* line 683, ../../_dev/css/custom/custom.scss */
.fa-eye-slash:before {
  content: "\f070";
}

/* line 687, ../../_dev/css/custom/custom.scss */
.fa-warning:before, .fa-exclamation-triangle:before {
  content: "\f071";
}

/* line 691, ../../_dev/css/custom/custom.scss */
.fa-plane:before {
  content: "\f072";
}

/* line 695, ../../_dev/css/custom/custom.scss */
.fa-calendar:before {
  content: "\f073";
}

/* line 699, ../../_dev/css/custom/custom.scss */
.fa-random:before {
  content: "\f074";
}

/* line 703, ../../_dev/css/custom/custom.scss */
.fa-comment:before {
  content: "\f075";
}

/* line 707, ../../_dev/css/custom/custom.scss */
.fa-magnet:before {
  content: "\f076";
}

/* line 711, ../../_dev/css/custom/custom.scss */
.fa-chevron-up:before {
  content: "\f077";
}

/* line 715, ../../_dev/css/custom/custom.scss */
.fa-chevron-down:before {
  content: "\f078";
}

/* line 719, ../../_dev/css/custom/custom.scss */
.fa-retweet:before {
  content: "\f079";
}

/* line 723, ../../_dev/css/custom/custom.scss */
.fa-shopping-cart:before {
  content: "\f07a";
}

/* line 727, ../../_dev/css/custom/custom.scss */
.fa-folder:before {
  content: "\f07b";
}

/* line 731, ../../_dev/css/custom/custom.scss */
.fa-folder-open:before {
  content: "\f07c";
}

/* line 735, ../../_dev/css/custom/custom.scss */
.fa-arrows-v:before {
  content: "\f07d";
}

/* line 739, ../../_dev/css/custom/custom.scss */
.fa-arrows-h:before {
  content: "\f07e";
}

/* line 743, ../../_dev/css/custom/custom.scss */
.fa-bar-chart-o:before, .fa-bar-chart:before {
  content: "\f080";
}

/* line 747, ../../_dev/css/custom/custom.scss */
.fa-twitter-square:before {
  content: "\f081";
}

/* line 751, ../../_dev/css/custom/custom.scss */
.fa-facebook-square:before {
  content: "\f082";
}

/* line 755, ../../_dev/css/custom/custom.scss */
.fa-camera-retro:before {
  content: "\f083";
}

/* line 759, ../../_dev/css/custom/custom.scss */
.fa-key:before {
  content: "\f084";
}

/* line 763, ../../_dev/css/custom/custom.scss */
.fa-gears:before, .fa-cogs:before {
  content: "\f085";
}

/* line 767, ../../_dev/css/custom/custom.scss */
.fa-comments:before {
  content: "\f086";
}

/* line 771, ../../_dev/css/custom/custom.scss */
.fa-thumbs-o-up:before {
  content: "\f087";
}

/* line 775, ../../_dev/css/custom/custom.scss */
.fa-thumbs-o-down:before {
  content: "\f088";
}

/* line 779, ../../_dev/css/custom/custom.scss */
.fa-star-half:before {
  content: "\f089";
}

/* line 783, ../../_dev/css/custom/custom.scss */
.fa-heart-o:before {
  content: "\f08a";
}

/* line 787, ../../_dev/css/custom/custom.scss */
.fa-sign-out:before {
  content: "\f08b";
}

/* line 791, ../../_dev/css/custom/custom.scss */
.fa-linkedin-square:before {
  content: "\f08c";
}

/* line 795, ../../_dev/css/custom/custom.scss */
.fa-thumb-tack:before {
  content: "\f08d";
}

/* line 799, ../../_dev/css/custom/custom.scss */
.fa-external-link:before {
  content: "\f08e";
}

/* line 803, ../../_dev/css/custom/custom.scss */
.fa-sign-in:before {
  content: "\f090";
}

/* line 807, ../../_dev/css/custom/custom.scss */
.fa-trophy:before {
  content: "\f091";
}

/* line 811, ../../_dev/css/custom/custom.scss */
.fa-github-square:before {
  content: "\f092";
}

/* line 815, ../../_dev/css/custom/custom.scss */
.fa-upload:before {
  content: "\f093";
}

/* line 819, ../../_dev/css/custom/custom.scss */
.fa-lemon-o:before {
  content: "\f094";
}

/* line 823, ../../_dev/css/custom/custom.scss */
.fa-phone:before {
  content: "\f095";
}

/* line 827, ../../_dev/css/custom/custom.scss */
.fa-square-o:before {
  content: "\f096";
}

/* line 831, ../../_dev/css/custom/custom.scss */
.fa-bookmark-o:before {
  content: "\f097";
}

/* line 835, ../../_dev/css/custom/custom.scss */
.fa-phone-square:before {
  content: "\f098";
}

/* line 839, ../../_dev/css/custom/custom.scss */
.fa-twitter:before {
  content: "\f099";
}

/* line 843, ../../_dev/css/custom/custom.scss */
.fa-facebook-f:before, .fa-facebook:before {
  content: "\f09a";
}

/* line 847, ../../_dev/css/custom/custom.scss */
.fa-github:before {
  content: "\f09b";
}

/* line 851, ../../_dev/css/custom/custom.scss */
.fa-unlock:before {
  content: "\f09c";
}

/* line 855, ../../_dev/css/custom/custom.scss */
.fa-credit-card:before {
  content: "\f09d";
}

/* line 859, ../../_dev/css/custom/custom.scss */
.fa-feed:before, .fa-rss:before {
  content: "\f09e";
}

/* line 863, ../../_dev/css/custom/custom.scss */
.fa-hdd-o:before {
  content: "\f0a0";
}

/* line 867, ../../_dev/css/custom/custom.scss */
.fa-bullhorn:before {
  content: "\f0a1";
}

/* line 871, ../../_dev/css/custom/custom.scss */
.fa-bell:before {
  content: "\f0f3";
}

/* line 875, ../../_dev/css/custom/custom.scss */
.fa-certificate:before {
  content: "\f0a3";
}

/* line 879, ../../_dev/css/custom/custom.scss */
.fa-hand-o-right:before {
  content: "\f0a4";
}

/* line 883, ../../_dev/css/custom/custom.scss */
.fa-hand-o-left:before {
  content: "\f0a5";
}

/* line 887, ../../_dev/css/custom/custom.scss */
.fa-hand-o-up:before {
  content: "\f0a6";
}

/* line 891, ../../_dev/css/custom/custom.scss */
.fa-hand-o-down:before {
  content: "\f0a7";
}

/* line 895, ../../_dev/css/custom/custom.scss */
.fa-arrow-circle-left:before {
  content: "\f0a8";
}

/* line 899, ../../_dev/css/custom/custom.scss */
.fa-arrow-circle-right:before {
  content: "\f0a9";
}

/* line 903, ../../_dev/css/custom/custom.scss */
.fa-arrow-circle-up:before {
  content: "\f0aa";
}

/* line 907, ../../_dev/css/custom/custom.scss */
.fa-arrow-circle-down:before {
  content: "\f0ab";
}

/* line 911, ../../_dev/css/custom/custom.scss */
.fa-globe:before {
  content: "\f0ac";
}

/* line 915, ../../_dev/css/custom/custom.scss */
.fa-wrench:before {
  content: "\f0ad";
}

/* line 919, ../../_dev/css/custom/custom.scss */
.fa-tasks:before {
  content: "\f0ae";
}

/* line 923, ../../_dev/css/custom/custom.scss */
.fa-filter:before {
  content: "\f0b0";
}

/* line 927, ../../_dev/css/custom/custom.scss */
.fa-briefcase:before {
  content: "\f0b1";
}

/* line 931, ../../_dev/css/custom/custom.scss */
.fa-arrows-alt:before {
  content: "\f0b2";
}

/* line 935, ../../_dev/css/custom/custom.scss */
.fa-group:before, .fa-users:before {
  content: "\f0c0";
}

/* line 939, ../../_dev/css/custom/custom.scss */
.fa-chain:before, .fa-link:before {
  content: "\f0c1";
}

/* line 943, ../../_dev/css/custom/custom.scss */
.fa-cloud:before {
  content: "\f0c2";
}

/* line 947, ../../_dev/css/custom/custom.scss */
.fa-flask:before {
  content: "\f0c3";
}

/* line 951, ../../_dev/css/custom/custom.scss */
.fa-cut:before, .fa-scissors:before {
  content: "\f0c4";
}

/* line 955, ../../_dev/css/custom/custom.scss */
.fa-copy:before, .fa-files-o:before {
  content: "\f0c5";
}

/* line 959, ../../_dev/css/custom/custom.scss */
.fa-paperclip:before {
  content: "\f0c6";
}

/* line 963, ../../_dev/css/custom/custom.scss */
.fa-save:before, .fa-floppy-o:before {
  content: "\f0c7";
}

/* line 967, ../../_dev/css/custom/custom.scss */
.fa-square:before {
  content: "\f0c8";
}

/* line 971, ../../_dev/css/custom/custom.scss */
.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
  content: "\f0c9";
}

/* line 975, ../../_dev/css/custom/custom.scss */
.fa-list-ul:before {
  content: "\f0ca";
}

/* line 979, ../../_dev/css/custom/custom.scss */
.fa-list-ol:before {
  content: "\f0cb";
}

/* line 983, ../../_dev/css/custom/custom.scss */
.fa-strikethrough:before {
  content: "\f0cc";
}

/* line 987, ../../_dev/css/custom/custom.scss */
.fa-underline:before {
  content: "\f0cd";
}

/* line 991, ../../_dev/css/custom/custom.scss */
.fa-table:before {
  content: "\f0ce";
}

/* line 995, ../../_dev/css/custom/custom.scss */
.fa-magic:before {
  content: "\f0d0";
}

/* line 999, ../../_dev/css/custom/custom.scss */
.fa-truck:before {
  content: "\f0d1";
}

/* line 1003, ../../_dev/css/custom/custom.scss */
.fa-pinterest:before {
  content: "\f0d2";
}

/* line 1007, ../../_dev/css/custom/custom.scss */
.fa-pinterest-square:before {
  content: "\f0d3";
}

/* line 1011, ../../_dev/css/custom/custom.scss */
.fa-google-plus-square:before {
  content: "\f0d4";
}

/* line 1015, ../../_dev/css/custom/custom.scss */
.fa-google-plus:before, .fa-googleplus:before {
  content: "\f0d5";
}

/* line 1019, ../../_dev/css/custom/custom.scss */
.fa-money:before {
  content: "\f0d6";
}

/* line 1023, ../../_dev/css/custom/custom.scss */
.fa-caret-down:before {
  content: "\f0d7";
}

/* line 1027, ../../_dev/css/custom/custom.scss */
.fa-caret-up:before {
  content: "\f0d8";
}

/* line 1031, ../../_dev/css/custom/custom.scss */
.fa-caret-left:before {
  content: "\f0d9";
}

/* line 1035, ../../_dev/css/custom/custom.scss */
.fa-caret-right:before {
  content: "\f0da";
}

/* line 1039, ../../_dev/css/custom/custom.scss */
.fa-columns:before {
  content: "\f0db";
}

/* line 1043, ../../_dev/css/custom/custom.scss */
.fa-unsorted:before, .fa-sort:before {
  content: "\f0dc";
}

/* line 1047, ../../_dev/css/custom/custom.scss */
.fa-sort-down:before, .fa-sort-desc:before {
  content: "\f0dd";
}

/* line 1051, ../../_dev/css/custom/custom.scss */
.fa-sort-up:before, .fa-sort-asc:before {
  content: "\f0de";
}

/* line 1055, ../../_dev/css/custom/custom.scss */
.fa-envelope:before {
  content: "\f0e0";
}

/* line 1059, ../../_dev/css/custom/custom.scss */
.fa-linkedin:before {
  content: "\f0e1";
}

/* line 1063, ../../_dev/css/custom/custom.scss */
.fa-rotate-left:before, .fa-undo:before {
  content: "\f0e2";
}

/* line 1067, ../../_dev/css/custom/custom.scss */
.fa-legal:before, .fa-gavel:before {
  content: "\f0e3";
}

/* line 1071, ../../_dev/css/custom/custom.scss */
.fa-dashboard:before, .fa-tachometer:before {
  content: "\f0e4";
}

/* line 1075, ../../_dev/css/custom/custom.scss */
.fa-comment-o:before {
  content: "\f0e5";
}

/* line 1079, ../../_dev/css/custom/custom.scss */
.fa-comments-o:before {
  content: "\f0e6";
}

/* line 1083, ../../_dev/css/custom/custom.scss */
.fa-flash:before, .fa-bolt:before {
  content: "\f0e7";
}

/* line 1087, ../../_dev/css/custom/custom.scss */
.fa-sitemap:before {
  content: "\f0e8";
}

/* line 1091, ../../_dev/css/custom/custom.scss */
.fa-umbrella:before {
  content: "\f0e9";
}

/* line 1095, ../../_dev/css/custom/custom.scss */
.fa-paste:before, .fa-clipboard:before {
  content: "\f0ea";
}

/* line 1099, ../../_dev/css/custom/custom.scss */
.fa-lightbulb-o:before {
  content: "\f0eb";
}

/* line 1103, ../../_dev/css/custom/custom.scss */
.fa-exchange:before {
  content: "\f0ec";
}

/* line 1107, ../../_dev/css/custom/custom.scss */
.fa-cloud-download:before {
  content: "\f0ed";
}

/* line 1111, ../../_dev/css/custom/custom.scss */
.fa-cloud-upload:before {
  content: "\f0ee";
}

/* line 1115, ../../_dev/css/custom/custom.scss */
.fa-user-md:before {
  content: "\f0f0";
}

/* line 1119, ../../_dev/css/custom/custom.scss */
.fa-stethoscope:before {
  content: "\f0f1";
}

/* line 1123, ../../_dev/css/custom/custom.scss */
.fa-suitcase:before {
  content: "\f0f2";
}

/* line 1127, ../../_dev/css/custom/custom.scss */
.fa-bell-o:before {
  content: "\f0a2";
}

/* line 1131, ../../_dev/css/custom/custom.scss */
.fa-coffee:before {
  content: "\f0f4";
}

/* line 1135, ../../_dev/css/custom/custom.scss */
.fa-cutlery:before {
  content: "\f0f5";
}

/* line 1139, ../../_dev/css/custom/custom.scss */
.fa-file-text-o:before {
  content: "\f0f6";
}

/* line 1143, ../../_dev/css/custom/custom.scss */
.fa-building-o:before {
  content: "\f0f7";
}

/* line 1147, ../../_dev/css/custom/custom.scss */
.fa-hospital-o:before {
  content: "\f0f8";
}

/* line 1151, ../../_dev/css/custom/custom.scss */
.fa-ambulance:before {
  content: "\f0f9";
}

/* line 1155, ../../_dev/css/custom/custom.scss */
.fa-medkit:before {
  content: "\f0fa";
}

/* line 1159, ../../_dev/css/custom/custom.scss */
.fa-fighter-jet:before {
  content: "\f0fb";
}

/* line 1163, ../../_dev/css/custom/custom.scss */
.fa-beer:before {
  content: "\f0fc";
}

/* line 1167, ../../_dev/css/custom/custom.scss */
.fa-h-square:before {
  content: "\f0fd";
}

/* line 1171, ../../_dev/css/custom/custom.scss */
.fa-plus-square:before {
  content: "\f0fe";
}

/* line 1175, ../../_dev/css/custom/custom.scss */
.fa-angle-double-left:before {
  content: "\f100";
}

/* line 1179, ../../_dev/css/custom/custom.scss */
.fa-angle-double-right:before {
  content: "\f101";
}

/* line 1183, ../../_dev/css/custom/custom.scss */
.fa-angle-double-up:before {
  content: "\f102";
}

/* line 1187, ../../_dev/css/custom/custom.scss */
.fa-angle-double-down:before {
  content: "\f103";
}

/* line 1191, ../../_dev/css/custom/custom.scss */
.fa-angle-left:before {
  content: "\f104";
}

/* line 1195, ../../_dev/css/custom/custom.scss */
.fa-angle-right:before {
  content: "\f105";
}

/* line 1199, ../../_dev/css/custom/custom.scss */
.fa-angle-up:before {
  content: "\f106";
}

/* line 1203, ../../_dev/css/custom/custom.scss */
.fa-angle-down:before {
  content: "\f107";
}

/* line 1207, ../../_dev/css/custom/custom.scss */
.fa-desktop:before {
  content: "\f108";
}

/* line 1211, ../../_dev/css/custom/custom.scss */
.fa-laptop:before {
  content: "\f109";
}

/* line 1215, ../../_dev/css/custom/custom.scss */
.fa-tablet:before {
  content: "\f10a";
}

/* line 1219, ../../_dev/css/custom/custom.scss */
.fa-mobile-phone:before, .fa-mobile:before {
  content: "\f10b";
}

/* line 1223, ../../_dev/css/custom/custom.scss */
.fa-circle-o:before {
  content: "\f10c";
}

/* line 1227, ../../_dev/css/custom/custom.scss */
.fa-quote-left:before {
  content: "\f10d";
}

/* line 1231, ../../_dev/css/custom/custom.scss */
.fa-quote-right:before {
  content: "\f10e";
}

/* line 1235, ../../_dev/css/custom/custom.scss */
.fa-spinner:before {
  content: "\f110";
}

/* line 1239, ../../_dev/css/custom/custom.scss */
.fa-circle:before {
  content: "\f111";
}

/* line 1243, ../../_dev/css/custom/custom.scss */
.fa-mail-reply:before, .fa-reply:before {
  content: "\f112";
}

/* line 1247, ../../_dev/css/custom/custom.scss */
.fa-github-alt:before {
  content: "\f113";
}

/* line 1251, ../../_dev/css/custom/custom.scss */
.fa-folder-o:before {
  content: "\f114";
}

/* line 1255, ../../_dev/css/custom/custom.scss */
.fa-folder-open-o:before {
  content: "\f115";
}

/* line 1259, ../../_dev/css/custom/custom.scss */
.fa-smile-o:before {
  content: "\f118";
}

/* line 1263, ../../_dev/css/custom/custom.scss */
.fa-frown-o:before {
  content: "\f119";
}

/* line 1267, ../../_dev/css/custom/custom.scss */
.fa-meh-o:before {
  content: "\f11a";
}

/* line 1271, ../../_dev/css/custom/custom.scss */
.fa-gamepad:before {
  content: "\f11b";
}

/* line 1275, ../../_dev/css/custom/custom.scss */
.fa-keyboard-o:before {
  content: "\f11c";
}

/* line 1279, ../../_dev/css/custom/custom.scss */
.fa-flag-o:before {
  content: "\f11d";
}

/* line 1283, ../../_dev/css/custom/custom.scss */
.fa-flag-checkered:before {
  content: "\f11e";
}

/* line 1287, ../../_dev/css/custom/custom.scss */
.fa-terminal:before {
  content: "\f120";
}

/* line 1291, ../../_dev/css/custom/custom.scss */
.fa-code:before {
  content: "\f121";
}

/* line 1295, ../../_dev/css/custom/custom.scss */
.fa-mail-reply-all:before, .fa-reply-all:before {
  content: "\f122";
}

/* line 1299, ../../_dev/css/custom/custom.scss */
.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
  content: "\f123";
}

/* line 1303, ../../_dev/css/custom/custom.scss */
.fa-location-arrow:before {
  content: "\f124";
}

/* line 1307, ../../_dev/css/custom/custom.scss */
.fa-crop:before {
  content: "\f125";
}

/* line 1311, ../../_dev/css/custom/custom.scss */
.fa-code-fork:before {
  content: "\f126";
}

/* line 1315, ../../_dev/css/custom/custom.scss */
.fa-unlink:before, .fa-chain-broken:before {
  content: "\f127";
}

/* line 1319, ../../_dev/css/custom/custom.scss */
.fa-question:before {
  content: "\f128";
}

/* line 1323, ../../_dev/css/custom/custom.scss */
.fa-info:before {
  content: "\f129";
}

/* line 1327, ../../_dev/css/custom/custom.scss */
.fa-exclamation:before {
  content: "\f12a";
}

/* line 1331, ../../_dev/css/custom/custom.scss */
.fa-superscript:before {
  content: "\f12b";
}

/* line 1335, ../../_dev/css/custom/custom.scss */
.fa-subscript:before {
  content: "\f12c";
}

/* line 1339, ../../_dev/css/custom/custom.scss */
.fa-eraser:before {
  content: "\f12d";
}

/* line 1343, ../../_dev/css/custom/custom.scss */
.fa-puzzle-piece:before {
  content: "\f12e";
}

/* line 1347, ../../_dev/css/custom/custom.scss */
.fa-microphone:before {
  content: "\f130";
}

/* line 1351, ../../_dev/css/custom/custom.scss */
.fa-microphone-slash:before {
  content: "\f131";
}

/* line 1355, ../../_dev/css/custom/custom.scss */
.fa-shield:before {
  content: "\f132";
}

/* line 1359, ../../_dev/css/custom/custom.scss */
.fa-calendar-o:before {
  content: "\f133";
}

/* line 1363, ../../_dev/css/custom/custom.scss */
.fa-fire-extinguisher:before {
  content: "\f134";
}

/* line 1367, ../../_dev/css/custom/custom.scss */
.fa-rocket:before {
  content: "\f135";
}

/* line 1371, ../../_dev/css/custom/custom.scss */
.fa-maxcdn:before {
  content: "\f136";
}

/* line 1375, ../../_dev/css/custom/custom.scss */
.fa-chevron-circle-left:before {
  content: "\f137";
}

/* line 1379, ../../_dev/css/custom/custom.scss */
.fa-chevron-circle-right:before {
  content: "\f138";
}

/* line 1383, ../../_dev/css/custom/custom.scss */
.fa-chevron-circle-up:before {
  content: "\f139";
}

/* line 1387, ../../_dev/css/custom/custom.scss */
.fa-chevron-circle-down:before {
  content: "\f13a";
}

/* line 1391, ../../_dev/css/custom/custom.scss */
.fa-html5:before {
  content: "\f13b";
}

/* line 1395, ../../_dev/css/custom/custom.scss */
.fa-css3:before {
  content: "\f13c";
}

/* line 1399, ../../_dev/css/custom/custom.scss */
.fa-anchor:before {
  content: "\f13d";
}

/* line 1403, ../../_dev/css/custom/custom.scss */
.fa-unlock-alt:before {
  content: "\f13e";
}

/* line 1407, ../../_dev/css/custom/custom.scss */
.fa-bullseye:before {
  content: "\f140";
}

/* line 1411, ../../_dev/css/custom/custom.scss */
.fa-ellipsis-h:before {
  content: "\f141";
}

/* line 1415, ../../_dev/css/custom/custom.scss */
.fa-ellipsis-v:before {
  content: "\f142";
}

/* line 1419, ../../_dev/css/custom/custom.scss */
.fa-rss-square:before {
  content: "\f143";
}

/* line 1423, ../../_dev/css/custom/custom.scss */
.fa-play-circle:before {
  content: "\f144";
}

/* line 1427, ../../_dev/css/custom/custom.scss */
.fa-ticket:before {
  content: "\f145";
}

/* line 1431, ../../_dev/css/custom/custom.scss */
.fa-minus-square:before {
  content: "\f146";
}

/* line 1435, ../../_dev/css/custom/custom.scss */
.fa-minus-square-o:before {
  content: "\f147";
}

/* line 1439, ../../_dev/css/custom/custom.scss */
.fa-level-up:before {
  content: "\f148";
}

/* line 1443, ../../_dev/css/custom/custom.scss */
.fa-level-down:before {
  content: "\f149";
}

/* line 1447, ../../_dev/css/custom/custom.scss */
.fa-check-square:before {
  content: "\f14a";
}

/* line 1451, ../../_dev/css/custom/custom.scss */
.fa-pencil-square:before {
  content: "\f14b";
}

/* line 1455, ../../_dev/css/custom/custom.scss */
.fa-external-link-square:before {
  content: "\f14c";
}

/* line 1459, ../../_dev/css/custom/custom.scss */
.fa-share-square:before {
  content: "\f14d";
}

/* line 1463, ../../_dev/css/custom/custom.scss */
.fa-compass:before {
  content: "\f14e";
}

/* line 1467, ../../_dev/css/custom/custom.scss */
.fa-toggle-down:before, .fa-caret-square-o-down:before {
  content: "\f150";
}

/* line 1471, ../../_dev/css/custom/custom.scss */
.fa-toggle-up:before, .fa-caret-square-o-up:before {
  content: "\f151";
}

/* line 1475, ../../_dev/css/custom/custom.scss */
.fa-toggle-right:before, .fa-caret-square-o-right:before {
  content: "\f152";
}

/* line 1479, ../../_dev/css/custom/custom.scss */
.fa-euro:before, .fa-eur:before {
  content: "\f153";
}

/* line 1483, ../../_dev/css/custom/custom.scss */
.fa-gbp:before {
  content: "\f154";
}

/* line 1487, ../../_dev/css/custom/custom.scss */
.fa-dollar:before, .fa-usd:before {
  content: "\f155";
}

/* line 1491, ../../_dev/css/custom/custom.scss */
.fa-rupee:before, .fa-inr:before {
  content: "\f156";
}

/* line 1495, ../../_dev/css/custom/custom.scss */
.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
  content: "\f157";
}

/* line 1499, ../../_dev/css/custom/custom.scss */
.fa-ruble:before, .fa-rouble:before, .fa-rub:before {
  content: "\f158";
}

/* line 1503, ../../_dev/css/custom/custom.scss */
.fa-won:before, .fa-krw:before {
  content: "\f159";
}

/* line 1507, ../../_dev/css/custom/custom.scss */
.fa-bitcoin:before, .fa-btc:before {
  content: "\f15a";
}

/* line 1511, ../../_dev/css/custom/custom.scss */
.fa-file:before {
  content: "\f15b";
}

/* line 1515, ../../_dev/css/custom/custom.scss */
.fa-file-text:before {
  content: "\f15c";
}

/* line 1519, ../../_dev/css/custom/custom.scss */
.fa-sort-alpha-asc:before {
  content: "\f15d";
}

/* line 1523, ../../_dev/css/custom/custom.scss */
.fa-sort-alpha-desc:before {
  content: "\f15e";
}

/* line 1527, ../../_dev/css/custom/custom.scss */
.fa-sort-amount-asc:before {
  content: "\f160";
}

/* line 1531, ../../_dev/css/custom/custom.scss */
.fa-sort-amount-desc:before {
  content: "\f161";
}

/* line 1535, ../../_dev/css/custom/custom.scss */
.fa-sort-numeric-asc:before {
  content: "\f162";
}

/* line 1539, ../../_dev/css/custom/custom.scss */
.fa-sort-numeric-desc:before {
  content: "\f163";
}

/* line 1543, ../../_dev/css/custom/custom.scss */
.fa-thumbs-up:before {
  content: "\f164";
}

/* line 1547, ../../_dev/css/custom/custom.scss */
.fa-thumbs-down:before {
  content: "\f165";
}

/* line 1551, ../../_dev/css/custom/custom.scss */
.fa-youtube-square:before {
  content: "\f166";
}

/* line 1555, ../../_dev/css/custom/custom.scss */
.fa-youtube:before {
  content: "\f167";
}

/* line 1559, ../../_dev/css/custom/custom.scss */
.fa-xing:before {
  content: "\f168";
}

/* line 1563, ../../_dev/css/custom/custom.scss */
.fa-xing-square:before {
  content: "\f169";
}

/* line 1567, ../../_dev/css/custom/custom.scss */
.fa-youtube-play:before {
  content: "\f16a";
}

/* line 1571, ../../_dev/css/custom/custom.scss */
.fa-dropbox:before {
  content: "\f16b";
}

/* line 1575, ../../_dev/css/custom/custom.scss */
.fa-stack-overflow:before {
  content: "\f16c";
}

/* line 1579, ../../_dev/css/custom/custom.scss */
.fa-instagram:before {
  content: "\f16d";
}

/* line 1583, ../../_dev/css/custom/custom.scss */
.fa-flickr:before {
  content: "\f16e";
}

/* line 1587, ../../_dev/css/custom/custom.scss */
.fa-adn:before {
  content: "\f170";
}

/* line 1591, ../../_dev/css/custom/custom.scss */
.fa-bitbucket:before {
  content: "\f171";
}

/* line 1595, ../../_dev/css/custom/custom.scss */
.fa-bitbucket-square:before {
  content: "\f172";
}

/* line 1599, ../../_dev/css/custom/custom.scss */
.fa-tumblr:before {
  content: "\f173";
}

/* line 1603, ../../_dev/css/custom/custom.scss */
.fa-tumblr-square:before {
  content: "\f174";
}

/* line 1607, ../../_dev/css/custom/custom.scss */
.fa-long-arrow-down:before {
  content: "\f175";
}

/* line 1611, ../../_dev/css/custom/custom.scss */
.fa-long-arrow-up:before {
  content: "\f176";
}

/* line 1615, ../../_dev/css/custom/custom.scss */
.fa-long-arrow-left:before {
  content: "\f177";
}

/* line 1619, ../../_dev/css/custom/custom.scss */
.fa-long-arrow-right:before {
  content: "\f178";
}

/* line 1623, ../../_dev/css/custom/custom.scss */
.fa-apple:before {
  content: "\f179";
}

/* line 1627, ../../_dev/css/custom/custom.scss */
.fa-windows:before {
  content: "\f17a";
}

/* line 1631, ../../_dev/css/custom/custom.scss */
.fa-android:before {
  content: "\f17b";
}

/* line 1635, ../../_dev/css/custom/custom.scss */
.fa-linux:before {
  content: "\f17c";
}

/* line 1639, ../../_dev/css/custom/custom.scss */
.fa-dribbble:before {
  content: "\f17d";
}

/* line 1643, ../../_dev/css/custom/custom.scss */
.fa-skype:before {
  content: "\f17e";
}

/* line 1647, ../../_dev/css/custom/custom.scss */
.fa-foursquare:before {
  content: "\f180";
}

/* line 1651, ../../_dev/css/custom/custom.scss */
.fa-trello:before {
  content: "\f181";
}

/* line 1655, ../../_dev/css/custom/custom.scss */
.fa-female:before {
  content: "\f182";
}

/* line 1659, ../../_dev/css/custom/custom.scss */
.fa-male:before {
  content: "\f183";
}

/* line 1663, ../../_dev/css/custom/custom.scss */
.fa-gittip:before, .fa-gratipay:before {
  content: "\f184";
}

/* line 1667, ../../_dev/css/custom/custom.scss */
.fa-sun-o:before {
  content: "\f185";
}

/* line 1671, ../../_dev/css/custom/custom.scss */
.fa-moon-o:before {
  content: "\f186";
}

/* line 1675, ../../_dev/css/custom/custom.scss */
.fa-archive:before {
  content: "\f187";
}

/* line 1679, ../../_dev/css/custom/custom.scss */
.fa-bug:before {
  content: "\f188";
}

/* line 1683, ../../_dev/css/custom/custom.scss */
.fa-vk:before {
  content: "\f189";
}

/* line 1687, ../../_dev/css/custom/custom.scss */
.fa-weibo:before {
  content: "\f18a";
}

/* line 1691, ../../_dev/css/custom/custom.scss */
.fa-renren:before {
  content: "\f18b";
}

/* line 1695, ../../_dev/css/custom/custom.scss */
.fa-pagelines:before {
  content: "\f18c";
}

/* line 1699, ../../_dev/css/custom/custom.scss */
.fa-stack-exchange:before {
  content: "\f18d";
}

/* line 1703, ../../_dev/css/custom/custom.scss */
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

/* line 1707, ../../_dev/css/custom/custom.scss */
.fa-arrow-circle-o-left:before {
  content: "\f190";
}

/* line 1711, ../../_dev/css/custom/custom.scss */
.fa-toggle-left:before, .fa-caret-square-o-left:before {
  content: "\f191";
}

/* line 1715, ../../_dev/css/custom/custom.scss */
.fa-dot-circle-o:before {
  content: "\f192";
}

/* line 1719, ../../_dev/css/custom/custom.scss */
.fa-wheelchair:before {
  content: "\f193";
}

/* line 1723, ../../_dev/css/custom/custom.scss */
.fa-vimeo-square:before {
  content: "\f194";
}

/* line 1727, ../../_dev/css/custom/custom.scss */
.fa-turkish-lira:before, .fa-try:before {
  content: "\f195";
}

/* line 1731, ../../_dev/css/custom/custom.scss */
.fa-plus-square-o:before {
  content: "\f196";
}

/* line 1735, ../../_dev/css/custom/custom.scss */
.fa-space-shuttle:before {
  content: "\f197";
}

/* line 1739, ../../_dev/css/custom/custom.scss */
.fa-slack:before {
  content: "\f198";
}

/* line 1743, ../../_dev/css/custom/custom.scss */
.fa-envelope-square:before {
  content: "\f199";
}

/* line 1747, ../../_dev/css/custom/custom.scss */
.fa-wordpress:before {
  content: "\f19a";
}

/* line 1751, ../../_dev/css/custom/custom.scss */
.fa-openid:before {
  content: "\f19b";
}

/* line 1755, ../../_dev/css/custom/custom.scss */
.fa-institution:before, .fa-bank:before, .fa-university:before {
  content: "\f19c";
}

/* line 1759, ../../_dev/css/custom/custom.scss */
.fa-mortar-board:before, .fa-graduation-cap:before {
  content: "\f19d";
}

/* line 1763, ../../_dev/css/custom/custom.scss */
.fa-yahoo:before {
  content: "\f19e";
}

/* line 1767, ../../_dev/css/custom/custom.scss */
.fa-google:before {
  content: "\f1a0";
}

/* line 1771, ../../_dev/css/custom/custom.scss */
.fa-reddit:before {
  content: "\f1a1";
}

/* line 1775, ../../_dev/css/custom/custom.scss */
.fa-reddit-square:before {
  content: "\f1a2";
}

/* line 1779, ../../_dev/css/custom/custom.scss */
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

/* line 1783, ../../_dev/css/custom/custom.scss */
.fa-stumbleupon:before {
  content: "\f1a4";
}

/* line 1787, ../../_dev/css/custom/custom.scss */
.fa-delicious:before {
  content: "\f1a5";
}

/* line 1791, ../../_dev/css/custom/custom.scss */
.fa-digg:before {
  content: "\f1a6";
}

/* line 1795, ../../_dev/css/custom/custom.scss */
.fa-pied-piper-pp:before {
  content: "\f1a7";
}

/* line 1799, ../../_dev/css/custom/custom.scss */
.fa-pied-piper-alt:before {
  content: "\f1a8";
}

/* line 1803, ../../_dev/css/custom/custom.scss */
.fa-drupal:before {
  content: "\f1a9";
}

/* line 1807, ../../_dev/css/custom/custom.scss */
.fa-joomla:before {
  content: "\f1aa";
}

/* line 1811, ../../_dev/css/custom/custom.scss */
.fa-language:before {
  content: "\f1ab";
}

/* line 1815, ../../_dev/css/custom/custom.scss */
.fa-fax:before {
  content: "\f1ac";
}

/* line 1819, ../../_dev/css/custom/custom.scss */
.fa-building:before {
  content: "\f1ad";
}

/* line 1823, ../../_dev/css/custom/custom.scss */
.fa-child:before {
  content: "\f1ae";
}

/* line 1827, ../../_dev/css/custom/custom.scss */
.fa-paw:before {
  content: "\f1b0";
}

/* line 1831, ../../_dev/css/custom/custom.scss */
.fa-spoon:before {
  content: "\f1b1";
}

/* line 1835, ../../_dev/css/custom/custom.scss */
.fa-cube:before {
  content: "\f1b2";
}

/* line 1839, ../../_dev/css/custom/custom.scss */
.fa-cubes:before {
  content: "\f1b3";
}

/* line 1843, ../../_dev/css/custom/custom.scss */
.fa-behance:before {
  content: "\f1b4";
}

/* line 1847, ../../_dev/css/custom/custom.scss */
.fa-behance-square:before {
  content: "\f1b5";
}

/* line 1851, ../../_dev/css/custom/custom.scss */
.fa-steam:before {
  content: "\f1b6";
}

/* line 1855, ../../_dev/css/custom/custom.scss */
.fa-steam-square:before {
  content: "\f1b7";
}

/* line 1859, ../../_dev/css/custom/custom.scss */
.fa-recycle:before {
  content: "\f1b8";
}

/* line 1863, ../../_dev/css/custom/custom.scss */
.fa-automobile:before, .fa-car:before {
  content: "\f1b9";
}

/* line 1867, ../../_dev/css/custom/custom.scss */
.fa-cab:before, .fa-taxi:before {
  content: "\f1ba";
}

/* line 1871, ../../_dev/css/custom/custom.scss */
.fa-tree:before {
  content: "\f1bb";
}

/* line 1875, ../../_dev/css/custom/custom.scss */
.fa-spotify:before {
  content: "\f1bc";
}

/* line 1879, ../../_dev/css/custom/custom.scss */
.fa-deviantart:before {
  content: "\f1bd";
}

/* line 1883, ../../_dev/css/custom/custom.scss */
.fa-soundcloud:before {
  content: "\f1be";
}

/* line 1887, ../../_dev/css/custom/custom.scss */
.fa-database:before {
  content: "\f1c0";
}

/* line 1891, ../../_dev/css/custom/custom.scss */
.fa-file-pdf-o:before {
  content: "\f1c1";
}

/* line 1895, ../../_dev/css/custom/custom.scss */
.fa-file-word-o:before {
  content: "\f1c2";
}

/* line 1899, ../../_dev/css/custom/custom.scss */
.fa-file-excel-o:before {
  content: "\f1c3";
}

/* line 1903, ../../_dev/css/custom/custom.scss */
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

/* line 1907, ../../_dev/css/custom/custom.scss */
.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
  content: "\f1c5";
}

/* line 1911, ../../_dev/css/custom/custom.scss */
.fa-file-zip-o:before, .fa-file-archive-o:before {
  content: "\f1c6";
}

/* line 1915, ../../_dev/css/custom/custom.scss */
.fa-file-sound-o:before, .fa-file-audio-o:before {
  content: "\f1c7";
}

/* line 1919, ../../_dev/css/custom/custom.scss */
.fa-file-movie-o:before, .fa-file-video-o:before {
  content: "\f1c8";
}

/* line 1923, ../../_dev/css/custom/custom.scss */
.fa-file-code-o:before {
  content: "\f1c9";
}

/* line 1927, ../../_dev/css/custom/custom.scss */
.fa-vine:before {
  content: "\f1ca";
}

/* line 1931, ../../_dev/css/custom/custom.scss */
.fa-codepen:before {
  content: "\f1cb";
}

/* line 1935, ../../_dev/css/custom/custom.scss */
.fa-jsfiddle:before {
  content: "\f1cc";
}

/* line 1939, ../../_dev/css/custom/custom.scss */
.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
  content: "\f1cd";
}

/* line 1943, ../../_dev/css/custom/custom.scss */
.fa-circle-o-notch:before {
  content: "\f1ce";
}

/* line 1947, ../../_dev/css/custom/custom.scss */
.fa-ra:before, .fa-resistance:before, .fa-rebel:before {
  content: "\f1d0";
}

/* line 1951, ../../_dev/css/custom/custom.scss */
.fa-ge:before, .fa-empire:before {
  content: "\f1d1";
}

/* line 1955, ../../_dev/css/custom/custom.scss */
.fa-git-square:before {
  content: "\f1d2";
}

/* line 1959, ../../_dev/css/custom/custom.scss */
.fa-git:before {
  content: "\f1d3";
}

/* line 1963, ../../_dev/css/custom/custom.scss */
.fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before {
  content: "\f1d4";
}

/* line 1967, ../../_dev/css/custom/custom.scss */
.fa-tencent-weibo:before {
  content: "\f1d5";
}

/* line 1971, ../../_dev/css/custom/custom.scss */
.fa-qq:before {
  content: "\f1d6";
}

/* line 1975, ../../_dev/css/custom/custom.scss */
.fa-wechat:before, .fa-weixin:before {
  content: "\f1d7";
}

/* line 1979, ../../_dev/css/custom/custom.scss */
.fa-send:before, .fa-paper-plane:before {
  content: "\f1d8";
}

/* line 1983, ../../_dev/css/custom/custom.scss */
.fa-send-o:before, .fa-paper-plane-o:before {
  content: "\f1d9";
}

/* line 1987, ../../_dev/css/custom/custom.scss */
.fa-history:before {
  content: "\f1da";
}

/* line 1991, ../../_dev/css/custom/custom.scss */
.fa-circle-thin:before {
  content: "\f1db";
}

/* line 1995, ../../_dev/css/custom/custom.scss */
.fa-header:before {
  content: "\f1dc";
}

/* line 1999, ../../_dev/css/custom/custom.scss */
.fa-paragraph:before {
  content: "\f1dd";
}

/* line 2003, ../../_dev/css/custom/custom.scss */
.fa-sliders:before {
  content: "\f1de";
}

/* line 2007, ../../_dev/css/custom/custom.scss */
.fa-share-alt:before {
  content: "\f1e0";
}

/* line 2011, ../../_dev/css/custom/custom.scss */
.fa-share-alt-square:before {
  content: "\f1e1";
}

/* line 2015, ../../_dev/css/custom/custom.scss */
.fa-bomb:before {
  content: "\f1e2";
}

/* line 2019, ../../_dev/css/custom/custom.scss */
.fa-soccer-ball-o:before, .fa-futbol-o:before {
  content: "\f1e3";
}

/* line 2023, ../../_dev/css/custom/custom.scss */
.fa-tty:before {
  content: "\f1e4";
}

/* line 2027, ../../_dev/css/custom/custom.scss */
.fa-binoculars:before {
  content: "\f1e5";
}

/* line 2031, ../../_dev/css/custom/custom.scss */
.fa-plug:before {
  content: "\f1e6";
}

/* line 2035, ../../_dev/css/custom/custom.scss */
.fa-slideshare:before {
  content: "\f1e7";
}

/* line 2039, ../../_dev/css/custom/custom.scss */
.fa-twitch:before {
  content: "\f1e8";
}

/* line 2043, ../../_dev/css/custom/custom.scss */
.fa-yelp:before {
  content: "\f1e9";
}

/* line 2047, ../../_dev/css/custom/custom.scss */
.fa-newspaper-o:before {
  content: "\f1ea";
}

/* line 2051, ../../_dev/css/custom/custom.scss */
.fa-wifi:before {
  content: "\f1eb";
}

/* line 2055, ../../_dev/css/custom/custom.scss */
.fa-calculator:before {
  content: "\f1ec";
}

/* line 2059, ../../_dev/css/custom/custom.scss */
.fa-paypal:before {
  content: "\f1ed";
}

/* line 2063, ../../_dev/css/custom/custom.scss */
.fa-google-wallet:before {
  content: "\f1ee";
}

/* line 2067, ../../_dev/css/custom/custom.scss */
.fa-cc-visa:before {
  content: "\f1f0";
}

/* line 2071, ../../_dev/css/custom/custom.scss */
.fa-cc-mastercard:before {
  content: "\f1f1";
}

/* line 2075, ../../_dev/css/custom/custom.scss */
.fa-cc-discover:before {
  content: "\f1f2";
}

/* line 2079, ../../_dev/css/custom/custom.scss */
.fa-cc-amex:before {
  content: "\f1f3";
}

/* line 2083, ../../_dev/css/custom/custom.scss */
.fa-cc-paypal:before {
  content: "\f1f4";
}

/* line 2087, ../../_dev/css/custom/custom.scss */
.fa-cc-stripe:before {
  content: "\f1f5";
}

/* line 2091, ../../_dev/css/custom/custom.scss */
.fa-bell-slash:before {
  content: "\f1f6";
}

/* line 2095, ../../_dev/css/custom/custom.scss */
.fa-bell-slash-o:before {
  content: "\f1f7";
}

/* line 2099, ../../_dev/css/custom/custom.scss */
.fa-trash:before {
  content: "\f1f8";
}

/* line 2103, ../../_dev/css/custom/custom.scss */
.fa-copyright:before {
  content: "\f1f9";
}

/* line 2107, ../../_dev/css/custom/custom.scss */
.fa-at:before {
  content: "\f1fa";
}

/* line 2111, ../../_dev/css/custom/custom.scss */
.fa-eyedropper:before {
  content: "\f1fb";
}

/* line 2115, ../../_dev/css/custom/custom.scss */
.fa-paint-brush:before {
  content: "\f1fc";
}

/* line 2119, ../../_dev/css/custom/custom.scss */
.fa-birthday-cake:before {
  content: "\f1fd";
}

/* line 2123, ../../_dev/css/custom/custom.scss */
.fa-area-chart:before {
  content: "\f1fe";
}

/* line 2127, ../../_dev/css/custom/custom.scss */
.fa-pie-chart:before {
  content: "\f200";
}

/* line 2131, ../../_dev/css/custom/custom.scss */
.fa-line-chart:before {
  content: "\f201";
}

/* line 2135, ../../_dev/css/custom/custom.scss */
.fa-lastfm:before {
  content: "\f202";
}

/* line 2139, ../../_dev/css/custom/custom.scss */
.fa-lastfm-square:before {
  content: "\f203";
}

/* line 2143, ../../_dev/css/custom/custom.scss */
.fa-toggle-off:before {
  content: "\f204";
}

/* line 2147, ../../_dev/css/custom/custom.scss */
.fa-toggle-on:before {
  content: "\f205";
}

/* line 2151, ../../_dev/css/custom/custom.scss */
.fa-bicycle:before {
  content: "\f206";
}

/* line 2155, ../../_dev/css/custom/custom.scss */
.fa-bus:before {
  content: "\f207";
}

/* line 2159, ../../_dev/css/custom/custom.scss */
.fa-ioxhost:before {
  content: "\f208";
}

/* line 2163, ../../_dev/css/custom/custom.scss */
.fa-angellist:before {
  content: "\f209";
}

/* line 2167, ../../_dev/css/custom/custom.scss */
.fa-cc:before {
  content: "\f20a";
}

/* line 2171, ../../_dev/css/custom/custom.scss */
.fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
  content: "\f20b";
}

/* line 2175, ../../_dev/css/custom/custom.scss */
.fa-meanpath:before {
  content: "\f20c";
}

/* line 2179, ../../_dev/css/custom/custom.scss */
.fa-buysellads:before {
  content: "\f20d";
}

/* line 2183, ../../_dev/css/custom/custom.scss */
.fa-connectdevelop:before {
  content: "\f20e";
}

/* line 2187, ../../_dev/css/custom/custom.scss */
.fa-dashcube:before {
  content: "\f210";
}

/* line 2191, ../../_dev/css/custom/custom.scss */
.fa-forumbee:before {
  content: "\f211";
}

/* line 2195, ../../_dev/css/custom/custom.scss */
.fa-leanpub:before {
  content: "\f212";
}

/* line 2199, ../../_dev/css/custom/custom.scss */
.fa-sellsy:before {
  content: "\f213";
}

/* line 2203, ../../_dev/css/custom/custom.scss */
.fa-shirtsinbulk:before {
  content: "\f214";
}

/* line 2207, ../../_dev/css/custom/custom.scss */
.fa-simplybuilt:before {
  content: "\f215";
}

/* line 2211, ../../_dev/css/custom/custom.scss */
.fa-skyatlas:before {
  content: "\f216";
}

/* line 2215, ../../_dev/css/custom/custom.scss */
.fa-cart-plus:before {
  content: "\f217";
}

/* line 2219, ../../_dev/css/custom/custom.scss */
.fa-cart-arrow-down:before {
  content: "\f218";
}

/* line 2223, ../../_dev/css/custom/custom.scss */
.fa-diamond:before {
  content: "\f219";
}

/* line 2227, ../../_dev/css/custom/custom.scss */
.fa-ship:before {
  content: "\f21a";
}

/* line 2231, ../../_dev/css/custom/custom.scss */
.fa-user-secret:before {
  content: "\f21b";
}

/* line 2235, ../../_dev/css/custom/custom.scss */
.fa-motorcycle:before {
  content: "\f21c";
}

/* line 2239, ../../_dev/css/custom/custom.scss */
.fa-street-view:before {
  content: "\f21d";
}

/* line 2243, ../../_dev/css/custom/custom.scss */
.fa-heartbeat:before {
  content: "\f21e";
}

/* line 2247, ../../_dev/css/custom/custom.scss */
.fa-venus:before {
  content: "\f221";
}

/* line 2251, ../../_dev/css/custom/custom.scss */
.fa-mars:before {
  content: "\f222";
}

/* line 2255, ../../_dev/css/custom/custom.scss */
.fa-mercury:before {
  content: "\f223";
}

/* line 2259, ../../_dev/css/custom/custom.scss */
.fa-intersex:before, .fa-transgender:before {
  content: "\f224";
}

/* line 2263, ../../_dev/css/custom/custom.scss */
.fa-transgender-alt:before {
  content: "\f225";
}

/* line 2267, ../../_dev/css/custom/custom.scss */
.fa-venus-double:before {
  content: "\f226";
}

/* line 2271, ../../_dev/css/custom/custom.scss */
.fa-mars-double:before {
  content: "\f227";
}

/* line 2275, ../../_dev/css/custom/custom.scss */
.fa-venus-mars:before {
  content: "\f228";
}

/* line 2279, ../../_dev/css/custom/custom.scss */
.fa-mars-stroke:before {
  content: "\f229";
}

/* line 2283, ../../_dev/css/custom/custom.scss */
.fa-mars-stroke-v:before {
  content: "\f22a";
}

/* line 2287, ../../_dev/css/custom/custom.scss */
.fa-mars-stroke-h:before {
  content: "\f22b";
}

/* line 2291, ../../_dev/css/custom/custom.scss */
.fa-neuter:before {
  content: "\f22c";
}

/* line 2295, ../../_dev/css/custom/custom.scss */
.fa-genderless:before {
  content: "\f22d";
}

/* line 2299, ../../_dev/css/custom/custom.scss */
.fa-facebook-official:before {
  content: "\f230";
}

/* line 2303, ../../_dev/css/custom/custom.scss */
.fa-pinterest-p:before {
  content: "\f231";
}

/* line 2307, ../../_dev/css/custom/custom.scss */
.fa-whatsapp:before {
  content: "\f232";
}

/* line 2311, ../../_dev/css/custom/custom.scss */
.fa-server:before {
  content: "\f233";
}

/* line 2315, ../../_dev/css/custom/custom.scss */
.fa-user-plus:before {
  content: "\f234";
}

/* line 2319, ../../_dev/css/custom/custom.scss */
.fa-user-times:before {
  content: "\f235";
}

/* line 2323, ../../_dev/css/custom/custom.scss */
.fa-hotel:before, .fa-bed:before {
  content: "\f236";
}

/* line 2327, ../../_dev/css/custom/custom.scss */
.fa-viacoin:before {
  content: "\f237";
}

/* line 2331, ../../_dev/css/custom/custom.scss */
.fa-train:before {
  content: "\f238";
}

/* line 2335, ../../_dev/css/custom/custom.scss */
.fa-subway:before {
  content: "\f239";
}

/* line 2339, ../../_dev/css/custom/custom.scss */
.fa-medium:before {
  content: "\f23a";
}

/* line 2343, ../../_dev/css/custom/custom.scss */
.fa-yc:before, .fa-y-combinator:before {
  content: "\f23b";
}

/* line 2347, ../../_dev/css/custom/custom.scss */
.fa-optin-monster:before {
  content: "\f23c";
}

/* line 2351, ../../_dev/css/custom/custom.scss */
.fa-opencart:before {
  content: "\f23d";
}

/* line 2355, ../../_dev/css/custom/custom.scss */
.fa-expeditedssl:before {
  content: "\f23e";
}

/* line 2359, ../../_dev/css/custom/custom.scss */
.fa-battery-4:before, .fa-battery:before, .fa-battery-full:before {
  content: "\f240";
}

/* line 2363, ../../_dev/css/custom/custom.scss */
.fa-battery-3:before, .fa-battery-three-quarters:before {
  content: "\f241";
}

/* line 2367, ../../_dev/css/custom/custom.scss */
.fa-battery-2:before, .fa-battery-half:before {
  content: "\f242";
}

/* line 2371, ../../_dev/css/custom/custom.scss */
.fa-battery-1:before, .fa-battery-quarter:before {
  content: "\f243";
}

/* line 2375, ../../_dev/css/custom/custom.scss */
.fa-battery-0:before, .fa-battery-empty:before {
  content: "\f244";
}

/* line 2379, ../../_dev/css/custom/custom.scss */
.fa-mouse-pointer:before {
  content: "\f245";
}

/* line 2383, ../../_dev/css/custom/custom.scss */
.fa-i-cursor:before {
  content: "\f246";
}

/* line 2387, ../../_dev/css/custom/custom.scss */
.fa-object-group:before {
  content: "\f247";
}

/* line 2391, ../../_dev/css/custom/custom.scss */
.fa-object-ungroup:before {
  content: "\f248";
}

/* line 2395, ../../_dev/css/custom/custom.scss */
.fa-sticky-note:before {
  content: "\f249";
}

/* line 2399, ../../_dev/css/custom/custom.scss */
.fa-sticky-note-o:before {
  content: "\f24a";
}

/* line 2403, ../../_dev/css/custom/custom.scss */
.fa-cc-jcb:before {
  content: "\f24b";
}

/* line 2407, ../../_dev/css/custom/custom.scss */
.fa-cc-diners-club:before {
  content: "\f24c";
}

/* line 2411, ../../_dev/css/custom/custom.scss */
.fa-clone:before {
  content: "\f24d";
}

/* line 2415, ../../_dev/css/custom/custom.scss */
.fa-balance-scale:before {
  content: "\f24e";
}

/* line 2419, ../../_dev/css/custom/custom.scss */
.fa-hourglass-o:before {
  content: "\f250";
}

/* line 2423, ../../_dev/css/custom/custom.scss */
.fa-hourglass-1:before, .fa-hourglass-start:before {
  content: "\f251";
}

/* line 2427, ../../_dev/css/custom/custom.scss */
.fa-hourglass-2:before, .fa-hourglass-half:before {
  content: "\f252";
}

/* line 2431, ../../_dev/css/custom/custom.scss */
.fa-hourglass-3:before, .fa-hourglass-end:before {
  content: "\f253";
}

/* line 2435, ../../_dev/css/custom/custom.scss */
.fa-hourglass:before {
  content: "\f254";
}

/* line 2439, ../../_dev/css/custom/custom.scss */
.fa-hand-grab-o:before, .fa-hand-rock-o:before {
  content: "\f255";
}

/* line 2443, ../../_dev/css/custom/custom.scss */
.fa-hand-stop-o:before, .fa-hand-paper-o:before {
  content: "\f256";
}

/* line 2447, ../../_dev/css/custom/custom.scss */
.fa-hand-scissors-o:before {
  content: "\f257";
}

/* line 2451, ../../_dev/css/custom/custom.scss */
.fa-hand-lizard-o:before {
  content: "\f258";
}

/* line 2455, ../../_dev/css/custom/custom.scss */
.fa-hand-spock-o:before {
  content: "\f259";
}

/* line 2459, ../../_dev/css/custom/custom.scss */
.fa-hand-pointer-o:before {
  content: "\f25a";
}

/* line 2463, ../../_dev/css/custom/custom.scss */
.fa-hand-peace-o:before {
  content: "\f25b";
}

/* line 2467, ../../_dev/css/custom/custom.scss */
.fa-trademark:before {
  content: "\f25c";
}

/* line 2471, ../../_dev/css/custom/custom.scss */
.fa-registered:before {
  content: "\f25d";
}

/* line 2475, ../../_dev/css/custom/custom.scss */
.fa-creative-commons:before {
  content: "\f25e";
}

/* line 2479, ../../_dev/css/custom/custom.scss */
.fa-gg:before {
  content: "\f260";
}

/* line 2483, ../../_dev/css/custom/custom.scss */
.fa-gg-circle:before {
  content: "\f261";
}

/* line 2487, ../../_dev/css/custom/custom.scss */
.fa-tripadvisor:before {
  content: "\f262";
}

/* line 2491, ../../_dev/css/custom/custom.scss */
.fa-odnoklassniki:before {
  content: "\f263";
}

/* line 2495, ../../_dev/css/custom/custom.scss */
.fa-odnoklassniki-square:before {
  content: "\f264";
}

/* line 2499, ../../_dev/css/custom/custom.scss */
.fa-get-pocket:before {
  content: "\f265";
}

/* line 2503, ../../_dev/css/custom/custom.scss */
.fa-wikipedia-w:before {
  content: "\f266";
}

/* line 2507, ../../_dev/css/custom/custom.scss */
.fa-safari:before {
  content: "\f267";
}

/* line 2511, ../../_dev/css/custom/custom.scss */
.fa-chrome:before {
  content: "\f268";
}

/* line 2515, ../../_dev/css/custom/custom.scss */
.fa-firefox:before {
  content: "\f269";
}

/* line 2519, ../../_dev/css/custom/custom.scss */
.fa-opera:before {
  content: "\f26a";
}

/* line 2523, ../../_dev/css/custom/custom.scss */
.fa-internet-explorer:before {
  content: "\f26b";
}

/* line 2527, ../../_dev/css/custom/custom.scss */
.fa-tv:before, .fa-television:before {
  content: "\f26c";
}

/* line 2531, ../../_dev/css/custom/custom.scss */
.fa-contao:before {
  content: "\f26d";
}

/* line 2535, ../../_dev/css/custom/custom.scss */
.fa-500px:before {
  content: "\f26e";
}

/* line 2539, ../../_dev/css/custom/custom.scss */
.fa-amazon:before {
  content: "\f270";
}

/* line 2543, ../../_dev/css/custom/custom.scss */
.fa-calendar-plus-o:before {
  content: "\f271";
}

/* line 2547, ../../_dev/css/custom/custom.scss */
.fa-calendar-minus-o:before {
  content: "\f272";
}

/* line 2551, ../../_dev/css/custom/custom.scss */
.fa-calendar-times-o:before {
  content: "\f273";
}

/* line 2555, ../../_dev/css/custom/custom.scss */
.fa-calendar-check-o:before {
  content: "\f274";
}

/* line 2559, ../../_dev/css/custom/custom.scss */
.fa-industry:before {
  content: "\f275";
}

/* line 2563, ../../_dev/css/custom/custom.scss */
.fa-map-pin:before {
  content: "\f276";
}

/* line 2567, ../../_dev/css/custom/custom.scss */
.fa-map-signs:before {
  content: "\f277";
}

/* line 2571, ../../_dev/css/custom/custom.scss */
.fa-map-o:before {
  content: "\f278";
}

/* line 2575, ../../_dev/css/custom/custom.scss */
.fa-map:before {
  content: "\f279";
}

/* line 2579, ../../_dev/css/custom/custom.scss */
.fa-commenting:before {
  content: "\f27a";
}

/* line 2583, ../../_dev/css/custom/custom.scss */
.fa-commenting-o:before {
  content: "\f27b";
}

/* line 2587, ../../_dev/css/custom/custom.scss */
.fa-houzz:before {
  content: "\f27c";
}

/* line 2591, ../../_dev/css/custom/custom.scss */
.fa-vimeo:before {
  content: "\f27d";
}

/* line 2595, ../../_dev/css/custom/custom.scss */
.fa-black-tie:before {
  content: "\f27e";
}

/* line 2599, ../../_dev/css/custom/custom.scss */
.fa-fonticons:before {
  content: "\f280";
}

/* line 2603, ../../_dev/css/custom/custom.scss */
.fa-reddit-alien:before {
  content: "\f281";
}

/* line 2607, ../../_dev/css/custom/custom.scss */
.fa-edge:before {
  content: "\f282";
}

/* line 2611, ../../_dev/css/custom/custom.scss */
.fa-credit-card-alt:before {
  content: "\f283";
}

/* line 2615, ../../_dev/css/custom/custom.scss */
.fa-codiepie:before {
  content: "\f284";
}

/* line 2619, ../../_dev/css/custom/custom.scss */
.fa-modx:before {
  content: "\f285";
}

/* line 2623, ../../_dev/css/custom/custom.scss */
.fa-fort-awesome:before {
  content: "\f286";
}

/* line 2627, ../../_dev/css/custom/custom.scss */
.fa-usb:before {
  content: "\f287";
}

/* line 2631, ../../_dev/css/custom/custom.scss */
.fa-product-hunt:before {
  content: "\f288";
}

/* line 2635, ../../_dev/css/custom/custom.scss */
.fa-mixcloud:before {
  content: "\f289";
}

/* line 2639, ../../_dev/css/custom/custom.scss */
.fa-scribd:before {
  content: "\f28a";
}

/* line 2643, ../../_dev/css/custom/custom.scss */
.fa-pause-circle:before {
  content: "\f28b";
}

/* line 2647, ../../_dev/css/custom/custom.scss */
.fa-pause-circle-o:before {
  content: "\f28c";
}

/* line 2651, ../../_dev/css/custom/custom.scss */
.fa-stop-circle:before {
  content: "\f28d";
}

/* line 2655, ../../_dev/css/custom/custom.scss */
.fa-stop-circle-o:before {
  content: "\f28e";
}

/* line 2659, ../../_dev/css/custom/custom.scss */
.fa-shopping-bag:before {
  content: "\f290";
}

/* line 2663, ../../_dev/css/custom/custom.scss */
.fa-shopping-basket:before {
  content: "\f291";
}

/* line 2667, ../../_dev/css/custom/custom.scss */
.fa-hashtag:before {
  content: "\f292";
}

/* line 2671, ../../_dev/css/custom/custom.scss */
.fa-bluetooth:before {
  content: "\f293";
}

/* line 2675, ../../_dev/css/custom/custom.scss */
.fa-bluetooth-b:before {
  content: "\f294";
}

/* line 2679, ../../_dev/css/custom/custom.scss */
.fa-percent:before {
  content: "\f295";
}

/* line 2683, ../../_dev/css/custom/custom.scss */
.fa-gitlab:before {
  content: "\f296";
}

/* line 2687, ../../_dev/css/custom/custom.scss */
.fa-wpbeginner:before {
  content: "\f297";
}

/* line 2691, ../../_dev/css/custom/custom.scss */
.fa-wpforms:before {
  content: "\f298";
}

/* line 2695, ../../_dev/css/custom/custom.scss */
.fa-envira:before {
  content: "\f299";
}

/* line 2699, ../../_dev/css/custom/custom.scss */
.fa-universal-access:before {
  content: "\f29a";
}

/* line 2703, ../../_dev/css/custom/custom.scss */
.fa-wheelchair-alt:before {
  content: "\f29b";
}

/* line 2707, ../../_dev/css/custom/custom.scss */
.fa-question-circle-o:before {
  content: "\f29c";
}

/* line 2711, ../../_dev/css/custom/custom.scss */
.fa-blind:before {
  content: "\f29d";
}

/* line 2715, ../../_dev/css/custom/custom.scss */
.fa-audio-description:before {
  content: "\f29e";
}

/* line 2719, ../../_dev/css/custom/custom.scss */
.fa-volume-control-phone:before {
  content: "\f2a0";
}

/* line 2723, ../../_dev/css/custom/custom.scss */
.fa-braille:before {
  content: "\f2a1";
}

/* line 2727, ../../_dev/css/custom/custom.scss */
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

/* line 2731, ../../_dev/css/custom/custom.scss */
.fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

/* line 2735, ../../_dev/css/custom/custom.scss */
.fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before {
  content: "\f2a4";
}

/* line 2739, ../../_dev/css/custom/custom.scss */
.fa-glide:before {
  content: "\f2a5";
}

/* line 2743, ../../_dev/css/custom/custom.scss */
.fa-glide-g:before {
  content: "\f2a6";
}

/* line 2747, ../../_dev/css/custom/custom.scss */
.fa-signing:before, .fa-sign-language:before {
  content: "\f2a7";
}

/* line 2751, ../../_dev/css/custom/custom.scss */
.fa-low-vision:before {
  content: "\f2a8";
}

/* line 2755, ../../_dev/css/custom/custom.scss */
.fa-viadeo:before {
  content: "\f2a9";
}

/* line 2759, ../../_dev/css/custom/custom.scss */
.fa-viadeo-square:before {
  content: "\f2aa";
}

/* line 2763, ../../_dev/css/custom/custom.scss */
.fa-snapchat:before {
  content: "\f2ab";
}

/* line 2767, ../../_dev/css/custom/custom.scss */
.fa-snapchat-ghost:before {
  content: "\f2ac";
}

/* line 2771, ../../_dev/css/custom/custom.scss */
.fa-snapchat-square:before {
  content: "\f2ad";
}

/* line 2775, ../../_dev/css/custom/custom.scss */
.fa-pied-piper:before {
  content: "\f2ae";
}

/* line 2779, ../../_dev/css/custom/custom.scss */
.fa-first-order:before {
  content: "\f2b0";
}

/* line 2783, ../../_dev/css/custom/custom.scss */
.fa-yoast:before {
  content: "\f2b1";
}

/* line 2787, ../../_dev/css/custom/custom.scss */
.fa-themeisle:before {
  content: "\f2b2";
}

/* line 2791, ../../_dev/css/custom/custom.scss */
.fa-google-plus-circle:before, .fa-google-plus-official:before {
  content: "\f2b3";
}

/* line 2795, ../../_dev/css/custom/custom.scss */
.fa-fa:before, .fa-font-awesome:before {
  content: "\f2b4";
}

/* line 2799, ../../_dev/css/custom/custom.scss */
.fa-handshake-o:before {
  content: "\f2b5";
}

/* line 2803, ../../_dev/css/custom/custom.scss */
.fa-envelope-open:before {
  content: "\f2b6";
}

/* line 2807, ../../_dev/css/custom/custom.scss */
.fa-envelope-open-o:before {
  content: "\f2b7";
}

/* line 2811, ../../_dev/css/custom/custom.scss */
.fa-linode:before {
  content: "\f2b8";
}

/* line 2815, ../../_dev/css/custom/custom.scss */
.fa-address-book:before {
  content: "\f2b9";
}

/* line 2819, ../../_dev/css/custom/custom.scss */
.fa-address-book-o:before {
  content: "\f2ba";
}

/* line 2823, ../../_dev/css/custom/custom.scss */
.fa-vcard:before, .fa-address-card:before {
  content: "\f2bb";
}

/* line 2827, ../../_dev/css/custom/custom.scss */
.fa-vcard-o:before, .fa-address-card-o:before {
  content: "\f2bc";
}

/* line 2831, ../../_dev/css/custom/custom.scss */
.fa-user-circle:before {
  content: "\f2bd";
}

/* line 2835, ../../_dev/css/custom/custom.scss */
.fa-user-circle-o:before {
  content: "\f2be";
}

/* line 2839, ../../_dev/css/custom/custom.scss */
.fa-user-o:before {
  content: "\f2c0";
}

/* line 2843, ../../_dev/css/custom/custom.scss */
.fa-id-badge:before {
  content: "\f2c1";
}

/* line 2847, ../../_dev/css/custom/custom.scss */
.fa-drivers-license:before, .fa-id-card:before {
  content: "\f2c2";
}

/* line 2851, ../../_dev/css/custom/custom.scss */
.fa-drivers-license-o:before, .fa-id-card-o:before {
  content: "\f2c3";
}

/* line 2855, ../../_dev/css/custom/custom.scss */
.fa-quora:before {
  content: "\f2c4";
}

/* line 2859, ../../_dev/css/custom/custom.scss */
.fa-free-code-camp:before {
  content: "\f2c5";
}

/* line 2863, ../../_dev/css/custom/custom.scss */
.fa-telegram:before {
  content: "\f2c6";
}

/* line 2867, ../../_dev/css/custom/custom.scss */
.fa-thermometer-4:before, .fa-thermometer:before, .fa-thermometer-full:before {
  content: "\f2c7";
}

/* line 2871, ../../_dev/css/custom/custom.scss */
.fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

/* line 2875, ../../_dev/css/custom/custom.scss */
.fa-thermometer-2:before, .fa-thermometer-half:before {
  content: "\f2c9";
}

/* line 2879, ../../_dev/css/custom/custom.scss */
.fa-thermometer-1:before, .fa-thermometer-quarter:before {
  content: "\f2ca";
}

/* line 2883, ../../_dev/css/custom/custom.scss */
.fa-thermometer-0:before, .fa-thermometer-empty:before {
  content: "\f2cb";
}

/* line 2887, ../../_dev/css/custom/custom.scss */
.fa-shower:before {
  content: "\f2cc";
}

/* line 2891, ../../_dev/css/custom/custom.scss */
.fa-bathtub:before, .fa-s15:before, .fa-bath:before {
  content: "\f2cd";
}

/* line 2895, ../../_dev/css/custom/custom.scss */
.fa-podcast:before {
  content: "\f2ce";
}

/* line 2899, ../../_dev/css/custom/custom.scss */
.fa-window-maximize:before {
  content: "\f2d0";
}

/* line 2903, ../../_dev/css/custom/custom.scss */
.fa-window-minimize:before {
  content: "\f2d1";
}

/* line 2907, ../../_dev/css/custom/custom.scss */
.fa-window-restore:before {
  content: "\f2d2";
}

/* line 2911, ../../_dev/css/custom/custom.scss */
.fa-times-rectangle:before, .fa-window-close:before {
  content: "\f2d3";
}

/* line 2915, ../../_dev/css/custom/custom.scss */
.fa-times-rectangle-o:before, .fa-window-close-o:before {
  content: "\f2d4";
}

/* line 2919, ../../_dev/css/custom/custom.scss */
.fa-bandcamp:before {
  content: "\f2d5";
}

/* line 2923, ../../_dev/css/custom/custom.scss */
.fa-grav:before {
  content: "\f2d6";
}

/* line 2927, ../../_dev/css/custom/custom.scss */
.fa-etsy:before {
  content: "\f2d7";
}

/* line 2931, ../../_dev/css/custom/custom.scss */
.fa-imdb:before {
  content: "\f2d8";
}

/* line 2935, ../../_dev/css/custom/custom.scss */
.fa-ravelry:before {
  content: "\f2d9";
}

/* line 2939, ../../_dev/css/custom/custom.scss */
.fa-eercast:before {
  content: "\f2da";
}

/* line 2943, ../../_dev/css/custom/custom.scss */
.fa-microchip:before {
  content: "\f2db";
}

/* line 2947, ../../_dev/css/custom/custom.scss */
.fa-snowflake-o:before {
  content: "\f2dc";
}

/* line 2951, ../../_dev/css/custom/custom.scss */
.fa-superpowers:before {
  content: "\f2dd";
}

/* line 2955, ../../_dev/css/custom/custom.scss */
.fa-wpexplorer:before {
  content: "\f2de";
}

/* line 2959, ../../_dev/css/custom/custom.scss */
.fa-meetup:before {
  content: "\f2e0";
}

/* line 2963, ../../_dev/css/custom/custom.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 2975, ../../_dev/css/custom/custom.scss */
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* line 2985, ../../_dev/css/custom/custom.scss */
.fa, [class^="fa-"] {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}

/* addition css */
/* line 2997, ../../_dev/css/custom/custom.scss */
.oneline {
  display: block;
  word-wrap: break-word;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* line 3004, ../../_dev/css/custom/custom.scss */
.animatetab .owl-carousel .owl-item {
  -moz-animation: zoomIn 500ms ease;
  -o-animation: zoomIn 500ms ease;
  -webkit-animation: zoomIn 500ms ease;
  animation: zoomIn 500ms ease;
}

/* line 3010, ../../_dev/css/custom/custom.scss */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}
/* line 3015, ../../_dev/css/custom/custom.scss */
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
/* line 3019, ../../_dev/css/custom/custom.scss */
.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
/* line 3026, ../../_dev/css/custom/custom.scss */
.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* line 3039, ../../_dev/css/custom/custom.scss */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
/* line 3047, ../../_dev/css/custom/custom.scss */
.owl-carousel .owl-wrapper .owl-item {
  float: left;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* line 3050, ../../_dev/css/custom/custom.scss */
.owl-carousel .owl-wrapper .owl-item:hover {
  z-index: 2;
}
/* line 3063, ../../_dev/css/custom/custom.scss */
.owl-carousel .owl-wrapper .owl-item .item {
  position: relative;
}
/* line 3068, ../../_dev/css/custom/custom.scss */
.owl-carousel .owl-controls {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
/* line 3074, ../../_dev/css/custom/custom.scss */
.owl-carousel .owl-controls .owl-page, .owl-carousel .owl-controls .owl-buttons div {
  cursor: pointer;
}
/* line 3078, ../../_dev/css/custom/custom.scss */
.owl-carousel .grabbing {
  cursor: url(../img/grabbing.png) 8 8, move;
}

/* line 3082, ../../_dev/css/custom/custom.scss */
.back-top {
  display: block;
  position: fixed;
  right: 25px;
  bottom: 25px;
  overflow: hidden;
  z-index: 1;
}
/* line 3089, ../../_dev/css/custom/custom.scss */
.back-top a {
  background: #333333;
  color: white;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: block;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
/* line 3102, ../../_dev/css/custom/custom.scss */
.back-top a:after {
  content: "\f102";
  font-family: "FontAwesome";
  font-size: 25px;
}
/* line 3107, ../../_dev/css/custom/custom.scss */
.back-top a:hover {
  background: #d8473a;
}

/* line 3114, ../../_dev/css/custom/custom.scss */
input:focus, button:focus, select:focus, textarea:focus {
  text-decoration: none !important;
  box-shadow: none !important;
  outline: 0 !important;
}

/* line 3121, ../../_dev/css/custom/custom.scss */
a:hover, a:focus {
  outline: 0 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

/* line 3128, ../../_dev/css/custom/custom.scss */
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .btn:hover, .btn:focus, .btn:active, .btn.active {
  outline: 0 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

/* line 3135, ../../_dev/css/custom/custom.scss */
a {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

/* line 3142, ../../_dev/css/custom/custom.scss */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

/* edit from here */
/* line 3149, ../../_dev/css/custom/custom.scss */
.ui-menu .ui-menu-item a.ui-state-focus, .ui-menu .ui-menu-item a {
  font-size: 12px;
}

/* line 3152, ../../_dev/css/custom/custom.scss */
.ui-menu .ui-menu-item a.ui-state-focus, .ui-menu .ui-menu-item a.ui-state-active {
  margin: 0;
  background: none;
  border: 0;
  color: #d8473a;
  cursor: pointer;
}

@media (min-width: 1200px) {
  /* line 3160, ../../_dev/css/custom/custom.scss */
  #left-column, #right-column {
    width: 20%;
  }

  /* line 3163, ../../_dev/css/custom/custom.scss */
  #content-wrapper.left-column, #content-wrapper.right-column {
    width: 80%;
  }
}
@media (min-width: 1920px) {
  /* line 3168, ../../_dev/css/custom/custom.scss */
  #left-column, #right-column {
    width: 16.66667%;
  }

  /* line 3171, ../../_dev/css/custom/custom.scss */
  #content-wrapper.left-column, #content-wrapper.right-column {
    width: 83.33333%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 3177, ../../_dev/css/custom/custom.scss */
  #left-column, #right-column {
    width: 31.5%;
  }

  /* line 3180, ../../_dev/css/custom/custom.scss */
  #content-wrapper.left-column, #content-wrapper.right-column {
    width: 68.5%;
  }
}
@media (min-width: 1200px) {
  /* line 3185, ../../_dev/css/custom/custom.scss */
  .container {
    max-width: 1170px;
    padding-left: 0;
    padding-right: 0;
  }
}
/* line 3191, ../../_dev/css/custom/custom.scss */
#wrapper {
  margin: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
/* line 3196, ../../_dev/css/custom/custom.scss */
#wrapper #main .page-footer {
  margin: 0;
}

/* line 3201, ../../_dev/css/custom/custom.scss */
button {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

/* line 3208, ../../_dev/css/custom/custom.scss */
.product-flag {
  margin: 0;
}

/* edit theme */
/* line 3213, ../../_dev/css/custom/custom.scss */
img {
  max-width: 100%;
  margin: auto;
  height: auto;
}

/* line 3219, ../../_dev/css/custom/custom.scss */
ol, ul, dl {
  margin: 0;
  padding: 0;
}

/* line 3223, ../../_dev/css/custom/custom.scss */
i, cite, em, var, address, dfn {
  font-style: normal;
}

/* line 3226, ../../_dev/css/custom/custom.scss */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  margin: 0;
  padding: 0;
  font-family: 'Ek Mukta', sans-serif;
}

/* line 3231, ../../_dev/css/custom/custom.scss */
.h1, .h2, .h3 {
  margin-bottom: 15px;
}

/* line 3234, ../../_dev/css/custom/custom.scss */
p {
  font-size: 12px;
  color: #878787;
  font-weight: 400;
}

/* line 3239, ../../_dev/css/custom/custom.scss */
body {
  font-family: 'Open Sans', sans-serif;
  background: white;
  font-size: 13px;
}

@media (min-width: 1200px) {
  /* line 3246, ../../_dev/css/custom/custom.scss */
  .container-fluid {
    padding-left: 75px;
    padding-right: 75px;
  }
}
/* line 3252, ../../_dev/css/custom/custom.scss */
.unvisible {
  display: none;
}

/* line 3256, ../../_dev/css/custom/custom.scss */
.headerSpace {
  display: none !important;
}

/* line 3260, ../../_dev/css/custom/custom.scss */
main {
  overflow: hidden;
}

/* line 3263, ../../_dev/css/custom/custom.scss */
#header {
  padding: 0;
  position: relative;
  background: transparent;
}
@media (max-width: 991px) {
  /* line 3263, ../../_dev/css/custom/custom.scss */
  #header {
    text-align: center;
  }
}
/* line 3270, ../../_dev/css/custom/custom.scss */
#header .header_logo {
  padding-top: 20px;
}
@media (max-width: 991px) {
  /* line 3270, ../../_dev/css/custom/custom.scss */
  #header .header_logo {
    padding-bottom: 30px;
  }
}
/* line 3276, ../../_dev/css/custom/custom.scss */
#header .logo {
  margin: 0;
}
@media (max-width: 991px) {
  /* line 3276, ../../_dev/css/custom/custom.scss */
  #header .logo {
    margin: auto;
  }
}

/* line 3285, ../../_dev/css/custom/custom.scss */
#header .header-nav .blockcart .header {
  margin: 0;
}

/* line 3288, ../../_dev/css/custom/custom.scss */
#header nav.header-nav {
  line-height: 1;
  background: #252525;
  border: 0;
  margin: 0;
  max-height: none;
  z-index: 2;
}

/* line 3296, ../../_dev/css/custom/custom.scss */
#header .header-top {
  padding: 0;
  position: relative;
  background: transparent;
}

@media (min-width: 992px) {
  /* line 3303, ../../_dev/css/custom/custom.scss */
  #header .header-top.scroll-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.85);
    -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
  }
  /* line 3314, ../../_dev/css/custom/custom.scss */
  #header .header-top.scroll-menu:hover {
    background: white;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
  }
}
/* line 3321, ../../_dev/css/custom/custom.scss */
.sale_off_block {
  overflow: hidden;
  margin-top: 125px;
}

/* item product */
/* line 3326, ../../_dev/css/custom/custom.scss */
.pos_title {
  position: relative;
  display: block;
  margin-bottom: 20px;
}
/* line 3330, ../../_dev/css/custom/custom.scss */
.pos_title h2 {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: #252525;
  margin: 0;
  line-height: 24px;
  font-size: 26px;
  font-weight: 700;
}
@media (min-width: 1920px) {
  /* line 3330, ../../_dev/css/custom/custom.scss */
  .pos_title h2 {
    font-size: 28px;
  }
}
/* line 3342, ../../_dev/css/custom/custom.scss */
.pos_title h2 a {
  color: #252525;
}

@-webkit-keyframes fadeInRightProduct {
  /* line 3352, ../../_dev/css/custom/custom.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  /* line 3358, ../../_dev/css/custom/custom.scss */
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightProduct {
  /* line 3366, ../../_dev/css/custom/custom.scss */
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  /* line 3372, ../../_dev/css/custom/custom.scss */
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 3379, ../../_dev/css/custom/custom.scss */
.fadeInRightProduct {
  -webkit-animation-name: fadeInRightProduct;
  animation-name: fadeInRightProduct;
}

/* line 3384, ../../_dev/css/custom/custom.scss */
.js-product-miniature {
  position: relative;
  background: white;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  text-align: center;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 3392, ../../_dev/css/custom/custom.scss */
.js-product-miniature .img_block {
  padding: 15px;
  position: relative;
}
/* line 3395, ../../_dev/css/custom/custom.scss */
.js-product-miniature .img_block img {
  width: 100%;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 3399, ../../_dev/css/custom/custom.scss */
.js-product-miniature .img_block .img_inner {
  position: relative;
  overflow: hidden;
}
/* line 3404, ../../_dev/css/custom/custom.scss */
.js-product-miniature .add-to-links {
  font-size: 0;
  position: absolute;
  bottom: 30px;
  right: 0;
  left: 0;
  padding: 0 15px;
  opacity: 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 3413, ../../_dev/css/custom/custom.scss */
.js-product-miniature .add-to-links li {
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
  opacity: 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 3420, ../../_dev/css/custom/custom.scss */
.js-product-miniature .add-to-links li.cart button.ajax_add_to_cart_button, .js-product-miniature .add-to-links li.cart span.ajax_add_to_cart_button {
  position: relative;
  line-height: 40px;
  height: 40px;
  width: 60px;
  padding: 0;
  display: inline-block;
  background: rgba(230, 170, 33, 0.2);
  border: 0;
  font-weight: normal;
  font-size: 0;
  color: #d8473a;
  text-align: center;
}
/* line 3433, ../../_dev/css/custom/custom.scss */
.js-product-miniature .add-to-links li.cart button.ajax_add_to_cart_button:before, .js-product-miniature .add-to-links li.cart span.ajax_add_to_cart_button:before {
  font-family: 'ionicons';
  display: inline-block;
  font-size: 21px;
  content: "\f110";
}
/* line 3439, ../../_dev/css/custom/custom.scss */
.js-product-miniature .add-to-links li.cart button.ajax_add_to_cart_button:hover, .js-product-miniature .add-to-links li.cart span.ajax_add_to_cart_button:hover {
  background-color: #d8473a;
  color: white;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 3448, ../../_dev/css/custom/custom.scss */
.js-product-miniature .add-to-links li a {
  position: relative;
  text-align: center;
  line-height: 40px;
  height: 40px;
  width: 60px;
  padding: 0;
  font-weight: normal;
  font-size: 0;
  display: block;
  color: #d8473a;
  background: rgba(230, 170, 33, 0.2);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 3461, ../../_dev/css/custom/custom.scss */
.js-product-miniature .add-to-links li a:before {
  font-family: 'ionicons';
  display: block;
  font-size: 21px;
}
/* line 3467, ../../_dev/css/custom/custom.scss */
.js-product-miniature .add-to-links li a.quick-view:before {
  content: "\f424";
}
/* line 3472, ../../_dev/css/custom/custom.scss */
.js-product-miniature .add-to-links li a.links-details:before {
  content: "\f1fe";
}
/* line 3476, ../../_dev/css/custom/custom.scss */
.js-product-miniature .add-to-links li a:hover {
  background-color: #d8473a;
  color: white;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 3488, ../../_dev/css/custom/custom.scss */
.js-product-miniature:hover {
  z-index: 2;
  margin: 0 0 -75px 0;
  padding: 0 0 75px 0;
  box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 3494, ../../_dev/css/custom/custom.scss */
.js-product-miniature:hover .add-to-links {
  opacity: 1;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 3498, ../../_dev/css/custom/custom.scss */
.js-product-miniature:hover .add-to-links li {
  opacity: 1;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 3503, ../../_dev/css/custom/custom.scss */
.js-product-miniature .product_desc {
  padding: 15px;
  background: white;
}
/* line 3506, ../../_dev/css/custom/custom.scss */
.js-product-miniature .product_desc h4 {
  font-weight: normal;
  margin: 0;
  line-height: 1;
}
/* line 3511, ../../_dev/css/custom/custom.scss */
.js-product-miniature .product_desc .product_name {
  color: #555555;
  padding: 0;
  margin-bottom: 15px;
  display: block;
  line-height: 20px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 400;
}
/* line 3525, ../../_dev/css/custom/custom.scss */
.js-product-miniature .product_desc .product_name:hover {
  color: #d8473a;
}
/* line 3530, ../../_dev/css/custom/custom.scss */
.js-product-miniature .product_desc .product-desc p {
  font-size: 12px;
  color: #8c8c8c;
  line-height: 25px;
  padding: 15px 0;
  margin: 0;
  display: none;
}
/* line 3538, ../../_dev/css/custom/custom.scss */
.js-product-miniature .product_desc .hook-reviews {
  line-height: 1;
  margin-top: 15px;
  position: relative;
}
/* line 3542, ../../_dev/css/custom/custom.scss */
.js-product-miniature .product_desc .hook-reviews .comments_note {
  direction: ltr !important;
}
/* line 3545, ../../_dev/css/custom/custom.scss */
.js-product-miniature .product_desc .hook-reviews .star_content {
  display: inline-block;
  vertical-align: top;
}
/* line 3550, ../../_dev/css/custom/custom.scss */
.js-product-miniature .product_desc .hook-reviews .nb-comments {
  font-size: 12px;
  display: none;
}
/* line 3555, ../../_dev/css/custom/custom.scss */
.js-product-miniature .product_desc .variant-links {
  margin-top: 15px;
  margin-top: 15px;
  background: transparent;
  padding: 0;
  min-height: auto;
  text-align: left;
  display: none;
}
/* line 3563, ../../_dev/css/custom/custom.scss */
.js-product-miniature .product_desc .variant-links a {
  margin: 0 5px 0 0;
  margin: 0 5px 0 0;
  border-radius: 100%;
  width: 15px;
  height: 15px;
}

/* line 3576, ../../_dev/css/custom/custom.scss */
.new, .js-product-miniature .product-price-and-shipping .discount-percentage,
.on-sale {
  position: absolute;
  top: 10px !important;
  left: 10px;
  color: white;
  line-height: 20px;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  padding: 0 5px;
  height: 18px;
  line-height: 18px;
  background: #d8473a;
  min-width: 40px;
}

/* line 3593, ../../_dev/css/custom/custom.scss */
.on-sale {
  z-index: 1;
}

/* line 3597, ../../_dev/css/custom/custom.scss */
.js-product-miniature .product-price-and-shipping .price {
  font-weight: 600;
  font-size: 24px;
  color: #252525;
}
/* line 3601, ../../_dev/css/custom/custom.scss */
.js-product-miniature .product-price-and-shipping .price.price_sale {
  color: #d8473a;
}
/* line 3605, ../../_dev/css/custom/custom.scss */
.js-product-miniature .product-price-and-shipping .regular-price {
  color: #999999;
  font-size: 16px;
  text-decoration: line-through;
  margin: 0 5px;
  font-weight: 600;
}
/* line 3612, ../../_dev/css/custom/custom.scss */
.js-product-miniature .product-price-and-shipping .discount-percentage {
  z-index: 1;
  top: 25px !important;
  left: 25px;
}

/* line 3619, ../../_dev/css/custom/custom.scss */
.owl-pagination {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 767px) {
  /* line 3619, ../../_dev/css/custom/custom.scss */
  .owl-pagination {
    display: none;
  }
}
/* line 3627, ../../_dev/css/custom/custom.scss */
.owl-pagination .owl-page {
  display: inline-block;
  margin: 0 6px;
}
/* line 3630, ../../_dev/css/custom/custom.scss */
.owl-pagination .owl-page span {
  display: inline-block;
  width: 18px;
  height: 4px;
  background: #252525;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 3636, ../../_dev/css/custom/custom.scss */
.owl-pagination .owl-page span:hover {
  background: #d8473a;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 3642, ../../_dev/css/custom/custom.scss */
.owl-pagination .owl-page.active span {
  background: #d8473a;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

/* line 3650, ../../_dev/css/custom/custom.scss */
.owl-buttons > div {
  position: absolute;
  top: 0;
  margin-top: -30px;
  display: inline-block;
  font-size: 0;
  cursor: pointer;
  text-align: center;
  width: 20px;
  height: 20px;
  line-height: 20px;
  color: #252525;
  opacity: 1;
  z-index: 1;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 3665, ../../_dev/css/custom/custom.scss */
.owl-buttons > div i {
  display: none;
}
/* line 3668, ../../_dev/css/custom/custom.scss */
.owl-buttons > div:before {
  font-family: 'ionicons';
  display: block;
  font-size: 24px;
}
/* line 3673, ../../_dev/css/custom/custom.scss */
.owl-buttons > div.owl-prev {
  right: 35px;
}
/* line 3675, ../../_dev/css/custom/custom.scss */
.owl-buttons > div.owl-prev:before {
  text-indent: -1px;
  content: "\f3cf";
}
/* line 3681, ../../_dev/css/custom/custom.scss */
.owl-buttons > div.owl-next {
  right: 10px;
}
/* line 3683, ../../_dev/css/custom/custom.scss */
.owl-buttons > div.owl-next:before {
  content: "\f3d1";
  text-indent: 1px;
}
/* line 3689, ../../_dev/css/custom/custom.scss */
.owl-buttons > div:hover {
  color: #d8473a;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
@media (max-width: 767px) {
  /* line 3650, ../../_dev/css/custom/custom.scss */
  .owl-buttons > div {
    display: none;
  }
}

/* line 3698, ../../_dev/css/custom/custom.scss */
.pos_content {
  position: relative;
}
/* line 3701, ../../_dev/css/custom/custom.scss */
.pos_content .js-product-miniature img, .pos_content .thumb-category img, .pos_content .item_logo img, .pos_content .thumb-container img {
  display: none;
}
/* line 3707, ../../_dev/css/custom/custom.scss */
.pos_content .owl-item .js-product-miniature img, .pos_content .owl-item .thumb-category img, .pos_content .owl-item .item_logo img, .pos_content .owl-item .thumb-container img {
  display: block;
}

/* line 3714, ../../_dev/css/custom/custom.scss */
.home_blog_post_area, .pos-featured-products, .product-tabs-container-slider, .product-accessories, .categoryproducts, .tab-category-container-slider {
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  width: 100%;
  z-index: 1;
}
/* line 3720, ../../_dev/css/custom/custom.scss */
.home_blog_post_area:hover, .pos-featured-products:hover, .product-tabs-container-slider:hover, .product-accessories:hover, .categoryproducts:hover, .tab-category-container-slider:hover {
  z-index: 2;
}
/* line 3723, ../../_dev/css/custom/custom.scss */
.home_blog_post_area .owl-wrapper-outer, .pos-featured-products .owl-wrapper-outer, .product-tabs-container-slider .owl-wrapper-outer, .product-accessories .owl-wrapper-outer, .categoryproducts .owl-wrapper-outer, .tab-category-container-slider .owl-wrapper-outer {
  padding: 10px 10px 85px 10px;
  margin: -10px -10px -85px -10px;
  width: auto;
}

/* line 3729, ../../_dev/css/custom/custom.scss */
.product-accessories {
  z-index: 1;
}

/* line 3732, ../../_dev/css/custom/custom.scss */
.pos-special-products {
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  width: 100%;
}
/* line 3737, ../../_dev/css/custom/custom.scss */
.pos-special-products .special_products {
  border: 1px solid #ebebeb;
}

/* countdown */
/* line 3742, ../../_dev/css/custom/custom.scss */
.is-countdown {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
/* line 3747, ../../_dev/css/custom/custom.scss */
.is-countdown .countdown-section {
  position: relative;
  display: inline-block;
  text-align: center;
  height: 55px;
  padding: 10px 0;
  background: rgba(230, 170, 33, 0.5);
}
/* line 3754, ../../_dev/css/custom/custom.scss */
.is-countdown .countdown-section:after {
  content: ":";
  position: absolute;
  top: 50%;
  right: 0;
  color: white;
  font-size: 20px;
  display: inline-block;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* line 3768, ../../_dev/css/custom/custom.scss */
.is-countdown .countdown-section:last-child:after {
  display: none;
}
/* line 3771, ../../_dev/css/custom/custom.scss */
.is-countdown .countdown-section .countdown-amount {
  display: block;
  font-size: 16px;
  color: white;
  font-weight: 600;
  position: relative;
  line-height: 1;
}
/* line 3779, ../../_dev/css/custom/custom.scss */
.is-countdown .countdown-section .countdown-period {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: white;
  line-height: 1;
  margin-top: 5px;
  text-transform: capitalize;
}
/* line 3790, ../../_dev/css/custom/custom.scss */
.is-countdown .countdown-section {
  width: auto;
  margin: 0 !important;
  border-radius: 0 !important;
}
/* line 3795, ../../_dev/css/custom/custom.scss */
.is-countdown .countdown-show1 .countdown-section {
  width: 100%;
}
/* line 3798, ../../_dev/css/custom/custom.scss */
.is-countdown .countdown-show2 .countdown-section {
  width: 50%;
}
/* line 3801, ../../_dev/css/custom/custom.scss */
.is-countdown .countdown-show3 .countdown-section {
  width: 33.33%;
}
/* line 3804, ../../_dev/css/custom/custom.scss */
.is-countdown .countdown-show4 .countdown-section {
  width: 25%;
}
/* line 3807, ../../_dev/css/custom/custom.scss */
.is-countdown .countdown-show5 .countdown-section {
  width: 19.5%;
}
/* line 3810, ../../_dev/css/custom/custom.scss */
.is-countdown .countdown-show6 .countdown-section {
  width: 16.25%;
}
/* line 3813, ../../_dev/css/custom/custom.scss */
.is-countdown .countdown-show7 .countdown-section {
  width: 14%;
}

/* end countdown */
/* end item product */
/* module advertising */
/* line 3821, ../../_dev/css/custom/custom.scss */
.advertising {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
  overflow: hidden;
}
/* line 3827, ../../_dev/css/custom/custom.scss */
.advertising a img {
  width: 100%;
  height: auto;
}
/* line 3831, ../../_dev/css/custom/custom.scss */
.advertising a:before {
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
}
/* line 3843, ../../_dev/css/custom/custom.scss */
.advertising a:after {
  background: rgba(255, 255, 255, 0.2);
  bottom: 50%;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  opacity: 1;
}
/* line 3855, ../../_dev/css/custom/custom.scss */
.advertising:hover a:before {
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 900ms linear;
  -moz-transition: all 900ms linear;
  -ms-transition: all 900ms linear;
  -o-transition: all 900ms linear;
  transition: all 900ms linear;
}
/* line 3861, ../../_dev/css/custom/custom.scss */
.advertising:hover a:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 900ms linear;
  -moz-transition: all 900ms linear;
  -ms-transition: all 900ms linear;
  -o-transition: all 900ms linear;
  transition: all 900ms linear;
}

/* end module advertising */
/* module listcategoris */
/* line 3871, ../../_dev/css/custom/custom.scss */
.poslistcategories {
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
  border: 0;
}
/* line 3876, ../../_dev/css/custom/custom.scss */
.poslistcategories .pos_title {
  display: none;
}
/* line 3879, ../../_dev/css/custom/custom.scss */
.poslistcategories .owl-carousel .owl-wrapper .owl-item {
  padding: 0 15px;
}
/* line 3882, ../../_dev/css/custom/custom.scss */
.poslistcategories .list-categories {
  position: relative;
  overflow: hidden;
  border: 2px solid #eeeeee;
  padding: 30px;
  text-align: center;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 3889, ../../_dev/css/custom/custom.scss */
.poslistcategories .list-categories .thumb-category {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
/* line 3893, ../../_dev/css/custom/custom.scss */
.poslistcategories .list-categories .thumb-category img {
  -moz-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -ms-transition: all 1s linear;
  -o-transition: all 1s linear;
  transition: all 1s linear;
}
/* line 3897, ../../_dev/css/custom/custom.scss */
.poslistcategories .list-categories .thumb-category .number_product {
  color: #666666;
  font-size: 14px;
  line-height: 30px;
  display: inline-block;
  padding: 0 15px;
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  display: none;
}
/* line 3919, ../../_dev/css/custom/custom.scss */
.poslistcategories .list-categories .desc-listcategoreis .name_categories a {
  font-size: 14px;
  font-weight: 700;
  color: #252525;
  line-height: 30px;
  text-transform: uppercase;
  display: block;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 3930, ../../_dev/css/custom/custom.scss */
.poslistcategories .list-categories .desc-listcategoreis:hover .name_categories a {
  color: #d8473a;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 3937, ../../_dev/css/custom/custom.scss */
.poslistcategories .list-categories:hover {
  border-color: #d8473a;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 3941, ../../_dev/css/custom/custom.scss */
.poslistcategories .list-categories:hover .thumb-category img {
  -moz-transform: scale3d(1.1, 1.1, 1.1);
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  -o-transform: scale3d(1.1, 1.1, 1.1);
  -ms-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
  -webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -ms-transition: all 1s linear;
  -o-transition: all 1s linear;
  transition: all 1s linear;
}
/* line 3946, ../../_dev/css/custom/custom.scss */
.poslistcategories .list-categories:hover .number_product {
  opacity: 1;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

/* end module listcategoris */
/* module listcateproducts */
/* line 3957, ../../_dev/css/custom/custom.scss */
.poslistcateproduct > .row {
  margin: 0;
}
/* line 3959, ../../_dev/css/custom/custom.scss */
.poslistcateproduct > .row .col {
  padding: 0;
}
/* line 3963, ../../_dev/css/custom/custom.scss */
.poslistcateproduct .pos_title {
  margin: 0;
}
/* line 3966, ../../_dev/css/custom/custom.scss */
.poslistcateproduct .owl-buttons > div {
  margin-top: -32px;
}
/* line 3970, ../../_dev/css/custom/custom.scss */
.poslistcateproduct .thumb-category img {
  width: 100%;
}
/* line 3974, ../../_dev/css/custom/custom.scss */
.poslistcateproduct .btn-group {
  position: absolute;
  right: 65px;
  top: -36px;
  z-index: 1;
}
@media (max-width: 767px) {
  /* line 3974, ../../_dev/css/custom/custom.scss */
  .poslistcateproduct .btn-group {
    right: 30px;
  }
}
/* line 3982, ../../_dev/css/custom/custom.scss */
.poslistcateproduct .btn-group > .btn {
  border: 0;
  background: transparent;
}
/* line 3985, ../../_dev/css/custom/custom.scss */
.poslistcateproduct .btn-group > .btn:hover, .poslistcateproduct .btn-group > .btn:active, .poslistcateproduct .btn-group > .btn:focus {
  color: #d8473a;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 3991, ../../_dev/css/custom/custom.scss */
.poslistcateproduct .btn-group .dropdown-menu {
  right: 0;
  left: auto;
  border: 1px solid #ebebeb;
}
/* line 3997, ../../_dev/css/custom/custom.scss */
.poslistcateproduct .subcategories-list {
  position: absolute;
  top: 20px;
  left: 0;
  padding: 15px 25px;
}
/* line 4002, ../../_dev/css/custom/custom.scss */
.poslistcateproduct .subcategories-list .title-sub {
  color: #444444;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
  display: block;
}
/* line 4010, ../../_dev/css/custom/custom.scss */
.poslistcateproduct .subcategories-list li {
  display: inline-block;
  padding: 0 5px;
}
/* line 4013, ../../_dev/css/custom/custom.scss */
.poslistcateproduct .subcategories-list li a {
  position: relative;
  display: block;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  cursor: pointer;
  color: #666666;
  font-size: 13px;
  padding: 0;
  line-height: 30px;
  text-transform: capitalize;
  text-transform: capitalize;
  z-index: 1;
}
/* line 4027, ../../_dev/css/custom/custom.scss */
.poslistcateproduct .subcategories-list li.active a, .poslistcateproduct .subcategories-list li:hover a {
  color: #d8473a;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 4034, ../../_dev/css/custom/custom.scss */
.poslistcateproduct .description-list {
  margin-top: 40px;
  position: relative;
  display: inline-block;
  width: 100%;
}
@media (max-width: 767px) {
  /* line 4034, ../../_dev/css/custom/custom.scss */
  .poslistcateproduct .description-list {
    margin-top: 30px;
  }
}

/* end module cateproducts */
/* module postabproductslider */
/* line 4048, ../../_dev/css/custom/custom.scss */
.product-tabs-container-slider ul.tabs_slider {
  text-align: center;
  margin-bottom: 10px;
}
/* line 4051, ../../_dev/css/custom/custom.scss */
.product-tabs-container-slider ul.tabs_slider li {
  position: relative;
  display: inline-block;
  line-height: 1;
  padding: 0 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  cursor: pointer;
  color: #707070;
  font-family: 'Ek Mukta', sans-serif;
  font-size: 26px;
  font-weight: 700;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
@media (min-width: 1920px) {
  /* line 4051, ../../_dev/css/custom/custom.scss */
  .product-tabs-container-slider ul.tabs_slider li {
    font-size: 28px;
  }
}
/* line 4069, ../../_dev/css/custom/custom.scss */
.product-tabs-container-slider ul.tabs_slider li:first-child {
  border-left: 0;
}
/* line 4072, ../../_dev/css/custom/custom.scss */
.product-tabs-container-slider ul.tabs_slider li:last-child {
  padding-right: 0;
}
/* line 4075, ../../_dev/css/custom/custom.scss */
.product-tabs-container-slider ul.tabs_slider li.active, .product-tabs-container-slider ul.tabs_slider li:hover {
  color: #d8473a;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

/* end  postabproductslider*/
/* module megamenu */
/* line 4089, ../../_dev/css/custom/custom.scss */
.pt_custommenu {
  position: relative;
  line-height: 1;
}
/* line 4092, ../../_dev/css/custom/custom.scss */
.pt_custommenu .pt_menu {
  float: left;
}
/* line 4094, ../../_dev/css/custom/custom.scss */
.pt_custommenu .pt_menu .parentMenu a {
  display: block;
  line-height: 30px;
  padding: 25px 20px;
  color: #707070;
  background: transparent;
  text-transform: uppercase;
  position: relative;
  font-family: 'Ek Mukta', sans-serif;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  /* line 4094, ../../_dev/css/custom/custom.scss */
  .pt_custommenu .pt_menu .parentMenu a {
    padding: 25px 10px;
  }
}
/* line 4110, ../../_dev/css/custom/custom.scss */
.pt_custommenu .pt_menu .parentMenu a i {
  font-size: 14px;
  display: none;
  line-height: 30px;
  float: right;
  padding: 0 0 0 10px;
}
/* line 4118, ../../_dev/css/custom/custom.scss */
.pt_custommenu .pt_menu:first-child .parentMenu a {
  padding-left: 0;
}
/* line 4121, ../../_dev/css/custom/custom.scss */
.pt_custommenu .pt_menu.act .parentMenu a, .pt_custommenu .pt_menu.active .parentMenu a {
  color: #252525;
}
/* line 4124, ../../_dev/css/custom/custom.scss */
.pt_custommenu .pt_menu .popup {
  position: absolute;
  background-color: white;
  z-index: 10;
  box-shadow: 0px 0px 12.75px 2.25px rgba(0, 0, 0, 0.06);
  text-shadow: 0px 0px 12.75px rgba(0, 0, 0, 0.06);
}
/* line 4130, ../../_dev/css/custom/custom.scss */
.pt_custommenu .pt_menu .popup .cms_mega a img {
  -webkit-transition: all 1700ms ease;
  -moz-transition: all 1700ms ease;
  -o-transition: all 1700ms ease;
  transition: all 1700ms ease;
}
/* line 4136, ../../_dev/css/custom/custom.scss */
.pt_custommenu .pt_menu .popup .cms_mega a:hover img {
  -webkit-transform: scale(1.07);
  -moz-transform: scale(1.07);
  -ms-transform: scale(1.07);
  -o-transform: scale(1.07);
  transform: scale(1.07);
}
/* line 4143, ../../_dev/css/custom/custom.scss */
.pt_custommenu .pt_menu .popup .block1 {
  overflow: hidden;
  float: left;
  padding-bottom: 20px;
}
/* line 4147, ../../_dev/css/custom/custom.scss */
.pt_custommenu .pt_menu .popup .block1 .column {
  float: left;
  width: 200px;
  padding: 20px 30px;
  margin-bottom: -99999px;
  padding-bottom: 99999px;
}
/* line 4153, ../../_dev/css/custom/custom.scss */
.pt_custommenu .pt_menu .popup .block1 .column .itemMenuName {
  color: #252525;
  text-transform: uppercase;
  word-wrap: break-word;
  display: block;
  line-height: 35px;
  position: relative;
  font-family: 'Ek Mukta', sans-serif;
  font-size: 18px;
  font-weight: 700;
}
/* line 4165, ../../_dev/css/custom/custom.scss */
.pt_custommenu .pt_menu .popup .block1 .column .itemMenuName:hover {
  color: #d8473a;
}
/* line 4169, ../../_dev/css/custom/custom.scss */
.pt_custommenu .pt_menu .popup .block1 .column .itemSubMenu {
  padding: 0;
  margin-top: 15px;
}
/* line 4172, ../../_dev/css/custom/custom.scss */
.pt_custommenu .pt_menu .popup .block1 .column .itemSubMenu .itemMenuName {
  color: #707070;
  text-transform: capitalize;
  display: block;
  font-size: 16px;
  font-weight: 400;
}
/* line 4181, ../../_dev/css/custom/custom.scss */
.pt_custommenu .pt_menu .popup .block1 .column .itemSubMenu .itemMenuName:hover {
  color: #d8473a;
}
/* line 4183, ../../_dev/css/custom/custom.scss */
.pt_custommenu .pt_menu .popup .block1 .column .itemSubMenu .itemMenuName:hover:before {
  color: #d8473a;
}

/* line 4195, ../../_dev/css/custom/custom.scss */
.pt_custommenu_mobile {
  text-align: left;
  position: relative;
  clear: both;
}
/* line 4199, ../../_dev/css/custom/custom.scss */
.pt_custommenu_mobile .navbar {
  min-height: 40px;
  margin: 0;
  border: 0;
  position: relative;
  overflow: hidden;
  background: #333333;
  padding: 0 15px;
  overflow: hidden;
  cursor: pointer;
}
/* line 4209, ../../_dev/css/custom/custom.scss */
.pt_custommenu_mobile .navbar .navbar-inner .btn-navbar {
  display: block;
  overflow: hidden;
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  line-height: 40px;
}
/* line 4219, ../../_dev/css/custom/custom.scss */
.pt_custommenu_mobile .navbar .navbar-inner .btn-navbar:after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  font-family: "FontAwesome";
  cursor: pointer;
}
/* line 4234, ../../_dev/css/custom/custom.scss */
.pt_custommenu_mobile .navbar .navbar-inner.navbar-inactive .btn-navbar:after {
  content: "\f03a";
}
/* line 4237, ../../_dev/css/custom/custom.scss */
.pt_custommenu_mobile .navbar .navbar-inner.navbar-active .btn-navbar:after {
  content: "\f03a";
}

/* line 4243, ../../_dev/css/custom/custom.scss */
ul#pt_custommenu_itemmobile {
  overflow: hidden;
  margin: 0 0 15px;
  padding: 0;
}
/* line 4247, ../../_dev/css/custom/custom.scss */
ul#pt_custommenu_itemmobile li {
  cursor: pointer;
  list-style-type: none;
  margin: 0;
  padding: 0 10px;
  display: block;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
/* line 4255, ../../_dev/css/custom/custom.scss */
ul#pt_custommenu_itemmobile li:last-child {
  border: 0;
}
/* line 4258, ../../_dev/css/custom/custom.scss */
ul#pt_custommenu_itemmobile li a {
  line-height: 45px;
  color: #fff;
  text-transform: capitalize;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
}
/* line 4265, ../../_dev/css/custom/custom.scss */
ul#pt_custommenu_itemmobile li a:hover {
  color: #a8ca01;
}
/* line 4269, ../../_dev/css/custom/custom.scss */
ul#pt_custommenu_itemmobile li .grower {
  position: absolute;
  top: 0;
  right: 0;
}
/* line 4273, ../../_dev/css/custom/custom.scss */
ul#pt_custommenu_itemmobile li .grower a:after {
  display: block;
  width: 45px;
  height: 45px;
  text-align: center;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  font-family: "FontAwesome";
  content: "\f055";
}
/* line 4284, ../../_dev/css/custom/custom.scss */
ul#pt_custommenu_itemmobile li .grower.active a:after {
  content: "\f056";
}

/* line 4291, ../../_dev/css/custom/custom.scss */
.sub-page .navbar {
  background: rgba(46, 46, 46, 0.3);
}

/* end module megamenu */
/* module vegamenu */
/* line 4297, ../../_dev/css/custom/custom.scss */
.navleft-container {
  position: relative;
  z-index: 9;
}
/* line 4300, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu_title {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #d8473a;
  height: 45px;
}
/* line 4306, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu_title h2 {
  margin: 0;
  color: white;
  line-height: 45px;
  padding: 0;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  /* line 4306, ../../_dev/css/custom/custom.scss */
  .navleft-container .pt_vmegamenu_title h2 {
    font-size: 16px;
  }
}
/* line 4319, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu_title h2:before {
  content: "";
  background: url(../img/icon_vertical.png) no-repeat 50%;
  margin-right: 15px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background-color: #d12c2e;
  float: left;
  font-family: "FontAwesome";
  font-weight: normal;
}
/* line 4332, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu_title h2 i {
  display: none;
}
/* line 4335, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu {
  display: block;
  position: absolute;
  left: 0;
  top: 45px;
  width: 100%;
  background: #fff;
  border: 1px solid #ebebeb;
  border-top: 0;
}
/* line 4344, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .pt_menu {
  position: relative;
}
/* line 4346, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .pt_menu:hover .wrap-popup {
  left: 100%;
  opacity: 1;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 4351, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .pt_menu:not(.noSub):after {
  display: block;
  position: absolute;
  top: 0;
  right: 15px;
  line-height: 40px;
  color: #444444;
  content: "\f105";
  font-size: 16px;
  font-weight: 500;
  font-family: "FontAwesome";
}
@media (max-width: 1199px) {
  /* line 4351, ../../_dev/css/custom/custom.scss */
  .navleft-container .pt_vmegamenu .pt_menu:not(.noSub):after {
    right: 15px;
    line-height: 36px;
  }
}
/* line 4374, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .pt_menu:last-child .parentMenu a {
  border-bottom: 0;
}
/* line 4378, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .pt_menu .parentMenu a {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 40px;
  text-transform: uppercase;
  word-wrap: break-word;
  background: white;
  color: #444444;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 400;
}
/* line 4393, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .pt_menu .parentMenu a:before {
  content: "\f0da";
  display: inline-block;
  margin-right: 7px;
  font-size: 14px;
  font-weight: 400;
  font-family: "FontAwesome";
}
@media (max-width: 1199px) {
  /* line 4378, ../../_dev/css/custom/custom.scss */
  .navleft-container .pt_vmegamenu .pt_menu .parentMenu a {
    font-size: 12px;
    line-height: 36px;
  }
}
/* line 4407, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .pt_menu .parentMenu a .cate-thumb {
  float: left;
  width: 30px;
  margin-right: 10px;
  display: none;
}
/* line 4421, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .pt_menu.act .parentMenu a, .navleft-container .pt_vmegamenu .pt_menu.active .parentMenu a {
  color: #d8473a;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 4426, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup {
  position: absolute;
  top: 0;
  left: 115%;
  z-index: 1;
  opacity: 0;
  width: 720px;
}
/* line 4433, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup {
  display: none;
  position: absolute;
  top: 0 !important;
  left: 0 !important;
  width: auto !important;
  -webkit-box-shadow: 1px 0 6px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 0 6px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 1px 0 6px 0 rgba(0, 0, 0, 0.3);
}
/* line 4442, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup {
  background: #fff;
  padding: 20px 20px 5px;
  float: left;
  overflow: hidden;
}
/* line 4447, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column {
  width: 170px;
  padding: 0 15px;
  margin-bottom: -99999px;
  padding-bottom: 99999px;
  border-right: 1px solid #ebebeb;
}
/* line 4453, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemMenuName {
  color: #404040;
  text-transform: uppercase;
  word-wrap: break-word;
  display: block;
  line-height: 35px;
  position: relative;
  font-size: 14px;
  font-weight: 700;
}
/* line 4464, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemMenuName:hover {
  color: #d8473a;
}
/* line 4469, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemSubMenu {
  padding: 10px 0 20px;
}
/* line 4471, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemSubMenu .itemMenuName {
  color: #404040;
  text-transform: capitalize;
  display: block;
  font-size: 13px;
  font-weight: 400;
}
/* line 4481, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemSubMenu .itemMenuName:hover {
  color: #d8473a;
}
/* line 4483, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemSubMenu .itemMenuName:hover:before {
  color: #d8473a;
}
/* line 4487, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemSubMenu .itemMenuName:after {
  display: none;
}
/* line 4493, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column.last {
  padding-right: 0;
  border: 0;
}
/* line 4498, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .block1 {
  overflow: hidden;
}
/* line 4501, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .block2 {
  display: inline-block;
  width: 100%;
  margin-top: 20px;
}
/* line 4509, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .view_more {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 40px;
  text-transform: uppercase;
  word-wrap: break-word;
  background: white;
  color: #444444;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
}
@media (max-width: 1199px) {
  /* line 4509, ../../_dev/css/custom/custom.scss */
  .navleft-container .pt_vmegamenu .view_more {
    line-height: 36px;
  }
}
/* line 4528, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .view_more:hover {
  color: #d8473a;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 4532, ../../_dev/css/custom/custom.scss */
.navleft-container .pt_vmegamenu .view_more i {
  margin-right: 7px;
}

/* line 4542, ../../_dev/css/custom/custom.scss */
.sub-page .navleft-container .pt_vmegamenu {
  display: none;
}

/* end module vegamenu */
/* module featured products */
/* end module featured products */
/* module testimonials */
/* line 4554, ../../_dev/css/custom/custom.scss */
.testimonials_container .item-testimonials .item {
  position: relative;
  overflow: hidden;
}
/* line 4557, ../../_dev/css/custom/custom.scss */
.testimonials_container .item-testimonials .item .des_testimonial {
  font-size: 16px;
  color: #252525;
  line-height: 24px;
  font-style: italic;
  padding: 0 40px;
  padding-top: 20px;
  margin-bottom: 40px;
  position: relative;
}
/* line 4566, ../../_dev/css/custom/custom.scss */
.testimonials_container .item-testimonials .item .des_testimonial:before {
  content: "\f10d";
  font-family: "FontAwesome";
  font-size: 28px;
  position: absolute;
  top: 0;
  left: 0;
  color: #d8473a;
}
/* line 4577, ../../_dev/css/custom/custom.scss */
.testimonials_container .item-testimonials .item .content_author img {
  width: 70px;
  float: left;
  margin-right: 30px;
}
/* line 4582, ../../_dev/css/custom/custom.scss */
.testimonials_container .item-testimonials .item .content_author .content_test {
  overflow: hidden;
  padding: 10px 0;
}
/* line 4585, ../../_dev/css/custom/custom.scss */
.testimonials_container .item-testimonials .item .content_author .content_test .des_namepost {
  font-size: 16px;
  color: #d8473a;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
/* line 4592, ../../_dev/css/custom/custom.scss */
.testimonials_container .item-testimonials .item .content_author .content_test .des_email {
  font-size: 16px;
  color: #b4b5b5;
  line-height: 24px;
  font-style: italic;
  margin: 0;
}
/* line 4604, ../../_dev/css/custom/custom.scss */
.testimonials_container .owl-pagination {
  text-align: right;
}

/* end module testimonials */
/* module featured */
/* end module featured */
/* module bestseller */
/* line 4613, ../../_dev/css/custom/custom.scss */
.pos-bestsellers-product {
  margin-bottom: 40px;
}
/* line 4615, ../../_dev/css/custom/custom.scss */
.pos-bestsellers-product .owl-buttons > div {
  opacity: 1;
  position: absolute;
  top: 0;
  margin-top: -55px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  color: #252525;
  background: transparent;
  -moz-transform: none;
  -webkit-transform: none;
  -o-transform: none;
  -ms-transform: none;
  transform: none;
}
/* line 4630, ../../_dev/css/custom/custom.scss */
.pos-bestsellers-product .owl-buttons > div.owl-prev {
  right: 25px !important;
  left: auto !important;
}
/* line 4634, ../../_dev/css/custom/custom.scss */
.pos-bestsellers-product .owl-buttons > div.owl-next {
  right: 0 !important;
  left: auto !important;
}
/* line 4638, ../../_dev/css/custom/custom.scss */
.pos-bestsellers-product .owl-buttons > div:before {
  font-size: 21px;
}
/* line 4642, ../../_dev/css/custom/custom.scss */
.pos-bestsellers-product .pos_title {
  text-align: left;
}
/* line 4644, ../../_dev/css/custom/custom.scss */
.pos-bestsellers-product .pos_title h2 {
  font-size: 22px;
}
/* line 4648, ../../_dev/css/custom/custom.scss */
.pos-bestsellers-product .js-product-miniature {
  display: inline-block;
  width: 100%;
  margin: 0;
  margin-bottom: 25px;
  text-align: left;
  padding: 0;
  box-shadow: none;
}
/* line 4656, ../../_dev/css/custom/custom.scss */
.pos-bestsellers-product .js-product-miniature:last-child {
  margin: 0;
}
/* line 4659, ../../_dev/css/custom/custom.scss */
.pos-bestsellers-product .js-product-miniature .img_block {
  float: left;
  width: 80px;
  padding: 0;
  margin-right: 20px;
}
@media (max-width: 1199px) {
  /* line 4659, ../../_dev/css/custom/custom.scss */
  .pos-bestsellers-product .js-product-miniature .img_block {
    width: 70px;
    margin-right: 10px;
  }
}
/* line 4669, ../../_dev/css/custom/custom.scss */
.pos-bestsellers-product .js-product-miniature .product_desc {
  overflow: hidden;
  display: block;
  width: auto;
  padding: 0;
}
/* line 4674, ../../_dev/css/custom/custom.scss */
.pos-bestsellers-product .js-product-miniature .product_desc .product_name {
  text-transform: capitalize;
  font-size: 14px;
}
/* line 4679, ../../_dev/css/custom/custom.scss */
.pos-bestsellers-product .js-product-miniature .product_desc .product-price-and-shipping .price {
  font-size: 18px;
}
/* line 4682, ../../_dev/css/custom/custom.scss */
.pos-bestsellers-product .js-product-miniature .product_desc .product-price-and-shipping .discount-percentage {
  display: none;
}

@media (max-width: 1199px) {
  /* line 4692, ../../_dev/css/custom/custom.scss */
  #left_column .pos-bestsellers-product .owl-buttons > div, #right_column .pos-bestsellers-product .owl-buttons > div {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 4697, ../../_dev/css/custom/custom.scss */
  #left_column .pos-bestsellers-product .js-product-miniature .product_desc, #right_column .pos-bestsellers-product .js-product-miniature .product_desc {
    display: inline-block;
    width: 100%;
    overflow: visible;
  }
}

/* end module bestseller */
/* module contact */
/* line 4711, ../../_dev/css/custom/custom.scss */
.contact-link {
  float: left;
  padding: 18px 0;
}
@media (max-width: 991px) {
  /* line 4711, ../../_dev/css/custom/custom.scss */
  .contact-link {
    float: none;
    display: inline-block;
  }
}
/* line 4718, ../../_dev/css/custom/custom.scss */
.contact-link .info_box {
  position: relative;
  line-height: 15px;
  text-shadow: none;
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
  font-weight: 400;
  color: #aaaaaa;
  padding: 0 20px;
  text-transform: capitalize;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 991px) {
  /* line 4718, ../../_dev/css/custom/custom.scss */
  .contact-link .info_box {
    margin-bottom: 5px;
  }
}
/* line 4733, ../../_dev/css/custom/custom.scss */
.contact-link .info_box:first-child {
  padding-left: 0;
  border: 0;
}
/* line 4737, ../../_dev/css/custom/custom.scss */
.contact-link .info_box a {
  color: #aaaaaa;
}
/* line 4739, ../../_dev/css/custom/custom.scss */
.contact-link .info_box a:hover {
  color: white;
  text-decoration: underline !important;
}
/* line 4744, ../../_dev/css/custom/custom.scss */
.contact-link .info_box:before {
  font-family: 'ionicons';
  display: inline-block;
  font-size: 16px;
  color: white;
  margin-right: 7px;
}
/* line 4751, ../../_dev/css/custom/custom.scss */
.contact-link .info_box.phone:before {
  content: "\f4b9";
}
/* line 4754, ../../_dev/css/custom/custom.scss */
.contact-link .info_box.fax:before {
  content: "\f3a5";
}
/* line 4757, ../../_dev/css/custom/custom.scss */
.contact-link .info_box.email:before {
  content: "\f384";
}

/* end module contact */
/* module social */
/* line 4767, ../../_dev/css/custom/custom.scss */
#header .social_follow {
  float: right;
  width: auto;
  padding: 0;
}
/* line 4771, ../../_dev/css/custom/custom.scss */
#header .social_follow li {
  display: inline-block;
  background-image: none !important;
  padding: 0 10px;
  margin: 0;
}
/* line 4776, ../../_dev/css/custom/custom.scss */
#header .social_follow li:last-child {
  padding-right: 0;
}
/* line 4779, ../../_dev/css/custom/custom.scss */
#header .social_follow li a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: white;
  background: transparent;
  font-size: 0;
  line-height: 13px;
  width: auto;
  height: auto;
  padding: 0;
  z-index: 1;
  border: 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 4796, ../../_dev/css/custom/custom.scss */
#header .social_follow li a:before {
  padding: 0 !important;
  font-size: 12px;
  display: inline-block;
  font-family: "FontAwesome";
  font-weight: normal;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* line 4806, ../../_dev/css/custom/custom.scss */
#header .social_follow li a:hover {
  color: #d8473a;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 4815, ../../_dev/css/custom/custom.scss */
#header .social_follow li.facebook a:before {
  content: "\f09a";
}
/* line 4822, ../../_dev/css/custom/custom.scss */
#header .social_follow li.twitter a:before {
  content: "\f099";
}
/* line 4829, ../../_dev/css/custom/custom.scss */
#header .social_follow li.rss a:before {
  content: "\f09e";
}
/* line 4836, ../../_dev/css/custom/custom.scss */
#header .social_follow li.youtube a:before {
  content: "\f167";
}
/* line 4843, ../../_dev/css/custom/custom.scss */
#header .social_follow li.googleplus a:before {
  content: "\f0d5";
}
/* line 4850, ../../_dev/css/custom/custom.scss */
#header .social_follow li.pinterest a:before {
  content: "\f0d2";
}
/* line 4857, ../../_dev/css/custom/custom.scss */
#header .social_follow li.vimeo a:before {
  content: "\f194";
}
/* line 4864, ../../_dev/css/custom/custom.scss */
#header .social_follow li.instagram a:before {
  content: "\f16d";
}
/* line 4871, ../../_dev/css/custom/custom.scss */
#header h4, #header .payment {
  display: none;
}

/* line 4875, ../../_dev/css/custom/custom.scss */
.social_follow {
  display: inline-block;
  width: 100%;
  margin-top: 20px;
}
/* line 4879, ../../_dev/css/custom/custom.scss */
.social_follow li {
  display: inline-block;
  margin: 0 10px;
  background-image: none !important;
  padding: 0;
}
/* line 4884, ../../_dev/css/custom/custom.scss */
.social_follow li a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: #a2a2a2;
  background: transparent;
  font-size: 0;
  line-height: 30px;
  border: 0;
  border-radius: 100%;
  padding: 0;
  z-index: 1;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 4900, ../../_dev/css/custom/custom.scss */
.social_follow li a:before {
  padding: 0 !important;
  font-size: 21px;
  display: inline-block;
  font-family: "FontAwesome";
  font-weight: normal;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* line 4910, ../../_dev/css/custom/custom.scss */
.social_follow li a:hover {
  color: white;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 4919, ../../_dev/css/custom/custom.scss */
.social_follow li.facebook a:before {
  content: "\f09a";
}
/* line 4926, ../../_dev/css/custom/custom.scss */
.social_follow li.twitter a:before {
  content: "\f099";
}
/* line 4933, ../../_dev/css/custom/custom.scss */
.social_follow li.rss a:before {
  content: "\f09e";
}
/* line 4940, ../../_dev/css/custom/custom.scss */
.social_follow li.youtube a:before {
  content: "\f167";
}
/* line 4947, ../../_dev/css/custom/custom.scss */
.social_follow li.googleplus a:before {
  content: "\f0d5";
}
/* line 4954, ../../_dev/css/custom/custom.scss */
.social_follow li.pinterest a:before {
  content: "\f0d2";
}
/* line 4961, ../../_dev/css/custom/custom.scss */
.social_follow li.vimeo a:before {
  content: "\f194";
}
/* line 4968, ../../_dev/css/custom/custom.scss */
.social_follow li.instagram a:before {
  content: "\f16d";
}

/* end module social */
/* module search block */
/* line 4978, ../../_dev/css/custom/custom.scss */
.block-search {
  position: relative;
  float: right;
  margin-top: 20px;
}
/* line 4982, ../../_dev/css/custom/custom.scss */
.block-search .search-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  color: #252525;
  line-height: 50px;
  text-align: center;
}
/* line 4989, ../../_dev/css/custom/custom.scss */
.block-search .search-icon:hover {
  color: #d8473a;
}
/* line 4992, ../../_dev/css/custom/custom.scss */
.block-search .search-icon:before {
  font-family: 'ionicons';
  display: inline-block;
  font-size: 32px;
  content: "\f4a4";
}

/* line 5001, ../../_dev/css/custom/custom.scss */
.search_top {
  padding: 0;
  background: white;
  border: 0;
  right: 0;
  left: auto;
  width: 530px;
}
/* line 5008, ../../_dev/css/custom/custom.scss */
.search_top form {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0;
}
/* line 5013, ../../_dev/css/custom/custom.scss */
.search_top form .text_input {
  padding: 10px 60px 10px 10px;
  height: 55px;
  width: 100%;
  z-index: 1;
  color: #999999;
  background: transparent;
  border: 1px solid #ebebeb;
  font-size: 14px;
}
/* line 44, ../../_dev/css/custom/custom.scss */
.search_top form .text_input::-moz-placeholder {
  color: #999999;
}
/* line 45, ../../_dev/css/custom/custom.scss */
.search_top form .text_input::-webkit-input-placeholder {
  color: #999999;
}
/* line 46, ../../_dev/css/custom/custom.scss */
.search_top form .text_input:-ms-input-placeholder {
  color: #999999;
}
/* line 5026, ../../_dev/css/custom/custom.scss */
.search_top form button {
  background: transparent;
  display: block;
  position: relative;
  border: none;
  color: #252525;
  width: 55px;
  text-align: center;
  line-height: 55px;
  height: 55px;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
}
/* line 5041, ../../_dev/css/custom/custom.scss */
.search_top form button:hover {
  color: #d8473a;
}
/* line 5044, ../../_dev/css/custom/custom.scss */
.search_top form button:before {
  font-family: 'ionicons';
  display: inline-block;
  font-size: 24px;
  content: "\f4a4";
}

/* line 5053, ../../_dev/css/custom/custom.scss */
.ui-corner-all {
  overflow: hidden;
  max-height: 300px;
  overflow-y: scroll;
}
/* line 5057, ../../_dev/css/custom/custom.scss */
.ui-corner-all li a {
  display: inline-block !important;
  width: 100%;
  overflow: visible;
  max-height: none;
  overflow-y: auto;
}
/* line 5063, ../../_dev/css/custom/custom.scss */
.ui-corner-all li a img {
  float: left;
  margin-right: 30px;
}
/* line 5067, ../../_dev/css/custom/custom.scss */
.ui-corner-all li a span {
  margin: 20px 0;
  display: inline-block;
  font-size: 12px;
}
/* line 5071, ../../_dev/css/custom/custom.scss */
.ui-corner-all li a span.separator {
  margin-left: 5px;
  margin-right: 5px;
}
/* line 5075, ../../_dev/css/custom/custom.scss */
.ui-corner-all li a span.product {
  font-size: 13px;
  font-style: italic;
}
/* line 5080, ../../_dev/css/custom/custom.scss */
.ui-corner-all li a .price {
  font-weight: 600;
}

@media (max-width: 991px) {
  /* line 5087, ../../_dev/css/custom/custom.scss */
  .block-search {
    float: none;
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
  }
  /* line 5092, ../../_dev/css/custom/custom.scss */
  .block-search .search-icon {
    display: none !important;
  }
  /* line 5095, ../../_dev/css/custom/custom.scss */
  .block-search .search_top {
    position: static;
    width: 100%;
    display: block !important;
  }
}
/* end module search block */
/* end module search category */
/* setting */
/* line 5107, ../../_dev/css/custom/custom.scss */
.localiz_block {
  float: right;
  position: relative;
  padding: 18px 0;
}
@media (max-width: 991px) {
  /* line 5107, ../../_dev/css/custom/custom.scss */
  .localiz_block {
    display: inline-block;
    float: none;
  }
}
/* line 5116, ../../_dev/css/custom/custom.scss */
.localiz_block:hover .expand-more, .localiz_block.open .expand-more {
  color: white;
}
/* line 5120, ../../_dev/css/custom/custom.scss */
.localiz_block .expand-more {
  font-weight: normal;
  padding: 0 15px;
  line-height: 15px;
  color: #aaaaaa;
  text-shadow: none;
  cursor: pointer;
  font-size: 14px;
  text-transform: capitalize;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
}
/* line 5132, ../../_dev/css/custom/custom.scss */
.localiz_block .dropdown-menu {
  background: #252525;
  -webkit-box-shadow: 0 1px 7px -2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 1px 7px -2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 7px -2px rgba(0, 0, 0, 0.3);
  position: absolute;
  border: 0;
  padding: 0 15px;
  text-transform: capitalize;
  top: 49px;
  left: 0;
  min-width: 150px;
  z-index: 2;
}
/* line 5145, ../../_dev/css/custom/custom.scss */
.localiz_block .dropdown-menu li:last-child .dropdown-item {
  border-bottom: 0;
}
/* line 5149, ../../_dev/css/custom/custom.scss */
.localiz_block .dropdown-item {
  line-height: 30px;
  font-size: 12px;
  padding: 5px 0;
  color: #aaaaaa;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
/* line 5156, ../../_dev/css/custom/custom.scss */
.localiz_block .dropdown-item:hover {
  color: white;
}
/* line 5160, ../../_dev/css/custom/custom.scss */
.localiz_block .current a {
  color: white;
}

@media (min-width: 992px) {
  /* line 5166, ../../_dev/css/custom/custom.scss */
  #language_selector .expand-more {
    border: 0;
  }
}

/* end setting */
/* module productcomments */
/* line 5176, ../../_dev/css/custom/custom.scss */
form#sendComment fieldset {
  padding: 10px;
  border: 1px solid #cccccc;
  background: #eeeeee;
}

/* line 5182, ../../_dev/css/custom/custom.scss */
form#sendComment h3 {
  font-size: 14px;
}

/* line 5186, ../../_dev/css/custom/custom.scss */
#new_comment_form p.text {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* line 5192, ../../_dev/css/custom/custom.scss */
#sendComment p.text label,
#sendComment p.textarea label {
  display: block;
  margin: 12px 0 4px;
  font-weight: bold;
  font-size: 12px;
}

/* line 5199, ../../_dev/css/custom/custom.scss */
#sendComment p.text input {
  padding: 0 5px;
  height: 28px;
  width: 498px;
  border: 1px solid #cccccc;
  background: url(../img/bg_input.png) repeat-x 0 0 white;
}

/* line 5207, ../../_dev/css/custom/custom.scss */
#sendComment p.textarea textarea {
  height: 80px;
  width: 508px;
  border: 1px solid #cccccc;
}

/* line 5213, ../../_dev/css/custom/custom.scss */
#sendComment p.submit {
  padding: 0;
  text-align: right;
}

/* line 5218, ../../_dev/css/custom/custom.scss */
#sendComment p.closeform {
  float: right;
  padding: 0;
  height: 12px;
  width: 12px;
  text-indent: -5000px;
  background: url(../img/icon/delete.gif) no-repeat 0 0;
}

/* line 5227, ../../_dev/css/custom/custom.scss */
.star {
  position: relative;
  top: -1px;
  float: left;
  width: 14px;
  overflow: hidden;
  font-size: 12px;
  font-weight: normal;
}

/* line 5237, ../../_dev/css/custom/custom.scss */
.star {
  display: block;
}
/* line 5239, ../../_dev/css/custom/custom.scss */
.star a {
  display: block;
  position: absolute;
  text-indent: -5000px;
}

/* line 5247, ../../_dev/css/custom/custom.scss */
div.star:after {
  content: "\f006";
  font-family: "FontAwesome";
  display: inline-block;
  color: #b6b6b6;
}

/* line 5255, ../../_dev/css/custom/custom.scss */
div.star.star_on {
  display: block;
}
/* line 5257, ../../_dev/css/custom/custom.scss */
div.star.star_on:after {
  content: "\f006";
  font-family: "FontAwesome";
  display: inline-block;
  color: #d8473a;
}

/* line 5266, ../../_dev/css/custom/custom.scss */
div.star.star_hover:after {
  content: "\f006";
  font-family: "FontAwesome";
  display: inline-block;
  color: #d8473a;
}

/* line 5274, ../../_dev/css/custom/custom.scss */
.rating {
  clear: both;
  display: block;
  margin: 2em;
  cursor: pointer;
}

/* line 5281, ../../_dev/css/custom/custom.scss */
.rating:after {
  content: ".";
  display: block;
  height: 0;
  width: 0;
  clear: both;
  visibility: hidden;
}

/* line 5290, ../../_dev/css/custom/custom.scss */
.cancel, .star {
  overflow: hidden;
  float: left;
  margin: 0 1px 0 0;
  width: 14px;
  height: 16px;
}

/* line 5298, ../../_dev/css/custom/custom.scss */
.cancel a, .star a {
  display: block;
  width: 100%;
  height: 100%;
  background-position: 0 0;
}

/* line 5305, ../../_dev/css/custom/custom.scss */
div.star_on a {
  background-position: 0 -16px;
}

/* line 5310, ../../_dev/css/custom/custom.scss */
div.star_hover a,
div.star a:hover {
  background-position: 0 -32px;
}

/* line 5314, ../../_dev/css/custom/custom.scss */
.pack_content {
  margin: 10px 0 10px 0;
}

/* line 5318, ../../_dev/css/custom/custom.scss */
.confirmation {
  margin: 0 0 10px;
  padding: 10px;
  border: 1px solid #e6db55;
  font-size: 13px;
  background: none repeat scroll 0 0 lightyellow;
}

/* line 5326, ../../_dev/css/custom/custom.scss */
#page .rte {
  background: transparent none repeat scroll 0 0;
}
/* line 5329, ../../_dev/css/custom/custom.scss */
#page .rte em {
  font-style: italic !important;
}

/* line 5334, ../../_dev/css/custom/custom.scss */
.listcomment {
  list-style-type: none;
  margin: 0 0 20px 0 !important;
}

/* line 5339, ../../_dev/css/custom/custom.scss */
.listcomment li {
  padding: 10px 0;
  border-bottom: 1px dotted #ebebeb;
  color: #666666;
}

/* line 5345, ../../_dev/css/custom/custom.scss */
.listcomment .titlecomment {
  display: block;
  font-weight: bold;
  font-size: 12px;
  color: #ebebeb;
}

/* line 5352, ../../_dev/css/custom/custom.scss */
.listcomment .txtcomment {
  display: block;
  padding: 5px 0;
  color: #ebebeb;
}

/* line 5358, ../../_dev/css/custom/custom.scss */
.header-container {
  z-index: 9;
  position: relative;
}

/* line 5363, ../../_dev/css/custom/custom.scss */
#product_comments_block_extra {
  padding: 0;
  font-weight: normal;
  line-height: 18px;
  margin: 10px 0 0 0;
}
/* line 5368, ../../_dev/css/custom/custom.scss */
#product_comments_block_extra .comments_note {
  margin-bottom: 5px;
  display: inline-block;
}
/* line 5372, ../../_dev/css/custom/custom.scss */
#product_comments_block_extra .comments_note span {
  display: none;
}
/* line 5376, ../../_dev/css/custom/custom.scss */
#product_comments_block_extra .comments_note span,
#product_comments_block_extra .star_content {
  float: left;
  color: #333333;
}
/* line 5380, ../../_dev/css/custom/custom.scss */
#product_comments_block_extra .star_content {
  margin-top: 1px;
}
/* line 5384, ../../_dev/css/custom/custom.scss */
#product_comments_block_extra div.star:after {
  content: "\f006";
  font-family: "FontAwesome";
  display: inline-block;
  color: #b6b6b6;
}
/* line 5392, ../../_dev/css/custom/custom.scss */
#product_comments_block_extra div.star_on:after {
  content: "\f006";
  font-family: "FontAwesome";
  display: inline-block;
  color: #d8473a;
}
/* line 5399, ../../_dev/css/custom/custom.scss */
#product_comments_block_extra .comments_advices {
  display: inline-block;
  vertical-align: top;
  margin: 0;
}

/* line 5407, ../../_dev/css/custom/custom.scss */
.comments_advices li {
  display: inline-block;
  line-height: 21px;
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 5407, ../../_dev/css/custom/custom.scss */
  .comments_advices li {
    display: block;
    line-height: 20px;
  }
}
/* line 5415, ../../_dev/css/custom/custom.scss */
.comments_advices a {
  text-decoration: none;
  color: #919191 !important;
  position: relative;
  margin-right: 8px;
  line-height: 21px;
  padding: 0;
  font-size: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  display: inline-block;
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 5415, ../../_dev/css/custom/custom.scss */
  .comments_advices a {
    float: none;
    line-height: 20px;
  }
}
/* line 5430, ../../_dev/css/custom/custom.scss */
.comments_advices a:before {
  display: inline-block;
  font-family: "FontAwesome";
  font-size: 15px;
  font-weight: normal;
  line-height: 1;
  margin-right: 6px;
}
/* line 5438, ../../_dev/css/custom/custom.scss */
.comments_advices a.reviews:before {
  content: "\f0e5";
}
/* line 5441, ../../_dev/css/custom/custom.scss */
.comments_advices a.open-comment-form:before {
  content: "\f040";
}
/* line 5444, ../../_dev/css/custom/custom.scss */
.comments_advices a:hover {
  color: #d8473a !important;
}
/* line 5447, ../../_dev/css/custom/custom.scss */
.comments_advices a.reviews {
  margin-right: 9px;
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 5447, ../../_dev/css/custom/custom.scss */
  .comments_advices a.reviews {
    margin-right: 0;
    padding: 0;
    border: none;
  }
}

/* pop-in add grade/advice ********************************************************************* */
/* line 5461, ../../_dev/css/custom/custom.scss */
#fancybox-wrap {
  width: 585px;
}

/* line 5464, ../../_dev/css/custom/custom.scss */
#fancybox-content {
  width: 585px;
  border-width: 0;
}

/* line 5468, ../../_dev/css/custom/custom.scss */
#new_comment_form {
  overflow: hidden;
  color: #333333;
  text-align: left;
}
/* line 5472, ../../_dev/css/custom/custom.scss */
#new_comment_form h2 {
  margin-bottom: 10px;
  border: 0;
  text-transform: capitalize;
}
/* line 5477, ../../_dev/css/custom/custom.scss */
#new_comment_form .title {
  padding: 10px;
  font-size: 13px;
  color: white;
  text-transform: uppercase;
  background: #333333;
}
/* line 5484, ../../_dev/css/custom/custom.scss */
#new_comment_form ul.grade_content {
  list-style-type: none;
  margin: 0 0 20px 0;
}
/* line 5487, ../../_dev/css/custom/custom.scss */
#new_comment_form ul.grade_content li {
  width: 50%;
}
/* line 5490, ../../_dev/css/custom/custom.scss */
#new_comment_form ul.grade_content span {
  display: inline-block;
  padding: 0 10px;
  width: 150px;
  font-weight: bold;
}
/* line 5496, ../../_dev/css/custom/custom.scss */
#new_comment_form ul.grade_content .cancel {
  margin-right: 5px;
}
/* line 5500, ../../_dev/css/custom/custom.scss */
#new_comment_form .product {
  padding: 15px;
}
/* line 5502, ../../_dev/css/custom/custom.scss */
#new_comment_form .product img {
  border: 1px solid #ebebeb;
}
/* line 5505, ../../_dev/css/custom/custom.scss */
#new_comment_form .product .product_desc {
  line-height: 18px;
  color: #6f6f6f;
}
/* line 5508, ../../_dev/css/custom/custom.scss */
#new_comment_form .product .product_desc .product_name {
  padding: 10px 0 5px;
  font-size: 13px;
  color: #000;
}
/* line 5515, ../../_dev/css/custom/custom.scss */
#new_comment_form .new_comment_form_content {
  padding: 15px;
}
/* line 5517, ../../_dev/css/custom/custom.scss */
#new_comment_form .new_comment_form_content .intro_form {
  padding-bottom: 10px;
  font-weight: bold;
  font-size: 12px;
}
/* line 5523, ../../_dev/css/custom/custom.scss */
#new_comment_form label {
  display: block;
  margin: 12px 0 4px 0;
  font-weight: bold;
  font-size: 12px;
}
/* line 5530, ../../_dev/css/custom/custom.scss */
#new_comment_form input,
#new_comment_form textarea {
  padding: 0 5px;
  height: 28px;
  width: 100%;
  border: 1px solid #ebebeb;
  background: white;
}
/* line 5537, ../../_dev/css/custom/custom.scss */
#new_comment_form textarea {
  height: 80px;
}
/* line 5540, ../../_dev/css/custom/custom.scss */
#new_comment_form .submit {
  margin-top: 20px;
  padding: 0;
  font-size: 13px;
  text-align: right;
}
/* line 5547, ../../_dev/css/custom/custom.scss */
#new_comment_form #criterions_list {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 15px;
  list-style-type: none;
}
/* line 5551, ../../_dev/css/custom/custom.scss */
#new_comment_form #criterions_list li {
  margin-bottom: 10px;
}
/* line 5554, ../../_dev/css/custom/custom.scss */
#new_comment_form #criterions_list label {
  display: inline;
  float: left;
  margin: 0 10px 0 0;
}
/* line 5559, ../../_dev/css/custom/custom.scss */
#new_comment_form #criterions_list .star_content {
  float: left;
}
/* line 5563, ../../_dev/css/custom/custom.scss */
#new_comment_form #new_comment_form_footer {
  margin-top: 20px;
  font-size: 12px;
}

/* TAB COMMENTS ******************************************************************************** */
/* line 5569, ../../_dev/css/custom/custom.scss */
#product_comments_block_tab {
  margin: 0 0 20px 0;
}
/* line 5571, ../../_dev/css/custom/custom.scss */
#product_comments_block_tab div.comment {
  margin: 0 0 14px;
  padding-top: 14px;
  border-top: 1px solid #ebebeb;
}
/* line 5575, ../../_dev/css/custom/custom.scss */
#product_comments_block_tab div.comment:first-child {
  padding: 0;
  border: none;
}
/* line 5579, ../../_dev/css/custom/custom.scss */
#product_comments_block_tab div.comment .comment_author {
  line-height: 18px;
}
/* line 5581, ../../_dev/css/custom/custom.scss */
#product_comments_block_tab div.comment .comment_author span {
  font-weight: 600;
  text-transform: capitalize;
  font-size: 14px;
  color: #6c6c6c;
}
/* line 5587, ../../_dev/css/custom/custom.scss */
#product_comments_block_tab div.comment .comment_author .star_content {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 5px;
}
/* line 5593, ../../_dev/css/custom/custom.scss */
#product_comments_block_tab div.comment .comment_details {
  overflow: hidden;
  margin-top: 20px;
}
/* line 5596, ../../_dev/css/custom/custom.scss */
#product_comments_block_tab div.comment .comment_details h4 {
  font-weight: 600;
  text-transform: capitalize;
  font-size: 14px;
  color: #6c6c6c;
}
/* line 5602, ../../_dev/css/custom/custom.scss */
#product_comments_block_tab div.comment .comment_details p {
  color: #adadad;
  font-size: 12px;
}
@media (max-width: 767px) {
  /* line 5607, ../../_dev/css/custom/custom.scss */
  #product_comments_block_tab div.comment .comment_details ul {
    list-style-type: none;
    margin: 0;
  }
  /* line 5610, ../../_dev/css/custom/custom.scss */
  #product_comments_block_tab div.comment .comment_details ul li {
    padding: 2px 0 2px;
  }
  /* line 5612, ../../_dev/css/custom/custom.scss */
  #product_comments_block_tab div.comment .comment_details ul li:before {
    font-family: "FontAwesome";
    content: "\f0da";
    color: #333333;
    margin-right: 8px;
  }
}
/* line 5624, ../../_dev/css/custom/custom.scss */
#product_comments_block_tab div.star:after {
  content: "\f006";
  font-family: "FontAwesome";
  display: inline-block;
  color: #b6b6b6;
}
/* line 5632, ../../_dev/css/custom/custom.scss */
#product_comments_block_tab div.star_on:after {
  content: "\f006";
  font-family: "FontAwesome";
  display: inline-block;
  color: #d8473a;
}
/* line 5639, ../../_dev/css/custom/custom.scss */
#product_comments_block_tab .comment_author_infos {
  clear: both;
  padding-top: 9px;
}
/* line 5642, ../../_dev/css/custom/custom.scss */
#product_comments_block_tab .comment_author_infos strong {
  display: block;
  color: #333333;
  margin-bottom: 10px;
}
/* line 5647, ../../_dev/css/custom/custom.scss */
#product_comments_block_tab .comment_author_infos em {
  color: #adadad;
}
/* line 5651, ../../_dev/css/custom/custom.scss */
#product_comments_block_tab a {
  text-decoration: none;
  font-weight: 400;
  color: white;
}
/* line 5657, ../../_dev/css/custom/custom.scss */
#product_comments_block_tab span.report_btn {
  cursor: pointer;
}
/* line 5660, ../../_dev/css/custom/custom.scss */
#product_comments_block_tab span.report_btn:hover {
  text-decoration: underline;
}

/* line 5664, ../../_dev/css/custom/custom.scss */
.fl {
  float: left;
}

/* line 5667, ../../_dev/css/custom/custom.scss */
.fr {
  float: right;
}

/* line 5670, ../../_dev/css/custom/custom.scss */
.tabs .tab-pane {
  padding: 0;
}

/* line 5673, ../../_dev/css/custom/custom.scss */
#products .comments_note, .featured-products .comments_note, .product-accessories .comments_note {
  text-align: center;
  color: #acaaa6;
  font-size: 12px;
}

/* end module productcomments */
/* module cart block */
/* line 5681, ../../_dev/css/custom/custom.scss */
#header .header-nav .blockcart {
  float: right;
  position: relative;
  margin: 0;
  padding: 0;
  background: transparent;
  height: auto;
}
@media (max-width: 991px) {
  /* line 5681, ../../_dev/css/custom/custom.scss */
  #header .header-nav .blockcart {
    float: none;
    display: inline-block;
    width: 100%;
  }
}
/* line 5693, ../../_dev/css/custom/custom.scss */
#header .header-nav .blockcart .header {
  position: relative;
  display: inline-block;
}
/* line 5696, ../../_dev/css/custom/custom.scss */
#header .header-nav .blockcart .header:hover a, #header .header-nav .blockcart .header:hover a:before {
  color: white;
}
/* line 5699, ../../_dev/css/custom/custom.scss */
#header .header-nav .blockcart .header a {
  position: relative;
  display: inline-block;
  color: white;
  background: #d8473a;
  font-size: 15px;
  line-height: 50px;
  padding: 0 25px;
  text-transform: capitalize;
}
/* line 5708, ../../_dev/css/custom/custom.scss */
#header .header-nav .blockcart .header a:before {
  font-family: 'ionicons';
  display: inline-block;
  font-size: 21px;
  content: "\f110";
  vertical-align: -2px;
  margin-right: 7px;
}
/* line 5721, ../../_dev/css/custom/custom.scss */
#header .header-nav .blockcart .body {
  margin: 0;
  padding: 0 20px;
  background: white;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
  width: 320px;
  left: auto;
  right: 0;
  border: 0;
}
@media (max-width: 479px) {
  /* line 5721, ../../_dev/css/custom/custom.scss */
  #header .header-nav .blockcart .body {
    width: 270px;
  }
}
/* line 5735, ../../_dev/css/custom/custom.scss */
#header .header-nav .blockcart .body ul li {
  padding: 20px 0;
  border-bottom: 1px solid #ebebeb;
  overflow: hidden;
}
/* line 5739, ../../_dev/css/custom/custom.scss */
#header .header-nav .blockcart .body ul li .img_content {
  float: left;
  margin: 0 20px 0 0;
  position: relative;
}
/* line 5743, ../../_dev/css/custom/custom.scss */
#header .header-nav .blockcart .body ul li .img_content .product-quantity {
  position: absolute;
  top: 5px;
  left: 5px;
  min-width: 25px;
  line-height: 23px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  padding: 2px 0 0;
  text-align: center;
  background: #d8473a;
  color: white;
  font-size: 12px;
}
/* line 5759, ../../_dev/css/custom/custom.scss */
#header .header-nav .blockcart .body ul li .right_block {
  overflow: hidden;
  position: relative;
  padding: 0 15px 0 0;
}
/* line 5763, ../../_dev/css/custom/custom.scss */
#header .header-nav .blockcart .body ul li .right_block .product-name {
  display: block;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #222;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 20px;
}
/* line 5774, ../../_dev/css/custom/custom.scss */
#header .header-nav .blockcart .body ul li .right_block .product-price {
  display: block;
  margin: 10px 0 0;
  color: #d8473a;
}
/* line 5779, ../../_dev/css/custom/custom.scss */
#header .header-nav .blockcart .body ul li .right_block .remove-from-cart {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}
/* line 5786, ../../_dev/css/custom/custom.scss */
#header .header-nav .blockcart .body ul li .right_block .attributes_content {
  display: block;
  font-size: 12px;
  color: #666;
  margin: 5px 0 0;
}
/* line 5792, ../../_dev/css/custom/custom.scss */
#header .header-nav .blockcart .body ul li .right_block strong {
  font-weight: 400;
}
/* line 5797, ../../_dev/css/custom/custom.scss */
#header .header-nav .blockcart .body .price_content {
  overflow: hidden;
  padding: 20px 0;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 20px;
}
/* line 5802, ../../_dev/css/custom/custom.scss */
#header .header-nav .blockcart .body .price_content .price_inline {
  overflow: hidden;
  line-height: 25px;
}
/* line 5805, ../../_dev/css/custom/custom.scss */
#header .header-nav .blockcart .body .price_content .price_inline .label {
  float: left;
  font-weight: 500;
  color: #3e3d43;
  font-size: 14px;
}
/* line 5811, ../../_dev/css/custom/custom.scss */
#header .header-nav .blockcart .body .price_content .price_inline .value {
  float: right;
  font-weight: 500;
  color: #3e3d43;
  font-size: 14px;
}
/* line 5819, ../../_dev/css/custom/custom.scss */
#header .header-nav .blockcart .body .checkout {
  margin-bottom: 20px;
}
/* line 5821, ../../_dev/css/custom/custom.scss */
#header .header-nav .blockcart .body .checkout a {
  display: block;
  color: white;
}

@media (min-width: 992px) {
  /* line 5829, ../../_dev/css/custom/custom.scss */
  .blockcart .body ul {
    max-height: 285px;
    overflow-y: scroll;
  }
}
/* line 5838, ../../_dev/css/custom/custom.scss */
.blockcart .body ul::-webkit-scrollbar-track {
  background-color: #fff;
}

/* line 5843, ../../_dev/css/custom/custom.scss */
.blockcart .body ul::-webkit-scrollbar {
  width: 4px;
  background-color: #fff;
}

/* line 5849, ../../_dev/css/custom/custom.scss */
.blockcart .body ul::-webkit-scrollbar-thumb {
  background-color: rgba(46, 46, 46, 0.85);
  border-radius: 10px;
}

/* style layer cart */
/* line 5855, ../../_dev/css/custom/custom.scss */
#blockcart-modal .modal-body {
  background: white;
  padding: 3.125rem 1.875rem;
}

/* line 5859, ../../_dev/css/custom/custom.scss */
#blockcart-modal .divide-right {
  border-right: 1px solid #ebebeb;
}
/* line 5861, ../../_dev/css/custom/custom.scss */
#blockcart-modal .divide-right p, #blockcart-modal .divide-right strong {
  color: #333333;
  font-size: 14px;
  font-weight: 600;
}

/* line 5868, ../../_dev/css/custom/custom.scss */
#blockcart-modal .cart-content p, #blockcart-modal .cart-content strong {
  color: #333333;
  font-size: 14px;
}
/* line 5872, ../../_dev/css/custom/custom.scss */
#blockcart-modal .cart-content strong {
  font-weight: 600;
}

/* line 5876, ../../_dev/css/custom/custom.scss */
#blockcart-modal .product-name {
  font-size: 16px;
  margin-bottom: 20px;
}

/* end style layer cart */
/* line 5881, ../../_dev/css/custom/custom.scss */
#blockcart-modal button.close {
  color: white;
  opacity: 1;
}

/* line 5885, ../../_dev/css/custom/custom.scss */
#blockcart-modal .cart-content .btn {
  margin-top: 20px;
}

/* end module cart block */
/* module slideshow */
/* line 5892, ../../_dev/css/custom/custom.scss */
.nivo-html-caption {
  display: none;
}

@-webkit-keyframes myfirst {
  /* line 5896, ../../_dev/css/custom/custom.scss */
  from {
    width: 0;
  }

  /* line 5897, ../../_dev/css/custom/custom.scss */
  to {
    width: 100%;
  }
}

@keyframes myfirst {
  /* line 5900, ../../_dev/css/custom/custom.scss */
  from {
    width: 0;
  }

  /* line 5901, ../../_dev/css/custom/custom.scss */
  to {
    width: 100%;
  }
}

/* line 5903, ../../_dev/css/custom/custom.scss */
.timethai.pos_hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

/* line 5909, ../../_dev/css/custom/custom.scss */
.slideshow_container .pos-slideshow {
  position: relative;
  margin-bottom: 30px;
}
/* line 5912, ../../_dev/css/custom/custom.scss */
.slideshow_container .pos-slideshow:hover .nivo-directionNav a {
  opacity: 1;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

/* line 5917, ../../_dev/css/custom/custom.scss */
.slideshow_container .pos-slideshow .nivo-directionNav a {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100%;
  color: white;
  background: #252525;
  text-align: center;
  font-size: 16px;
  position: absolute;
  z-index: 8;
  cursor: pointer;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
@media (max-width: 1199px) {
  /* line 5917, ../../_dev/css/custom/custom.scss */
  .slideshow_container .pos-slideshow .nivo-directionNav a {
    width: 3.90625vw;
    height: 3.90625vw;
    line-height: 3.90625vw;
    font-size: 1.17188vw;
  }
}
@media (max-width: 767px) {
  /* line 5917, ../../_dev/css/custom/custom.scss */
  .slideshow_container .pos-slideshow .nivo-directionNav a {
    display: none;
  }
}
/* line 5948, ../../_dev/css/custom/custom.scss */
.slideshow_container .pos-slideshow .nivo-directionNav a:hover {
  background: #d8473a;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 5953, ../../_dev/css/custom/custom.scss */
.slideshow_container .pos-slideshow .nivo-directionNav a.nivo-prevNav {
  left: 20px;
}
@media (max-width: 1199px) {
  /* line 5953, ../../_dev/css/custom/custom.scss */
  .slideshow_container .pos-slideshow .nivo-directionNav a.nivo-prevNav {
    left: 1.95313vw;
  }
}
/* line 5959, ../../_dev/css/custom/custom.scss */
.slideshow_container .pos-slideshow .nivo-directionNav a.nivo-nextNav {
  right: 20px;
}
@media (max-width: 1199px) {
  /* line 5959, ../../_dev/css/custom/custom.scss */
  .slideshow_container .pos-slideshow .nivo-directionNav a.nivo-nextNav {
    right: 1.95313vw;
  }
}

/* line 5966, ../../_dev/css/custom/custom.scss */
.slideshow_container .pos-slideshow .nivo-controlNav {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 30px;
  z-index: 8;
}
@media (max-width: 1199px) {
  /* line 5966, ../../_dev/css/custom/custom.scss */
  .slideshow_container .pos-slideshow .nivo-controlNav {
    bottom: 2.92969vw;
  }
}
@media (max-width: 767px) {
  /* line 5966, ../../_dev/css/custom/custom.scss */
  .slideshow_container .pos-slideshow .nivo-controlNav {
    display: none;
  }
}
/* line 5980, ../../_dev/css/custom/custom.scss */
.slideshow_container .pos-slideshow .nivo-controlNav a {
  display: inline-block;
  height: 4px;
  width: 18px;
  font-size: 0;
  margin: 0 4px;
  text-align: center;
  cursor: pointer;
  position: relative;
  z-index: 8;
  background: #252525;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 5993, ../../_dev/css/custom/custom.scss */
.slideshow_container .pos-slideshow .nivo-controlNav a.active, .slideshow_container .pos-slideshow .nivo-controlNav a:hover {
  background: #d8473a;
}

/* line 5999, ../../_dev/css/custom/custom.scss */
.banner7-des {
  position: absolute;
  left: 70px;
  top: 50%;
  right: 0;
  z-index: 8;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1;
  text-align: left;
  direction: ltr !important;
}
@media (max-width: 767px) {
  /* line 5999, ../../_dev/css/custom/custom.scss */
  .banner7-des {
    left: 10px;
  }
}
/* line 6016, ../../_dev/css/custom/custom.scss */
.banner7-des p {
  margin: 0;
}

/* line 6021, ../../_dev/css/custom/custom.scss */
.desc1 .title1 {
  font-size: 36px;
  color: white;
  font-weight: 400;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
}
/* line 6032, ../../_dev/css/custom/custom.scss */
.desc1 .title2 {
  position: relative;
  margin: 0 0 50px 0;
  font-size: 60px;
  font-weight: 600;
  max-width: 50%;
  color: white;
  line-height: 1;
  text-transform: uppercase;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
}
/* line 6047, ../../_dev/css/custom/custom.scss */
.desc1 .readmore {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
}
/* line 6052, ../../_dev/css/custom/custom.scss */
.desc1 .readmore a {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  position: relative;
  font-size: 20px;
  color: white;
  line-height: 25px;
  padding: 15px 25px;
  background: #252525;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
}
/* line 6063, ../../_dev/css/custom/custom.scss */
.desc1 .readmore a:hover {
  background: #d8473a;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

/* line 6071, ../../_dev/css/custom/custom.scss */
.desc2 .title1 {
  font-size: 36px;
  color: white;
  font-weight: 400;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
}
/* line 6082, ../../_dev/css/custom/custom.scss */
.desc2 .title2 {
  position: relative;
  margin: 0 0 50px 0;
  font-size: 60px;
  font-weight: 600;
  max-width: 50%;
  color: white;
  text-transform: uppercase;
  line-height: 1;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
}
/* line 6097, ../../_dev/css/custom/custom.scss */
.desc2 .readmore {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
}
/* line 6102, ../../_dev/css/custom/custom.scss */
.desc2 .readmore a {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  position: relative;
  font-size: 20px;
  color: white;
  line-height: 25px;
  padding: 15px 25px;
  background: #252525;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
}
/* line 6113, ../../_dev/css/custom/custom.scss */
.desc2 .readmore a:hover {
  background: #d8473a;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

@media (max-width: 1199px) {
  /* line 6124, ../../_dev/css/custom/custom.scss */
  .desc1 .title1, .desc2 .title1 {
    font-size: 3.51563vw;
    margin: 0 0 0.97656vw 0;
  }
  /* line 6128, ../../_dev/css/custom/custom.scss */
  .desc1 .title2, .desc2 .title2 {
    font-size: 4.88281vw;
    margin: 0 0 2.92969vw 0;
  }
  /* line 6133, ../../_dev/css/custom/custom.scss */
  .desc1 .readmore a, .desc2 .readmore a {
    font-size: 1.36719vw;
    line-height: 2.44141vw;
    padding: 0.97656vw 1.95313vw;
  }
}
@media (max-width: 767px) {
  /* line 6144, ../../_dev/css/custom/custom.scss */
  .desc1 .title1, .desc2 .title1 {
    font-size: 2.60756vw;
    margin-bottom: 1.30378vw;
  }
  /* line 6149, ../../_dev/css/custom/custom.scss */
  .desc1 .title2, .desc2 .title2 {
    font-size: 4.69361vw;
    margin: 0 0 2.60756vw 0;
    max-width: 70%;
  }
  /* line 6156, ../../_dev/css/custom/custom.scss */
  .desc1 .readmore a, .desc2 .readmore a {
    font-size: 1.69492vw;
    line-height: 3.91134vw;
    padding: 0.65189vw 1.95567vw;
  }
}
@media (max-width: 480px) {
  /* line 6168, ../../_dev/css/custom/custom.scss */
  .desc1 .title1, .desc2 .title1 {
    font-size: 3.75vw;
    margin: 0 0 1.04167vw 0;
  }
  /* line 6173, ../../_dev/css/custom/custom.scss */
  .desc1 .title2, .desc2 .title2 {
    font-size: 5.41667vw;
    margin: 0 0 2.08333vw 0;
    line-height: 5.20833vw;
  }
  /* line 6180, ../../_dev/css/custom/custom.scss */
  .desc1 .readmore a, .desc2 .readmore a {
    font-size: 2.91667vw;
    line-height: 6.25vw;
    padding: 1.04167vw 3.125vw;
  }
}
/* end responsive slideshow */
/* end module slideshow */
/* module tabcateslider */
@media (max-width: 767px) {
  /* line 6193, ../../_dev/css/custom/custom.scss */
  .tab-category-container-slider {
    margin-bottom: 0;
  }
}
/* line 6197, ../../_dev/css/custom/custom.scss */
.tab-category-container-slider .tab_cates {
  float: right;
  margin-right: 70px;
}
/* line 6200, ../../_dev/css/custom/custom.scss */
.tab-category-container-slider .tab_cates li {
  position: relative;
  display: inline-block;
  line-height: 24px;
  padding: 0 25px;
  text-transform: uppercase;
  cursor: pointer;
  color: #707070;
  font-size: 20px;
  font-weight: 600;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 6212, ../../_dev/css/custom/custom.scss */
.tab-category-container-slider .tab_cates li:first-child {
  padding-left: 0;
}
/* line 6216, ../../_dev/css/custom/custom.scss */
.tab-category-container-slider .tab_cates li.active, .tab-category-container-slider .tab_cates li:hover {
  color: #252525;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
@media (max-width: 991px) {
  /* line 6197, ../../_dev/css/custom/custom.scss */
  .tab-category-container-slider .tab_cates {
    float: none;
    padding: 20px 0 0 0;
  }
  /* line 6226, ../../_dev/css/custom/custom.scss */
  .tab-category-container-slider .tab_cates li {
    margin-bottom: 10px;
  }
}

/* end module tabcateslider */
/* module newletter */
@media (max-width: 767px) {
  /* line 6237, ../../_dev/css/custom/custom.scss */
  .ft_newsletter {
    margin-bottom: 30px;
  }
}
/* line 6241, ../../_dev/css/custom/custom.scss */
.ft_newsletter .title_newsletter h2 {
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
/* line 6249, ../../_dev/css/custom/custom.scss */
.ft_newsletter .desc {
  color: #a2a2a2;
  font-size: 15px;
  line-height: 25px;
  display: none;
}
/* line 6255, ../../_dev/css/custom/custom.scss */
.ft_newsletter form {
  position: relative;
  overflow: hidden;
}
/* line 6258, ../../_dev/css/custom/custom.scss */
.ft_newsletter form .input_txt {
  display: inline-block;
  border: 1px solid #ebebeb;
  background: white;
  padding: 10px 140px 10px 10px;
  line-height: 30px;
  height: 50px;
  border-radius: 0;
  color: #a2a2a2;
  font-size: 15px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  /* line 6258, ../../_dev/css/custom/custom.scss */
  .ft_newsletter form .input_txt {
    margin-bottom: 10px;
    margin-right: 0;
  }
}
/* line 6274, ../../_dev/css/custom/custom.scss */
.ft_newsletter form .btn {
  height: 50px;
  line-height: 36px;
  font-size: 15px;
  text-align: center;
  position: absolute;
  background: #2e2e2e;
  color: white;
  top: 0;
  right: 0;
  font-weight: 700;
  padding: 0 25px;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: -3px;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 6290, ../../_dev/css/custom/custom.scss */
.ft_newsletter form .btn:hover {
  background: #d8473a;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 6295, ../../_dev/css/custom/custom.scss */
.ft_newsletter form .condition, .ft_newsletter form .alert {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 24px;
  color: #bcbcbc;
  background: none;
  border: 0;
  padding: 0;
}
/* line 6303, ../../_dev/css/custom/custom.scss */
.ft_newsletter form .condition.alert-danger, .ft_newsletter form .alert.alert-danger {
  color: #d8473a;
}
/* line 6306, ../../_dev/css/custom/custom.scss */
.ft_newsletter form .condition.alert-success, .ft_newsletter form .alert.alert-success {
  color: #d8473a;
}

/* end module newletter */
/* module logo */
/* line 6315, ../../_dev/css/custom/custom.scss */
.pos_logo {
  position: relative;
}
/* line 6317, ../../_dev/css/custom/custom.scss */
.pos_logo .owl-carousel .owl-wrapper .owl-item {
  padding: 0 15px;
}
/* line 6320, ../../_dev/css/custom/custom.scss */
.pos_logo .pos_content {
  border-top: 1px solid #ebebeb;
}
/* line 6323, ../../_dev/css/custom/custom.scss */
.pos_logo .pos_title {
  display: none;
}
/* line 6326, ../../_dev/css/custom/custom.scss */
.pos_logo .item_logo {
  padding: 40px 0;
}
/* line 6329, ../../_dev/css/custom/custom.scss */
.pos_logo img {
  margin: 0 auto;
  -moz-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 6333, ../../_dev/css/custom/custom.scss */
.pos_logo img:hover {
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 6338, ../../_dev/css/custom/custom.scss */
.pos_logo .owl-buttons > div {
  margin: 0;
}

/* end module logo */
/*intagram_home  */
/* line 6348, ../../_dev/css/custom/custom.scss */
#instagram_block .item-instagram > a {
  display: block;
  position: relative;
}
/* line 6352, ../../_dev/css/custom/custom.scss */
#instagram_block .item-instagram > a:hover:before {
  -moz-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
/* line 6356, ../../_dev/css/custom/custom.scss */
#instagram_block .item-instagram > a:hover:after {
  opacity: 1;
  -webkit-animation: zoomIn 500ms ease-in-out;
  -moz-animation: zoomIn 500ms ease-in-out;
  -ms-animation: zoomIn 500ms ease-in-out;
  animation: zoomIn 500ms ease-in-out;
}
/* line 6364, ../../_dev/css/custom/custom.scss */
#instagram_block .item-instagram > a:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  -moz-transform: scale3d(1.2, 1.2, 1.2);
  -webkit-transform: scale3d(1.2, 1.2, 1.2);
  -o-transform: scale3d(1.2, 1.2, 1.2);
  -ms-transform: scale3d(1.2, 1.2, 1.2);
  transform: scale3d(1.2, 1.2, 1.2);
  -webkit-transition: all 500ms linear;
  -moz-transition: all 500ms linear;
  -ms-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
  opacity: 0;
}
/* line 6376, ../../_dev/css/custom/custom.scss */
#instagram_block .item-instagram > a:after {
  content: "";
  background: url(../img/line_small.png) no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
  opacity: 0;
  -webkit-transition: all 500ms linear;
  -moz-transition: all 500ms linear;
  -ms-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
}
/* line 6392, ../../_dev/css/custom/custom.scss */
#instagram_block .our_instagram {
  display: inline-block;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 767px) {
  /* line 6392, ../../_dev/css/custom/custom.scss */
  #instagram_block .our_instagram {
    margin-bottom: 20px;
  }
}
/* line 6399, ../../_dev/css/custom/custom.scss */
#instagram_block .our_instagram a {
  font-size: 12px;
  color: #8d8d8d;
  font-style: italic;
  display: inline-block;
}
/* line 6404, ../../_dev/css/custom/custom.scss */
#instagram_block .our_instagram a:hover {
  color: #d8473a;
}
/* line 6406, ../../_dev/css/custom/custom.scss */
#instagram_block .our_instagram a:hover span {
  text-decoration: underline;
}
/* line 6410, ../../_dev/css/custom/custom.scss */
#instagram_block .our_instagram a:after {
  content: "\f101";
  font-family: "FontAwesome";
  font-size: 13px;
  margin: 0 10px;
  color: #d8473a;
  display: inline-block;
  font-style: normal;
  text-decoration: none;
  vertical-align: middle;
}

/* line 6425, ../../_dev/css/custom/custom.scss */
#instagram_block_home {
  padding: 60px 0;
  background: url(../img/bg_intagram.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  margin: 0;
}
@media (min-width: 1920px) {
  /* line 6425, ../../_dev/css/custom/custom.scss */
  #instagram_block_home {
    padding: 120px 0;
  }
}
/* line 6436, ../../_dev/css/custom/custom.scss */
#instagram_block_home .row {
  margin: 0;
}
/* line 6440, ../../_dev/css/custom/custom.scss */
#instagram_block_home .owl-carousel .owl-item {
  padding: 0;
}
/* line 6443, ../../_dev/css/custom/custom.scss */
#instagram_block_home .title_instagram {
  margin-bottom: 60px;
}
/* line 6445, ../../_dev/css/custom/custom.scss */
#instagram_block_home .title_instagram h2 {
  font-size: 48px;
  font-weight: 600;
  text-transform: capitalize;
  color: white;
  margin-bottom: 30px;
  direction: ltr;
}
@media (max-width: 767px) {
  /* line 6445, ../../_dev/css/custom/custom.scss */
  #instagram_block_home .title_instagram h2 {
    font-size: 30px;
  }
}
/* line 6455, ../../_dev/css/custom/custom.scss */
#instagram_block_home .title_instagram h2 span {
  color: #d8473a;
}
/* line 6460, ../../_dev/css/custom/custom.scss */
#instagram_block_home .title_instagram .des_intagram span {
  color: white;
  opacity: 0.5;
  font-size: 14px;
  letter-spacing: 0.2em;
  margin: 0;
}
@media (max-width: 767px) {
  /* line 6460, ../../_dev/css/custom/custom.scss */
  #instagram_block_home .title_instagram .des_intagram span {
    font-size: 12px;
  }
}
/* line 6470, ../../_dev/css/custom/custom.scss */
#instagram_block_home .title_instagram .des_intagram a {
  float: right;
  font-size: 12px;
  color: white;
  display: inline-block;
  text-transform: uppercase;
}
@media (max-width: 479px) {
  /* line 6470, ../../_dev/css/custom/custom.scss */
  #instagram_block_home .title_instagram .des_intagram a {
    float: left;
    margin-top: 5px;
  }
}
/* line 6480, ../../_dev/css/custom/custom.scss */
#instagram_block_home .title_instagram .des_intagram a:hover {
  color: #d8473a;
}
/* line 6482, ../../_dev/css/custom/custom.scss */
#instagram_block_home .title_instagram .des_intagram a:hover span {
  text-decoration: underline;
}
/* line 6486, ../../_dev/css/custom/custom.scss */
#instagram_block_home .title_instagram .des_intagram a:after {
  content: "\f101";
  font-family: "FontAwesome";
  font-size: 13px;
  margin: 0 10px;
  display: inline-block;
  font-style: normal;
  text-decoration: none;
  vertical-align: middle;
}
/* line 6499, ../../_dev/css/custom/custom.scss */
#instagram_block_home .text-bottom {
  text-align: center;
  margin-top: 60px;
}
/* line 6502, ../../_dev/css/custom/custom.scss */
#instagram_block_home .text-bottom span {
  color: #adadad;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  padding: 0 20px;
  position: relative;
}
/* line 6510, ../../_dev/css/custom/custom.scss */
#instagram_block_home .text-bottom span:before {
  content: "";
  width: 5000%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 50%;
  right: 100%;
}
/* line 6518, ../../_dev/css/custom/custom.scss */
#instagram_block_home .text-bottom span:after {
  content: "";
  width: 5000%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 50%;
  left: 100%;
}
/* line 6529, ../../_dev/css/custom/custom.scss */
#instagram_block_home .item-instagram a {
  display: block;
  position: relative;
}
/* line 6533, ../../_dev/css/custom/custom.scss */
#instagram_block_home .item-instagram a:hover:before {
  -moz-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
/* line 6537, ../../_dev/css/custom/custom.scss */
#instagram_block_home .item-instagram a:hover:after {
  opacity: 1;
  -webkit-animation: zoomIn 500ms ease-in-out;
  -moz-animation: zoomIn 500ms ease-in-out;
  -ms-animation: zoomIn 500ms ease-in-out;
  animation: zoomIn 500ms ease-in-out;
}
/* line 6545, ../../_dev/css/custom/custom.scss */
#instagram_block_home .item-instagram a:before {
  content: "";
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  bottom: 25px;
  background-color: rgba(0, 0, 0, 0.5);
  -moz-transform: scale3d(1.2, 1.2, 1.2);
  -webkit-transform: scale3d(1.2, 1.2, 1.2);
  -o-transform: scale3d(1.2, 1.2, 1.2);
  -ms-transform: scale3d(1.2, 1.2, 1.2);
  transform: scale3d(1.2, 1.2, 1.2);
  -webkit-transition: all 500ms linear;
  -moz-transition: all 500ms linear;
  -ms-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
  opacity: 0;
}
/* line 6557, ../../_dev/css/custom/custom.scss */
#instagram_block_home .item-instagram a:after {
  content: "";
  background: url(../img/line.png) no-repeat;
  width: 68px;
  height: 68px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -34px;
  margin-left: -34px;
  opacity: 0;
  -webkit-transition: all 500ms linear;
  -moz-transition: all 500ms linear;
  -ms-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
}

/*end intagram _home  */
/* static block */
@-webkit-keyframes passing-reverse {
  /* line 6578, ../../_dev/css/custom/custom.scss */
  0% {
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
    opacity: 0;
  }

  /* line 6583, ../../_dev/css/custom/custom.scss */
  50% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }

  /* line 6588, ../../_dev/css/custom/custom.scss */
  100% {
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
    opacity: 0;
  }
}

@keyframes passing-reverse {
  /* line 6595, ../../_dev/css/custom/custom.scss */
  0% {
    -webkit-transform: translateX(-20%);
    -ms-transform: translateX(-20%);
    transform: translateX(-20%);
    opacity: 0;
  }

  /* line 6601, ../../_dev/css/custom/custom.scss */
  50% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }

  /* line 6607, ../../_dev/css/custom/custom.scss */
  100% {
    -webkit-transform: translateX(20%);
    -ms-transform: translateX(20%);
    transform: translateX(20%);
    opacity: 0;
  }
}

@-webkit-keyframes spin {
  /* line 6615, ../../_dev/css/custom/custom.scss */
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  /* line 6619, ../../_dev/css/custom/custom.scss */
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes spin {
  /* line 6625, ../../_dev/css/custom/custom.scss */
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  /* line 6630, ../../_dev/css/custom/custom.scss */
  100% {
    -webkit-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

/* line 6636, ../../_dev/css/custom/custom.scss */
.home-banner {
  position: relative;
  text-align: center;
  display: inline-block;
  width: 100%;
}
@media (min-width: 768px) {
  /* line 6636, ../../_dev/css/custom/custom.scss */
  .home-banner {
    margin-bottom: 50px;
  }
  /* line 6643, ../../_dev/css/custom/custom.scss */
  .home-banner .col1 {
    width: 27.83%;
  }
  /* line 6646, ../../_dev/css/custom/custom.scss */
  .home-banner .col2 {
    width: 31.83%;
  }
  /* line 6649, ../../_dev/css/custom/custom.scss */
  .home-banner .col3 {
    width: 40.34%;
  }
}

/* line 6658, ../../_dev/css/custom/custom.scss */
.banner-box {
  overflow: hidden;
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 30px;
}
/* line 6667, ../../_dev/css/custom/custom.scss */
.banner-box:hover .banner-content .info .txt {
  -webkit-animation: blurFadeIn  600ms linear;
  -moz-animation: blurFadeIn  600ms linear;
  -ms-animation: blurFadeIn  600ms linear;
  animation: blurFadeIn  600ms linear;
}
/* line 6674, ../../_dev/css/custom/custom.scss */
.banner-box:hover .banner-content .info a {
  -webkit-animation: blurFadeIn  900ms linear;
  -moz-animation: blurFadeIn  900ms linear;
  -ms-animation: blurFadeIn  900ms linear;
  animation: blurFadeIn  900ms linear;
}
/* line 6682, ../../_dev/css/custom/custom.scss */
.banner-box:hover img {
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 6689, ../../_dev/css/custom/custom.scss */
.banner-box img {
  width: 100%;
  -moz-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 6696, ../../_dev/css/custom/custom.scss */
.banner-box .banner-content .info {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  text-transform: uppercase;
  moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
/* line 6707, ../../_dev/css/custom/custom.scss */
.banner-box .banner-content .info .txt {
  font-size: 40px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  padding: 0 30px;
}
@media (min-width: 1920px) {
  /* line 6707, ../../_dev/css/custom/custom.scss */
  .banner-box .banner-content .info .txt {
    font-size: 60px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  /* line 6707, ../../_dev/css/custom/custom.scss */
  .banner-box .banner-content .info .txt {
    font-size: 24px;
  }
}
@media (max-width: 543px) {
  /* line 6707, ../../_dev/css/custom/custom.scss */
  .banner-box .banner-content .info .txt {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
/* line 6724, ../../_dev/css/custom/custom.scss */
.banner-box .banner-content .info a {
  font-size: 18px;
  font-weight: 700;
  color: white;
  line-height: 30px;
  height: 30px;
  border-bottom: 1px solid white;
  display: inline-block;
}
@media (min-width: 1920px) {
  /* line 6724, ../../_dev/css/custom/custom.scss */
  .banner-box .banner-content .info a {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  /* line 6724, ../../_dev/css/custom/custom.scss */
  .banner-box .banner-content .info a {
    font-size: 16px;
  }
}
@media (max-width: 543px) {
  /* line 6724, ../../_dev/css/custom/custom.scss */
  .banner-box .banner-content .info a {
    font-size: 14px;
  }
}
/* line 6742, ../../_dev/css/custom/custom.scss */
.banner-box .banner-content .info a:hover {
  color: #d8473a;
  border-color: #d8473a;
}

/* line 6750, ../../_dev/css/custom/custom.scss */
.position2 {
  padding: 90px 0;
  background: #f8f8f8;
}

/* line 6754, ../../_dev/css/custom/custom.scss */
.title_txt {
  font-size: 26px;
  color: #252525;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Ek Mukta', sans-serif;
  margin-bottom: 30px;
}
@media (min-width: 1920px) {
  /* line 6754, ../../_dev/css/custom/custom.scss */
  .title_txt {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  /* line 6765, ../../_dev/css/custom/custom.scss */
  .about-us {
    margin-bottom: 50px;
  }
}
/* line 6770, ../../_dev/css/custom/custom.scss */
.about-us .content-static h2 {
  font-size: 24px;
  color: #252525;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 20px;
}
/* line 6778, ../../_dev/css/custom/custom.scss */
.about-us .content-static h3 {
  font-size: 20px;
  color: #252525;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 25px;
}
/* line 6786, ../../_dev/css/custom/custom.scss */
.about-us .content-static p {
  font-size: 16px;
  color: #555555;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 30px;
}
/* line 6793, ../../_dev/css/custom/custom.scss */
.about-us .content-static a {
  font-size: 16px;
  background: #252525;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 45px;
  padding: 0 20px;
  color: white;
  display: inline-block;
}
/* line 6802, ../../_dev/css/custom/custom.scss */
.about-us .content-static a:hover {
  background: #d8473a;
}

/* line 6808, ../../_dev/css/custom/custom.scss */
.cms_custom {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
  border-top: 1px solid #ebebeb;
}
/* line 6814, ../../_dev/css/custom/custom.scss */
.cms_custom .col {
  border-left: 1px solid #ebebeb;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  /* line 6814, ../../_dev/css/custom/custom.scss */
  .cms_custom .col {
    border: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
/* line 6824, ../../_dev/css/custom/custom.scss */
.cms_custom .col:first-child {
  border: 0;
}
/* line 6828, ../../_dev/css/custom/custom.scss */
.cms_custom .icon_cms {
  display: inline-block;
  margin-bottom: 30px;
}
/* line 6831, ../../_dev/css/custom/custom.scss */
.cms_custom .icon_cms:before {
  display: inline-block;
  font-family: 'ionicons';
  font-size: 48px;
  color: #d8473a;
}
/* line 6837, ../../_dev/css/custom/custom.scss */
.cms_custom .icon_cms.support_icon:before {
  content: "\f27c";
}
/* line 6840, ../../_dev/css/custom/custom.scss */
.cms_custom .icon_cms.fully_icon:before {
  content: "\f43d";
}
/* line 6843, ../../_dev/css/custom/custom.scss */
.cms_custom .icon_cms.admin_icon:before {
  content: "\f4a6";
}
/* line 6847, ../../_dev/css/custom/custom.scss */
.cms_custom .cms_info {
  padding: 0 20px;
}
/* line 6849, ../../_dev/css/custom/custom.scss */
.cms_custom .cms_info h2 {
  font-size: 18px;
  color: #252525;
  text-transform: uppercase;
  line-height: 30px;
}
/* line 6855, ../../_dev/css/custom/custom.scss */
.cms_custom .cms_info .txt1 {
  color: #999999;
  font-size: 16px;
  line-height: 30px;
}
/* line 6860, ../../_dev/css/custom/custom.scss */
.cms_custom .cms_info .txt2 {
  color: #555555;
  font-size: 15px;
  line-height: 30px;
}

/* line 6868, ../../_dev/css/custom/custom.scss */
#footer .static-info {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 60px 0;
}
/* line 6873, ../../_dev/css/custom/custom.scss */
#footer .static-info .info {
  display: inline-block;
  width: 100%;
  color: white;
  position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 6873, ../../_dev/css/custom/custom.scss */
  #footer .static-info .info {
    text-align: center;
    padding: 15px 0;
  }
}
@media (max-width: 767px) {
  /* line 6873, ../../_dev/css/custom/custom.scss */
  #footer .static-info .info {
    margin-bottom: 30px;
  }
}
/* line 6886, ../../_dev/css/custom/custom.scss */
#footer .static-info .info .icon-static {
  float: left;
  position: relative;
  font-size: 48px;
  line-height: 1;
  padding: 0 5px;
  color: #d8473a;
  overflow: hidden;
  margin-right: 10px;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 6886, ../../_dev/css/custom/custom.scss */
  #footer .static-info .info .icon-static {
    float: none;
    margin: 0;
  }
}
/* line 6900, ../../_dev/css/custom/custom.scss */
#footer .static-info .info .icon-static:before {
  display: inline-block;
  font-family: 'ionicons';
}
/* line 6904, ../../_dev/css/custom/custom.scss */
#footer .static-info .info .icon-static.icon-shipping:before {
  content: "\f2c3";
}
/* line 6907, ../../_dev/css/custom/custom.scss */
#footer .static-info .info .icon-static.icon-support:before {
  content: "\f4b9";
}
/* line 6910, ../../_dev/css/custom/custom.scss */
#footer .static-info .info .icon-static.icon-email:before {
  content: "\f132";
}
/* line 6913, ../../_dev/css/custom/custom.scss */
#footer .static-info .info .icon-static.icon-time:before {
  content: "\f3b3";
}
/* line 6917, ../../_dev/css/custom/custom.scss */
#footer .static-info .info .static_info {
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 6917, ../../_dev/css/custom/custom.scss */
  #footer .static-info .info .static_info {
    overflow: visible;
    display: inline-block;
    width: 100%;
  }
}
/* line 6925, ../../_dev/css/custom/custom.scss */
#footer .static-info .info .static_info h4 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 25px;
}
@media (max-width: 1600px) {
  /* line 6925, ../../_dev/css/custom/custom.scss */
  #footer .static-info .info .static_info h4 {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 6925, ../../_dev/css/custom/custom.scss */
  #footer .static-info .info .static_info h4 {
    font-size: 14px;
  }
}
/* line 6937, ../../_dev/css/custom/custom.scss */
#footer .static-info .info .static_info p {
  font-size: 15px;
  text-transform: capitalize;
  line-height: 25px;
  color: #c9c9c9;
}
/* line 6946, ../../_dev/css/custom/custom.scss */
#footer .static-info .info.info1:hover .icon-static:before {
  -webkit-animation: passing-reverse 1s linear infinite;
  -moz-animation: passing-reverse 1s linear infinite;
  -ms-animation: passing-reverse 1s linear infinite;
  animation: passing-reverse 1s linear infinite;
}
/* line 6954, ../../_dev/css/custom/custom.scss */
#footer .static-info .info.info2:hover .icon-static:before {
  -webkit-animation: tada   1s linear infinite;
  -moz-animation: tada   1s linear infinite;
  -ms-animation: tada   1s linear infinite;
  animation: tada   1s linear infinite;
}
/* line 6962, ../../_dev/css/custom/custom.scss */
#footer .static-info .info.info3:hover .icon-static:before {
  -webkit-animation: tada   1s linear infinite;
  -moz-animation: tada   1s linear infinite;
  -ms-animation: tada   1s linear infinite;
  animation: tada   1s linear infinite;
}
/* line 6970, ../../_dev/css/custom/custom.scss */
#footer .static-info .info.info4:hover .icon-static:before {
  -webkit-animation: spin 1s linear infinite;
  -moz-animation: spin 1s linear infinite;
  -ms-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

/* end static block */
/* blog */
/* line 6983, ../../_dev/css/custom/custom.scss */
.home_blog_post_area {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 40px;
}
/* line 6988, ../../_dev/css/custom/custom.scss */
.home_blog_post_area .owl-carousel .owl-wrapper .owl-item {
  padding: 0 15px;
}
/* line 6992, ../../_dev/css/custom/custom.scss */
.home_blog_post_area .blog_slider .item .blog_post {
  display: inline-block;
  width: 100%;
  background: white;
}
/* line 6996, ../../_dev/css/custom/custom.scss */
.home_blog_post_area .blog_slider .item .blog_post img {
  width: 100%;
}
/* line 6999, ../../_dev/css/custom/custom.scss */
.home_blog_post_area .blog_slider .item .blog_post .blog_post_content_top {
  margin-bottom: 30px;
}
/* line 7002, ../../_dev/css/custom/custom.scss */
.home_blog_post_area .blog_slider .item .blog_post .post_title {
  display: block;
  font-size: 20px;
  color: #252525;
  font-weight: 600;
  line-height: 18px;
  position: relative;
  margin-bottom: 5px;
  text-transform: uppercase;
}
/* line 7011, ../../_dev/css/custom/custom.scss */
.home_blog_post_area .blog_slider .item .blog_post .post_title:hover {
  color: #d8473a;
}
/* line 7015, ../../_dev/css/custom/custom.scss */
.home_blog_post_area .blog_slider .item .blog_post .post_meta {
  overflow: hidden;
  margin-bottom: 20px;
}
/* line 7018, ../../_dev/css/custom/custom.scss */
.home_blog_post_area .blog_slider .item .blog_post .post_meta p {
  color: #d8473a;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  line-height: 22px;
  margin: 0 20px 0 0;
}
/* line 7025, ../../_dev/css/custom/custom.scss */
.home_blog_post_area .blog_slider .item .blog_post .post_meta p:last-child {
  margin: 0;
}
/* line 7031, ../../_dev/css/custom/custom.scss */
.home_blog_post_area .blog_slider .item .blog_post .post_description {
  line-height: 25px;
  font-size: 15px;
  color: #767676;
  margin: 0;
  display: inline-block;
  width: 100%;
  padding: 10px 0 20px 0;
}

/* line 7043, ../../_dev/css/custom/custom.scss */
.home_blog_post_area .home_blog_post .blog_post .post_thumbnail {
  margin-bottom: 30px;
  position: relative;
}

/* line 7047, ../../_dev/css/custom/custom.scss */
.home_blog_post_area .home_blog_post .blog_post .post_thumbnail .blog_mask {
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: rgba(0, 0, 0, 0.4);
}

/* line 7063, ../../_dev/css/custom/custom.scss */
.home_blog_post_area .home_blog_post .blog_post .post_thumbnail .blog_mask .blog_mask_content {
  position: absolute;
  left: 110%;
  top: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* line 7073, ../../_dev/css/custom/custom.scss */
.home_blog_post_area .home_blog_post .blog_post .post_thumbnail .blog_mask .blog_mask_content a {
  display: block;
  text-align: center;
  font-size: 70px;
  color: #fff;
}

/* line 7079, ../../_dev/css/custom/custom.scss */
.home_blog_post_area .home_blog_post .blog_post .post_thumbnail:hover .blog_mask {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* line 7087, ../../_dev/css/custom/custom.scss */
.home_blog_post_area .home_blog_post .blog_post .post_thumbnail:hover .blog_mask .blog_mask_content {
  left: 50%;
}

/* end blog */
/* footer */
/* line 7093, ../../_dev/css/custom/custom.scss */
#footer {
  padding: 0;
  background: #252525;
}
/* line 7096, ../../_dev/css/custom/custom.scss */
#footer p {
  color: #a2a2a2;
  font-size: 15px;
  margin: 0;
  line-height: 28px;
}
/* line 7103, ../../_dev/css/custom/custom.scss */
#footer .about_us .logo_footer {
  position: relative;
  margin-bottom: 45px;
}
/* line 7108, ../../_dev/css/custom/custom.scss */
#footer .about_us .footer-info .desc_footer {
  font-size: 15px;
  color: #a3a3a3;
  line-height: 30px;
  margin-bottom: 20px;
}
/* line 7115, ../../_dev/css/custom/custom.scss */
#footer .about_us .footer-info .address_footer h2 {
  font-size: 16px;
  color: white;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 10px;
}
/* line 7121, ../../_dev/css/custom/custom.scss */
#footer .about_us .footer-info .address_footer p {
  font-size: 15px;
  color: light;
  line-height: 30px;
}
@media (max-width: 991px) {
  /* line 7130, ../../_dev/css/custom/custom.scss */
  #footer .footer_block {
    margin: 30px 0 0 0;
  }
}
@media (max-width: 767px) {
  /* line 7130, ../../_dev/css/custom/custom.scss */
  #footer .footer_block {
    margin: 10px 0 0 0;
  }
}
/* line 7137, ../../_dev/css/custom/custom.scss */
#footer .footer_block h3 {
  position: relative;
  display: block;
  color: white;
  margin: 0 0 35px 0;
  line-height: 30px;
  text-transform: uppercase;
  border: 0;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 767px) {
  /* line 7137, ../../_dev/css/custom/custom.scss */
  #footer .footer_block h3 {
    margin: 0 0 15px 0;
  }
  /* line 7149, ../../_dev/css/custom/custom.scss */
  #footer .footer_block h3:after {
    content: '\E313';
    font-family: Material Icons;
    font-size: 24px;
    position: absolute;
    right: 20px;
    top: 3px;
    cursor: pointer;
  }
  /* line 7158, ../../_dev/css/custom/custom.scss */
  #footer .footer_block h3.active:after {
    content: '\E316';
  }
}
/* line 7166, ../../_dev/css/custom/custom.scss */
#footer .footer_block .footer_list li {
  line-height: 30px;
}
/* line 7168, ../../_dev/css/custom/custom.scss */
#footer .footer_block .footer_list li a {
  font-size: 15px;
  color: #a2a2a2;
  text-transform: capitalize;
  position: relative;
  display: block;
  padding: 0;
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 7181, ../../_dev/css/custom/custom.scss */
#footer .footer_block .footer_list li a:before {
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 14px;
  margin: 0 10px 0 0;
  display: inline-block;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  vertical-align: 1px;
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
/* line 7195, ../../_dev/css/custom/custom.scss */
#footer .footer_block .footer_list li a:hover {
  color: white;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  -moz-transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -o-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
/* line 7203, ../../_dev/css/custom/custom.scss */
#footer .footer_block .footer_list li a:hover:before {
  -moz-transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -o-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
/* line 7219, ../../_dev/css/custom/custom.scss */
#footer .social_follow h4 {
  color: #9e9e9e;
  font-size: 12px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 25px;
  text-transform: uppercase;
  display: none;
}
/* line 7233, ../../_dev/css/custom/custom.scss */
#footer .footer-middle {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  /* line 7233, ../../_dev/css/custom/custom.scss */
  #footer .footer-middle {
    padding: 30px 0;
  }
}
/* line 7241, ../../_dev/css/custom/custom.scss */
#footer .footer-bottom {
  padding: 60px 0;
}
@media (max-width: 767px) {
  /* line 7241, ../../_dev/css/custom/custom.scss */
  #footer .footer-bottom {
    padding: 30px 0;
  }
}
/* line 7246, ../../_dev/css/custom/custom.scss */
#footer .footer-bottom address {
  margin: 0;
  color: #a2a2a2;
  font-size: 15px;
  line-height: 24px;
  text-align: right;
}
@media (max-width: 767px) {
  /* line 7246, ../../_dev/css/custom/custom.scss */
  #footer .footer-bottom address {
    text-align: left;
  }
}
/* line 7255, ../../_dev/css/custom/custom.scss */
#footer .footer-bottom address a {
  color: white;
}
/* line 7257, ../../_dev/css/custom/custom.scss */
#footer .footer-bottom address a:hover {
  text-decoration: underline;
}
/* line 7262, ../../_dev/css/custom/custom.scss */
#footer .footer-bottom .payment {
  text-align: right;
}
@media (max-width: 767px) {
  /* line 7262, ../../_dev/css/custom/custom.scss */
  #footer .footer-bottom .payment {
    text-align: left;
  }
}
/* line 7267, ../../_dev/css/custom/custom.scss */
#footer .footer-bottom .payment a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

/* end footer */
/* category page */
@media (max-width: 767px) {
  /* line 7279, ../../_dev/css/custom/custom.scss */
  #left-column, #content-wrapper, #right-column {
    width: 100%;
  }
}
/* line 7283, ../../_dev/css/custom/custom.scss */
.name_category {
  text-align: center;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
}
/* line 7288, ../../_dev/css/custom/custom.scss */
.name_category h2 {
  display: inline-block;
  position: relative;
  font-size: 28px;
  font-weight: 700;
  color: 252525;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}

/* line 7300, ../../_dev/css/custom/custom.scss */
#js-product-list-top ul.display {
  float: left;
  margin-right: 50px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 7300, ../../_dev/css/custom/custom.scss */
  #js-product-list-top ul.display {
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  /* line 7300, ../../_dev/css/custom/custom.scss */
  #js-product-list-top ul.display {
    margin-bottom: 10px;
  }
}
/* line 7311, ../../_dev/css/custom/custom.scss */
#js-product-list-top ul.display li {
  float: left;
  height: 37px;
  width: 37px;
  line-height: 35px;
  margin-right: 5px;
  cursor: pointer;
  color: #555555;
  text-align: center;
  border: 1px solid #555555;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 7322, ../../_dev/css/custom/custom.scss */
#js-product-list-top ul.display li:hover, #js-product-list-top ul.display li.selected {
  color: #d8473a;
  border-color: #d8473a;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 7327, ../../_dev/css/custom/custom.scss */
#js-product-list-top ul.display li i {
  font-size: 22px;
}

/* line 7334, ../../_dev/css/custom/custom.scss */
.quickview .modal-content {
  background: white;
}

/* line 7338, ../../_dev/css/custom/custom.scss */
#js-product-list .product_content {
  padding: 10px 0 80px 0;
  position: relative;
}
/* line 7342, ../../_dev/css/custom/custom.scss */
#js-product-list .product_content.list .js-product-miniature {
  margin: 0;
  margin-bottom: 30px;
  padding: 0;
  box-shadow: none;
}
/* line 7347, ../../_dev/css/custom/custom.scss */
#js-product-list .product_content.list .js-product-miniature .row {
  margin: 0;
}
/* line 7350, ../../_dev/css/custom/custom.scss */
#js-product-list .product_content.list .js-product-miniature .img_block {
  padding: 0;
}
/* line 7352, ../../_dev/css/custom/custom.scss */
#js-product-list .product_content.list .js-product-miniature .img_block .add-to-links, #js-product-list .product_content.list .js-product-miniature .img_block .product-price-and-shipping {
  display: none;
}
/* line 7356, ../../_dev/css/custom/custom.scss */
#js-product-list .product_content.list .js-product-miniature .product_desc {
  position: static;
  text-align: left;
}
/* line 7359, ../../_dev/css/custom/custom.scss */
#js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links {
  position: static;
  margin: 0;
  -moz-transform: none;
  -webkit-transform: none;
  -o-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
  padding: 0;
  margin-top: 20px;
}
/* line 7370, ../../_dev/css/custom/custom.scss */
#js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li {
  -webkit-animation: none;
  -moz-animation: none;
  -ms-animation: none;
  animation: none;
  opacity: 1;
  clear: none;
  margin-left: 0;
  margin-right: 10px;
}
/* line 7380, ../../_dev/css/custom/custom.scss */
#js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li a {
  background: #e6e6e6;
  color: #555555;
  width: 50px;
  height: 50px;
  line-height: 50px;
}
/* line 7386, ../../_dev/css/custom/custom.scss */
#js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li a:hover {
  background: #d8473a;
  color: white;
}
/* line 7391, ../../_dev/css/custom/custom.scss */
#js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li.cart button.ajax_add_to_cart_button, #js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li.cart span.ajax_add_to_cart_button {
  background: #e6e6e6;
  color: #555555;
  width: auto;
  height: 50px;
  line-height: 50px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  padding: 0 20px;
  margin-bottom: 10px;
}
/* line 7403, ../../_dev/css/custom/custom.scss */
#js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li.cart button.ajax_add_to_cart_button:before, #js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li.cart span.ajax_add_to_cart_button:before {
  margin-right: 5px;
  font-variant: normal;
}
/* line 7407, ../../_dev/css/custom/custom.scss */
#js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li.cart button.ajax_add_to_cart_button:hover, #js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links li.cart span.ajax_add_to_cart_button:hover {
  background: #d8473a;
  color: white;
}
/* line 7415, ../../_dev/css/custom/custom.scss */
#js-product-list .product_content.list .js-product-miniature .product_desc .product-price-and-shipping .price {
  font-size: 28px;
}
/* line 7418, ../../_dev/css/custom/custom.scss */
#js-product-list .product_content.list .js-product-miniature .product_desc .product-price-and-shipping .regular-price {
  font-size: 24px;
}
/* line 7421, ../../_dev/css/custom/custom.scss */
#js-product-list .product_content.list .js-product-miniature .product_desc .product-price-and-shipping .discount-percentage {
  top: 10px !important;
  left: 10px !important;
}
/* line 7427, ../../_dev/css/custom/custom.scss */
#js-product-list .product_content.list .js-product-miniature .product_desc .product_name {
  font-size: 22px;
  color: #555555;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}
/* line 7434, ../../_dev/css/custom/custom.scss */
#js-product-list .product_content.list .js-product-miniature .product_desc .product-desc p {
  font-size: 15px;
  color: #707070;
  line-height: 30px;
  margin-bottom: 10px;
  display: block;
}
/* line 7441, ../../_dev/css/custom/custom.scss */
#js-product-list .product_content.list .js-product-miniature .product_desc .variant-links {
  margin-top: 30px;
}
@media (max-width: 479px) {
  /* line 7447, ../../_dev/css/custom/custom.scss */
  #js-product-list .product_content.list .js-product-miniature .img_block, #js-product-list .product_content.list .js-product-miniature .product_desc {
    width: 100%;
  }
  /* line 7450, ../../_dev/css/custom/custom.scss */
  #js-product-list .product_content.list .js-product-miniature .product_desc {
    padding: 10px 0;
  }
}
/* line 7457, ../../_dev/css/custom/custom.scss */
#js-product-list .product_content.grid .item-product {
  padding: 0;
  -webkit-animation-fill-mode: none;
  animation-fill-mode: none;
}
@media (min-width: 1920px) {
  /* line 7457, ../../_dev/css/custom/custom.scss */
  #js-product-list .product_content.grid .item-product {
    width: 25%;
  }
}
@media (min-width: 480px) and (max-width: 543px) {
  /* line 7457, ../../_dev/css/custom/custom.scss */
  #js-product-list .product_content.grid .item-product {
    width: 50%;
  }
}
@media (min-width: 1920px) {
  /* line 7469, ../../_dev/css/custom/custom.scss */
  #js-product-list .product_content.grid .item-product:nth-child(4n+1) {
    clear: both;
  }
}
@media (min-width: 1200px) and (max-width: 1919px) {
  /* line 7474, ../../_dev/css/custom/custom.scss */
  #js-product-list .product_content.grid .item-product:nth-child(3n+1) {
    clear: both;
  }
}
@media (min-width: 480x) and (max-width: 991px) {
  /* line 7480, ../../_dev/css/custom/custom.scss */
  #js-product-list .product_content.grid .item-product:nth-child(2n+1) {
    clear: both;
  }
}
@media (max-width: 479px) {
  /* line 7485, ../../_dev/css/custom/custom.scss */
  #js-product-list .product_content.grid .item-product {
    clear: both;
  }
}

/* line 7493, ../../_dev/css/custom/custom.scss */
.owl-item.last-active .js-product-miniature {
  border-right: 1px solid transparent;
}

@media (min-width: 480px) and (max-width: 543px) {
  /* line 7497, ../../_dev/css/custom/custom.scss */
  #js-product-list .product_content .item-product.grid {
    float: left;
    width: 50%;
  }
}
/* line 7502, ../../_dev/css/custom/custom.scss */
.sub-page .inner-wrapper {
  padding-top: 50px;
}

/* line 7505, ../../_dev/css/custom/custom.scss */
.breadcrumb_container {
  overflow: hidden;
  padding: 60px 0;
  font-size: 15px;
  text-align: center;
  background: #f3f3f3;
}
/* line 7511, ../../_dev/css/custom/custom.scss */
.breadcrumb_container .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}
/* line 7515, ../../_dev/css/custom/custom.scss */
.breadcrumb_container .breadcrumb ol {
  padding-left: 0;
  margin-bottom: 0;
}
/* line 7518, ../../_dev/css/custom/custom.scss */
.breadcrumb_container .breadcrumb ol li {
  display: inline;
}
/* line 7520, ../../_dev/css/custom/custom.scss */
.breadcrumb_container .breadcrumb ol li:after {
  content: "/";
  color: #252525;
  margin: 0.3125em;
  font-size: 12px;
}
/* line 7527, ../../_dev/css/custom/custom.scss */
.breadcrumb_container .breadcrumb ol li:last-child a, .breadcrumb_container .breadcrumb ol li:last-child span {
  color: #d8473a;
}
/* line 7530, ../../_dev/css/custom/custom.scss */
.breadcrumb_container .breadcrumb ol li:last-child:after {
  content: "";
}
/* line 7534, ../../_dev/css/custom/custom.scss */
.breadcrumb_container .breadcrumb ol li a {
  display: inline-block;
  position: relative;
  color: #252525;
  line-height: 25px;
}
/* line 7539, ../../_dev/css/custom/custom.scss */
.breadcrumb_container .breadcrumb ol li a:hover {
  color: #d8473a;
}
/* line 7546, ../../_dev/css/custom/custom.scss */
.breadcrumb_container .breadcrumb[data-depth="1"] {
  display: none;
}

/* line 7551, ../../_dev/css/custom/custom.scss */
.block-category {
  margin-bottom: 0;
  display: inline;
  padding: 0;
  min-height: auto;
}
/* line 7556, ../../_dev/css/custom/custom.scss */
.block-category.card {
  box-shadow: none;
  border: 0;
}

/* line 7562, ../../_dev/css/custom/custom.scss */
.block-category .category-cover {
  position: static;
}
/* line 7564, ../../_dev/css/custom/custom.scss */
.block-category .category-cover img {
  width: 100%;
  height: auto;
}

/* line 7569, ../../_dev/css/custom/custom.scss */
#products img, .featured-products img, .product-accessories img {
  margin: 0;
}

/* line 7572, ../../_dev/css/custom/custom.scss */
.block-categories, #search_filters {
  box-shadow: none;
  background: #fff;
  padding: 0;
  margin-bottom: 30px;
}

/* line 7579, ../../_dev/css/custom/custom.scss */
.block-categories a.h6 {
  position: relative;
  margin: 0;
  padding: 0 20px;
  background: #d8473a;
  color: white;
  display: block;
  height: 50px;
  line-height: 50px;
  border: 0;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  /* line 7579, ../../_dev/css/custom/custom.scss */
  .block-categories a.h6 {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 7579, ../../_dev/css/custom/custom.scss */
  .block-categories a.h6 {
    font-size: 14px;
  }
}
/* line 7599, ../../_dev/css/custom/custom.scss */
.block-categories .category-sub-menu {
  margin: 0;
}
/* line 7602, ../../_dev/css/custom/custom.scss */
.block-categories .category-sub-menu li a {
  color: #555555;
}
/* line 7604, ../../_dev/css/custom/custom.scss */
.block-categories .category-sub-menu li a:hover {
  color: #d8473a;
}
/* line 7610, ../../_dev/css/custom/custom.scss */
.block-categories .category-sub-menu li[data-depth="0"] > a {
  font-weight: 400;
  color: #555555;
  display: block;
  font-size: 15px;
  text-transform: capitalize;
  line-height: 30px;
  padding: 10px;
  border-bottom: 1px solid #ebebeb;
}
/* line 7620, ../../_dev/css/custom/custom.scss */
.block-categories .category-sub-menu li[data-depth="1"] {
  margin: 0;
}
/* line 7623, ../../_dev/css/custom/custom.scss */
.block-categories .category-sub-menu .category-sub-link {
  font-size: 13px;
  line-height: 50px;
  margin: 0;
  padding: 0 10px;
  display: block;
  border-bottom: 1px solid #ebebeb;
}
/* line 7632, ../../_dev/css/custom/custom.scss */
.block-categories .collapse-icons {
  top: 15px;
  right: 20px;
}

/* line 7640, ../../_dev/css/custom/custom.scss */
#search_filters_wrapper #search_filters h4 {
  position: relative;
  display: block;
  color: #252525;
  margin: 0;
  line-height: 35px;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* line 7652, ../../_dev/css/custom/custom.scss */
#search_filters .facet {
  margin-bottom: 10px;
}
/* line 7654, ../../_dev/css/custom/custom.scss */
#search_filters .facet .facet-title {
  position: relative;
  display: block;
  color: #252525;
  margin: 0;
  line-height: 35px;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 700;
}
/* line 7664, ../../_dev/css/custom/custom.scss */
#search_filters .facet .collapse {
  margin: 0;
}
/* line 7666, ../../_dev/css/custom/custom.scss */
#search_filters .facet .collapse li {
  line-height: 40px;
  border-bottom: 1px solid #ebebeb;
}
/* line 7671, ../../_dev/css/custom/custom.scss */
#search_filters .facet .custom-checkbox input[type="checkbox"] + span {
  margin: -3px 3px 0 0;
  width: 15px;
  height: 15px;
  border: 1px #dadada solid;
}
/* line 7676, ../../_dev/css/custom/custom.scss */
#search_filters .facet .custom-checkbox input[type="checkbox"] + span.color {
  border: 0;
}
/* line 7680, ../../_dev/css/custom/custom.scss */
#search_filters .facet .facet-label {
  margin: 5px 0;
}
/* line 7682, ../../_dev/css/custom/custom.scss */
#search_filters .facet .facet-label a {
  color: #555555;
  font-size: 15px;
  margin-top: 0;
}
/* line 7686, ../../_dev/css/custom/custom.scss */
#search_filters .facet .facet-label a:hover {
  color: #d8473a;
}

@media (max-width: 767px) {
  /* line 7693, ../../_dev/css/custom/custom.scss */
  #category #left-column #search_filters .facet .navbar-toggler {
    padding: 0.625rem 3rem 0 0;
  }
}
/* line 7697, ../../_dev/css/custom/custom.scss */
.products-selection .filter-button .btn-secondary, .products-selection .filter-button .btn-tertiary {
  box-shadow: none;
  padding: 5px 15px;
  border-radius: 4px;
  line-height: 25px;
}

/* line 7703, ../../_dev/css/custom/custom.scss */
.products-selection .total-products {
  padding: 0;
}

/* line 7706, ../../_dev/css/custom/custom.scss */
.products-selection {
  margin-bottom: 0;
  margin-bottom: 30px;
}
/* line 7709, ../../_dev/css/custom/custom.scss */
.products-selection p, .products-selection .sort-by {
  line-height: 25px;
  font-size: 15px;
  padding: 5px 15px;
  margin: 0;
  float: left;
  color: #252525;
  text-transform: uppercase;
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 7709, ../../_dev/css/custom/custom.scss */
  .products-selection p, .products-selection .sort-by {
    padding: 5px;
    font-size: 12px;
  }
}
/* line 7722, ../../_dev/css/custom/custom.scss */
.products-selection .products-sort-order .select-title {
  border: 1px solid #ebebeb;
  padding: 5px 15px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  line-height: 25px;
  font-size: 13px;
  margin: 0;
  color: #616161;
}
/* line 7733, ../../_dev/css/custom/custom.scss */
.products-selection .products-sort-order .dropdown-menu {
  background: #fff;
  border: 1px solid #e1e1e1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  right: 15px;
  left: auto;
}
/* line 7741, ../../_dev/css/custom/custom.scss */
.products-selection .products-sort-order .dropdown-menu .select-list {
  line-height: 24px;
  font-size: 14px;
  padding: 3px 15px;
}
/* line 7745, ../../_dev/css/custom/custom.scss */
.products-selection .products-sort-order .dropdown-menu .select-list:hover {
  background: #d8473a;
}

/* line 7751, ../../_dev/css/custom/custom.scss */
.pagination {
  font-size: 13px;
  font-weight: 400;
  margin: 0;
  padding: 15px 0;
  margin-bottom: 50px;
}
/* line 7757, ../../_dev/css/custom/custom.scss */
.pagination a {
  font-weight: 400;
  color: #333333;
  padding: 0 5px;
  font-size: 14px;
}
/* line 7762, ../../_dev/css/custom/custom.scss */
.pagination a i {
  font-size: 18px;
}
/* line 7765, ../../_dev/css/custom/custom.scss */
.pagination a:hover {
  color: #d8473a;
}
/* line 7769, ../../_dev/css/custom/custom.scss */
.pagination .disabled {
  color: #333333;
}
/* line 7772, ../../_dev/css/custom/custom.scss */
.pagination .current a {
  color: #d8473a;
}

/* end category page */
/* product page */
/* line 7779, ../../_dev/css/custom/custom.scss */
.h1.namne_details, .product_name_h1 {
  color: #555555;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 20px;
}

/* line 7788, ../../_dev/css/custom/custom.scss */
.product-discount {
  display: inline-block;
}

/* line 7791, ../../_dev/css/custom/custom.scss */
.product-discount .regular-price {
  font-weight: 600;
  font-size: 36px;
  line-height: 30px;
  display: inline-block;
  color: #999999;
}

/* line 7799, ../../_dev/css/custom/custom.scss */
.has-discount.product-price, .has-discount p, .product-prices .price {
  font-weight: 600;
  font-size: 36px;
  line-height: 30px;
  display: inline-block;
  color: #252525;
}

/* line 7806, ../../_dev/css/custom/custom.scss */
.has-discount .discount {
  text-transform: uppercase;
  display: inline-block;
  background: #252525;
  color: white;
  font-size: 18px;
  padding: 0 20px;
  text-align: center;
  z-index: 1;
  line-height: 30px;
  border-radius: 20px;
  font-weight: 600;
  height: 30px;
  vertical-align: top;
}

/* line 7821, ../../_dev/css/custom/custom.scss */
.product-information {
  color: #252525;
  font-size: 15px;
  font-weight: 700;
}
/* line 7825, ../../_dev/css/custom/custom.scss */
.product-information span {
  text-transform: uppercase;
}
/* line 7828, ../../_dev/css/custom/custom.scss */
.product-information .product-desc p {
  line-height: 27px;
  font-size: 15px;
  color: #707070;
  margin: 0;
  font-style: normal;
}

/* line 7836, ../../_dev/css/custom/custom.scss */
.product-actions .control-label {
  margin-bottom: 15px;
}

/* line 7840, ../../_dev/css/custom/custom.scss */
.product-quantity .qty {
  margin-right: 20px;
}

/* line 7843, ../../_dev/css/custom/custom.scss */
.product-actions .add-to-cart {
  position: relative;
  border: 0;
  line-height: 45px;
  height: 45px;
  width: auto;
  background-color: #e6e6e6;
  font-size: 15px;
  font-weight: 600;
  color: #555555;
  text-transform: uppercase;
  border-radius: 0;
  padding: 0 30px;
  box-shadow: none;
}
/* line 7857, ../../_dev/css/custom/custom.scss */
.product-actions .add-to-cart:before {
  font-family: 'ionicons';
  display: inline-block;
  font-size: 24px;
  content: "\f110";
  font-weight: 400;
  vertical-align: top;
  margin-right: 7px;
}
/* line 7866, ../../_dev/css/custom/custom.scss */
.product-actions .add-to-cart:hover {
  background-color: #d8473a;
  color: white;
}

/* line 7871, ../../_dev/css/custom/custom.scss */
#product #block-reassurance {
  box-shadow: none;
  margin-top: 20px;
}
/* line 7874, ../../_dev/css/custom/custom.scss */
#product #block-reassurance span {
  font-weight: 400;
  font-size: 12px;
  font-style: normal;
}
/* line 7879, ../../_dev/css/custom/custom.scss */
#product #block-reassurance li .block-reassurance-item {
  padding: 15px 0;
}

/* line 7883, ../../_dev/css/custom/custom.scss */
#product #content {
  overflow: hidden;
  max-width: 100%;
}
/* line 7886, ../../_dev/css/custom/custom.scss */
#product #content .product-flags {
  display: none;
}

/* line 7890, ../../_dev/css/custom/custom.scss */
.product-cover img {
  box-shadow: none;
  border: 1px solid #ebebeb;
}

/* line 7894, ../../_dev/css/custom/custom.scss */
li.product-flag {
  background: #a8ca01;
  color: white;
  font-size: 12px;
  padding: 0;
  min-width: 60px;
  text-align: center;
  display: block;
  z-index: 1;
  line-height: 30px;
  border-radius: 20px;
  font-weight: 500;
  height: 30px;
  margin: 0;
}

/* line 7909, ../../_dev/css/custom/custom.scss */
.social-sharing li {
  box-shadow: none;
  height: auto;
  width: auto;
  border-radius: 0;
  display: inline-block;
  background-color: transparent;
}
/* line 7916, ../../_dev/css/custom/custom.scss */
.social-sharing li a {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  line-height: 40px;
  text-align: center;
  border: none;
  color: #999999;
  background: white;
  white-space: normal;
  text-indent: 0;
  overflow: hidden;
  font-size: 18px;
}
/* line 7930, ../../_dev/css/custom/custom.scss */
.social-sharing li a:hover {
  background: #d8473a;
  color: white;
}

/* line 7937, ../../_dev/css/custom/custom.scss */
.tabs {
  box-shadow: none;
  background: white;
  margin-bottom: 50px;
  padding: 0;
  display: inline-block;
  width: 100%;
  text-align: center;
}
/* line 7945, ../../_dev/css/custom/custom.scss */
.tabs .nav-tabs {
  border: none;
  margin-bottom: 30px;
}
/* line 7948, ../../_dev/css/custom/custom.scss */
.tabs .nav-tabs .nav-item {
  float: none;
  margin: 0;
  display: inline-block;
}
/* line 7952, ../../_dev/css/custom/custom.scss */
.tabs .nav-tabs .nav-item .nav-link {
  position: relative;
  line-height: 1;
  display: inline-block;
  padding: 15px 30px;
  text-transform: uppercase;
  color: #707070;
  font-size: 24px;
  font-weight: 700;
  border: 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 7963, ../../_dev/css/custom/custom.scss */
.tabs .nav-tabs .nav-item .nav-link:hover, .tabs .nav-tabs .nav-item .nav-link.active {
  color: #252525;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 7966, ../../_dev/css/custom/custom.scss */
.tabs .nav-tabs .nav-item .nav-link:hover:after, .tabs .nav-tabs .nav-item .nav-link.active:after {
  background: #252525;
}
/* line 7970, ../../_dev/css/custom/custom.scss */
.tabs .nav-tabs .nav-item .nav-link:before {
  content: "";
  width: 1px;
  height: 24px;
  background: #a9a9a9;
  position: absolute;
  top: 50%;
  margin-top: -12px;
  right: 0;
  -moz-transform: skewX(-30deg);
  -webkit-transform: skewX(-30deg);
  -o-transform: skewX(-30deg);
  -ms-transform: skewX(-30deg);
  transform: skewX(-30deg);
}
/* line 7985, ../../_dev/css/custom/custom.scss */
.tabs .nav-tabs .nav-item .nav-link:after {
  content: "";
  width: 100px;
  height: 2px;
  background: transparent;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -50px;
}

/* line 7999, ../../_dev/css/custom/custom.scss */
.tab-content {
  overflow: hidden;
  padding: 30px;
  background: white;
  border: 1px solid #ebebeb;
  text-align: left;
  font-size: 15px;
}

/* line 8007, ../../_dev/css/custom/custom.scss */
.product-description p {
  font-size: 15px;
  color: #555555;
  line-height: 30px;
  letter-spacing: 0.025em;
}

/* line 8013, ../../_dev/css/custom/custom.scss */
#tab-content {
  font-size: 12px;
}
/* line 8015, ../../_dev/css/custom/custom.scss */
#tab-content label {
  font-size: 12px;
}

/* line 8019, ../../_dev/css/custom/custom.scss */
#product-modal .modal-content .modal-body .product-images img {
  max-width: none;
  border: transparent 3px solid;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 8023, ../../_dev/css/custom/custom.scss */
#product-modal .modal-content .modal-body .product-images img:hover {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

/* line 8027, ../../_dev/css/custom/custom.scss */
#main .images-container .js-qv-mask {
  margin: auto;
  overflow: visible;
  margin-bottom: 50px;
}
@media (min-width: 1920px) {
  /* line 8027, ../../_dev/css/custom/custom.scss */
  #main .images-container .js-qv-mask {
    max-width: 80%;
  }
}

/* line 8037, ../../_dev/css/custom/custom.scss */
.images-container .product-images .owl-item {
  padding: 0 10px;
}
/* line 8041, ../../_dev/css/custom/custom.scss */
.images-container .product-images .owl-buttons > div {
  opacity: 1;
  width: 20px;
  height: 20px;
  line-height: 18px;
  border: 1px solid #ebebeb;
  border-radius: 100%;
  margin: 0;
  top: 50%;
}
/* line 8050, ../../_dev/css/custom/custom.scss */
.images-container .product-images .owl-buttons > div:before {
  font-size: 14px;
}
/* line 8053, ../../_dev/css/custom/custom.scss */
.images-container .product-images .owl-buttons > div:hover {
  background: #d8473a;
  color: white;
  border-color: #d8473a;
}
/* line 8058, ../../_dev/css/custom/custom.scss */
.images-container .product-images .owl-buttons > div.owl-prev {
  left: 0;
}
/* line 8061, ../../_dev/css/custom/custom.scss */
.images-container .product-images .owl-buttons > div.owl-next {
  right: 0;
}

/* line 8068, ../../_dev/css/custom/custom.scss */
.thumb-container img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border: 1px solid #ebebeb;
  margin: 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
/* line 8075, ../../_dev/css/custom/custom.scss */
.thumb-container img.selected, .thumb-container img:hover {
  border-color: #484848;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

/* line 8083, ../../_dev/css/custom/custom.scss */
.modal-content .thumb-container img {
  margin-bottom: 10px;
}

/* line 8088, ../../_dev/css/custom/custom.scss */
.product-cover .layer {
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

/* line 8092, ../../_dev/css/custom/custom.scss */
.product-accessories, .categoryproducts {
  margin-bottom: 50px;
}

/* end product page */
/* responsive */
@media (max-width: 991px) {
  /* line 8100, ../../_dev/css/custom/custom.scss */
  #header .header-nav .blockcart {
    display: inline-block;
    width: 100%;
    float: none;
    margin: 0;
    text-align: center;
  }
  /* line 8106, ../../_dev/css/custom/custom.scss */
  #header .header-nav .blockcart .body {
    right: 50%;
    -moz-transform: translateX(50%);
    -webkit-transform: translateX(50%);
    -o-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
  }
}
@media (max-width: 767px) {
  /* line 8117, ../../_dev/css/custom/custom.scss */
  #header .social_follow {
    float: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }
}
@media (max-width: 543px) {
  /* line 8126, ../../_dev/css/custom/custom.scss */
  .products-selection .filter-button {
    padding: 0 15px;
    width: 100%;
  }

  /* line 8130, ../../_dev/css/custom/custom.scss */
  #js-product-list-top .products-sort-order {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media (max-width: 479px) {
  /* line 8137, ../../_dev/css/custom/custom.scss */
  .blockcart {
    width: 100%;
  }
}
/* end responsive */
/* line 8143, ../../_dev/css/custom/custom.scss */
.blog_post .slick-prev, .blog_post .slick-next {
  line-height: 45px;
}

/* end edit theme */
/* line 8150, ../../_dev/css/custom/custom.scss */
body.lang-rtl .bx-viewport {
  direction: ltr !important;
}
/* line 8153, ../../_dev/css/custom/custom.scss */
body.lang-rtl .lang-rtl * .owl-carousel {
  direction: ltr !important;
}
/* line 8156, ../../_dev/css/custom/custom.scss */
body.lang-rtl .owl-carousel .owl-wrapper-outer {
  direction: ltr !important;
}
