/* custom */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom; }

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1; }

  25%, 75% {
    opacity: 0; } }

@keyframes flash {
  from, 50%, to {
    opacity: 1; }

  25%, 75% {
    opacity: 0; } }

.flash {
  -webkit-animation-name: flash;
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }

  50% {
    -webkit-transform: scale3d(1.15, 1.15, 1.15);
    transform: scale3d(1.15, 1.15, 1.15); }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }

  50% {
    -webkit-transform: scale3d(1.15, 1.15, 1.15);
    transform: scale3d(1.15, 1.15, 1.15); }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand; }

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake; }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }

  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }

  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.tada {
  -webkit-animation-name: tada;
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }

  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }

  to {
    -webkit-transform: none;
    transform: none; } }

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }

  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg); }

  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }

  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg); }

  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center; }

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }

  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }

  to {
    -webkit-transform: none;
    transform: none; } }

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }

  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }

  to {
    -webkit-transform: none;
    transform: none; } }

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }

  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }

  to {
    -webkit-transform: none;
    transform: none; } }

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }

  to {
    opacity: 0; } }

@keyframes fadeOut {
  from {
    opacity: 1; }

  to {
    opacity: 0; } }

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1; }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes fadeOutDown {
  from {
    opacity: 1; }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1; }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig; }

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1; }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1; }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig; }

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1; }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes fadeOutRight {
  from {
    opacity: 1; }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1; }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig; }

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1; }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes fadeOutUp {
  from {
    opacity: 1; }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1; }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX; }

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY; }

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY; }

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1; }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn; }

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft; }

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight; }

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft; }

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight; }

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut; }

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft; }

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight; }

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft; }

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight; }

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1; }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

@keyframes rollOut {
  from {
    opacity: 1; }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut; }

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }

  50% {
    opacity: 1; } }

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }

  50% {
    opacity: 1; } }

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn; }

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown; }

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft; }

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight; }

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp; }

@-webkit-keyframes zoomOut {
  from {
    opacity: 1; }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }

  to {
    opacity: 0; } }

@keyframes zoomOut {
  from {
    opacity: 1; }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }

  to {
    opacity: 0; } }

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut; }

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown; }

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft; }

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight; }

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp; }

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft; }

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight; }

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp; }

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown; }

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft; }

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight; }

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

/**/
@-webkit-keyframes blurFadeIn {
  0% {
    opacity: 0;
    transform: scale(1.3); }

  50% {
    opacity: 0.5; }

  100% {
    opacity: 1;
    transform: scale(1); } }

@keyframes blurFadeIn {
  0% {
    opacity: 0;
    transform: scale(1.3); }

  50% {
    opacity: 0.5; }

  100% {
    opacity: 1;
    transform: scale(1); } }

.blurFadeIn {
  -webkit-animation-name: blurFadeIn;
  animation-name: blurFadeIn; }

@-webkit-keyframes blurFadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px); }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }

@keyframes blurFadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px); }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }

.blurFadeInDown {
  -webkit-animation-name: blurFadeInDown;
  animation-name: blurFadeInDown; }

@-webkit-keyframes passing {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0; }

  50% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1; }

  100% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0; } }

@keyframes passing {
  0% {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0; }

  50% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1; }

  100% {
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0; } }

@-webkit-keyframes passing-reverse {
  0% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0; }

  50% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1; }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0; } }

@keyframes passing-reverse {
  0% {
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0; }

  50% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1; }

  100% {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0; } }

/*!
 * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1; }

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -.0667em; }

.fa-xs {
  font-size: .75em; }

.fa-sm {
  font-size: .875em; }

.fa-1x {
  font-size: 1em; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-6x {
  font-size: 6em; }

.fa-7x {
  font-size: 7em; }

.fa-8x {
  font-size: 8em; }

.fa-9x {
  font-size: 9em; }

.fa-10x {
  font-size: 10em; }

.fa-fw {
  text-align: center;
  width: 1.25em; }

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0; }

.fa-ul > li {
  position: relative; }

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit; }

.fa-border {
  border: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1); }

.fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
  filter: none; }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2em; }

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e"; }

.fa-accessible-icon:before {
  content: "\f368"; }

.fa-accusoft:before {
  content: "\f369"; }

.fa-address-book:before {
  content: "\f2b9"; }

.fa-address-card:before {
  content: "\f2bb"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-adn:before {
  content: "\f170"; }

.fa-adversal:before {
  content: "\f36a"; }

.fa-affiliatetheme:before {
  content: "\f36b"; }

.fa-algolia:before {
  content: "\f36c"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-allergies:before {
  content: "\f461"; }

.fa-amazon:before {
  content: "\f270"; }

.fa-amazon-pay:before {
  content: "\f42c"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-american-sign-language-interpreting:before {
  content: "\f2a3"; }

.fa-amilia:before {
  content: "\f36d"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-android:before {
  content: "\f17b"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angrycreative:before {
  content: "\f36e"; }

.fa-angular:before {
  content: "\f420"; }

.fa-app-store:before {
  content: "\f36f"; }

.fa-app-store-ios:before {
  content: "\f370"; }

.fa-apper:before {
  content: "\f371"; }

.fa-apple:before {
  content: "\f179"; }

.fa-apple-pay:before {
  content: "\f415"; }

.fa-archive:before {
  content: "\f187"; }

.fa-arrow-alt-circle-down:before {
  content: "\f358"; }

.fa-arrow-alt-circle-left:before {
  content: "\f359"; }

.fa-arrow-alt-circle-right:before {
  content: "\f35a"; }

.fa-arrow-alt-circle-up:before {
  content: "\f35b"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-arrows-alt-h:before {
  content: "\f337"; }

.fa-arrows-alt-v:before {
  content: "\f338"; }

.fa-assistive-listening-systems:before {
  content: "\f2a2"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-asymmetrik:before {
  content: "\f372"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-audible:before {
  content: "\f373"; }

.fa-audio-description:before {
  content: "\f29e"; }

.fa-autoprefixer:before {
  content: "\f41c"; }

.fa-avianex:before {
  content: "\f374"; }

.fa-aviato:before {
  content: "\f421"; }

.fa-aws:before {
  content: "\f375"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-balance-scale:before {
  content: "\f24e"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-band-aid:before {
  content: "\f462"; }

.fa-bandcamp:before {
  content: "\f2d5"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-bars:before {
  content: "\f0c9"; }

.fa-baseball-ball:before {
  content: "\f433"; }

.fa-basketball-ball:before {
  content: "\f434"; }

.fa-bath:before {
  content: "\f2cd"; }

.fa-battery-empty:before {
  content: "\f244"; }

.fa-battery-full:before {
  content: "\f240"; }

.fa-battery-half:before {
  content: "\f242"; }

.fa-battery-quarter:before {
  content: "\f243"; }

.fa-battery-three-quarters:before {
  content: "\f241"; }

.fa-bed:before {
  content: "\f236"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-bell:before {
  content: "\f0f3"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-bimobject:before {
  content: "\f378"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitcoin:before {
  content: "\f379"; }

.fa-bity:before {
  content: "\f37a"; }

.fa-black-tie:before {
  content: "\f27e"; }

.fa-blackberry:before {
  content: "\f37b"; }

.fa-blender:before {
  content: "\f517"; }

.fa-blind:before {
  content: "\f29d"; }

.fa-blogger:before {
  content: "\f37c"; }

.fa-blogger-b:before {
  content: "\f37d"; }

.fa-bluetooth:before {
  content: "\f293"; }

.fa-bluetooth-b:before {
  content: "\f294"; }

.fa-bold:before {
  content: "\f032"; }

.fa-bolt:before {
  content: "\f0e7"; }

.fa-bomb:before {
  content: "\f1e2"; }

.fa-book:before {
  content: "\f02d"; }

.fa-book-open:before {
  content: "\f518"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-bowling-ball:before {
  content: "\f436"; }

.fa-box:before {
  content: "\f466"; }

.fa-box-open:before {
  content: "\f49e"; }

.fa-boxes:before {
  content: "\f468"; }

.fa-braille:before {
  content: "\f2a1"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-briefcase-medical:before {
  content: "\f469"; }

.fa-broadcast-tower:before {
  content: "\f519"; }

.fa-broom:before {
  content: "\f51a"; }

.fa-btc:before {
  content: "\f15a"; }

.fa-bug:before {
  content: "\f188"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-burn:before {
  content: "\f46a"; }

.fa-buromobelexperte:before {
  content: "\f37f"; }

.fa-bus:before {
  content: "\f207"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-calendar:before {
  content: "\f133"; }

.fa-calendar-alt:before {
  content: "\f073"; }

.fa-calendar-check:before {
  content: "\f274"; }

.fa-calendar-minus:before {
  content: "\f272"; }

.fa-calendar-plus:before {
  content: "\f271"; }

.fa-calendar-times:before {
  content: "\f273"; }

.fa-camera:before {
  content: "\f030"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-capsules:before {
  content: "\f46b"; }

.fa-car:before {
  content: "\f1b9"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-caret-square-down:before {
  content: "\f150"; }

.fa-caret-square-left:before {
  content: "\f191"; }

.fa-caret-square-right:before {
  content: "\f152"; }

.fa-caret-square-up:before {
  content: "\f151"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cc-amazon-pay:before {
  content: "\f42d"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-apple-pay:before {
  content: "\f416"; }

.fa-cc-diners-club:before {
  content: "\f24c"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-jcb:before {
  content: "\f24b"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-centercode:before {
  content: "\f380"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-chalkboard:before {
  content: "\f51b"; }

.fa-chalkboard-teacher:before {
  content: "\f51c"; }

.fa-chart-area:before {
  content: "\f1fe"; }

.fa-chart-bar:before {
  content: "\f080"; }

.fa-chart-line:before {
  content: "\f201"; }

.fa-chart-pie:before {
  content: "\f200"; }

.fa-check:before {
  content: "\f00c"; }

.fa-check-circle:before {
  content: "\f058"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-chess:before {
  content: "\f439"; }

.fa-chess-bishop:before {
  content: "\f43a"; }

.fa-chess-board:before {
  content: "\f43c"; }

.fa-chess-king:before {
  content: "\f43f"; }

.fa-chess-knight:before {
  content: "\f441"; }

.fa-chess-pawn:before {
  content: "\f443"; }

.fa-chess-queen:before {
  content: "\f445"; }

.fa-chess-rook:before {
  content: "\f447"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-chrome:before {
  content: "\f268"; }

.fa-church:before {
  content: "\f51d"; }

.fa-circle:before {
  content: "\f111"; }

.fa-circle-notch:before {
  content: "\f1ce"; }

.fa-clipboard:before {
  content: "\f328"; }

.fa-clipboard-check:before {
  content: "\f46c"; }

.fa-clipboard-list:before {
  content: "\f46d"; }

.fa-clock:before {
  content: "\f017"; }

.fa-clone:before {
  content: "\f24d"; }

.fa-closed-captioning:before {
  content: "\f20a"; }

.fa-cloud:before {
  content: "\f0c2"; }

.fa-cloud-download-alt:before {
  content: "\f381"; }

.fa-cloud-upload-alt:before {
  content: "\f382"; }

.fa-cloudscale:before {
  content: "\f383"; }

.fa-cloudsmith:before {
  content: "\f384"; }

.fa-cloudversify:before {
  content: "\f385"; }

.fa-code:before {
  content: "\f121"; }

.fa-code-branch:before {
  content: "\f126"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-codiepie:before {
  content: "\f284"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cog:before {
  content: "\f013"; }

.fa-cogs:before {
  content: "\f085"; }

.fa-coins:before {
  content: "\f51e"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-comment:before {
  content: "\f075"; }

.fa-comment-alt:before {
  content: "\f27a"; }

.fa-comment-dots:before {
  content: "\f4ad"; }

.fa-comment-slash:before {
  content: "\f4b3"; }

.fa-comments:before {
  content: "\f086"; }

.fa-compact-disc:before {
  content: "\f51f"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-compress:before {
  content: "\f066"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-copy:before {
  content: "\f0c5"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-couch:before {
  content: "\f4b8"; }

.fa-cpanel:before {
  content: "\f388"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-creative-commons-by:before {
  content: "\f4e7"; }

.fa-creative-commons-nc:before {
  content: "\f4e8"; }

.fa-creative-commons-nc-eu:before {
  content: "\f4e9"; }

.fa-creative-commons-nc-jp:before {
  content: "\f4ea"; }

.fa-creative-commons-nd:before {
  content: "\f4eb"; }

.fa-creative-commons-pd:before {
  content: "\f4ec"; }

.fa-creative-commons-pd-alt:before {
  content: "\f4ed"; }

.fa-creative-commons-remix:before {
  content: "\f4ee"; }

.fa-creative-commons-sa:before {
  content: "\f4ef"; }

.fa-creative-commons-sampling:before {
  content: "\f4f0"; }

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1"; }

.fa-creative-commons-share:before {
  content: "\f4f2"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-crop:before {
  content: "\f125"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-crow:before {
  content: "\f520"; }

.fa-crown:before {
  content: "\f521"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-css3-alt:before {
  content: "\f38b"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-cut:before {
  content: "\f0c4"; }

.fa-cuttlefish:before {
  content: "\f38c"; }

.fa-d-and-d:before {
  content: "\f38d"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-deaf:before {
  content: "\f2a4"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-deploydog:before {
  content: "\f38e"; }

.fa-deskpro:before {
  content: "\f38f"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-diagnoses:before {
  content: "\f470"; }

.fa-dice:before {
  content: "\f522"; }

.fa-dice-five:before {
  content: "\f523"; }

.fa-dice-four:before {
  content: "\f524"; }

.fa-dice-one:before {
  content: "\f525"; }

.fa-dice-six:before {
  content: "\f526"; }

.fa-dice-three:before {
  content: "\f527"; }

.fa-dice-two:before {
  content: "\f528"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-digital-ocean:before {
  content: "\f391"; }

.fa-discord:before {
  content: "\f392"; }

.fa-discourse:before {
  content: "\f393"; }

.fa-divide:before {
  content: "\f529"; }

.fa-dna:before {
  content: "\f471"; }

.fa-dochub:before {
  content: "\f394"; }

.fa-docker:before {
  content: "\f395"; }

.fa-dollar-sign:before {
  content: "\f155"; }

.fa-dolly:before {
  content: "\f472"; }

.fa-dolly-flatbed:before {
  content: "\f474"; }

.fa-donate:before {
  content: "\f4b9"; }

.fa-door-closed:before {
  content: "\f52a"; }

.fa-door-open:before {
  content: "\f52b"; }

.fa-dot-circle:before {
  content: "\f192"; }

.fa-dove:before {
  content: "\f4ba"; }

.fa-download:before {
  content: "\f019"; }

.fa-draft2digital:before {
  content: "\f396"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-dribbble-square:before {
  content: "\f397"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-dumbbell:before {
  content: "\f44b"; }

.fa-dyalog:before {
  content: "\f399"; }

.fa-earlybirds:before {
  content: "\f39a"; }

.fa-ebay:before {
  content: "\f4f4"; }

.fa-edge:before {
  content: "\f282"; }

.fa-edit:before {
  content: "\f044"; }

.fa-eject:before {
  content: "\f052"; }

.fa-elementor:before {
  content: "\f430"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-ember:before {
  content: "\f423"; }

.fa-empire:before {
  content: "\f1d1"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-envelope-open:before {
  content: "\f2b6"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-envira:before {
  content: "\f299"; }

.fa-equals:before {
  content: "\f52c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-erlang:before {
  content: "\f39d"; }

.fa-ethereum:before {
  content: "\f42e"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-euro-sign:before {
  content: "\f153"; }

.fa-exchange-alt:before {
  content: "\f362"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-expand:before {
  content: "\f065"; }

.fa-expand-arrows-alt:before {
  content: "\f31e"; }

.fa-expeditedssl:before {
  content: "\f23e"; }

.fa-external-link-alt:before {
  content: "\f35d"; }

.fa-external-link-square-alt:before {
  content: "\f360"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-dropper:before {
  content: "\f1fb"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-facebook:before {
  content: "\f09a"; }

.fa-facebook-f:before {
  content: "\f39e"; }

.fa-facebook-messenger:before {
  content: "\f39f"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-feather:before {
  content: "\f52d"; }

.fa-female:before {
  content: "\f182"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-alt:before {
  content: "\f15c"; }

.fa-file-archive:before {
  content: "\f1c6"; }

.fa-file-audio:before {
  content: "\f1c7"; }

.fa-file-code:before {
  content: "\f1c9"; }

.fa-file-excel:before {
  content: "\f1c3"; }

.fa-file-image:before {
  content: "\f1c5"; }

.fa-file-medical:before {
  content: "\f477"; }

.fa-file-medical-alt:before {
  content: "\f478"; }

.fa-file-pdf:before {
  content: "\f1c1"; }

.fa-file-powerpoint:before {
  content: "\f1c4"; }

.fa-file-video:before {
  content: "\f1c8"; }

.fa-file-word:before {
  content: "\f1c2"; }

.fa-film:before {
  content: "\f008"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-first-aid:before {
  content: "\f479"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-first-order-alt:before {
  content: "\f50a"; }

.fa-firstdraft:before {
  content: "\f3a1"; }

.fa-flag:before {
  content: "\f024"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-flipboard:before {
  content: "\f44d"; }

.fa-fly:before {
  content: "\f417"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-font:before {
  content: "\f031"; }

.fa-font-awesome:before {
  content: "\f2b4"; }

.fa-font-awesome-alt:before {
  content: "\f35c"; }

.fa-font-awesome-flag:before {
  content: "\f425"; }

.fa-font-awesome-logo-full:before {
  content: "\f4e6"; }

.fa-fonticons:before {
  content: "\f280"; }

.fa-fonticons-fi:before {
  content: "\f3a2"; }

.fa-football-ball:before {
  content: "\f44e"; }

.fa-fort-awesome:before {
  content: "\f286"; }

.fa-fort-awesome-alt:before {
  content: "\f3a3"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-forward:before {
  content: "\f04e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-free-code-camp:before {
  content: "\f2c5"; }

.fa-freebsd:before {
  content: "\f3a4"; }

.fa-frog:before {
  content: "\f52e"; }

.fa-frown:before {
  content: "\f119"; }

.fa-fulcrum:before {
  content: "\f50b"; }

.fa-futbol:before {
  content: "\f1e3"; }

.fa-galactic-republic:before {
  content: "\f50c"; }

.fa-galactic-senate:before {
  content: "\f50d"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-gas-pump:before {
  content: "\f52f"; }

.fa-gavel:before {
  content: "\f0e3"; }

.fa-gem:before {
  content: "\f3a5"; }

.fa-genderless:before {
  content: "\f22d"; }

.fa-get-pocket:before {
  content: "\f265"; }

.fa-gg:before {
  content: "\f260"; }

.fa-gg-circle:before {
  content: "\f261"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-github:before {
  content: "\f09b"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-gitkraken:before {
  content: "\f3a6"; }

.fa-gitlab:before {
  content: "\f296"; }

.fa-gitter:before {
  content: "\f426"; }

.fa-glass-martini:before {
  content: "\f000"; }

.fa-glasses:before {
  content: "\f530"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-gofore:before {
  content: "\f3a7"; }

.fa-golf-ball:before {
  content: "\f450"; }

.fa-goodreads:before {
  content: "\f3a8"; }

.fa-goodreads-g:before {
  content: "\f3a9"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-google-drive:before {
  content: "\f3aa"; }

.fa-google-play:before {
  content: "\f3ab"; }

.fa-google-plus:before {
  content: "\f2b3"; }

.fa-google-plus-g:before {
  content: "\f0d5"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-graduation-cap:before {
  content: "\f19d"; }

.fa-gratipay:before {
  content: "\f184"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-greater-than:before {
  content: "\f531"; }

.fa-greater-than-equal:before {
  content: "\f532"; }

.fa-gripfire:before {
  content: "\f3ac"; }

.fa-grunt:before {
  content: "\f3ad"; }

.fa-gulp:before {
  content: "\f3ae"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-hacker-news-square:before {
  content: "\f3af"; }

.fa-hand-holding:before {
  content: "\f4bd"; }

.fa-hand-holding-heart:before {
  content: "\f4be"; }

.fa-hand-holding-usd:before {
  content: "\f4c0"; }

.fa-hand-lizard:before {
  content: "\f258"; }

.fa-hand-paper:before {
  content: "\f256"; }

.fa-hand-peace:before {
  content: "\f25b"; }

.fa-hand-point-down:before {
  content: "\f0a7"; }

.fa-hand-point-left:before {
  content: "\f0a5"; }

.fa-hand-point-right:before {
  content: "\f0a4"; }

.fa-hand-point-up:before {
  content: "\f0a6"; }

.fa-hand-pointer:before {
  content: "\f25a"; }

.fa-hand-rock:before {
  content: "\f255"; }

.fa-hand-scissors:before {
  content: "\f257"; }

.fa-hand-spock:before {
  content: "\f259"; }

.fa-hands:before {
  content: "\f4c2"; }

.fa-hands-helping:before {
  content: "\f4c4"; }

.fa-handshake:before {
  content: "\f2b5"; }

.fa-hashtag:before {
  content: "\f292"; }

.fa-hdd:before {
  content: "\f0a0"; }

.fa-heading:before {
  content: "\f1dc"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-heart:before {
  content: "\f004"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-helicopter:before {
  content: "\f533"; }

.fa-hips:before {
  content: "\f452"; }

.fa-hire-a-helper:before {
  content: "\f3b0"; }

.fa-history:before {
  content: "\f1da"; }

.fa-hockey-puck:before {
  content: "\f453"; }

.fa-home:before {
  content: "\f015"; }

.fa-hooli:before {
  content: "\f427"; }

.fa-hospital:before {
  content: "\f0f8"; }

.fa-hospital-alt:before {
  content: "\f47d"; }

.fa-hospital-symbol:before {
  content: "\f47e"; }

.fa-hotjar:before {
  content: "\f3b1"; }

.fa-hourglass:before {
  content: "\f254"; }

.fa-hourglass-end:before {
  content: "\f253"; }

.fa-hourglass-half:before {
  content: "\f252"; }

.fa-hourglass-start:before {
  content: "\f251"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-hubspot:before {
  content: "\f3b2"; }

.fa-i-cursor:before {
  content: "\f246"; }

.fa-id-badge:before {
  content: "\f2c1"; }

.fa-id-card:before {
  content: "\f2c2"; }

.fa-id-card-alt:before {
  content: "\f47f"; }

.fa-image:before {
  content: "\f03e"; }

.fa-images:before {
  content: "\f302"; }

.fa-imdb:before {
  content: "\f2d8"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-industry:before {
  content: "\f275"; }

.fa-infinity:before {
  content: "\f534"; }

.fa-info:before {
  content: "\f129"; }

.fa-info-circle:before {
  content: "\f05a"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-italic:before {
  content: "\f033"; }

.fa-itunes:before {
  content: "\f3b4"; }

.fa-itunes-note:before {
  content: "\f3b5"; }

.fa-java:before {
  content: "\f4e4"; }

.fa-jedi-order:before {
  content: "\f50e"; }

.fa-jenkins:before {
  content: "\f3b6"; }

.fa-joget:before {
  content: "\f3b7"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-js:before {
  content: "\f3b8"; }

.fa-js-square:before {
  content: "\f3b9"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-key:before {
  content: "\f084"; }

.fa-keybase:before {
  content: "\f4f5"; }

.fa-keyboard:before {
  content: "\f11c"; }

.fa-keycdn:before {
  content: "\f3ba"; }

.fa-kickstarter:before {
  content: "\f3bb"; }

.fa-kickstarter-k:before {
  content: "\f3bc"; }

.fa-kiwi-bird:before {
  content: "\f535"; }

.fa-korvue:before {
  content: "\f42f"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-laravel:before {
  content: "\f3bd"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-lemon:before {
  content: "\f094"; }

.fa-less:before {
  content: "\f41d"; }

.fa-less-than:before {
  content: "\f536"; }

.fa-less-than-equal:before {
  content: "\f537"; }

.fa-level-down-alt:before {
  content: "\f3be"; }

.fa-level-up-alt:before {
  content: "\f3bf"; }

.fa-life-ring:before {
  content: "\f1cd"; }

.fa-lightbulb:before {
  content: "\f0eb"; }

.fa-line:before {
  content: "\f3c0"; }

.fa-link:before {
  content: "\f0c1"; }

.fa-linkedin:before {
  content: "\f08c"; }

.fa-linkedin-in:before {
  content: "\f0e1"; }

.fa-linode:before {
  content: "\f2b8"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-lira-sign:before {
  content: "\f195"; }

.fa-list:before {
  content: "\f03a"; }

.fa-list-alt:before {
  content: "\f022"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-lock:before {
  content: "\f023"; }

.fa-lock-open:before {
  content: "\f3c1"; }

.fa-long-arrow-alt-down:before {
  content: "\f309"; }

.fa-long-arrow-alt-left:before {
  content: "\f30a"; }

.fa-long-arrow-alt-right:before {
  content: "\f30b"; }

.fa-long-arrow-alt-up:before {
  content: "\f30c"; }

.fa-low-vision:before {
  content: "\f2a8"; }

.fa-lyft:before {
  content: "\f3c3"; }

.fa-magento:before {
  content: "\f3c4"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-male:before {
  content: "\f183"; }

.fa-mandalorian:before {
  content: "\f50f"; }

.fa-map:before {
  content: "\f279"; }

.fa-map-marker:before {
  content: "\f041"; }

.fa-map-marker-alt:before {
  content: "\f3c5"; }

.fa-map-pin:before {
  content: "\f276"; }

.fa-map-signs:before {
  content: "\f277"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-mastodon:before {
  content: "\f4f6"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-medapps:before {
  content: "\f3c6"; }

.fa-medium:before {
  content: "\f23a"; }

.fa-medium-m:before {
  content: "\f3c7"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-medrt:before {
  content: "\f3c8"; }

.fa-meetup:before {
  content: "\f2e0"; }

.fa-meh:before {
  content: "\f11a"; }

.fa-memory:before {
  content: "\f538"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-microchip:before {
  content: "\f2db"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-alt:before {
  content: "\f3c9"; }

.fa-microphone-alt-slash:before {
  content: "\f539"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-microsoft:before {
  content: "\f3ca"; }

.fa-minus:before {
  content: "\f068"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-mix:before {
  content: "\f3cb"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-mizuni:before {
  content: "\f3cc"; }

.fa-mobile:before {
  content: "\f10b"; }

.fa-mobile-alt:before {
  content: "\f3cd"; }

.fa-modx:before {
  content: "\f285"; }

.fa-monero:before {
  content: "\f3d0"; }

.fa-money-bill:before {
  content: "\f0d6"; }

.fa-money-bill-alt:before {
  content: "\f3d1"; }

.fa-money-bill-wave:before {
  content: "\f53a"; }

.fa-money-bill-wave-alt:before {
  content: "\f53b"; }

.fa-money-check:before {
  content: "\f53c"; }

.fa-money-check-alt:before {
  content: "\f53d"; }

.fa-moon:before {
  content: "\f186"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-mouse-pointer:before {
  content: "\f245"; }

.fa-music:before {
  content: "\f001"; }

.fa-napster:before {
  content: "\f3d2"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-newspaper:before {
  content: "\f1ea"; }

.fa-nintendo-switch:before {
  content: "\f418"; }

.fa-node:before {
  content: "\f419"; }

.fa-node-js:before {
  content: "\f3d3"; }

.fa-not-equal:before {
  content: "\f53e"; }

.fa-notes-medical:before {
  content: "\f481"; }

.fa-npm:before {
  content: "\f3d4"; }

.fa-ns8:before {
  content: "\f3d5"; }

.fa-nutritionix:before {
  content: "\f3d6"; }

.fa-object-group:before {
  content: "\f247"; }

.fa-object-ungroup:before {
  content: "\f248"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-old-republic:before {
  content: "\f510"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-osi:before {
  content: "\f41a"; }

.fa-outdent:before {
  content: "\f03b"; }

.fa-page4:before {
  content: "\f3d7"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-palette:before {
  content: "\f53f"; }

.fa-palfed:before {
  content: "\f3d8"; }

.fa-pallet:before {
  content: "\f482"; }

.fa-paper-plane:before {
  content: "\f1d8"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-parachute-box:before {
  content: "\f4cd"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-parking:before {
  content: "\f540"; }

.fa-paste:before {
  content: "\f0ea"; }

.fa-patreon:before {
  content: "\f3d9"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-pause-circle:before {
  content: "\f28b"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-pen-square:before {
  content: "\f14b"; }

.fa-pencil-alt:before {
  content: "\f303"; }

.fa-people-carry:before {
  content: "\f4ce"; }

.fa-percent:before {
  content: "\f295"; }

.fa-percentage:before {
  content: "\f541"; }

.fa-periscope:before {
  content: "\f3da"; }

.fa-phabricator:before {
  content: "\f3db"; }

.fa-phoenix-framework:before {
  content: "\f3dc"; }

.fa-phoenix-squadron:before {
  content: "\f511"; }

.fa-phone:before {
  content: "\f095"; }

.fa-phone-slash:before {
  content: "\f3dd"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-phone-volume:before {
  content: "\f2a0"; }

.fa-php:before {
  content: "\f457"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-pied-piper-hat:before {
  content: "\f4e5"; }

.fa-pied-piper-pp:before {
  content: "\f1a7"; }

.fa-piggy-bank:before {
  content: "\f4d3"; }

.fa-pills:before {
  content: "\f484"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-plane:before {
  content: "\f072"; }

.fa-play:before {
  content: "\f04b"; }

.fa-play-circle:before {
  content: "\f144"; }

.fa-playstation:before {
  content: "\f3df"; }

.fa-plug:before {
  content: "\f1e6"; }

.fa-plus:before {
  content: "\f067"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-podcast:before {
  content: "\f2ce"; }

.fa-poo:before {
  content: "\f2fe"; }

.fa-portrait:before {
  content: "\f3e0"; }

.fa-pound-sign:before {
  content: "\f154"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-prescription-bottle:before {
  content: "\f485"; }

.fa-prescription-bottle-alt:before {
  content: "\f486"; }

.fa-print:before {
  content: "\f02f"; }

.fa-procedures:before {
  content: "\f487"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-project-diagram:before {
  content: "\f542"; }

.fa-pushed:before {
  content: "\f3e1"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-python:before {
  content: "\f3e2"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-question:before {
  content: "\f128"; }

.fa-question-circle:before {
  content: "\f059"; }

.fa-quidditch:before {
  content: "\f458"; }

.fa-quinscape:before {
  content: "\f459"; }

.fa-quora:before {
  content: "\f2c4"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-r-project:before {
  content: "\f4f7"; }

.fa-random:before {
  content: "\f074"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-react:before {
  content: "\f41b"; }

.fa-readme:before {
  content: "\f4d5"; }

.fa-rebel:before {
  content: "\f1d0"; }

.fa-receipt:before {
  content: "\f543"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-red-river:before {
  content: "\f3e3"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-redo:before {
  content: "\f01e"; }

.fa-redo-alt:before {
  content: "\f2f9"; }

.fa-registered:before {
  content: "\f25d"; }

.fa-rendact:before {
  content: "\f3e4"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-reply:before {
  content: "\f3e5"; }

.fa-reply-all:before {
  content: "\f122"; }

.fa-replyd:before {
  content: "\f3e6"; }

.fa-researchgate:before {
  content: "\f4f8"; }

.fa-resolving:before {
  content: "\f3e7"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-ribbon:before {
  content: "\f4d6"; }

.fa-road:before {
  content: "\f018"; }

.fa-robot:before {
  content: "\f544"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-rocketchat:before {
  content: "\f3e8"; }

.fa-rockrms:before {
  content: "\f3e9"; }

.fa-rss:before {
  content: "\f09e"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-ruble-sign:before {
  content: "\f158"; }

.fa-ruler:before {
  content: "\f545"; }

.fa-ruler-combined:before {
  content: "\f546"; }

.fa-ruler-horizontal:before {
  content: "\f547"; }

.fa-ruler-vertical:before {
  content: "\f548"; }

.fa-rupee-sign:before {
  content: "\f156"; }

.fa-safari:before {
  content: "\f267"; }

.fa-sass:before {
  content: "\f41e"; }

.fa-save:before {
  content: "\f0c7"; }

.fa-schlix:before {
  content: "\f3ea"; }

.fa-school:before {
  content: "\f549"; }

.fa-screwdriver:before {
  content: "\f54a"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-search:before {
  content: "\f002"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-searchengin:before {
  content: "\f3eb"; }

.fa-seedling:before {
  content: "\f4d8"; }

.fa-sellcast:before {
  content: "\f2da"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-server:before {
  content: "\f233"; }

.fa-servicestack:before {
  content: "\f3ec"; }

.fa-share:before {
  content: "\f064"; }

.fa-share-alt:before {
  content: "\f1e0"; }

.fa-share-alt-square:before {
  content: "\f1e1"; }

.fa-share-square:before {
  content: "\f14d"; }

.fa-shekel-sign:before {
  content: "\f20b"; }

.fa-shield-alt:before {
  content: "\f3ed"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-shipping-fast:before {
  content: "\f48b"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-shoe-prints:before {
  content: "\f54b"; }

.fa-shopping-bag:before {
  content: "\f290"; }

.fa-shopping-basket:before {
  content: "\f291"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-shower:before {
  content: "\f2cc"; }

.fa-sign:before {
  content: "\f4d9"; }

.fa-sign-in-alt:before {
  content: "\f2f6"; }

.fa-sign-language:before {
  content: "\f2a7"; }

.fa-sign-out-alt:before {
  content: "\f2f5"; }

.fa-signal:before {
  content: "\f012"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-sistrix:before {
  content: "\f3ee"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-sith:before {
  content: "\f512"; }

.fa-skull:before {
  content: "\f54c"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-slack:before {
  content: "\f198"; }

.fa-slack-hash:before {
  content: "\f3ef"; }

.fa-sliders-h:before {
  content: "\f1de"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-smile:before {
  content: "\f118"; }

.fa-smoking:before {
  content: "\f48d"; }

.fa-smoking-ban:before {
  content: "\f54d"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ac"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-snowflake:before {
  content: "\f2dc"; }

.fa-sort:before {
  content: "\f0dc"; }

.fa-sort-alpha-down:before {
  content: "\f15d"; }

.fa-sort-alpha-up:before {
  content: "\f15e"; }

.fa-sort-amount-down:before {
  content: "\f160"; }

.fa-sort-amount-up:before {
  content: "\f161"; }

.fa-sort-down:before {
  content: "\f0dd"; }

.fa-sort-numeric-down:before {
  content: "\f162"; }

.fa-sort-numeric-up:before {
  content: "\f163"; }

.fa-sort-up:before {
  content: "\f0de"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-speakap:before {
  content: "\f3f3"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-square-full:before {
  content: "\f45c"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-staylinked:before {
  content: "\f3f5"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-steam-symbol:before {
  content: "\f3f6"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-sticker-mule:before {
  content: "\f3f7"; }

.fa-sticky-note:before {
  content: "\f249"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-stop-circle:before {
  content: "\f28d"; }

.fa-stopwatch:before {
  content: "\f2f2"; }

.fa-store:before {
  content: "\f54e"; }

.fa-store-alt:before {
  content: "\f54f"; }

.fa-strava:before {
  content: "\f428"; }

.fa-stream:before {
  content: "\f550"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-stripe:before {
  content: "\f429"; }

.fa-stripe-s:before {
  content: "\f42a"; }

.fa-stroopwafel:before {
  content: "\f551"; }

.fa-studiovinari:before {
  content: "\f3f8"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-subway:before {
  content: "\f239"; }

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-sun:before {
  content: "\f185"; }

.fa-superpowers:before {
  content: "\f2dd"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-supple:before {
  content: "\f3f9"; }

.fa-sync:before {
  content: "\f021"; }

.fa-sync-alt:before {
  content: "\f2f1"; }

.fa-syringe:before {
  content: "\f48e"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-table-tennis:before {
  content: "\f45d"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-tablet-alt:before {
  content: "\f3fa"; }

.fa-tablets:before {
  content: "\f490"; }

.fa-tachometer-alt:before {
  content: "\f3fd"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-tape:before {
  content: "\f4db"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-taxi:before {
  content: "\f1ba"; }

.fa-teamspeak:before {
  content: "\f4f9"; }

.fa-telegram:before {
  content: "\f2c6"; }

.fa-telegram-plane:before {
  content: "\f3fe"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-terminal:before {
  content: "\f120"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-thermometer:before {
  content: "\f491"; }

.fa-thermometer-empty:before {
  content: "\f2cb"; }

.fa-thermometer-full:before {
  content: "\f2c7"; }

.fa-thermometer-half:before {
  content: "\f2c9"; }

.fa-thermometer-quarter:before {
  content: "\f2ca"; }

.fa-thermometer-three-quarters:before {
  content: "\f2c8"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbtack:before {
  content: "\f08d"; }

.fa-ticket-alt:before {
  content: "\f3ff"; }

.fa-times:before {
  content: "\f00d"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-tint:before {
  content: "\f043"; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-toolbox:before {
  content: "\f552"; }

.fa-trade-federation:before {
  content: "\f513"; }

.fa-trademark:before {
  content: "\f25c"; }

.fa-train:before {
  content: "\f238"; }

.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-trash-alt:before {
  content: "\f2ed"; }

.fa-tree:before {
  content: "\f1bb"; }

.fa-trello:before {
  content: "\f181"; }

.fa-tripadvisor:before {
  content: "\f262"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-truck-loading:before {
  content: "\f4de"; }

.fa-truck-moving:before {
  content: "\f4df"; }

.fa-tshirt:before {
  content: "\f553"; }

.fa-tty:before {
  content: "\f1e4"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-tv:before {
  content: "\f26c"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-typo3:before {
  content: "\f42b"; }

.fa-uber:before {
  content: "\f402"; }

.fa-uikit:before {
  content: "\f403"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-undo:before {
  content: "\f0e2"; }

.fa-undo-alt:before {
  content: "\f2ea"; }

.fa-uniregistry:before {
  content: "\f404"; }

.fa-universal-access:before {
  content: "\f29a"; }

.fa-university:before {
  content: "\f19c"; }

.fa-unlink:before {
  content: "\f127"; }

.fa-unlock:before {
  content: "\f09c"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-untappd:before {
  content: "\f405"; }

.fa-upload:before {
  content: "\f093"; }

.fa-usb:before {
  content: "\f287"; }

.fa-user:before {
  content: "\f007"; }

.fa-user-alt:before {
  content: "\f406"; }

.fa-user-alt-slash:before {
  content: "\f4fa"; }

.fa-user-astronaut:before {
  content: "\f4fb"; }

.fa-user-check:before {
  content: "\f4fc"; }

.fa-user-circle:before {
  content: "\f2bd"; }

.fa-user-clock:before {
  content: "\f4fd"; }

.fa-user-cog:before {
  content: "\f4fe"; }

.fa-user-edit:before {
  content: "\f4ff"; }

.fa-user-friends:before {
  content: "\f500"; }

.fa-user-graduate:before {
  content: "\f501"; }

.fa-user-lock:before {
  content: "\f502"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-user-minus:before {
  content: "\f503"; }

.fa-user-ninja:before {
  content: "\f504"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-user-shield:before {
  content: "\f505"; }

.fa-user-slash:before {
  content: "\f506"; }

.fa-user-tag:before {
  content: "\f507"; }

.fa-user-tie:before {
  content: "\f508"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-users:before {
  content: "\f0c0"; }

.fa-users-cog:before {
  content: "\f509"; }

.fa-ussunnah:before {
  content: "\f407"; }

.fa-utensil-spoon:before {
  content: "\f2e5"; }

.fa-utensils:before {
  content: "\f2e7"; }

.fa-vaadin:before {
  content: "\f408"; }

.fa-venus:before {
  content: "\f221"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-vial:before {
  content: "\f492"; }

.fa-vials:before {
  content: "\f493"; }

.fa-viber:before {
  content: "\f409"; }

.fa-video:before {
  content: "\f03d"; }

.fa-video-slash:before {
  content: "\f4e2"; }

.fa-vimeo:before {
  content: "\f40a"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-vimeo-v:before {
  content: "\f27d"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-vk:before {
  content: "\f189"; }

.fa-vnv:before {
  content: "\f40b"; }

.fa-volleyball-ball:before {
  content: "\f45f"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-vuejs:before {
  content: "\f41f"; }

.fa-walking:before {
  content: "\f554"; }

.fa-wallet:before {
  content: "\f555"; }

.fa-warehouse:before {
  content: "\f494"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-weight:before {
  content: "\f496"; }

.fa-weixin:before {
  content: "\f1d7"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-whatsapp-square:before {
  content: "\f40c"; }

.fa-wheelchair:before {
  content: "\f193"; }

.fa-whmcs:before {
  content: "\f40d"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-wikipedia-w:before {
  content: "\f266"; }

.fa-window-close:before {
  content: "\f410"; }

.fa-window-maximize:before {
  content: "\f2d0"; }

.fa-window-minimize:before {
  content: "\f2d1"; }

.fa-window-restore:before {
  content: "\f2d2"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-wine-glass:before {
  content: "\f4e3"; }

.fa-wolf-pack-battalion:before {
  content: "\f514"; }

.fa-won-sign:before {
  content: "\f159"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-wordpress-simple:before {
  content: "\f411"; }

.fa-wpbeginner:before {
  content: "\f297"; }

.fa-wpexplorer:before {
  content: "\f2de"; }

.fa-wpforms:before {
  content: "\f298"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-x-ray:before {
  content: "\f497"; }

.fa-xbox:before {
  content: "\f412"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-y-combinator:before {
  content: "\f23b"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-yandex:before {
  content: "\f413"; }

.fa-yandex-international:before {
  content: "\f414"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-yen-sign:before {
  content: "\f157"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-youtube-square:before {
  content: "\f431"; }

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: normal;
  src: url("../css/webfonts/fa-brands-400.eot");
  src: url("../css/webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../css/webfonts/fa-brands-400.woff2") format("woff2"), url("../css/webfonts/fa-brands-400.woff") format("woff"), url("../css/webfonts/fa-brands-400.ttf") format("truetype"), url("../css/webfonts/fa-brands-400.svg#fontawesome") format("svg"); }

.fab {
  font-family: 'Font Awesome 5 Brands'; }

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  src: url("../css/webfonts/fa-regular-400.eot");
  src: url("../css/webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../css/webfonts/fa-regular-400.woff2") format("woff2"), url("../css/webfonts/fa-regular-400.woff") format("woff"), url("../css/webfonts/fa-regular-400.ttf") format("truetype"), url("../css/webfonts/fa-regular-400.svg#fontawesome") format("svg"); }

.far {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400; }

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  src: url("../css/webfonts/fa-solid-900.eot");
  src: url("../css/webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../css/webfonts/fa-solid-900.woff2") format("woff2"), url("../css/webfonts/fa-solid-900.woff") format("woff"), url('../css/webfonts/fa-solid-900.ttf") format("truetype'), url("../css/webfonts/fa-solid-900.svg#fontawesome") format("svg"); }

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900; }

@font-face {
  font-family: 'plaza-icon';
  src: url("../css/webfonts/plaza-icon.eot?leeyft");
  src: url("../css/webfonts/plaza-icon.eot?leeyft#iefix") format("embedded-opentype"), url("../css/webfonts/plaza-icon.ttf?leeyft") format("truetype"), url("../css/webfonts/plaza-icon.woff?leeyft") format("woff"), url("../css/webfonts/plaza-icon.svg?leeyft#plaza-icon") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'plaza-icon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-activity:before {
  content: "\e900"; }

.icon-airplay:before {
  content: "\e901"; }

.icon-alert-circle:before {
  content: "\e902"; }

.icon-alert-octagon:before {
  content: "\e903"; }

.icon-alert-triangle:before {
  content: "\e904"; }

.icon-align-center:before {
  content: "\e905"; }

.icon-align-justify:before {
  content: "\e906"; }

.icon-align-left:before {
  content: "\e907"; }

.icon-align-right:before {
  content: "\e908"; }

.icon-anchor:before {
  content: "\e909"; }

.icon-aperture:before {
  content: "\e90a"; }

.icon-archive:before {
  content: "\e90b"; }

.icon-arrow-down:before {
  content: "\e90c"; }

.icon-arrow-down-circle:before {
  content: "\e90d"; }

.icon-arrow-down-left:before {
  content: "\e90e"; }

.icon-arrow-down-right:before {
  content: "\e90f"; }

.icon-arrow-left:before {
  content: "\e910"; }

.icon-arrow-left-circle:before {
  content: "\e911"; }

.icon-arrow-right:before {
  content: "\e912"; }

.icon-arrow-right-circle:before {
  content: "\e913"; }

.icon-arrow-up:before {
  content: "\e914"; }

.icon-arrow-up-circle:before {
  content: "\e915"; }

.icon-arrow-up-left:before {
  content: "\e916"; }

.icon-arrow-up-right:before {
  content: "\e917"; }

.icon-at-sign:before {
  content: "\e918"; }

.icon-award:before {
  content: "\e919"; }

.icon-bar-chart:before {
  content: "\e91a"; }

.icon-bar-chart-2:before {
  content: "\e91b"; }

.icon-battery:before {
  content: "\e91c"; }

.icon-battery-charging:before {
  content: "\e91d"; }

.icon-bell:before {
  content: "\e91e"; }

.icon-bell-off:before {
  content: "\e91f"; }

.icon-bluetooth:before {
  content: "\e920"; }

.icon-bold:before {
  content: "\e921"; }

.icon-book:before {
  content: "\e922"; }

.icon-book-open:before {
  content: "\e923"; }

.icon-bookmark:before {
  content: "\e924"; }

.icon-box:before {
  content: "\e925"; }

.icon-briefcase:before {
  content: "\e926"; }

.icon-calendar:before {
  content: "\e927"; }

.icon-camera:before {
  content: "\e928"; }

.icon-camera-off:before {
  content: "\e929"; }

.icon-cast:before {
  content: "\e92a"; }

.icon-check:before {
  content: "\e92b"; }

.icon-check-circle:before {
  content: "\e92c"; }

.icon-check-square:before {
  content: "\e92d"; }

.icon-chevron-down:before {
  content: "\e92e"; }

.icon-chevron-left:before {
  content: "\e92f"; }

.icon-chevron-right:before {
  content: "\e930"; }

.icon-chevron-up:before {
  content: "\e931"; }

.icon-chevrons-down:before {
  content: "\e932"; }

.icon-chevrons-left:before {
  content: "\e933"; }

.icon-chevrons-right:before {
  content: "\e934"; }

.icon-chevrons-up:before {
  content: "\e935"; }

.icon-chrome:before {
  content: "\e936"; }

.icon-circle:before {
  content: "\e937"; }

.icon-clipboard:before {
  content: "\e938"; }

.icon-clock:before {
  content: "\e939"; }

.icon-cloud:before {
  content: "\e93a"; }

.icon-cloud-drizzle:before {
  content: "\e93b"; }

.icon-cloud-lightning:before {
  content: "\e93c"; }

.icon-cloud-off:before {
  content: "\e93d"; }

.icon-cloud-rain:before {
  content: "\e93e"; }

.icon-cloud-snow:before {
  content: "\e93f"; }

.icon-code:before {
  content: "\e940"; }

.icon-codepen:before {
  content: "\e941"; }

.icon-command:before {
  content: "\e942"; }

.icon-compass:before {
  content: "\e943"; }

.icon-copy:before {
  content: "\e944"; }

.icon-corner-down-left:before {
  content: "\e945"; }

.icon-corner-down-right:before {
  content: "\e946"; }

.icon-corner-left-down:before {
  content: "\e947"; }

.icon-corner-left-up:before {
  content: "\e948"; }

.icon-corner-right-down:before {
  content: "\e949"; }

.icon-corner-right-up:before {
  content: "\e94a"; }

.icon-corner-up-left:before {
  content: "\e94b"; }

.icon-corner-up-right:before {
  content: "\e94c"; }

.icon-cpu:before {
  content: "\e94d"; }

.icon-credit-card:before {
  content: "\e94e"; }

.icon-crop:before {
  content: "\e94f"; }

.icon-crosshair:before {
  content: "\e950"; }

.icon-database:before {
  content: "\e951"; }

.icon-delete:before {
  content: "\e952"; }

.icon-disc:before {
  content: "\e953"; }

.icon-dollar-sign:before {
  content: "\e954"; }

.icon-download:before {
  content: "\e955"; }

.icon-download-cloud:before {
  content: "\e956"; }

.icon-droplet:before {
  content: "\e957"; }

.icon-edit:before {
  content: "\e958"; }

.icon-edit-2:before {
  content: "\e959"; }

.icon-edit-3:before {
  content: "\e95a"; }

.icon-external-link:before {
  content: "\e95b"; }

.icon-eye:before {
  content: "\e95c"; }

.icon-eye-off:before {
  content: "\e95d"; }

.icon-facebook:before {
  content: "\e95e"; }

.icon-fast-forward:before {
  content: "\e95f"; }

.icon-feather:before {
  content: "\e960"; }

.icon-file:before {
  content: "\e961"; }

.icon-file-minus:before {
  content: "\e962"; }

.icon-file-plus:before {
  content: "\e963"; }

.icon-file-text:before {
  content: "\e964"; }

.icon-film:before {
  content: "\e965"; }

.icon-filter:before {
  content: "\e966"; }

.icon-flag:before {
  content: "\e967"; }

.icon-folder:before {
  content: "\e968"; }

.icon-folder-minus:before {
  content: "\e969"; }

.icon-folder-plus:before {
  content: "\e96a"; }

.icon-gift:before {
  content: "\e96b"; }

.icon-git-branch:before {
  content: "\e96c"; }

.icon-git-commit:before {
  content: "\e96d"; }

.icon-git-merge:before {
  content: "\e96e"; }

.icon-git-pull-request:before {
  content: "\e96f"; }

.icon-github:before {
  content: "\e970"; }

.icon-gitlab:before {
  content: "\e971"; }

.icon-globe:before {
  content: "\e972"; }

.icon-grid:before {
  content: "\e973"; }

.icon-hard-drive:before {
  content: "\e974"; }

.icon-hash:before {
  content: "\e975"; }

.icon-headphones:before {
  content: "\e976"; }

.icon-heart:before {
  content: "\e977"; }

.icon-help-circle:before {
  content: "\e978"; }

.icon-home:before {
  content: "\e979"; }

.icon-image:before {
  content: "\e97a"; }

.icon-inbox:before {
  content: "\e97b"; }

.icon-info:before {
  content: "\e97c"; }

.icon-instagram:before {
  content: "\e97d"; }

.icon-italic:before {
  content: "\e97e"; }

.icon-layers:before {
  content: "\e97f"; }

.icon-layout:before {
  content: "\e980"; }

.icon-life-buoy:before {
  content: "\e981"; }

.icon-link:before {
  content: "\e982"; }

.icon-link-2:before {
  content: "\e983"; }

.icon-linkedin:before {
  content: "\e984"; }

.icon-list:before {
  content: "\e985"; }

.icon-loader:before {
  content: "\e986"; }

.icon-lock:before {
  content: "\e987"; }

.icon-log-in:before {
  content: "\e988"; }

.icon-log-out:before {
  content: "\e989"; }

.icon-mail:before {
  content: "\e98a"; }

.icon-map:before {
  content: "\e98b"; }

.icon-map-pin:before {
  content: "\e98c"; }

.icon-maximize:before {
  content: "\e98d"; }

.icon-maximize-2:before {
  content: "\e98e"; }

.icon-menu:before {
  content: "\e98f"; }

.icon-message-circle:before {
  content: "\e990"; }

.icon-message-square:before {
  content: "\e991"; }

.icon-mic:before {
  content: "\e992"; }

.icon-mic-off:before {
  content: "\e993"; }

.icon-minimize:before {
  content: "\e994"; }

.icon-minimize-2:before {
  content: "\e995"; }

.icon-minus:before {
  content: "\e996"; }

.icon-minus-circle:before {
  content: "\e997"; }

.icon-minus-square:before {
  content: "\e998"; }

.icon-monitor:before {
  content: "\e999"; }

.icon-moon:before {
  content: "\e99a"; }

.icon-more-horizontal:before {
  content: "\e99b"; }

.icon-more-vertical:before {
  content: "\e99c"; }

.icon-move:before {
  content: "\e99d"; }

.icon-music:before {
  content: "\e99e"; }

.icon-navigation:before {
  content: "\e99f"; }

.icon-navigation-2:before {
  content: "\e9a0"; }

.icon-octagon:before {
  content: "\e9a1"; }

.icon-package:before {
  content: "\e9a2"; }

.icon-paperclip:before {
  content: "\e9a3"; }

.icon-pause:before {
  content: "\e9a4"; }

.icon-pause-circle:before {
  content: "\e9a5"; }

.icon-percent:before {
  content: "\e9a6"; }

.icon-phone:before {
  content: "\e9a7"; }

.icon-phone-call:before {
  content: "\e9a8"; }

.icon-phone-forwarded:before {
  content: "\e9a9"; }

.icon-phone-incoming:before {
  content: "\e9aa"; }

.icon-phone-missed:before {
  content: "\e9ab"; }

.icon-phone-off:before {
  content: "\e9ac"; }

.icon-phone-outgoing:before {
  content: "\e9ad"; }

.icon-pie-chart:before {
  content: "\e9ae"; }

.icon-play:before {
  content: "\e9af"; }

.icon-play-circle:before {
  content: "\e9b0"; }

.icon-plus:before {
  content: "\e9b1"; }

.icon-plus-circle:before {
  content: "\e9b2"; }

.icon-plus-square:before {
  content: "\e9b3"; }

.icon-pocket:before {
  content: "\e9b4"; }

.icon-power:before {
  content: "\e9b5"; }

.icon-printer:before {
  content: "\e9b6"; }

.icon-radio:before {
  content: "\e9b7"; }

.icon-refresh-ccw:before {
  content: "\e9b8"; }

.icon-refresh-cw:before {
  content: "\e9b9"; }

.icon-repeat:before {
  content: "\e9ba"; }

.icon-rewind:before {
  content: "\e9bb"; }

.icon-rotate-ccw:before {
  content: "\e9bc"; }

.icon-rotate-cw:before {
  content: "\e9bd"; }

.icon-rss:before {
  content: "\e9be"; }

.icon-save:before {
  content: "\e9bf"; }

.icon-scissors:before {
  content: "\e9c0"; }

.icon-search:before {
  content: "\e9c1"; }

.icon-send:before {
  content: "\e9c2"; }

.icon-server:before {
  content: "\e9c3"; }

.icon-settings:before {
  content: "\e9c4"; }

.icon-share:before {
  content: "\e9c5"; }

.icon-share-2:before {
  content: "\e9c6"; }

.icon-shield:before {
  content: "\e9c7"; }

.icon-shield-off:before {
  content: "\e9c8"; }

.icon-shopping-bag:before {
  content: "\e9c9"; }

.icon-shopping-cart:before {
  content: "\e9ca"; }

.icon-shuffle:before {
  content: "\e9cb"; }

.icon-sidebar:before {
  content: "\e9cc"; }

.icon-skip-back:before {
  content: "\e9cd"; }

.icon-skip-forward:before {
  content: "\e9ce"; }

.icon-slack:before {
  content: "\e9cf"; }

.icon-slash:before {
  content: "\e9d0"; }

.icon-sliders:before {
  content: "\e9d1"; }

.icon-smartphone:before {
  content: "\e9d2"; }

.icon-speaker:before {
  content: "\e9d3"; }

.icon-square:before {
  content: "\e9d4"; }

.icon-star:before {
  content: "\e9d5"; }

.icon-stop-circle:before {
  content: "\e9d6"; }

.icon-sun:before {
  content: "\e9d7"; }

.icon-sunrise:before {
  content: "\e9d8"; }

.icon-sunset:before {
  content: "\e9d9"; }

.icon-tablet:before {
  content: "\e9da"; }

.icon-tag:before {
  content: "\e9db"; }

.icon-target:before {
  content: "\e9dc"; }

.icon-terminal:before {
  content: "\e9dd"; }

.icon-thermometer:before {
  content: "\e9de"; }

.icon-thumbs-down:before {
  content: "\e9df"; }

.icon-thumbs-up:before {
  content: "\e9e0"; }

.icon-toggle-left:before {
  content: "\e9e1"; }

.icon-toggle-right:before {
  content: "\e9e2"; }

.icon-trash:before {
  content: "\e9e3"; }

.icon-trash-2:before {
  content: "\e9e4"; }

.icon-trending-down:before {
  content: "\e9e5"; }

.icon-trending-up:before {
  content: "\e9e6"; }

.icon-triangle:before {
  content: "\e9e7"; }

.icon-truck:before {
  content: "\e9e8"; }

.icon-tv:before {
  content: "\e9e9"; }

.icon-twitter:before {
  content: "\e9ea"; }

.icon-type:before {
  content: "\e9eb"; }

.icon-umbrella:before {
  content: "\e9ec"; }

.icon-underline:before {
  content: "\e9ed"; }

.icon-unlock:before {
  content: "\e9ee"; }

.icon-upload:before {
  content: "\e9ef"; }

.icon-upload-cloud:before {
  content: "\e9f0"; }

.icon-user:before {
  content: "\e9f1"; }

.icon-user-check:before {
  content: "\e9f2"; }

.icon-user-minus:before {
  content: "\e9f3"; }

.icon-user-plus:before {
  content: "\e9f4"; }

.icon-user-x:before {
  content: "\e9f5"; }

.icon-users:before {
  content: "\e9f6"; }

.icon-video:before {
  content: "\e9f7"; }

.icon-video-off:before {
  content: "\e9f8"; }

.icon-voicemail:before {
  content: "\e9f9"; }

.icon-volume:before {
  content: "\e9fa"; }

.icon-volume-1:before {
  content: "\e9fb"; }

.icon-volume-2:before {
  content: "\e9fc"; }

.icon-volume-x:before {
  content: "\e9fd"; }

.icon-watch:before {
  content: "\e9fe"; }

.icon-wifi:before {
  content: "\e9ff"; }

.icon-wifi-off:before {
  content: "\ea00"; }

.icon-wind:before {
  content: "\ea01"; }

.icon-x:before {
  content: "\ea02"; }

.icon-x-circle:before {
  content: "\ea03"; }

.icon-x-square:before {
  content: "\ea04"; }

.icon-youtube:before {
  content: "\ea05"; }

.icon-zap:before {
  content: "\ea06"; }

.icon-zap-off:before {
  content: "\ea07"; }

.icon-zoom-in:before {
  content: "\ea08"; }

.icon-zoom-out:before {
  content: "\ea09"; }

.icon-add-to-list:before {
  content: "\ea0a"; }

.icon-classic-computer:before {
  content: "\ea0b"; }

.icon-controller-fast-backward:before {
  content: "\ea0c"; }

.icon-creative-commons-attribution:before {
  content: "\ea0d"; }

.icon-creative-commons-noderivs:before {
  content: "\ea0e"; }

.icon-creative-commons-noncommercial-eu:before {
  content: "\ea0f"; }

.icon-creative-commons-noncommercial-us:before {
  content: "\ea10"; }

.icon-creative-commons-public-domain:before {
  content: "\ea11"; }

.icon-creative-commons-remix:before {
  content: "\ea12"; }

.icon-creative-commons-share:before {
  content: "\ea13"; }

.icon-creative-commons-sharealike:before {
  content: "\ea14"; }

.icon-creative-commons:before {
  content: "\ea15"; }

.icon-document-landscape:before {
  content: "\ea16"; }

.icon-remove-user:before {
  content: "\ea17"; }

.icon-warning:before {
  content: "\ea18"; }

.icon-arrow-bold-down:before {
  content: "\ea19"; }

.icon-arrow-bold-left:before {
  content: "\ea1a"; }

.icon-arrow-bold-right:before {
  content: "\ea1b"; }

.icon-arrow-bold-up:before {
  content: "\ea1c"; }

.icon-arrow-down2:before {
  content: "\ea1d"; }

.icon-arrow-left2:before {
  content: "\ea1e"; }

.icon-arrow-long-down:before {
  content: "\ea1f"; }

.icon-arrow-long-left:before {
  content: "\ea20"; }

.icon-arrow-long-right:before {
  content: "\ea21"; }

.icon-arrow-long-up:before {
  content: "\ea22"; }

.icon-arrow-right2:before {
  content: "\ea23"; }

.icon-arrow-up2:before {
  content: "\ea24"; }

.icon-arrow-with-circle-down:before {
  content: "\ea25"; }

.icon-arrow-with-circle-left:before {
  content: "\ea26"; }

.icon-arrow-with-circle-right:before {
  content: "\ea27"; }

.icon-arrow-with-circle-up:before {
  content: "\ea28"; }

.icon-bookmark2:before {
  content: "\ea29"; }

.icon-bookmarks:before {
  content: "\ea2a"; }

.icon-chevron-down2:before {
  content: "\ea2b"; }

.icon-chevron-left2:before {
  content: "\ea2c"; }

.icon-chevron-right2:before {
  content: "\ea2d"; }

.icon-chevron-small-down:before {
  content: "\ea2e"; }

.icon-chevron-small-left:before {
  content: "\ea2f"; }

.icon-chevron-small-right:before {
  content: "\ea30"; }

.icon-chevron-small-up:before {
  content: "\ea31"; }

.icon-chevron-thin-down:before {
  content: "\ea32"; }

.icon-chevron-thin-left:before {
  content: "\ea33"; }

.icon-chevron-thin-right:before {
  content: "\ea34"; }

.icon-chevron-thin-up:before {
  content: "\ea35"; }

.icon-chevron-up2:before {
  content: "\ea36"; }

.icon-chevron-with-circle-down:before {
  content: "\ea37"; }

.icon-chevron-with-circle-left:before {
  content: "\ea38"; }

.icon-chevron-with-circle-right:before {
  content: "\ea39"; }

.icon-chevron-with-circle-up:before {
  content: "\ea3a"; }

.icon-cloud2:before {
  content: "\ea3b"; }

.icon-controller-fast-forward:before {
  content: "\ea3c"; }

.icon-controller-jump-to-start:before {
  content: "\ea3d"; }

.icon-controller-next:before {
  content: "\ea3e"; }

.icon-controller-paus:before {
  content: "\ea3f"; }

.icon-controller-play:before {
  content: "\ea40"; }

.icon-controller-record:before {
  content: "\ea41"; }

.icon-controller-stop:before {
  content: "\ea42"; }

.icon-controller-volume:before {
  content: "\ea43"; }

.icon-dot-single:before {
  content: "\ea44"; }

.icon-dots-three-horizontal:before {
  content: "\ea45"; }

.icon-dots-three-vertical:before {
  content: "\ea46"; }

.icon-dots-two-horizontal:before {
  content: "\ea47"; }

.icon-dots-two-vertical:before {
  content: "\ea48"; }

.icon-download2:before {
  content: "\ea49"; }

.icon-emoji-flirt:before {
  content: "\ea4a"; }

.icon-flow-branch:before {
  content: "\ea4b"; }

.icon-flow-cascade:before {
  content: "\ea4c"; }

.icon-flow-line:before {
  content: "\ea4d"; }

.icon-flow-parallel:before {
  content: "\ea4e"; }

.icon-flow-tree:before {
  content: "\ea4f"; }

.icon-install:before {
  content: "\ea50"; }

.icon-layers2:before {
  content: "\ea51"; }

.icon-open-book:before {
  content: "\ea52"; }

.icon-resize-100:before {
  content: "\ea53"; }

.icon-resize-full-screen:before {
  content: "\ea54"; }

.icon-save2:before {
  content: "\ea55"; }

.icon-select-arrows:before {
  content: "\ea56"; }

.icon-sound-mute:before {
  content: "\ea57"; }

.icon-sound:before {
  content: "\ea58"; }

.icon-trash2:before {
  content: "\ea59"; }

.icon-triangle-down:before {
  content: "\ea5a"; }

.icon-triangle-left:before {
  content: "\ea5b"; }

.icon-triangle-right:before {
  content: "\ea5c"; }

.icon-triangle-up:before {
  content: "\ea5d"; }

.icon-uninstall:before {
  content: "\ea5e"; }

.icon-upload-to-cloud:before {
  content: "\ea5f"; }

.icon-upload2:before {
  content: "\ea60"; }

.icon-add-user:before {
  content: "\ea61"; }

.icon-address:before {
  content: "\ea62"; }

.icon-adjust:before {
  content: "\ea63"; }

.icon-air:before {
  content: "\ea64"; }

.icon-aircraft-landing:before {
  content: "\ea65"; }

.icon-aircraft-take-off:before {
  content: "\ea66"; }

.icon-aircraft:before {
  content: "\ea67"; }

.icon-align-bottom:before {
  content: "\ea68"; }

.icon-align-horizontal-middle:before {
  content: "\ea69"; }

.icon-align-left2:before {
  content: "\ea6a"; }

.icon-align-right2:before {
  content: "\ea6b"; }

.icon-align-top:before {
  content: "\ea6c"; }

.icon-align-vertical-middle:before {
  content: "\ea6d"; }

.icon-archive2:before {
  content: "\ea6e"; }

.icon-area-graph:before {
  content: "\ea6f"; }

.icon-attachment:before {
  content: "\ea70"; }

.icon-awareness-ribbon:before {
  content: "\ea71"; }

.icon-back-in-time:before {
  content: "\ea72"; }

.icon-back:before {
  content: "\ea73"; }

.icon-bar-graph:before {
  content: "\ea74"; }

.icon-battery2:before {
  content: "\ea75"; }

.icon-beamed-note:before {
  content: "\ea76"; }

.icon-bell2:before {
  content: "\ea77"; }

.icon-blackboard:before {
  content: "\ea78"; }

.icon-block:before {
  content: "\ea79"; }

.icon-book2:before {
  content: "\ea7a"; }

.icon-bowl:before {
  content: "\ea7b"; }

.icon-box2:before {
  content: "\ea7c"; }

.icon-briefcase2:before {
  content: "\ea7d"; }

.icon-browser:before {
  content: "\ea7e"; }

.icon-brush:before {
  content: "\ea7f"; }

.icon-bucket:before {
  content: "\ea80"; }

.icon-cake:before {
  content: "\ea81"; }

.icon-calculator:before {
  content: "\ea82"; }

.icon-calendar2:before {
  content: "\ea83"; }

.icon-camera2:before {
  content: "\ea84"; }

.icon-ccw:before {
  content: "\ea85"; }

.icon-chat:before {
  content: "\ea86"; }

.icon-check2:before {
  content: "\ea87"; }

.icon-circle-with-cross:before {
  content: "\ea88"; }

.icon-circle-with-minus:before {
  content: "\ea89"; }

.icon-circle-with-plus:before {
  content: "\ea8a"; }

.icon-circle2:before {
  content: "\ea8b"; }

.icon-circular-graph:before {
  content: "\ea8c"; }

.icon-clapperboard:before {
  content: "\ea8d"; }

.icon-clipboard2:before {
  content: "\ea8e"; }

.icon-clock2:before {
  content: "\ea8f"; }

.icon-code2:before {
  content: "\ea90"; }

.icon-cog:before {
  content: "\ea91"; }

.icon-colours:before {
  content: "\ea92"; }

.icon-compass2:before {
  content: "\ea93"; }

.icon-copy2:before {
  content: "\ea94"; }

.icon-credit-card2:before {
  content: "\ea95"; }

.icon-credit:before {
  content: "\ea96"; }

.icon-cross:before {
  content: "\ea97"; }

.icon-cup:before {
  content: "\ea98"; }

.icon-cw:before {
  content: "\ea99"; }

.icon-cycle:before {
  content: "\ea9a"; }

.icon-database2:before {
  content: "\ea9b"; }

.icon-dial-pad:before {
  content: "\ea9c"; }

.icon-direction:before {
  content: "\ea9d"; }

.icon-document:before {
  content: "\ea9e"; }

.icon-documents:before {
  content: "\ea9f"; }

.icon-drink:before {
  content: "\eaa0"; }

.icon-drive:before {
  content: "\eaa1"; }

.icon-drop:before {
  content: "\eaa2"; }

.icon-edit2:before {
  content: "\eaa3"; }

.icon-email:before {
  content: "\eaa4"; }

.icon-emoji-happy:before {
  content: "\eaa5"; }

.icon-emoji-neutral:before {
  content: "\eaa6"; }

.icon-emoji-sad:before {
  content: "\eaa7"; }

.icon-erase:before {
  content: "\eaa8"; }

.icon-eraser:before {
  content: "\eaa9"; }

.icon-export:before {
  content: "\eaaa"; }

.icon-eye2:before {
  content: "\eaab"; }

.icon-feather2:before {
  content: "\eaac"; }

.icon-flag2:before {
  content: "\eaad"; }

.icon-flash:before {
  content: "\eaae"; }

.icon-flashlight:before {
  content: "\eaaf"; }

.icon-flat-brush:before {
  content: "\eab0"; }

.icon-folder-images:before {
  content: "\eab1"; }

.icon-folder-music:before {
  content: "\eab2"; }

.icon-folder-video:before {
  content: "\eab3"; }

.icon-folder2:before {
  content: "\eab4"; }

.icon-forward:before {
  content: "\eab5"; }

.icon-funnel:before {
  content: "\eab6"; }

.icon-game-controller:before {
  content: "\eab7"; }

.icon-gauge:before {
  content: "\eab8"; }

.icon-globe2:before {
  content: "\eab9"; }

.icon-graduation-cap:before {
  content: "\eaba"; }

.icon-grid2:before {
  content: "\eabb"; }

.icon-hair-cross:before {
  content: "\eabc"; }

.icon-hand:before {
  content: "\eabd"; }

.icon-heart-outlined:before {
  content: "\eabe"; }

.icon-heart2:before {
  content: "\eabf"; }

.icon-help-with-circle:before {
  content: "\eac0"; }

.icon-help:before {
  content: "\eac1"; }

.icon-home2:before {
  content: "\eac2"; }

.icon-hour-glass:before {
  content: "\eac3"; }

.icon-image-inverted:before {
  content: "\eac4"; }

.icon-image2:before {
  content: "\eac5"; }

.icon-images:before {
  content: "\eac6"; }

.icon-inbox2:before {
  content: "\eac7"; }

.icon-infinity:before {
  content: "\eac8"; }

.icon-info-with-circle:before {
  content: "\eac9"; }

.icon-info2:before {
  content: "\eaca"; }

.icon-key:before {
  content: "\eacb"; }

.icon-keyboard:before {
  content: "\eacc"; }

.icon-lab-flask:before {
  content: "\eacd"; }

.icon-landline:before {
  content: "\eace"; }

.icon-language:before {
  content: "\eacf"; }

.icon-laptop:before {
  content: "\ead0"; }

.icon-leaf:before {
  content: "\ead1"; }

.icon-level-down:before {
  content: "\ead2"; }

.icon-level-up:before {
  content: "\ead3"; }

.icon-lifebuoy:before {
  content: "\ead4"; }

.icon-light-bulb:before {
  content: "\ead5"; }

.icon-light-down:before {
  content: "\ead6"; }

.icon-light-up:before {
  content: "\ead7"; }

.icon-line-graph:before {
  content: "\ead8"; }

.icon-link2:before {
  content: "\ead9"; }

.icon-list2:before {
  content: "\eada"; }

.icon-location-pin:before {
  content: "\eadb"; }

.icon-location:before {
  content: "\eadc"; }

.icon-lock-open:before {
  content: "\eadd"; }

.icon-lock2:before {
  content: "\eade"; }

.icon-log-out2:before {
  content: "\eadf"; }

.icon-login:before {
  content: "\eae0"; }

.icon-loop:before {
  content: "\eae1"; }

.icon-magnet:before {
  content: "\eae2"; }

.icon-magnifying-glass:before {
  content: "\eae3"; }

.icon-mail2:before {
  content: "\eae4"; }

.icon-man:before {
  content: "\eae5"; }

.icon-map2:before {
  content: "\eae6"; }

.icon-mask:before {
  content: "\eae7"; }

.icon-medal:before {
  content: "\eae8"; }

.icon-megaphone:before {
  content: "\eae9"; }

.icon-menu2:before {
  content: "\eaea"; }

.icon-message:before {
  content: "\eaeb"; }

.icon-mic2:before {
  content: "\eaec"; }

.icon-minus2:before {
  content: "\eaed"; }

.icon-mobile:before {
  content: "\eaee"; }

.icon-modern-mic:before {
  content: "\eaef"; }

.icon-moon2:before {
  content: "\eaf0"; }

.icon-mouse:before {
  content: "\eaf1"; }

.icon-music2:before {
  content: "\eaf2"; }

.icon-network:before {
  content: "\eaf3"; }

.icon-new-message:before {
  content: "\eaf4"; }

.icon-new:before {
  content: "\eaf5"; }

.icon-news:before {
  content: "\eaf6"; }

.icon-note:before {
  content: "\eaf7"; }

.icon-notification:before {
  content: "\eaf8"; }

.icon-old-mobile:before {
  content: "\eaf9"; }

.icon-old-phone:before {
  content: "\eafa"; }

.icon-palette:before {
  content: "\eafb"; }

.icon-paper-plane:before {
  content: "\eafc"; }

.icon-pencil:before {
  content: "\eafd"; }

.icon-phone2:before {
  content: "\eafe"; }

.icon-pie-chart2:before {
  content: "\eaff"; }

.icon-pin:before {
  content: "\eb00"; }

.icon-plus2:before {
  content: "\eb01"; }

.icon-popup:before {
  content: "\eb02"; }

.icon-power-plug:before {
  content: "\eb03"; }

.icon-price-ribbon:before {
  content: "\eb04"; }

.icon-price-tag:before {
  content: "\eb05"; }

.icon-print:before {
  content: "\eb06"; }

.icon-progress-empty:before {
  content: "\eb07"; }

.icon-progress-full:before {
  content: "\eb08"; }

.icon-progress-one:before {
  content: "\eb09"; }

.icon-progress-two:before {
  content: "\eb0a"; }

.icon-publish:before {
  content: "\eb0b"; }

.icon-quote:before {
  content: "\eb0c"; }

.icon-radio2:before {
  content: "\eb0d"; }

.icon-reply-all:before {
  content: "\eb0e"; }

.icon-reply:before {
  content: "\eb0f"; }

.icon-retweet:before {
  content: "\eb10"; }

.icon-rocket:before {
  content: "\eb11"; }

.icon-round-brush:before {
  content: "\eb12"; }

.icon-rss2:before {
  content: "\eb13"; }

.icon-ruler:before {
  content: "\eb14"; }

.icon-scissors2:before {
  content: "\eb15"; }

.icon-share-alternitive:before {
  content: "\eb16"; }

.icon-share2:before {
  content: "\eb17"; }

.icon-shareable:before {
  content: "\eb18"; }

.icon-shield2:before {
  content: "\eb19"; }

.icon-shop:before {
  content: "\eb1a"; }

.icon-shopping-bag2:before {
  content: "\eb1b"; }

.icon-shopping-basket:before {
  content: "\eb1c"; }

.icon-shopping-cart2:before {
  content: "\eb1d"; }

.icon-shuffle2:before {
  content: "\eb1e"; }

.icon-signal:before {
  content: "\eb1f"; }

.icon-sound-mix:before {
  content: "\eb20"; }

.icon-sports-club:before {
  content: "\eb21"; }

.icon-spreadsheet:before {
  content: "\eb22"; }

.icon-squared-cross:before {
  content: "\eb23"; }

.icon-squared-minus:before {
  content: "\eb24"; }

.icon-squared-plus:before {
  content: "\eb25"; }

.icon-star-outlined:before {
  content: "\eb26"; }

.icon-star2:before {
  content: "\eb27"; }

.icon-stopwatch:before {
  content: "\eb28"; }

.icon-suitcase:before {
  content: "\eb29"; }

.icon-swap:before {
  content: "\eb2a"; }

.icon-sweden:before {
  content: "\eb2b"; }

.icon-switch:before {
  content: "\eb2c"; }

.icon-tablet2:before {
  content: "\eb2d"; }

.icon-tag2:before {
  content: "\eb2e"; }

.icon-text-document-inverted:before {
  content: "\eb2f"; }

.icon-text-document:before {
  content: "\eb30"; }

.icon-text:before {
  content: "\eb31"; }

.icon-thermometer2:before {
  content: "\eb32"; }

.icon-thumbs-down2:before {
  content: "\eb33"; }

.icon-thumbs-up2:before {
  content: "\eb34"; }

.icon-thunder-cloud:before {
  content: "\eb35"; }

.icon-ticket:before {
  content: "\eb36"; }

.icon-time-slot:before {
  content: "\eb37"; }

.icon-tools:before {
  content: "\eb38"; }

.icon-traffic-cone:before {
  content: "\eb39"; }

.icon-tree:before {
  content: "\eb3a"; }

.icon-trophy:before {
  content: "\eb3b"; }

.icon-tv2:before {
  content: "\eb3c"; }

.icon-typing:before {
  content: "\eb3d"; }

.icon-unread:before {
  content: "\eb3e"; }

.icon-untag:before {
  content: "\eb3f"; }

.icon-user2:before {
  content: "\eb40"; }

.icon-users2:before {
  content: "\eb41"; }

.icon-v-card:before {
  content: "\eb42"; }

.icon-video2:before {
  content: "\eb43"; }

.icon-vinyl:before {
  content: "\eb44"; }

.icon-voicemail2:before {
  content: "\eb45"; }

.icon-wallet:before {
  content: "\eb46"; }

.icon-water:before {
  content: "\eb47"; }

.icon-500px-with-circle:before {
  content: "\eb48"; }

.icon-500px:before {
  content: "\eb49"; }

.icon-basecamp:before {
  content: "\eb4a"; }

.icon-behance:before {
  content: "\eb4b"; }

.icon-creative-cloud:before {
  content: "\eb4c"; }

.icon-dropbox:before {
  content: "\eb4d"; }

.icon-evernote:before {
  content: "\eb4e"; }

.icon-flattr:before {
  content: "\eb4f"; }

.icon-foursquare:before {
  content: "\eb50"; }

.icon-google-drive:before {
  content: "\eb51"; }

.icon-google-hangouts:before {
  content: "\eb52"; }

.icon-grooveshark:before {
  content: "\eb53"; }

.icon-icloud:before {
  content: "\eb54"; }

.icon-mixi:before {
  content: "\eb55"; }

.icon-onedrive:before {
  content: "\eb56"; }

.icon-paypal:before {
  content: "\eb57"; }

.icon-picasa:before {
  content: "\eb58"; }

.icon-qq:before {
  content: "\eb59"; }

.icon-rdio-with-circle:before {
  content: "\eb5a"; }

.icon-renren:before {
  content: "\eb5b"; }

.icon-scribd:before {
  content: "\eb5c"; }

.icon-sina-weibo:before {
  content: "\eb5d"; }

.icon-skype-with-circle:before {
  content: "\eb5e"; }

.icon-skype:before {
  content: "\eb5f"; }

.icon-slideshare:before {
  content: "\eb60"; }

.icon-smashing:before {
  content: "\eb61"; }

.icon-soundcloud:before {
  content: "\eb62"; }

.icon-spotify-with-circle:before {
  content: "\eb63"; }

.icon-spotify:before {
  content: "\eb64"; }

.icon-swarm:before {
  content: "\eb65"; }

.icon-vine-with-circle:before {
  content: "\eb66"; }

.icon-vine:before {
  content: "\eb67"; }

.icon-vk-alternitive:before {
  content: "\eb68"; }

.icon-vk-with-circle:before {
  content: "\eb69"; }

.icon-vk:before {
  content: "\eb6a"; }

.icon-xing-with-circle:before {
  content: "\eb6b"; }

.icon-xing:before {
  content: "\eb6c"; }

.icon-yelp:before {
  content: "\eb6d"; }

.icon-dribbble-with-circle:before {
  content: "\eb6e"; }

.icon-dribbble:before {
  content: "\eb6f"; }

.icon-facebook-with-circle:before {
  content: "\eb70"; }

.icon-facebook2:before {
  content: "\eb71"; }

.icon-flickr-with-circle:before {
  content: "\eb72"; }

.icon-flickr:before {
  content: "\eb73"; }

.icon-github-with-circle:before {
  content: "\eb74"; }

.icon-github2:before {
  content: "\eb75"; }

.icon-google-with-circle:before {
  content: "\eb76"; }

.icon-google:before {
  content: "\eb77"; }

.icon-instagram-with-circle:before {
  content: "\eb78"; }

.icon-instagram2:before {
  content: "\eb79"; }

.icon-lastfm-with-circle:before {
  content: "\eb7a"; }

.icon-lastfm:before {
  content: "\eb7b"; }

.icon-linkedin-with-circle:before {
  content: "\eb7c"; }

.icon-linkedin2:before {
  content: "\eb7d"; }

.icon-pinterest-with-circle:before {
  content: "\eb7e"; }

.icon-pinterest:before {
  content: "\eb7f"; }

.icon-rdio:before {
  content: "\eb80"; }

.icon-stumbleupon-with-circle:before {
  content: "\eb81"; }

.icon-stumbleupon:before {
  content: "\eb82"; }

.icon-tumblr-with-circle:before {
  content: "\eb83"; }

.icon-tumblr:before {
  content: "\eb84"; }

.icon-twitter-with-circle:before {
  content: "\eb85"; }

.icon-twitter2:before {
  content: "\eb86"; }

.icon-vimeo-with-circle:before {
  content: "\eb87"; }

.icon-vimeo:before {
  content: "\eb88"; }

.icon-youtube-with-circle:before {
  content: "\eb89"; }

.icon-youtube2:before {
  content: "\eb8a"; }

.animatetab .owl-carousel .owl-item {
  -moz-animation: zoomIn 500ms ease;
  -o-animation: zoomIn 500ms ease;
  -webkit-animation: zoomIn 500ms ease;
  animation: zoomIn 500ms ease; }

/* fonts */
@font-face {
  font-family: 'ElegantIcons';
  src: url("../css/ElegantIcons.eot");
  src: url("../css/ElegantIcons.eot?#iefix") format("embedded-opentype"), url("../css/ElegantIcons.woff") format("woff"), url("../css/ElegantIcons.ttf") format("truetype"), url("../css/ElegantIcons.svg#ElegantIcons") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Linearicons-Free';
  src: url("../css/webfonts/Linearicons-Free.eot?w118d");
  src: url("../css/webfonts/Linearicons-Free.eot?#iefixw118d") format("embedded-opentype"), url("../css/webfonts/Linearicons-Free.woff2?w118d") format("woff2"), url("../css/webfonts/Linearicons-Free.woff?w118d") format("woff"), url("../css/webfonts/Linearicons-Free.ttf?w118d") format("truetype"), url("../css/webfonts/Linearicons-Free.svg?w118d#Linearicons-Free") format("svg");
  font-weight: normal;
  font-style: normal; }

.lnr {
  font-family: 'Linearicons-Free';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.lnr-home:before {
  content: "\e800"; }

.lnr-apartment:before {
  content: "\e801"; }

.lnr-pencil:before {
  content: "\e802"; }

.lnr-magic-wand:before {
  content: "\e803"; }

.lnr-drop:before {
  content: "\e804"; }

.lnr-lighter:before {
  content: "\e805"; }

.lnr-poop:before {
  content: "\e806"; }

.lnr-sun:before {
  content: "\e807"; }

.lnr-moon:before {
  content: "\e808"; }

.lnr-cloud:before {
  content: "\e809"; }

.lnr-cloud-upload:before {
  content: "\e80a"; }

.lnr-cloud-download:before {
  content: "\e80b"; }

.lnr-cloud-sync:before {
  content: "\e80c"; }

.lnr-cloud-check:before {
  content: "\e80d"; }

.lnr-database:before {
  content: "\e80e"; }

.lnr-lock:before {
  content: "\e80f"; }

.lnr-cog:before {
  content: "\e810"; }

.lnr-trash:before {
  content: "\e811"; }

.lnr-dice:before {
  content: "\e812"; }

.lnr-heart:before {
  content: "\e813"; }

.lnr-star:before {
  content: "\e814"; }

.lnr-star-half:before {
  content: "\e815"; }

.lnr-star-empty:before {
  content: "\e816"; }

.lnr-flag:before {
  content: "\e817"; }

.lnr-envelope:before {
  content: "\e818"; }

.lnr-paperclip:before {
  content: "\e819"; }

.lnr-inbox:before {
  content: "\e81a"; }

.lnr-eye:before {
  content: "\e81b"; }

.lnr-printer:before {
  content: "\e81c"; }

.lnr-file-empty:before {
  content: "\e81d"; }

.lnr-file-add:before {
  content: "\e81e"; }

.lnr-enter:before {
  content: "\e81f"; }

.lnr-exit:before {
  content: "\e820"; }

.lnr-graduation-hat:before {
  content: "\e821"; }

.lnr-license:before {
  content: "\e822"; }

.lnr-music-note:before {
  content: "\e823"; }

.lnr-film-play:before {
  content: "\e824"; }

.lnr-camera-video:before {
  content: "\e825"; }

.lnr-camera:before {
  content: "\e826"; }

.lnr-picture:before {
  content: "\e827"; }

.lnr-book:before {
  content: "\e828"; }

.lnr-bookmark:before {
  content: "\e829"; }

.lnr-user:before {
  content: "\e82a"; }

.lnr-users:before {
  content: "\e82b"; }

.lnr-shirt:before {
  content: "\e82c"; }

.lnr-store:before {
  content: "\e82d"; }

.lnr-cart:before {
  content: "\e82e"; }

.lnr-tag:before {
  content: "\e82f"; }

.lnr-phone-handset:before {
  content: "\e830"; }

.lnr-phone:before {
  content: "\e831"; }

.lnr-pushpin:before {
  content: "\e832"; }

.lnr-map-marker:before {
  content: "\e833"; }

.lnr-map:before {
  content: "\e834"; }

.lnr-location:before {
  content: "\e835"; }

.lnr-calendar-full:before {
  content: "\e836"; }

.lnr-keyboard:before {
  content: "\e837"; }

.lnr-spell-check:before {
  content: "\e838"; }

.lnr-screen:before {
  content: "\e839"; }

.lnr-smartphone:before {
  content: "\e83a"; }

.lnr-tablet:before {
  content: "\e83b"; }

.lnr-laptop:before {
  content: "\e83c"; }

.lnr-laptop-phone:before {
  content: "\e83d"; }

.lnr-power-switch:before {
  content: "\e83e"; }

.lnr-bubble:before {
  content: "\e83f"; }

.lnr-heart-pulse:before {
  content: "\e840"; }

.lnr-construction:before {
  content: "\e841"; }

.lnr-pie-chart:before {
  content: "\e842"; }

.lnr-chart-bars:before {
  content: "\e843"; }

.lnr-gift:before {
  content: "\e844"; }

.lnr-diamond:before {
  content: "\e845"; }

.lnr-linearicons:before {
  content: "\e846"; }

.lnr-dinner:before {
  content: "\e847"; }

.lnr-coffee-cup:before {
  content: "\e848"; }

.lnr-leaf:before {
  content: "\e849"; }

.lnr-paw:before {
  content: "\e84a"; }

.lnr-rocket:before {
  content: "\e84b"; }

.lnr-briefcase:before {
  content: "\e84c"; }

.lnr-bus:before {
  content: "\e84d"; }

.lnr-car:before {
  content: "\e84e"; }

.lnr-train:before {
  content: "\e84f"; }

.lnr-bicycle:before {
  content: "\e850"; }

.lnr-wheelchair:before {
  content: "\e851"; }

.lnr-select:before {
  content: "\e852"; }

.lnr-earth:before {
  content: "\e853"; }

.lnr-smile:before {
  content: "\e854"; }

.lnr-sad:before {
  content: "\e855"; }

.lnr-neutral:before {
  content: "\e856"; }

.lnr-mustache:before {
  content: "\e857"; }

.lnr-alarm:before {
  content: "\e858"; }

.lnr-bullhorn:before {
  content: "\e859"; }

.lnr-volume-high:before {
  content: "\e85a"; }

.lnr-volume-medium:before {
  content: "\e85b"; }

.lnr-volume-low:before {
  content: "\e85c"; }

.lnr-volume:before {
  content: "\e85d"; }

.lnr-mic:before {
  content: "\e85e"; }

.lnr-hourglass:before {
  content: "\e85f"; }

.lnr-undo:before {
  content: "\e860"; }

.lnr-redo:before {
  content: "\e861"; }

.lnr-sync:before {
  content: "\e862"; }

.lnr-history:before {
  content: "\e863"; }

.lnr-clock:before {
  content: "\e864"; }

.lnr-download:before {
  content: "\e865"; }

.lnr-upload:before {
  content: "\e866"; }

.lnr-enter-down:before {
  content: "\e867"; }

.lnr-exit-up:before {
  content: "\e868"; }

.lnr-bug:before {
  content: "\e869"; }

.lnr-code:before {
  content: "\e86a"; }

.lnr-link:before {
  content: "\e86b"; }

.lnr-unlink:before {
  content: "\e86c"; }

.lnr-thumbs-up:before {
  content: "\e86d"; }

.lnr-thumbs-down:before {
  content: "\e86e"; }

.lnr-magnifier:before {
  content: "\e86f"; }

.lnr-cross:before {
  content: "\e870"; }

.lnr-menu:before {
  content: "\e871"; }

.lnr-list:before {
  content: "\e872"; }

.lnr-chevron-up:before {
  content: "\e873"; }

.lnr-chevron-down:before {
  content: "\e874"; }

.lnr-chevron-left:before {
  content: "\e875"; }

.lnr-chevron-right:before {
  content: "\e876"; }

.lnr-arrow-up:before {
  content: "\e877"; }

.lnr-arrow-down:before {
  content: "\e878"; }

.lnr-arrow-left:before {
  content: "\e879"; }

.lnr-arrow-right:before {
  content: "\e87a"; }

.lnr-move:before {
  content: "\e87b"; }

.lnr-warning:before {
  content: "\e87c"; }

.lnr-question-circle:before {
  content: "\e87d"; }

.lnr-menu-circle:before {
  content: "\e87e"; }

.lnr-checkmark-circle:before {
  content: "\e87f"; }

.lnr-cross-circle:before {
  content: "\e880"; }

.lnr-plus-circle:before {
  content: "\e881"; }

.lnr-circle-minus:before {
  content: "\e882"; }

.lnr-arrow-up-circle:before {
  content: "\e883"; }

.lnr-arrow-down-circle:before {
  content: "\e884"; }

.lnr-arrow-left-circle:before {
  content: "\e885"; }

.lnr-arrow-right-circle:before {
  content: "\e886"; }

.lnr-chevron-up-circle:before {
  content: "\e887"; }

.lnr-chevron-down-circle:before {
  content: "\e888"; }

.lnr-chevron-left-circle:before {
  content: "\e889"; }

.lnr-chevron-right-circle:before {
  content: "\e88a"; }

.lnr-crop:before {
  content: "\e88b"; }

.lnr-frame-expand:before {
  content: "\e88c"; }

.lnr-frame-contract:before {
  content: "\e88d"; }

.lnr-layers:before {
  content: "\e88e"; }

.lnr-funnel:before {
  content: "\e88f"; }

.lnr-text-format:before {
  content: "\e890"; }

.lnr-text-format-remove:before {
  content: "\e891"; }

.lnr-text-size:before {
  content: "\e892"; }

.lnr-bold:before {
  content: "\e893"; }

.lnr-italic:before {
  content: "\e894"; }

.lnr-underline:before {
  content: "\e895"; }

.lnr-strikethrough:before {
  content: "\e896"; }

.lnr-highlight:before {
  content: "\e897"; }

.lnr-text-align-left:before {
  content: "\e898"; }

.lnr-text-align-center:before {
  content: "\e899"; }

.lnr-text-align-right:before {
  content: "\e89a"; }

.lnr-text-align-justify:before {
  content: "\e89b"; }

.lnr-line-spacing:before {
  content: "\e89c"; }

.lnr-indent-increase:before {
  content: "\e89d"; }

.lnr-indent-decrease:before {
  content: "\e89e"; }

.lnr-pilcrow:before {
  content: "\e89f"; }

.lnr-direction-ltr:before {
  content: "\e8a0"; }

.lnr-direction-rtl:before {
  content: "\e8a1"; }

.lnr-page-break:before {
  content: "\e8a2"; }

.lnr-sort-alpha-asc:before {
  content: "\e8a3"; }

.lnr-sort-amount-asc:before {
  content: "\e8a4"; }

.lnr-hand:before {
  content: "\e8a5"; }

.lnr-pointer-up:before {
  content: "\e8a6"; }

.lnr-pointer-right:before {
  content: "\e8a7"; }

.lnr-pointer-down:before {
  content: "\e8a8"; }

.lnr-pointer-left:before {
  content: "\e8a9"; }

/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
  font-family: 'ElegantIcons';
  content: attr(data-icon);
  speak: none;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="your-class-prefix"] {
*/
.arrow_up, .arrow_down, .arrow_left, .arrow_right, .arrow_left-up, .arrow_right-up, .arrow_right-down, .arrow_left-down, .arrow-up-down, .arrow_up-down_alt, .arrow_left-right_alt, .arrow_left-right, .arrow_expand_alt2, .arrow_expand_alt, .arrow_condense, .arrow_expand, .arrow_move, .arrow_carrot-up, .arrow_carrot-down, .arrow_carrot-left, .arrow_carrot-right, .arrow_carrot-2up, .arrow_carrot-2down, .arrow_carrot-2left, .arrow_carrot-2right, .arrow_carrot-up_alt2, .arrow_carrot-down_alt2, .arrow_carrot-left_alt2, .arrow_carrot-right_alt2, .arrow_carrot-2up_alt2, .arrow_carrot-2down_alt2, .arrow_carrot-2left_alt2, .arrow_carrot-2right_alt2, .arrow_triangle-up, .arrow_triangle-down, .arrow_triangle-left, .arrow_triangle-right, .arrow_triangle-up_alt2, .arrow_triangle-down_alt2, .arrow_triangle-left_alt2, .arrow_triangle-right_alt2, .arrow_back, .icon_minus-06, .icon_plus, .icon_close, .icon_check, .icon_minus_alt2, .icon_plus_alt2, .icon_close_alt2, .icon_check_alt2, .icon_zoom-out_alt, .icon_zoom-in_alt, .icon_search, .icon_box-empty, .icon_box-selected, .icon_minus-box, .icon_plus-box, .icon_box-checked, .icon_circle-empty, .icon_circle-slelected, .icon_stop_alt2, .icon_stop, .icon_pause_alt2, .icon_pause, .icon_menu, .icon_menu-square_alt2, .icon_menu-circle_alt2, .icon_ul, .icon_ol, .icon_adjust-horiz, .icon_adjust-vert, .icon_document_alt, .icon_documents_alt, .icon_pencil, .icon_pencil-edit_alt, .icon_pencil-edit, .icon_folder-alt, .icon_folder-open_alt, .icon_folder-add_alt, .icon_info_alt, .icon_error-oct_alt, .icon_error-circle_alt, .icon_error-triangle_alt, .icon_question_alt2, .icon_question, .icon_comment_alt, .icon_chat_alt, .icon_vol-mute_alt, .icon_volume-low_alt, .icon_volume-high_alt, .icon_quotations, .icon_quotations_alt2, .icon_clock_alt, .icon_lock_alt, .icon_lock-open_alt, .icon_key_alt, .icon_cloud_alt, .icon_cloud-upload_alt, .icon_cloud-download_alt, .icon_image, .icon_images, .icon_lightbulb_alt, .icon_gift_alt, .icon_house_alt, .icon_genius, .icon_mobile, .icon_tablet, .icon_laptop, .icon_desktop, .icon_camera_alt, .icon_mail_alt, .icon_cone_alt, .icon_ribbon_alt, .icon_bag_alt, .icon_creditcard, .icon_cart_alt, .icon_paperclip, .icon_tag_alt, .icon_tags_alt, .icon_trash_alt, .icon_cursor_alt, .icon_mic_alt, .icon_compass_alt, .icon_pin_alt, .icon_pushpin_alt, .icon_map_alt, .icon_drawer_alt, .icon_toolbox_alt, .icon_book_alt, .icon_calendar, .icon_film, .icon_table, .icon_contacts_alt, .icon_headphones, .icon_lifesaver, .icon_piechart, .icon_refresh, .icon_link_alt, .icon_link, .icon_loading, .icon_blocked, .icon_archive_alt, .icon_heart_alt, .icon_star_alt, .icon_star-half_alt, .icon_star, .icon_star-half, .icon_tools, .icon_tool, .icon_cog, .icon_cogs, .arrow_up_alt, .arrow_down_alt, .arrow_left_alt, .arrow_right_alt, .arrow_left-up_alt, .arrow_right-up_alt, .arrow_right-down_alt, .arrow_left-down_alt, .arrow_condense_alt, .arrow_expand_alt3, .arrow_carrot_up_alt, .arrow_carrot-down_alt, .arrow_carrot-left_alt, .arrow_carrot-right_alt, .arrow_carrot-2up_alt, .arrow_carrot-2dwnn_alt, .arrow_carrot-2left_alt, .arrow_carrot-2right_alt, .arrow_triangle-up_alt, .arrow_triangle-down_alt, .arrow_triangle-left_alt, .arrow_triangle-right_alt, .icon_minus_alt, .icon_plus_alt, .icon_close_alt, .icon_check_alt, .icon_zoom-out, .icon_zoom-in, .icon_stop_alt, .icon_menu-square_alt, .icon_menu-circle_alt, .icon_document, .icon_documents, .icon_pencil_alt, .icon_folder, .icon_folder-open, .icon_folder-add, .icon_folder_upload, .icon_folder_download, .icon_info, .icon_error-circle, .icon_error-oct, .icon_error-triangle, .icon_question_alt, .icon_comment, .icon_chat, .icon_vol-mute, .icon_volume-low, .icon_volume-high, .icon_quotations_alt, .icon_clock, .icon_lock, .icon_lock-open, .icon_key, .icon_cloud, .icon_cloud-upload, .icon_cloud-download, .icon_lightbulb, .icon_gift, .icon_house, .icon_camera, .icon_mail, .icon_cone, .icon_ribbon, .icon_bag, .icon_cart, .icon_tag, .icon_tags, .icon_trash, .icon_cursor, .icon_mic, .icon_compass, .icon_pin, .icon_pushpin, .icon_map, .icon_drawer, .icon_toolbox, .icon_book, .icon_contacts, .icon_archive, .icon_heart, .icon_profile, .icon_group, .icon_grid-2x2, .icon_grid-3x3, .icon_music, .icon_pause_alt, .icon_phone, .icon_upload, .icon_download, .social_facebook, .social_twitter, .social_pinterest, .social_googleplus, .social_tumblr, .social_tumbleupon, .social_wordpress, .social_instagram, .social_dribbble, .social_vimeo, .social_linkedin, .social_rss, .social_deviantart, .social_share, .social_myspace, .social_skype, .social_youtube, .social_picassa, .social_googledrive, .social_flickr, .social_blogger, .social_spotify, .social_delicious, .social_facebook_circle, .social_twitter_circle, .social_pinterest_circle, .social_googleplus_circle, .social_tumblr_circle, .social_stumbleupon_circle, .social_wordpress_circle, .social_instagram_circle, .social_dribbble_circle, .social_vimeo_circle, .social_linkedin_circle, .social_rss_circle, .social_deviantart_circle, .social_share_circle, .social_myspace_circle, .social_skype_circle, .social_youtube_circle, .social_picassa_circle, .social_googledrive_alt2, .social_flickr_circle, .social_blogger_circle, .social_spotify_circle, .social_delicious_circle, .social_facebook_square, .social_twitter_square, .social_pinterest_square, .social_googleplus_square, .social_tumblr_square, .social_stumbleupon_square, .social_wordpress_square, .social_instagram_square, .social_dribbble_square, .social_vimeo_square, .social_linkedin_square, .social_rss_square, .social_deviantart_square, .social_share_square, .social_myspace_square, .social_skype_square, .social_youtube_square, .social_picassa_square, .social_googledrive_square, .social_flickr_square, .social_blogger_square, .social_spotify_square, .social_delicious_square, .icon_printer, .icon_calulator, .icon_building, .icon_floppy, .icon_drive, .icon_search-2, .icon_id, .icon_id-2, .icon_puzzle, .icon_like, .icon_dislike, .icon_mug, .icon_currency, .icon_wallet, .icon_pens, .icon_easel, .icon_flowchart, .icon_datareport, .icon_briefcase, .icon_shield, .icon_percent, .icon_globe, .icon_globe-2, .icon_target, .icon_hourglass, .icon_balance, .icon_rook, .icon_printer-alt, .icon_calculator_alt, .icon_building_alt, .icon_floppy_alt, .icon_drive_alt, .icon_search_alt, .icon_id_alt, .icon_id-2_alt, .icon_puzzle_alt, .icon_like_alt, .icon_dislike_alt, .icon_mug_alt, .icon_currency_alt, .icon_wallet_alt, .icon_pens_alt, .icon_easel_alt, .icon_flowchart_alt, .icon_datareport_alt, .icon_briefcase_alt, .icon_shield_alt, .icon_percent_alt, .icon_globe_alt, .icon_clipboard {
  font-family: 'ElegantIcons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased; }

.arrow_up:before {
  content: "\21"; }

.arrow_down:before {
  content: "\22"; }

.arrow_left:before {
  content: "\23"; }

.arrow_right:before {
  content: "\24"; }

.arrow_left-up:before {
  content: "\25"; }

.arrow_right-up:before {
  content: "\26"; }

.arrow_right-down:before {
  content: "\27"; }

.arrow_left-down:before {
  content: "\28"; }

.arrow-up-down:before {
  content: "\29"; }

.arrow_up-down_alt:before {
  content: "\2a"; }

.arrow_left-right_alt:before {
  content: "\2b"; }

.arrow_left-right:before {
  content: "\2c"; }

.arrow_expand_alt2:before {
  content: "\2d"; }

.arrow_expand_alt:before {
  content: "\2e"; }

.arrow_condense:before {
  content: "\2f"; }

.arrow_expand:before {
  content: "\30"; }

.arrow_move:before {
  content: "\31"; }

.arrow_carrot-up:before {
  content: "\32"; }

.arrow_carrot-down:before {
  content: "\33"; }

.arrow_carrot-left:before {
  content: "\34"; }

.arrow_carrot-right:before {
  content: "\35"; }

.arrow_carrot-2up:before {
  content: "\36"; }

.arrow_carrot-2down:before {
  content: "\37"; }

.arrow_carrot-2left:before {
  content: "\38"; }

.arrow_carrot-2right:before {
  content: "\39"; }

.arrow_carrot-up_alt2:before {
  content: "\3a"; }

.arrow_carrot-down_alt2:before {
  content: "\3b"; }

.arrow_carrot-left_alt2:before {
  content: "\3c"; }

.arrow_carrot-right_alt2:before {
  content: "\3d"; }

.arrow_carrot-2up_alt2:before {
  content: "\3e"; }

.arrow_carrot-2down_alt2:before {
  content: "\3f"; }

.arrow_carrot-2left_alt2:before {
  content: "\40"; }

.arrow_carrot-2right_alt2:before {
  content: "\41"; }

.arrow_triangle-up:before {
  content: "\42"; }

.arrow_triangle-down:before {
  content: "\43"; }

.arrow_triangle-left:before {
  content: "\44"; }

.arrow_triangle-right:before {
  content: "\45"; }

.arrow_triangle-up_alt2:before {
  content: "\46"; }

.arrow_triangle-down_alt2:before {
  content: "\47"; }

.arrow_triangle-left_alt2:before {
  content: "\48"; }

.arrow_triangle-right_alt2:before {
  content: "\49"; }

.arrow_back:before {
  content: "\4a"; }

.icon_minus-06:before {
  content: "\4b"; }

.icon_plus:before {
  content: "\4c"; }

.icon_close:before {
  content: "\4d"; }

.icon_check:before {
  content: "\4e"; }

.icon_minus_alt2:before {
  content: "\4f"; }

.icon_plus_alt2:before {
  content: "\50"; }

.icon_close_alt2:before {
  content: "\51"; }

.icon_check_alt2:before {
  content: "\52"; }

.icon_zoom-out_alt:before {
  content: "\53"; }

.icon_zoom-in_alt:before {
  content: "\54"; }

.icon_search:before {
  content: "\55"; }

.icon_box-empty:before {
  content: "\56"; }

.icon_box-selected:before {
  content: "\57"; }

.icon_minus-box:before {
  content: "\58"; }

.icon_plus-box:before {
  content: "\59"; }

.icon_box-checked:before {
  content: "\5a"; }

.icon_circle-empty:before {
  content: "\5b"; }

.icon_circle-slelected:before {
  content: "\5c"; }

.icon_stop_alt2:before {
  content: "\5d"; }

.icon_stop:before {
  content: "\5e"; }

.icon_pause_alt2:before {
  content: "\5f"; }

.icon_pause:before {
  content: "\60"; }

.icon_menu:before {
  content: "\61"; }

.icon_menu-square_alt2:before {
  content: "\62"; }

.icon_menu-circle_alt2:before {
  content: "\63"; }

.icon_ul:before {
  content: "\64"; }

.icon_ol:before {
  content: "\65"; }

.icon_adjust-horiz:before {
  content: "\66"; }

.icon_adjust-vert:before {
  content: "\67"; }

.icon_document_alt:before {
  content: "\68"; }

.icon_documents_alt:before {
  content: "\69"; }

.icon_pencil:before {
  content: "\6a"; }

.icon_pencil-edit_alt:before {
  content: "\6b"; }

.icon_pencil-edit:before {
  content: "\6c"; }

.icon_folder-alt:before {
  content: "\6d"; }

.icon_folder-open_alt:before {
  content: "\6e"; }

.icon_folder-add_alt:before {
  content: "\6f"; }

.icon_info_alt:before {
  content: "\70"; }

.icon_error-oct_alt:before {
  content: "\71"; }

.icon_error-circle_alt:before {
  content: "\72"; }

.icon_error-triangle_alt:before {
  content: "\73"; }

.icon_question_alt2:before {
  content: "\74"; }

.icon_question:before {
  content: "\75"; }

.icon_comment_alt:before {
  content: "\76"; }

.icon_chat_alt:before {
  content: "\77"; }

.icon_vol-mute_alt:before {
  content: "\78"; }

.icon_volume-low_alt:before {
  content: "\79"; }

.icon_volume-high_alt:before {
  content: "\7a"; }

.icon_quotations:before {
  content: "\7b"; }

.icon_quotations_alt2:before {
  content: "\7c"; }

.icon_clock_alt:before {
  content: "\7d"; }

.icon_lock_alt:before {
  content: "\7e"; }

.icon_lock-open_alt:before {
  content: "\e000"; }

.icon_key_alt:before {
  content: "\e001"; }

.icon_cloud_alt:before {
  content: "\e002"; }

.icon_cloud-upload_alt:before {
  content: "\e003"; }

.icon_cloud-download_alt:before {
  content: "\e004"; }

.icon_image:before {
  content: "\e005"; }

.icon_images:before {
  content: "\e006"; }

.icon_lightbulb_alt:before {
  content: "\e007"; }

.icon_gift_alt:before {
  content: "\e008"; }

.icon_house_alt:before {
  content: "\e009"; }

.icon_genius:before {
  content: "\e00a"; }

.icon_mobile:before {
  content: "\e00b"; }

.icon_tablet:before {
  content: "\e00c"; }

.icon_laptop:before {
  content: "\e00d"; }

.icon_desktop:before {
  content: "\e00e"; }

.icon_camera_alt:before {
  content: "\e00f"; }

.icon_mail_alt:before {
  content: "\e010"; }

.icon_cone_alt:before {
  content: "\e011"; }

.icon_ribbon_alt:before {
  content: "\e012"; }

.icon_bag_alt:before {
  content: "\e013"; }

.icon_creditcard:before {
  content: "\e014"; }

.icon_cart_alt:before {
  content: "\e015"; }

.icon_paperclip:before {
  content: "\e016"; }

.icon_tag_alt:before {
  content: "\e017"; }

.icon_tags_alt:before {
  content: "\e018"; }

.icon_trash_alt:before {
  content: "\e019"; }

.icon_cursor_alt:before {
  content: "\e01a"; }

.icon_mic_alt:before {
  content: "\e01b"; }

.icon_compass_alt:before {
  content: "\e01c"; }

.icon_pin_alt:before {
  content: "\e01d"; }

.icon_pushpin_alt:before {
  content: "\e01e"; }

.icon_map_alt:before {
  content: "\e01f"; }

.icon_drawer_alt:before {
  content: "\e020"; }

.icon_toolbox_alt:before {
  content: "\e021"; }

.icon_book_alt:before {
  content: "\e022"; }

.icon_calendar:before {
  content: "\e023"; }

.icon_film:before {
  content: "\e024"; }

.icon_table:before {
  content: "\e025"; }

.icon_contacts_alt:before {
  content: "\e026"; }

.icon_headphones:before {
  content: "\e027"; }

.icon_lifesaver:before {
  content: "\e028"; }

.icon_piechart:before {
  content: "\e029"; }

.icon_refresh:before {
  content: "\e02a"; }

.icon_link_alt:before {
  content: "\e02b"; }

.icon_link:before {
  content: "\e02c"; }

.icon_loading:before {
  content: "\e02d"; }

.icon_blocked:before {
  content: "\e02e"; }

.icon_archive_alt:before {
  content: "\e02f"; }

.icon_heart_alt:before {
  content: "\e030"; }

.icon_star_alt:before {
  content: "\e031"; }

.icon_star-half_alt:before {
  content: "\e032"; }

.icon_star:before {
  content: "\e033"; }

.icon_star-half:before {
  content: "\e034"; }

.icon_tools:before {
  content: "\e035"; }

.icon_tool:before {
  content: "\e036"; }

.icon_cog:before {
  content: "\e037"; }

.icon_cogs:before {
  content: "\e038"; }

.arrow_up_alt:before {
  content: "\e039"; }

.arrow_down_alt:before {
  content: "\e03a"; }

.arrow_left_alt:before {
  content: "\e03b"; }

.arrow_right_alt:before {
  content: "\e03c"; }

.arrow_left-up_alt:before {
  content: "\e03d"; }

.arrow_right-up_alt:before {
  content: "\e03e"; }

.arrow_right-down_alt:before {
  content: "\e03f"; }

.arrow_left-down_alt:before {
  content: "\e040"; }

.arrow_condense_alt:before {
  content: "\e041"; }

.arrow_expand_alt3:before {
  content: "\e042"; }

.arrow_carrot_up_alt:before {
  content: "\e043"; }

.arrow_carrot-down_alt:before {
  content: "\e044"; }

.arrow_carrot-left_alt:before {
  content: "\e045"; }

.arrow_carrot-right_alt:before {
  content: "\e046"; }

.arrow_carrot-2up_alt:before {
  content: "\e047"; }

.arrow_carrot-2dwnn_alt:before {
  content: "\e048"; }

.arrow_carrot-2left_alt:before {
  content: "\e049"; }

.arrow_carrot-2right_alt:before {
  content: "\e04a"; }

.arrow_triangle-up_alt:before {
  content: "\e04b"; }

.arrow_triangle-down_alt:before {
  content: "\e04c"; }

.arrow_triangle-left_alt:before {
  content: "\e04d"; }

.arrow_triangle-right_alt:before {
  content: "\e04e"; }

.icon_minus_alt:before {
  content: "\e04f"; }

.icon_plus_alt:before {
  content: "\e050"; }

.icon_close_alt:before {
  content: "\e051"; }

.icon_check_alt:before {
  content: "\e052"; }

.icon_zoom-out:before {
  content: "\e053"; }

.icon_zoom-in:before {
  content: "\e054"; }

.icon_stop_alt:before {
  content: "\e055"; }

.icon_menu-square_alt:before {
  content: "\e056"; }

.icon_menu-circle_alt:before {
  content: "\e057"; }

.icon_document:before {
  content: "\e058"; }

.icon_documents:before {
  content: "\e059"; }

.icon_pencil_alt:before {
  content: "\e05a"; }

.icon_folder:before {
  content: "\e05b"; }

.icon_folder-open:before {
  content: "\e05c"; }

.icon_folder-add:before {
  content: "\e05d"; }

.icon_folder_upload:before {
  content: "\e05e"; }

.icon_folder_download:before {
  content: "\e05f"; }

.icon_info:before {
  content: "\e060"; }

.icon_error-circle:before {
  content: "\e061"; }

.icon_error-oct:before {
  content: "\e062"; }

.icon_error-triangle:before {
  content: "\e063"; }

.icon_question_alt:before {
  content: "\e064"; }

.icon_comment:before {
  content: "\e065"; }

.icon_chat:before {
  content: "\e066"; }

.icon_vol-mute:before {
  content: "\e067"; }

.icon_volume-low:before {
  content: "\e068"; }

.icon_volume-high:before {
  content: "\e069"; }

.icon_quotations_alt:before {
  content: "\e06a"; }

.icon_clock:before {
  content: "\e06b"; }

.icon_lock:before {
  content: "\e06c"; }

.icon_lock-open:before {
  content: "\e06d"; }

.icon_key:before {
  content: "\e06e"; }

.icon_cloud:before {
  content: "\e06f"; }

.icon_cloud-upload:before {
  content: "\e070"; }

.icon_cloud-download:before {
  content: "\e071"; }

.icon_lightbulb:before {
  content: "\e072"; }

.icon_gift:before {
  content: "\e073"; }

.icon_house:before {
  content: "\e074"; }

.icon_camera:before {
  content: "\e075"; }

.icon_mail:before {
  content: "\e076"; }

.icon_cone:before {
  content: "\e077"; }

.icon_ribbon:before {
  content: "\e078"; }

.icon_bag:before {
  content: "\e079"; }

.icon_cart:before {
  content: "\e07a"; }

.icon_tag:before {
  content: "\e07b"; }

.icon_tags:before {
  content: "\e07c"; }

.icon_trash:before {
  content: "\e07d"; }

.icon_cursor:before {
  content: "\e07e"; }

.icon_mic:before {
  content: "\e07f"; }

.icon_compass:before {
  content: "\e080"; }

.icon_pin:before {
  content: "\e081"; }

.icon_pushpin:before {
  content: "\e082"; }

.icon_map:before {
  content: "\e083"; }

.icon_drawer:before {
  content: "\e084"; }

.icon_toolbox:before {
  content: "\e085"; }

.icon_book:before {
  content: "\e086"; }

.icon_contacts:before {
  content: "\e087"; }

.icon_archive:before {
  content: "\e088"; }

.icon_heart:before {
  content: "\e089"; }

.icon_profile:before {
  content: "\e08a"; }

.icon_group:before {
  content: "\e08b"; }

.icon_grid-2x2:before {
  content: "\e08c"; }

.icon_grid-3x3:before {
  content: "\e08d"; }

.icon_music:before {
  content: "\e08e"; }

.icon_pause_alt:before {
  content: "\e08f"; }

.icon_phone:before {
  content: "\e090"; }

.icon_upload:before {
  content: "\e091"; }

.icon_download:before {
  content: "\e092"; }

.social_facebook:before {
  content: "\e093"; }

.social_twitter:before {
  content: "\e094"; }

.social_pinterest:before {
  content: "\e095"; }

.social_googleplus:before {
  content: "\e096"; }

.social_tumblr:before {
  content: "\e097"; }

.social_tumbleupon:before {
  content: "\e098"; }

.social_wordpress:before {
  content: "\e099"; }

.social_instagram:before {
  content: "\e09a"; }

.social_dribbble:before {
  content: "\e09b"; }

.social_vimeo:before {
  content: "\e09c"; }

.social_linkedin:before {
  content: "\e09d"; }

.social_rss:before {
  content: "\e09e"; }

.social_deviantart:before {
  content: "\e09f"; }

.social_share:before {
  content: "\e0a0"; }

.social_myspace:before {
  content: "\e0a1"; }

.social_skype:before {
  content: "\e0a2"; }

.social_youtube:before {
  content: "\e0a3"; }

.social_picassa:before {
  content: "\e0a4"; }

.social_googledrive:before {
  content: "\e0a5"; }

.social_flickr:before {
  content: "\e0a6"; }

.social_blogger:before {
  content: "\e0a7"; }

.social_spotify:before {
  content: "\e0a8"; }

.social_delicious:before {
  content: "\e0a9"; }

.social_facebook_circle:before {
  content: "\e0aa"; }

.social_twitter_circle:before {
  content: "\e0ab"; }

.social_pinterest_circle:before {
  content: "\e0ac"; }

.social_googleplus_circle:before {
  content: "\e0ad"; }

.social_tumblr_circle:before {
  content: "\e0ae"; }

.social_stumbleupon_circle:before {
  content: "\e0af"; }

.social_wordpress_circle:before {
  content: "\e0b0"; }

.social_instagram_circle:before {
  content: "\e0b1"; }

.social_dribbble_circle:before {
  content: "\e0b2"; }

.social_vimeo_circle:before {
  content: "\e0b3"; }

.social_linkedin_circle:before {
  content: "\e0b4"; }

.social_rss_circle:before {
  content: "\e0b5"; }

.social_deviantart_circle:before {
  content: "\e0b6"; }

.social_share_circle:before {
  content: "\e0b7"; }

.social_myspace_circle:before {
  content: "\e0b8"; }

.social_skype_circle:before {
  content: "\e0b9"; }

.social_youtube_circle:before {
  content: "\e0ba"; }

.social_picassa_circle:before {
  content: "\e0bb"; }

.social_googledrive_alt2:before {
  content: "\e0bc"; }

.social_flickr_circle:before {
  content: "\e0bd"; }

.social_blogger_circle:before {
  content: "\e0be"; }

.social_spotify_circle:before {
  content: "\e0bf"; }

.social_delicious_circle:before {
  content: "\e0c0"; }

.social_facebook_square:before {
  content: "\e0c1"; }

.social_twitter_square:before {
  content: "\e0c2"; }

.social_pinterest_square:before {
  content: "\e0c3"; }

.social_googleplus_square:before {
  content: "\e0c4"; }

.social_tumblr_square:before {
  content: "\e0c5"; }

.social_stumbleupon_square:before {
  content: "\e0c6"; }

.social_wordpress_square:before {
  content: "\e0c7"; }

.social_instagram_square:before {
  content: "\e0c8"; }

.social_dribbble_square:before {
  content: "\e0c9"; }

.social_vimeo_square:before {
  content: "\e0ca"; }

.social_linkedin_square:before {
  content: "\e0cb"; }

.social_rss_square:before {
  content: "\e0cc"; }

.social_deviantart_square:before {
  content: "\e0cd"; }

.social_share_square:before {
  content: "\e0ce"; }

.social_myspace_square:before {
  content: "\e0cf"; }

.social_skype_square:before {
  content: "\e0d0"; }

.social_youtube_square:before {
  content: "\e0d1"; }

.social_picassa_square:before {
  content: "\e0d2"; }

.social_googledrive_square:before {
  content: "\e0d3"; }

.social_flickr_square:before {
  content: "\e0d4"; }

.social_blogger_square:before {
  content: "\e0d5"; }

.social_spotify_square:before {
  content: "\e0d6"; }

.social_delicious_square:before {
  content: "\e0d7"; }

.icon_printer:before {
  content: "\e103"; }

.icon_calulator:before {
  content: "\e0ee"; }

.icon_building:before {
  content: "\e0ef"; }

.icon_floppy:before {
  content: "\e0e8"; }

.icon_drive:before {
  content: "\e0ea"; }

.icon_search-2:before {
  content: "\e101"; }

.icon_id:before {
  content: "\e107"; }

.icon_id-2:before {
  content: "\e108"; }

.icon_puzzle:before {
  content: "\e102"; }

.icon_like:before {
  content: "\e106"; }

.icon_dislike:before {
  content: "\e0eb"; }

.icon_mug:before {
  content: "\e105"; }

.icon_currency:before {
  content: "\e0ed"; }

.icon_wallet:before {
  content: "\e100"; }

.icon_pens:before {
  content: "\e104"; }

.icon_easel:before {
  content: "\e0e9"; }

.icon_flowchart:before {
  content: "\e109"; }

.icon_datareport:before {
  content: "\e0ec"; }

.icon_briefcase:before {
  content: "\e0fe"; }

.icon_shield:before {
  content: "\e0f6"; }

.icon_percent:before {
  content: "\e0fb"; }

.icon_globe:before {
  content: "\e0e2"; }

.icon_globe-2:before {
  content: "\e0e3"; }

.icon_target:before {
  content: "\e0f5"; }

.icon_hourglass:before {
  content: "\e0e1"; }

.icon_balance:before {
  content: "\e0ff"; }

.icon_rook:before {
  content: "\e0f8"; }

.icon_printer-alt:before {
  content: "\e0fa"; }

.icon_calculator_alt:before {
  content: "\e0e7"; }

.icon_building_alt:before {
  content: "\e0fd"; }

.icon_floppy_alt:before {
  content: "\e0e4"; }

.icon_drive_alt:before {
  content: "\e0e5"; }

.icon_search_alt:before {
  content: "\e0f7"; }

.icon_id_alt:before {
  content: "\e0e0"; }

.icon_id-2_alt:before {
  content: "\e0fc"; }

.icon_puzzle_alt:before {
  content: "\e0f9"; }

.icon_like_alt:before {
  content: "\e0dd"; }

.icon_dislike_alt:before {
  content: "\e0f1"; }

.icon_mug_alt:before {
  content: "\e0dc"; }

.icon_currency_alt:before {
  content: "\e0f3"; }

.icon_wallet_alt:before {
  content: "\e0d8"; }

.icon_pens_alt:before {
  content: "\e0db"; }

.icon_easel_alt:before {
  content: "\e0f0"; }

.icon_flowchart_alt:before {
  content: "\e0df"; }

.icon_datareport_alt:before {
  content: "\e0f2"; }

.icon_briefcase_alt:before {
  content: "\e0f4"; }

.icon_shield_alt:before {
  content: "\e0d9"; }

.icon_percent_alt:before {
  content: "\e0da"; }

.icon_globe_alt:before {
  content: "\e0de"; }

.icon_clipboard:before {
  content: "\e0e6"; }

.glyph {
  float: left;
  text-align: center;
  padding: .75em;
  margin: .4em 1.5em .75em 0;
  width: 6em;
  text-shadow: none; }

.glyph_big {
  font-size: 128px;
  color: #59c5dc;
  float: left;
  margin-right: 20px; }

.glyph div {
  padding-bottom: 10px; }

.glyph input {
  font-family: consolas, monospace;
  font-size: 12px;
  width: 100%;
  text-align: center;
  border: 0;
  box-shadow: 0 0 0 1px #ccc;
  padding: .2em;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px; }

.centered {
  margin-left: auto;
  margin-right: auto; }

.glyph .fs1 {
  font-size: 2em; }

/* end fonts */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y; }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  padding: 0;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }
  .owl-carousel .owl-item:hover {
    z-index: 2; }

.owl-carousel .owl-item img {
  display: block;
  max-width: 100%;
  -webkit-transform-style: preserve-3d; }

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none; }

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel.owl-refresh .owl-item {
  display: none; }

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }

  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

input:focus, button:focus, select:focus, textarea:focus {
  text-decoration: none !important;
  box-shadow: none !important;
  outline: 0 !important; }

a:hover, a:focus {
  outline: 0 !important;
  box-shadow: none !important;
  text-decoration: none; }

.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .btn:hover, .btn:focus, .btn:active, .btn.active {
  outline: 0 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  background: #80bb01;
  border: 1px solid transparent; }

.btn.disabled, .btn.disabled:hover {
  border: 1px solid transparent; }

.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .open > .btn-primary.dropdown-toggle.focus, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle:hover {
  color: #fff;
  background-color: #80bb01;
  border-color: transparent;
  border: none; }

.btn-secondary, .btn-tertiary, .btn-primary {
  text-transform: capitalize;
  font-weight: 400;
  font-size: 14px;
  border: none;
  color: white;
  line-height: 25px;
  box-shadow: none;
  padding: 5px 20px;
  border-radius: 3px;
  background: #242424;
  margin: 30px 15px 0 15px; }
  @media (max-width: 767px) {
    .btn-secondary, .btn-tertiary, .btn-primary {
      margin: 0 15px 0 0; } }
  .btn-secondary:hover, .btn-tertiary:hover, .btn-primary:hover {
    background: #80bb01;
    border-color: #80bb01;
    color: white;
    border: none; }

.btn-secondary:hover, .btn-tertiary:hover, .btn-primary.focus, .btn-primary:focus, .btn-primary:hover {
  color: white;
  background-color: #80bb01;
  border-color: transparent;
  border: none; }

a {
  color: #242424;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: none; }

/* edit from here */
.ui-menu .ui-menu-item a.ui-state-focus, .ui-menu .ui-menu-item a {
  font-size: 12px; }

.ui-menu .ui-menu-item a.ui-state-focus, .ui-menu .ui-menu-item a.ui-state-active {
  margin: 0;
  background: none;
  border: 0;
  color: #80bb01;
  cursor: pointer; }

button {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease; }

.product-flag {
  margin: 0; }

/* edit theme */
*:focus {
  outline: none !important; }

img {
  max-width: 100%;
  margin: auto;
  height: auto; }

ol, ul, dl {
  margin: 0;
  padding: 0; }

i, cite, em, var, address, dfn {
  font-style: normal; }

body {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  background: #f5f5f5;
  line-height: 24px;
  color: #757575; }

p {
  font-size: 14px;
  color: #757575;
  margin: 0; }

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-size: 16px;
  text-transform: capitalize;
  color: #242424;
  font-weight: 500; }

.unvisible, .headerSpace {
  display: none; }

/* custom page */
.card {
  box-shadow: none;
  border: none;
  padding: 0;
  text-align: justify; }

.cart-grid-body .card-block h1 {
  padding: 15px; }

.page-header h1, .card-block h1 {
  color: #242424;
  text-align: left;
  font-size: 20px;
  font-style: normal;
  text-transform: none;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: .8em;
  padding-bottom: .5em; }

.page-content.page-cms {
  padding: 3rem; }

.contact-form {
  padding: 30px;
  color: #242424;
  border-left: 1px solid #ebebeb; }

.form-control {
  background-color: white;
  color: #242424;
  border: 1px solid #ebebeb;
  font-size: 13px; }

.form-control:focus {
  color: #242424;
  border-color: #242424; }

.form-control:focus, .input-group.focus {
  outline: 0; }

.input-group .input-group-btn > .btn[data-action=show-password]:hover {
  background: #80bb01; }

.form-control-label {
  font-size: 16px;
  text-align: left;
  color: #242424; }

.input-group .input-group-btn > .btn {
  padding: .67rem 1rem; }

.sitemap h2 {
  color: #242424;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid #ebebeb; }

.sitemap ul li {
  font-size: 13px; }
  .sitemap ul li:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    display: inline-block;
    margin-right: 5px;
    font-weight: 900; }

#stores .page-stores {
  width: 100%; }

#stores .page-stores .store-item {
  padding: 0; }

#stores .page-stores .store-item-container {
  border-bottom: 1px solid rgba(161, 161, 161, 0.25); }
  #stores .page-stores .store-item-container .h3.card-title {
    font-size: 16px;
    color: #242424;
    text-transform: capitalize; }

#stores .page-stores .store-item-container .store-description {
  font-size: 13px;
  color: #666; }

#stores .page-stores .store-item-container ul {
  margin-bottom: 0;
  font-size: 13px; }

#stores .page-stores .store-item-container .divide-left {
  border-left: 1px solid rgba(161, 161, 161, 0.25); }

.page-addresses .address, .page-authentication #content {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ebebeb; }

.page-authentication #content {
  max-width: 100%; }

.page-customer-account #content {
  box-shadow: none;
  border: 1px solid #ebebeb;
  font-size: 13px;
  color: #242424; }

.page-customer-account #content .no-account {
  text-align: center;
  font-size: 14px; }

.custom-checkbox input[type=checkbox] + span {
  margin-top: 5px; }

.label, label {
  font-size: 13px;
  color: #242424; }

.page-my-account #content .links a span.link-item {
  box-shadow: none;
  border: 1px solid #ebebeb;
  font-size: 14px; }

.separator {
  border-color: #d9d9d9; }

.cart-summary, #js-checkout-summary {
  border: 1px solid #ebebeb; }

.cart-summary-line .label, .cart-summary .label, .cart-summary-line.cart-summary-subtotals .label, .cart-summary-line.cart-summary-subtotals .value {
  text-transform: capitalize;
  font-weight: 500; }

.cart-summary-line .value {
  color: #242424;
  font-weight: 500;
  font-size: 16px; }

.cart-summary-products p {
  font-weight: 500; }

.cart-grid-body .card-block {
  padding: 0; }

.cart-item {
  border-bottom: 1px solid #ebebeb; }

body#checkout section.checkout-step {
  box-shadow: none;
  border-bottom: 1px solid #ebebeb; }

body#checkout section.checkout-step .step-title {
  text-transform: capitalize; }

.checkout-inner {
  border: 1px solid #ebebeb; }

.block-reassurance-item .h6 {
  font-size: 13px; }

#block-reassurance li {
  border-bottom: 1px solid #ebebeb; }

/* end custom page */
@media (min-width: 992px) {
  .container {
    max-width: 970px;
    padding-left: 0;
    padding-right: 0; } }
@media (min-width: 1200px) {
  .container-fluid {
    padding-left: 80px;
    padding-right: 80px; }

  .container {
    max-width: 1170px;
    padding-left: 0;
    padding-right: 0; } }
.container {
  width: auto; }

main {
  overflow: hidden; }

#wrapper {
  margin: 0;
  background: transparent;
  box-shadow: none;
  padding-top: 30px; }
  #wrapper #main .page-footer {
    margin: 0; }

#index #wrapper {
  padding-top: 0; }

.back-top {
  display: block;
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 15; }
  @media (min-width: 1920px) {
    .back-top {
      right: 150px; } }
  .back-top a {
    background: #80bb01;
    color: white;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 3px;
    box-shadow: 0 0 3px #fff;
    display: block;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out; }
    .back-top a:after {
      content: "\e935";
      font-family: 'plaza-icon';
      font-size: 18px;
      display: block;
      line-height: 50px; }
    .back-top a:hover {
      background: #242424;
      box-shadow: 0 0 20px #fff !important; }

/* ===== edit theme ======== */
#header {
  position: relative;
  z-index: 9;
  background: white; }
  @media (max-width: 767px) {
    #header {
      text-align: center; } }
  #header .header-nav {
    background: #f5f5f5;
    max-height: none;
    border-bottom: 1px solid #ebebeb;
    padding: 15px 0; }
    @media (max-width: 991px) {
      #header .header-nav {
        text-align: center; } }
  #header .header-top {
    padding: 30px 0 0; }
    @media (max-width: 991px) {
      #header .header-top {
        padding: 20px 0;
        text-align: center; } }
    @media (max-width: 767px) {
      #header .header-top {
        background: transparent; } }
    @media (min-width: 992px) {
      #header .header-top .row {
        margin: 0;
        display: table;
        vertical-align: middle;
        width: 100%; }
        #header .header-top .row .col {
          padding: 0;
          display: table-cell;
          vertical-align: middle;
          float: none; } }
    #header .header-top #_desktop_logo img {
      margin: -15px 0 0; }
      @media (max-width: 991px) {
        #header .header-top #_desktop_logo img {
          margin: auto;
          margin-bottom: 20px; } }
  #header .header-bottom {
    display: inline-block;
    width: 100%;
    vertical-align: bottom; }

#_mobile_logo img {
  width: 75%; }

.selector-mobile img {
  vertical-align: 0px;
  margin-right: 5px; }
.selector-mobile button {
  background: transparent;
  border: none;
  border-top: 1px solid #eeeeee;
  width: 100%;
  text-align: left;
  display: block;
  color: #333333;
  font-size: 11px;
  font-weight: 400;
  padding: 5px 20px;
  line-height: 30px;
  cursor: pointer;
  text-transform: uppercase; }
  .selector-mobile button:hover span.expand-more {
    color: #80bb01; }
  .selector-mobile button i {
    position: absolute;
    right: 20px;
    top: 13px;
    font-size: 18px;
    color: #333333; }
.selector-mobile .dropdown-menu {
  position: static;
  position: relative;
  border: 0;
  padding: 0;
  margin: 0;
  float: none; }
  .selector-mobile .dropdown-menu li {
    border-top: 1px solid #eeeeee; }
    .selector-mobile .dropdown-menu li a {
      display: block;
      color: #333333;
      font-size: 10px;
      font-weight: 400;
      padding: 5px 20px;
      line-height: 30px;
      text-transform: uppercase; }

.js-top-menu-bottom {
  display: inline-block;
  width: 100%;
  position: relative; }
  .js-top-menu-bottom #_mobile_user_info {
    display: inline-block;
    vertical-align: top; }

.header-nav-top .mobile > .row-mobile {
  display: flex;
  flex-direction: row;
  align-items: center; }
  .header-nav-top .mobile > .row-mobile .col-mobile {
    display: flex;
    align-items: center;
    flex-direction: row; }
    .header-nav-top .mobile > .row-mobile .col-mobile.mobile-center {
      justify-content: center; }
    .header-nav-top .mobile > .row-mobile .col-mobile.mobile-right {
      justify-content: flex-end; }

@media (max-width: 991px) {
  #header .header-nav-top {
    padding: 10px 0; } }
#header .header-nav-top #menu-icon {
  color: #242424;
  height: 35px;
  line-height: 35px;
  margin: 0; }

.open-menu:after {
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  display: block;
  position: fixed;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  transition: opacity 0.2s cubic-bezier(0, 0, 0.3, 1);
  transition-delay: 0.1s; }

.menu-close {
  background: #333333;
  color: #ffffff;
  line-height: 40px;
  height: 40px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: left;
  pointer-events: none; }
  .menu-close i.material-icons {
    float: right;
    line-height: 40px;
    pointer-events: visible;
    cursor: pointer; }

.menu-tabs {
  width: 100%;
  height: 100%; }

#wrapper, #notifications, #footer {
  display: block !important; }

#mobile_top_menu_wrapper {
  display: block !important;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  max-width: 350px;
  z-index: 999;
  margin: 0;
  padding: 0;
  webkit-transform: translate(-400px, 0px);
  -moz-transform: translate(-400px, 0px);
  -ms-transform: translate(-400px, 0px);
  -o-transform: translate(-400px, 0px);
  transform: translate(-400px, 0px);
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: .9s;
  -o-transition-duration: .9s;
  -webkit-transition-duration: .9s;
  transition-duration: .9s;
  overflow: auto; }

#mobile_top_menu_wrapper.box-menu {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0); }

#mobile_top_menu_wrapper .top-header-mobile {
  display: inline-block;
  width: 100%;
  text-align: center; }

/* item product */
.pos_title {
  position: relative;
  display: block;
  line-height: 50px; }
  .pos_title:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    background: #e9e9e9;
    top: 12px;
    left: 0;
    right: 0;
    bottom: 0; }
  .pos_title h2 {
    margin: 0;
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 15px;
    background: #80bb01;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 0 5px 0 0;
    padding: 15px 25px 15px 10px;
    vertical-align: bottom; }
    .pos_title h2:before {
      background: #80bb01;
      content: '';
      height: 100%;
      left: 0;
      position: absolute;
      top: 0;
      width: 15px;
      z-index: 1;
      -webkit-transform: translateX(-100%);
      -moz-transform: translateX(-100%);
      transform: translateX(-100%); }
    .pos_title h2:after {
      border-bottom: 15px solid transparent;
      border-left: 15px solid transparent;
      border-top: 15px solid #5d8801;
      bottom: 0;
      content: '';
      left: -15px;
      position: absolute;
      z-index: 1;
      -webkit-transform: translateY(100%);
      -moz-transform: translateY(100%);
      transform: translateY(100%); }

.js-product-miniature {
  position: relative;
  background: white;
  text-align: center;
  z-index: 1;
  padding: 20px 10px 25px 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;
  margin-bottom: 20px; }
  .js-product-miniature:last-child {
    margin-bottom: 0; }
  .js-product-miniature:hover .img_block .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; }
  .js-product-miniature .img_block {
    position: relative;
    overflow: hidden; }
    .js-product-miniature .img_block img {
      width: 100%;
      margin: 0;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear; }
    .js-product-miniature .img_block .add-to-links {
      display: inline-block;
      bottom: auto;
      left: 50%;
      margin: 0;
      margin-right: -50%;
      max-width: 90%;
      padding: 0;
      position: absolute;
      right: auto;
      top: 50%;
      z-index: 78;
      filter: alpha(opacity=0);
      opacity: 0;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
      .js-product-miniature .img_block .add-to-links li {
        float: left;
        margin-right: 10px;
        height: 36px;
        -webkit-transition: all 300ms linear;
        -moz-transition: all 300ms linear;
        -ms-transition: all 300ms linear;
        -o-transition: all 300ms linear;
        transition: all 300ms linear; }
        .js-product-miniature .img_block .add-to-links li:last-child {
          margin: 0; }
        .js-product-miniature .img_block .add-to-links li a {
          display: inline-block;
          background: #80bb01;
          color: #fff;
          padding: 0;
          border: none;
          line-height: 43px;
          height: 43px;
          width: 43px;
          padding: 0;
          font-size: 0;
          text-align: center;
          text-transform: capitalize;
          -webkit-border-radius: 100%;
          -moz-border-radius: 100%;
          -ms-border-radius: 100%;
          -o-border-radius: 100%;
          border-radius: 100%; }
          .js-product-miniature .img_block .add-to-links li a:before {
            display: inline-block;
            font-family: 'ElegantIcons';
            font-size: 18px;
            vertical-align: top; }
          .js-product-miniature .img_block .add-to-links li a:hover {
            background: #5d8801;
            color: white;
            -webkit-transition: all 300ms linear;
            -moz-transition: all 300ms linear;
            -ms-transition: all 300ms linear;
            -o-transition: all 300ms linear;
            transition: all 300ms linear; }
          .js-product-miniature .img_block .add-to-links li a.quick_view:before {
            content: '\55'; }
          .js-product-miniature .img_block .add-to-links li a.addToWishlist:before {
            content: '\e030'; }
        .js-product-miniature .img_block .add-to-links li.cart button.ajax_add_to_cart_button, .js-product-miniature .img_block .add-to-links li.cart span.ajax_add_to_cart_button {
          display: inline-block;
          background: #80bb01;
          color: #fff;
          font-size: 0;
          padding: 0;
          border: none;
          line-height: 43px;
          height: 43px;
          width: 43px;
          text-align: center;
          cursor: pointer;
          -webkit-border-radius: 100%;
          -moz-border-radius: 100%;
          -ms-border-radius: 100%;
          -o-border-radius: 100%;
          border-radius: 100%; }
          .js-product-miniature .img_block .add-to-links li.cart button.ajax_add_to_cart_button:before, .js-product-miniature .img_block .add-to-links li.cart span.ajax_add_to_cart_button:before {
            display: inline-block;
            font-family: 'ElegantIcons';
            font-size: 18px;
            vertical-align: top;
            content: '\e015'; }
          .js-product-miniature .img_block .add-to-links li.cart button.ajax_add_to_cart_button.disabled, .js-product-miniature .img_block .add-to-links li.cart span.ajax_add_to_cart_button.disabled {
            opacity: 0.5; }
          .js-product-miniature .img_block .add-to-links li.cart button.ajax_add_to_cart_button:hover, .js-product-miniature .img_block .add-to-links li.cart span.ajax_add_to_cart_button:hover {
            background: #5d8801;
            color: white;
            -webkit-transition: all 300ms linear;
            -moz-transition: all 300ms linear;
            -ms-transition: all 300ms linear;
            -o-transition: all 300ms linear;
            transition: all 300ms linear; }
  .js-product-miniature .product_desc {
    background: white;
    overflow: hidden;
    padding-top: 10px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear; }
    .js-product-miniature .product_desc .manufacturer a {
      font-size: 13px;
      text-transform: capitalize;
      color: #999;
      line-height: 1;
      margin-bottom: 12px;
      display: block; }
      .js-product-miniature .product_desc .manufacturer a:hover {
        color: #80bb01; }
    .js-product-miniature .product_desc h3 {
      font-weight: 500;
      margin: 0;
      line-height: 1; }
      @media (max-width: 1199px) {
        .js-product-miniature .product_desc h3 {
          min-height: 36px; } }
    .js-product-miniature .product_desc .product_name {
      line-height: 18px;
      display: block;
      overflow: hidden;
      color: #222;
      font-size: 17px;
      margin-bottom: 25px; }
      .js-product-miniature .product_desc .product_name:hover {
        color: #80bb01; }
    .js-product-miniature .product_desc .hook-reviews {
      display: none;
      line-height: 1;
      margin-bottom: 18px;
      position: relative;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear; }
      .js-product-miniature .product_desc .hook-reviews:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        border-bottom: 1px solid #ebebeb; }
      .js-product-miniature .product_desc .hook-reviews .comments_note {
        direction: ltr !important;
        text-align: left;
        display: inline-block;
        background: white;
        padding: 0 10px;
        position: relative; }
      .js-product-miniature .product_desc .hook-reviews .star_content {
        display: inline-block;
        vertical-align: bottom; }
      .js-product-miniature .product_desc .hook-reviews .nb-comments {
        font-size: 12px;
        display: none; }
    .js-product-miniature .product_desc .add-to-links {
      display: none;
      bottom: auto;
      left: 50%;
      margin: 0;
      margin-right: -50%;
      max-width: 90%;
      padding: 0;
      position: absolute;
      right: auto;
      top: 50%;
      z-index: 78;
      filter: alpha(opacity=0);
      opacity: 0;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
      .js-product-miniature .product_desc .add-to-links li {
        float: left;
        margin-right: 10px;
        height: 36px;
        -webkit-transition: all 300ms linear;
        -moz-transition: all 300ms linear;
        -ms-transition: all 300ms linear;
        -o-transition: all 300ms linear;
        transition: all 300ms linear; }
        .js-product-miniature .product_desc .add-to-links li:last-child {
          margin: 0; }
        .js-product-miniature .product_desc .add-to-links li a {
          display: inline-block;
          background: #80bb01;
          color: #fff;
          padding: 0;
          border: none;
          line-height: 43px;
          height: 43px;
          width: 43px;
          padding: 0;
          font-size: 0;
          text-align: center;
          text-transform: capitalize;
          -webkit-border-radius: 100%;
          -moz-border-radius: 100%;
          -ms-border-radius: 100%;
          -o-border-radius: 100%;
          border-radius: 100%; }
          .js-product-miniature .product_desc .add-to-links li a:before {
            display: inline-block;
            font-family: 'ElegantIcons';
            font-size: 18px;
            vertical-align: top; }
          .js-product-miniature .product_desc .add-to-links li a:hover {
            background: #5d8801;
            color: white;
            -webkit-transition: all 300ms linear;
            -moz-transition: all 300ms linear;
            -ms-transition: all 300ms linear;
            -o-transition: all 300ms linear;
            transition: all 300ms linear; }
          .js-product-miniature .product_desc .add-to-links li a.quick_view:before {
            content: '\55'; }
          .js-product-miniature .product_desc .add-to-links li a.addToWishlist:before {
            content: '\e030'; }
        .js-product-miniature .product_desc .add-to-links li.cart button.ajax_add_to_cart_button, .js-product-miniature .product_desc .add-to-links li.cart span.ajax_add_to_cart_button {
          display: inline-block;
          background: #80bb01;
          color: #fff;
          font-size: 0;
          padding: 0;
          border: none;
          line-height: 43px;
          height: 43px;
          width: 43px;
          text-align: center;
          cursor: pointer;
          -webkit-border-radius: 100%;
          -moz-border-radius: 100%;
          -ms-border-radius: 100%;
          -o-border-radius: 100%;
          border-radius: 100%; }
          .js-product-miniature .product_desc .add-to-links li.cart button.ajax_add_to_cart_button:before, .js-product-miniature .product_desc .add-to-links li.cart span.ajax_add_to_cart_button:before {
            display: inline-block;
            font-family: 'ElegantIcons';
            font-size: 18px;
            vertical-align: top;
            content: '\e015'; }
          .js-product-miniature .product_desc .add-to-links li.cart button.ajax_add_to_cart_button.disabled, .js-product-miniature .product_desc .add-to-links li.cart span.ajax_add_to_cart_button.disabled {
            opacity: 0.5; }
          .js-product-miniature .product_desc .add-to-links li.cart button.ajax_add_to_cart_button:hover, .js-product-miniature .product_desc .add-to-links li.cart span.ajax_add_to_cart_button:hover {
            background: #5d8801;
            color: white;
            -webkit-transition: all 300ms linear;
            -moz-transition: all 300ms linear;
            -ms-transition: all 300ms linear;
            -o-transition: all 300ms linear;
            transition: all 300ms linear; }
    .js-product-miniature .product_desc .product-desc {
      display: none;
      margin-bottom: 20px;
      font-size: 12px;
      color: #a4a4a4;
      line-height: 18px; }
      .js-product-miniature .product_desc .product-desc p {
        font-size: 12px;
        color: #a4a4a4;
        line-height: 18px;
        margin: 0; }
        .js-product-miniature .product_desc .product-desc p span {
          font-family: 'Rubik', sans-serif !important;
          font-size: 12px !important;
          color: #a4a4a4 !important; }
    .js-product-miniature .product_desc .variant-links {
      margin-top: 15px;
      margin-top: 15px;
      background: transparent;
      padding: 0;
      min-height: auto;
      text-align: left;
      display: none; }
      .js-product-miniature .product_desc .variant-links a {
        margin: 0 5px 0 0;
        margin: 0 5px 0 0;
        border-radius: 100%;
        width: 15px;
        height: 15px; }

.js-product-miniature .product-price-and-shipping {
  line-height: 1; }
  .js-product-miniature .product-price-and-shipping .sr-only {
    display: none; }
  .js-product-miniature .product-price-and-shipping .price {
    font-size: 21px;
    font-weight: 400;
    color: #80bb01; }
  .js-product-miniature .product-price-and-shipping .regular-price {
    font-size: 17px;
    color: #999999;
    font-weight: 400;
    text-decoration: line-through;
    margin-right: 5px; }

.product-price-and-shipping-top .discount-product {
  display: inline-block;
  position: absolute !important;
  top: 10px !important;
  right: 15px !important;
  left: auto !important;
  background: #ffaf00 !important;
  color: white;
  border-radius: 10px;
  padding: 0 15px !important;
  min-width: 50px !important;
  text-align: center;
  min-height: auto !important;
  line-height: 23px !important;
  height: 23px !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: none !important; }
  .product-price-and-shipping-top .discount-product:before {
    content: "";
    height: 5px;
    width: 5px;
    background: #fff;
    border-radius: 100%;
    position: absolute;
    top: 9px;
    right: 6px; }

.product-flag .new,
.product-flag .on-sale, .product-flag .pack {
  position: absolute;
  top: 10px !important;
  left: 15px;
  display: inline-block;
  background: #ee8a82;
  color: white;
  border-radius: 10px;
  padding: 0 15px;
  min-width: 50px;
  text-align: center;
  line-height: 23px;
  height: 23px;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase; }
  .product-flag .new:before,
  .product-flag .on-sale:before, .product-flag .pack:before {
    content: "";
    height: 5px;
    width: 5px;
    background: #fff;
    border-radius: 100%;
    position: absolute;
    top: 9px;
    right: 6px; }

.product-flag .pack {
  z-index: 1; }

.product-flag .on-sale {
  z-index: 2; }

.product-flag .discount {
  display: none; }

.owl-dots .owl-dot {
  display: inline-block;
  margin: 0 4px; }
  .owl-dots .owl-dot:last-child {
    margin-right: 0; }
  .owl-dots .owl-dot span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: #cacaca;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear; }
    .owl-dots .owl-dot span:hover {
      background: #444444;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear; }
  .owl-dots .owl-dot.active span {
    background: #444444;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear; }

.owl-nav {
  position: absolute;
  top: -67px;
  right: 0;
  overflow: hidden; }
  .owl-nav > div {
    font-size: 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; }
    @media (max-width: 991px) {
      .owl-nav > div {
        display: none; } }
    .owl-nav > div:before {
      color: #999;
      font-family: 'ElegantIcons';
      font-size: 24px;
      position: static;
      vertical-align: middle; }
    .owl-nav > div:hover:before {
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear;
      color: #80bb01; }
    .owl-nav > div.owl-prev {
      margin-right: 5px; }
      .owl-nav > div.owl-prev:before {
        content: "\48"; }
    .owl-nav > div.owl-next:before {
      content: "\49"; }

.pos_content {
  position: relative;
  background: #fff;
  margin: 0 0 35px 0;
  padding: 32px 15px;
  -webkit-box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1); }
  .pos_content .js-product-miniature img, .pos_content .thumb-category img, .pos_content .item_logo img, .pos_content .thumb-container img {
    display: none; }
  .pos_content .owl-item .js-product-miniature img, .pos_content .owl-item .thumb-category img, .pos_content .owl-item .item_logo img, .pos_content .owl-item .thumb-container img {
    display: block; }

.category-products-slider, .pos-featured-products, .categoryproducts, .pos-bestsellers-product, .poslistcateproduct, .tab-category-container-slider, .tab-category-container-slider2, .pos_new_product, .product-tabs-container-slider, .pos_random_product, .poslistcategories, .testimonials_container {
  margin-top: 40px;
  position: relative;
  display: inline-block;
  width: 100%; }
  @media (max-width: 480px) {
    .category-products-slider, .pos-featured-products, .categoryproducts, .pos-bestsellers-product, .poslistcateproduct, .tab-category-container-slider, .tab-category-container-slider2, .pos_new_product, .product-tabs-container-slider, .pos_random_product, .poslistcategories, .testimonials_container {
      margin-top: 20px; } }

/* end item product */
/* selector */
.selector-block {
  float: left;
  padding: 0 18px;
  line-height: 1;
  border-left: 1px solid #ebebeb; }
  .selector-block:first-child {
    border: none;
    padding-left: 0; }
  .selector-block .selector-label {
    color: #777777;
    line-height: 18px;
    text-transform: capitalize;
    font-size: 14px;
    margin-right: 5px; }
  .selector-block .localiz_block {
    margin: 0 !important;
    display: inline-block; }
    .selector-block .localiz_block:hover button, .selector-block .localiz_block:hover .current-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;
      color: #80bb01; }
      .selector-block .localiz_block:hover button .expand-more, .selector-block .localiz_block:hover .current-block .expand-more {
        -webkit-transition: all 300ms linear;
        -moz-transition: all 300ms linear;
        -ms-transition: all 300ms linear;
        -o-transition: all 300ms linear;
        transition: all 300ms linear;
        color: #80bb01; }
    .selector-block .localiz_block button, .selector-block .localiz_block .current-block {
      font-weight: 400;
      color: #242424;
      background: transparent;
      text-shadow: none;
      cursor: pointer;
      line-height: 16px;
      font-size: 12px;
      display: inline-block;
      text-transform: capitalize;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear; }
      .selector-block .localiz_block button .expand-more, .selector-block .localiz_block .current-block .expand-more {
        color: #242424;
        -webkit-transition: all 300ms linear;
        -moz-transition: all 300ms linear;
        -ms-transition: all 300ms linear;
        -o-transition: all 300ms linear;
        transition: all 300ms linear; }
      .selector-block .localiz_block button i, .selector-block .localiz_block .current-block i {
        font-size: 13px;
        vertical-align: -3px; }
      .selector-block .localiz_block button img, .selector-block .localiz_block .current-block img {
        margin-right: 5px;
        vertical-align: -1px; }
    .selector-block .localiz_block .dropdown-menu {
      margin: 0;
      top: 32px;
      right: 0;
      left: auto;
      min-width: 7rem;
      overflow: hidden;
      padding: 10px;
      background: white;
      border-radius: 0;
      border: none;
      -webkit-box-shadow: 0 0 7.2px 0.8px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 0 7.2px 0.8px rgba(0, 0, 0, 0.1);
      box-shadow: 0 0 7.2px 0.8px rgba(0, 0, 0, 0.1); }
      .selector-block .localiz_block .dropdown-menu li {
        padding: 0;
        -webkit-transition: all 300ms linear;
        -moz-transition: all 300ms linear;
        -ms-transition: all 300ms linear;
        -o-transition: all 300ms linear;
        transition: all 300ms linear; }
        .selector-block .localiz_block .dropdown-menu li .dropdown-item {
          padding: 0 10px;
          color: #636363;
          line-height: 22px;
          font-size: 12px; }
          .selector-block .localiz_block .dropdown-menu li .dropdown-item img {
            display: inline-block;
            margin-right: 5px;
            vertical-align: -2px; }
        .selector-block .localiz_block .dropdown-menu li.current .dropdown-item {
          color: white;
          background: #80bb01;
          -webkit-transition: all 300ms linear;
          -moz-transition: all 300ms linear;
          -ms-transition: all 300ms linear;
          -o-transition: all 300ms linear;
          transition: all 300ms linear; }
        .selector-block .localiz_block .dropdown-menu li:hover .dropdown-item {
          color: white;
          background: #80bb01;
          -webkit-transition: all 300ms linear;
          -moz-transition: all 300ms linear;
          -ms-transition: all 300ms linear;
          -o-transition: all 300ms linear;
          transition: all 300ms linear; }

.user_info_desktop {
  float: right;
  line-height: 1; }
  .user_info_desktop li {
    display: inline-block;
    line-height: 1; }
    .user_info_desktop li:last-child a {
      padding-right: 0; }
    .user_info_desktop li a {
      color: #777777;
      font-size: 14px;
      line-height: 16px;
      text-transform: capitalize;
      padding: 0 16px; }
      .user_info_desktop li a:hover {
        color: #80bb01;
        text-decoration: underline; }

/* end selector */
/* wishlist block */
.wishtlist_Top {
  float: right;
  margin-right: 20px; }
  @media (max-width: 767px) {
    .wishtlist_Top {
      float: none;
      display: inline-block;
      margin: 0 10px 0 0; } }
  @media (max-width: 479px) {
    .wishtlist_Top {
      width: 100%;
      margin: 0; } }
  .wishtlist_Top a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #80bb01;
    position: relative;
    text-align: center;
    display: inline-block; }
    .wishtlist_Top a i {
      font-weight: 400;
      font-size: 20px;
      vertical-align: -3px; }
    .wishtlist_Top a .cart-wishlist-number {
      position: absolute;
      top: 8px;
      right: 8px;
      display: block;
      overflow: hidden;
      font-weight: 500;
      color: white;
      font-size: 12px;
      line-height: 1; }

/* end wishlist block */
/* module contact */
.block-contact-top {
  position: relative;
  float: left;
  margin-right: 35px;
  margin-top: 6px; }
  @media (max-width: 1199px) {
    .block-contact-top {
      margin-right: 15px; } }
  @media (max-width: 480px) {
    .block-contact-top {
      float: none;
      display: inline-block;
      margin: 20px 0 0 0; } }
  .block-contact-top:before {
    content: "";
    background: url(../img/icon_contact.png) no-repeat;
    width: 40px;
    height: 35px;
    display: inline-block;
    float: left;
    margin-right: 15px; }
  .block-contact-top .contact_cms {
    overflow: hidden;
    text-align: left; }
    .block-contact-top .contact_cms span {
      text-transform: capitalize;
      font-size: 14px;
      line-height: 18px;
      font-weight: 400;
      color: #777;
      display: block; }

/* end module contact */
/* module user-info */
.user_info_top {
  float: right;
  font-size: 0; }
  @media (max-width: 767px) {
    .user_info_top {
      width: 100%;
      display: inline-block;
      float: none; } }
  .user_info_top > li {
    display: inline-block;
    vertical-align: top;
    margin: 0 5px;
    line-height: 1; }
    .user_info_top > li:last-child a {
      border: none; }
    .user_info_top > li a {
      display: inline-block;
      overflow: hidden;
      float: left;
      line-height: 35px;
      padding: 0 15px 0 30px;
      font-size: 13px;
      position: relative;
      color: #242424; }
      .user_info_top > li a i {
        position: absolute;
        top: 0;
        left: 3px;
        display: block;
        font-size: 14px;
        line-height: 35px;
        color: #999999;
        -webkit-transition: all 300ms linear;
        -moz-transition: all 300ms linear;
        -ms-transition: all 300ms linear;
        -o-transition: all 300ms linear;
        transition: all 300ms linear; }
      .user_info_top > li a:hover {
        color: #80bb01; }
        .user_info_top > li a:hover i {
          left: 7px;
          color: #80bb01;
          -webkit-transition: all 300ms linear;
          -moz-transition: all 300ms linear;
          -ms-transition: all 300ms linear;
          -o-transition: all 300ms linear;
          transition: all 300ms linear; }

/* end module user-info */
/* module megamenu */
.megamenu {
  position: relative;
  z-index: 1; }

.pt_custommenu {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-top: 18px; }
  .pt_custommenu .pt_menu {
    display: inline-block; }
    .pt_custommenu .pt_menu .parentMenu a {
      display: block;
      line-height: 25px;
      padding: 0 13px;
      font-size: 14px;
      font-weight: 500;
      color: #222;
      background: transparent;
      text-transform: uppercase;
      position: relative; }
      .pt_custommenu .pt_menu .parentMenu a i {
        font-size: 12px;
        padding: 0 0 0 9px;
        color: #777777;
        vertical-align: -1px; }
        .pt_custommenu .pt_menu .parentMenu a i:before {
          content: "\ea32";
          font-family: 'plaza-icon' !important; }
    .pt_custommenu .pt_menu.act .parentMenu a, .pt_custommenu .pt_menu.active .parentMenu a {
      color: #80bb01; }
    .pt_custommenu .pt_menu:first-child .parentMenu a {
      padding-left: 0; }
    .pt_custommenu .pt_menu .popup {
      position: absolute;
      box-shadow: 0px 3px 9.3px 0.7px rgba(0, 0, 0, 0.15);
      background: rgba(255, 255, 255, 0.97);
      padding: 30px 20px;
      z-index: 10;
      text-align: left; }
      .pt_custommenu .pt_menu .popup .cms_mega a img {
        -webkit-transition: all 1700ms ease;
        -moz-transition: all 1700ms ease;
        -o-transition: all 1700ms ease;
        transition: all 1700ms ease; }
      .pt_custommenu .pt_menu .popup .cms_mega a:hover img {
        -webkit-transform: scale(1.07);
        -moz-transform: scale(1.07);
        -ms-transform: scale(1.07);
        -o-transform: scale(1.07);
        transform: scale(1.07); }
      .pt_custommenu .pt_menu .popup .block1 {
        overflow: hidden;
        float: left; }
        .pt_custommenu .pt_menu .popup .block1 .column {
          float: left;
          width: 200px;
          margin-right: 30px;
          margin-bottom: -99999px;
          padding-bottom: 99999px;
          border-right: 1px solid #ebebeb; }
          .pt_custommenu .pt_menu .popup .block1 .column.last {
            margin-right: 0;
            border: none; }
          .pt_custommenu .pt_menu .popup .block1 .column .itemMenuName {
            color: #242424;
            line-height: 35px;
            text-transform: capitalize;
            font-weight: 500;
            font-size: 14px;
            display: block; }
            .pt_custommenu .pt_menu .popup .block1 .column .itemMenuName:hover {
              color: #80bb01; }
          .pt_custommenu .pt_menu .popup .block1 .column .itemSubMenu {
            padding: 0; }
            .pt_custommenu .pt_menu .popup .block1 .column .itemSubMenu .itemMenuName {
              color: #7a7a7a;
              text-transform: capitalize;
              line-height: 30px;
              font-weight: 400;
              font-size: 14px;
              -webkit-transition: all 300ms linear;
              -moz-transition: all 300ms linear;
              -ms-transition: all 300ms linear;
              -o-transition: all 300ms linear;
              transition: all 300ms linear; }
              .pt_custommenu .pt_menu .popup .block1 .column .itemSubMenu .itemMenuName:hover {
                color: #80bb01;
                padding-left: 10px;
                -webkit-transition: all 300ms linear;
                -moz-transition: all 300ms linear;
                -ms-transition: all 300ms linear;
                -o-transition: all 300ms linear;
                transition: all 300ms linear; }

.pt_custommenu_mobile {
  text-align: left;
  position: relative;
  clear: both;
  margin-top: 20px; }
  .pt_custommenu_mobile .navbar {
    min-height: 40px;
    margin: 0;
    border: 0;
    position: relative;
    overflow: hidden;
    background: #242424;
    padding: 0 15px;
    overflow: hidden;
    cursor: pointer; }
    .pt_custommenu_mobile .navbar .navbar-inner .btn-navbar {
      display: block;
      overflow: hidden;
      margin: 0;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.025em;
      text-transform: uppercase;
      line-height: 40px; }
      .pt_custommenu_mobile .navbar .navbar-inner .btn-navbar:after {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
        height: 40px;
        text-align: center;
        color: #fff;
        font-size: 15px;
        font-weight: 400;
        font-family: "Font Awesome 5 Free";
        cursor: pointer;
        font-weight: 900; }
    .pt_custommenu_mobile .navbar .navbar-inner.navbar-inactive .btn-navbar:after {
      content: "\f03a"; }
    .pt_custommenu_mobile .navbar .navbar-inner.navbar-active .btn-navbar:after {
      content: "\f03a"; }

ul#pt_custommenu_itemmobile {
  overflow: hidden;
  margin: 0 0 15px;
  padding: 0; }
  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); }
    ul#pt_custommenu_itemmobile li:last-child {
      border: 0; }
    ul#pt_custommenu_itemmobile li a {
      line-height: 45px;
      color: #fff;
      text-transform: capitalize;
      text-decoration: none;
      font-size: 15px;
      font-weight: 400; }
      ul#pt_custommenu_itemmobile li a:hover {
        color: #80bb01; }
    ul#pt_custommenu_itemmobile li .grower {
      position: absolute;
      top: 0;
      right: 0; }
      ul#pt_custommenu_itemmobile li .grower a:after {
        display: block;
        width: 45px;
        height: 45px;
        text-align: center;
        color: #fff;
        font-size: 13px;
        font-weight: 400;
        font-family: "Font Awesome 5 Free";
        content: "\f055";
        font-weight: 900; }
      ul#pt_custommenu_itemmobile li .grower.active a:after {
        content: "\f056"; }

/* end module megamenu */
/* module vegamenu */
.navleft-container {
  position: relative;
  z-index: 9; }
  .navleft-container .pt_vmegamenu_title {
    position: relative;
    cursor: pointer;
    padding: 10px 20px;
    background: #80bb01;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px; }
    .navleft-container .pt_vmegamenu_title:after {
      display: block;
      content: "";
      position: absolute;
      top: 20px;
      right: 20px;
      background: url(../img/icon_menu.png) no-repeat;
      width: 16px;
      height: 10px; }
    .navleft-container .pt_vmegamenu_title h2 {
      margin: 0;
      color: white;
      padding: 0;
      text-transform: uppercase;
      font-size: 13px;
      font-weight: 500;
      overflow: hidden;
      line-height: 30px;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear; }
      .navleft-container .pt_vmegamenu_title h2 i {
        display: none; }
  .navleft-container .pt_vmegamenu {
    display: none;
    width: 100%;
    background: #fff;
    border: 1px solid #ebebeb;
    border-top: none;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9; }
    .navleft-container .pt_vmegamenu .pt_menu {
      position: relative; }
      .navleft-container .pt_vmegamenu .pt_menu:hover .wrap-popup {
        opacity: 1; }
      .navleft-container .pt_vmegamenu .pt_menu:not(.noSub):after {
        display: block;
        position: absolute;
        top: 0;
        right: 15px;
        line-height: 40px;
        content: "\f105";
        font-size: 14px;
        font-weight: 700;
        font-family: "Font Awesome 5 Free";
        background: transparent;
        -webkit-transition: all 300ms linear;
        -moz-transition: all 300ms linear;
        -ms-transition: all 300ms linear;
        -o-transition: all 300ms linear;
        transition: all 300ms linear; }
      .navleft-container .pt_vmegamenu .pt_menu.pt_menu_cms:after {
        display: none; }
      .navleft-container .pt_vmegamenu .pt_menu.active .parentMenu a, .navleft-container .pt_vmegamenu .pt_menu:hover:not(.noSub):after {
        color: 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; }
      .navleft-container .pt_vmegamenu .pt_menu .parentMenu a {
        position: relative;
        display: block;
        overflow: hidden;
        line-height: 40px;
        text-transform: capitalize;
        word-wrap: break-word;
        background: white;
        color: #242424;
        padding: 0 20px;
        -webkit-transition: all 300ms linear;
        -moz-transition: all 300ms linear;
        -ms-transition: all 300ms linear;
        -o-transition: all 300ms linear;
        transition: all 300ms linear;
        font-size: 14px;
        font-weight: 400; }
        .navleft-container .pt_vmegamenu .pt_menu .parentMenu a .cate-thumb {
          float: left;
          width: 40px;
          margin-right: 10px;
          padding: 0;
          border-right: 1px solid #ebebeb; }
          @media (max-width: 1199px) {
            .navleft-container .pt_vmegamenu .pt_menu .parentMenu a .cate-thumb {
              display: none; } }
        .navleft-container .pt_vmegamenu .pt_menu .parentMenu a.view_more {
          cursor: pointer;
          background: #242424;
          color: white; }
          .navleft-container .pt_vmegamenu .pt_menu .parentMenu a.view_more:before {
            display: none; }
          .navleft-container .pt_vmegamenu .pt_menu .parentMenu a.view_more:hover {
            background: #3b3b3b;
            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; }
          .navleft-container .pt_vmegamenu .pt_menu .parentMenu a.view_more i {
            margin-right: 5px;
            font-size: 20px;
            display: inline-block;
            width: 40px;
            text-align: center;
            margin-right: 10px;
            display: none; }
      .navleft-container .pt_vmegamenu .pt_menu.act:after, .navleft-container .pt_vmegamenu .pt_menu.active:after {
        color: white; }
      .navleft-container .pt_vmegamenu .pt_menu.act .parentMenu a, .navleft-container .pt_vmegamenu .pt_menu.active .parentMenu a {
        background: #242424;
        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; }
      .navleft-container .pt_vmegamenu .pt_menu .wrap-popup {
        position: absolute;
        top: 0;
        left: 100%;
        z-index: 1;
        opacity: 0;
        width: 860px; }
        .navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup {
          display: none;
          position: absolute;
          top: 0 !important;
          left: 0 !important;
          width: auto !important;
          box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1); }
          .navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup {
            background: #fff;
            padding: 20px;
            float: left;
            overflow: hidden; }
            .navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column {
              width: 200px;
              padding: 0 15px;
              margin-bottom: -99999px;
              padding-bottom: 99999px; }
              .navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemMenuName {
                color: #3c3c3c;
                line-height: 35px;
                text-transform: uppercase;
                font-weight: 600;
                font-size: 12px;
                display: block; }
                .navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemMenuName:hover {
                  color: #80bb01; }
                .navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemMenuName.nochild {
                  color: #666;
                  text-transform: capitalize;
                  font-weight: 400;
                  font-size: 12px; }
                  .navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemMenuName.nochild:before {
                    content: "\f0c8";
                    display: block;
                    line-height: 35px;
                    float: left;
                    padding: 0 7px 0 1px;
                    font-family: "Font Awesome 5 Free";
                    font-size: 13px;
                    font-weight: 400; }
                  .navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemMenuName.nochild:hover {
                    color: #80bb01; }
              .navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemSubMenu {
                padding-bottom: 20px; }
                .navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemSubMenu .itemMenuName {
                  color: #666;
                  text-transform: capitalize;
                  font-weight: 400;
                  font-size: 12px; }
                  .navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemSubMenu .itemMenuName:before {
                    content: "\f0c8";
                    display: block;
                    line-height: 35px;
                    float: left;
                    padding: 0 7px 0 1px;
                    font-family: "Font Awesome 5 Free";
                    font-size: 13px;
                    font-weight: 400; }
                  .navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemSubMenu .itemMenuName:hover {
                    color: #80bb01; }
                  .navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemSubMenu .itemMenuName:after {
                    display: none; }
            .navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column.last {
              padding-right: 0;
              border: 0; }
            .navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column.blockright {
              width: 300px; }
          .navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .block1 {
            overflow: hidden; }
          .navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .block2 {
            display: inline-block;
            width: 100%;
            margin-top: 20px; }

/* end module vegamenu */
/* module search category */
#pos_search_top {
  padding: 0;
  position: relative; }
  #pos_search_top .form_search {
    padding: 0;
    position: relative;
    width: 100%;
    float: left;
    height: 50px;
    color: #a9a9a9; }
    #pos_search_top .form_search label {
      display: none; }
    #pos_search_top .form_search .search-block {
      height: 50x;
      line-height: 50px; }
    #pos_search_top .form_search .form-control {
      padding: 10px 60px 10px 180px;
      width: 100%;
      height: 50px;
      font-size: 12px;
      background: white;
      color: #c2c2c2;
      border: none;
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      -ms-border-radius: 3px;
      -o-border-radius: 3px;
      border-radius: 3px; }
      #pos_search_top .form_search .form-control:focus {
        box-shadow: none; }
      @media (max-width: 479px) {
        #pos_search_top .form_search .form-control {
          padding-right: 0; } }
    #pos_search_top .form_search .search_submit {
      position: absolute;
      top: 0;
      right: 0;
      height: 50px;
      line-height: 50px;
      text-align: center;
      width: 50px;
      text-align: center;
      color: #232f3e;
      background: #80bb01;
      padding: 0;
      border: 0;
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      -ms-border-radius: 3px;
      -o-border-radius: 3px;
      border-radius: 3px;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear; }
      #pos_search_top .form_search .search_submit .icon {
        font-size: 20px;
        display: inline-block;
        vertical-align: middle; }
      #pos_search_top .form_search .search_submit:hover {
        background: #f26522;
        color: white;
        -webkit-transition: all 300ms linear;
        -moz-transition: all 300ms linear;
        -ms-transition: all 300ms linear;
        -o-transition: all 300ms linear;
        transition: all 300ms linear; }
    #pos_search_top .form_search .form-group {
      position: absolute;
      left: 1px;
      top: 1px;
      display: inline-block;
      width: 150px;
      margin: 0;
      background: transparent; }
      #pos_search_top .form_search .form-group:after {
        content: "";
        width: 1px;
        height: 16px;
        background: #e1e1e1;
        position: absolute;
        top: 50%;
        right: -10px;
        margin-top: -8px; }
      #pos_search_top .form_search .form-group .bootstrap-select {
        width: 150px;
        height: 48px;
        line-height: 48px;
        margin: 0;
        border: 0;
        padding: 0 25px;
        color: #242424;
        font-size: 14px;
        -webkit-user-select: none;
        -moz-user-select: -moz-none;
        -ms-user-select: none;
        user-select: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: url(../img/option_search.png) no-repeat 90% 50% white; }

@media (max-width: 480px) {
  #pos_search_top .form_search .form-control {
    font-size: 10px;
    padding: 0 60px 0 120px; }
  #pos_search_top .form_search .form-group {
    width: 110px; }
    #pos_search_top .form_search .form-group .bootstrap-select {
      width: 110px;
      font-size: 10px; } }
.ui-corner-all.ui-widget-content {
  max-height: 380px;
  overflow: auto;
  border: 1px solid #ebebeb; }

/* end module search category */
/* search block */
#_mobile_search_block .block-search {
  margin: 20px 0 0;
  padding: 0;
  width: 100%; }

.block-search {
  position: relative;
  margin-right: 30px; }
  @media (min-width: 992px) {
    .block-search {
      float: right;
      padding: 0;
      width: 49%; } }
  @media (max-width: 1199px) {
    .block-search {
      margin-right: 15px;
      width: 46%; } }

.search_top {
  padding: 0;
  background: transparent;
  border: 0; }
  .search_top form {
    width: 100%;
    position: relative; }
    .search_top form .text_input {
      padding: 5px 50px 5px 20px;
      height: 45px;
      line-height: 41px;
      font-size: 13px;
      border: 1px solid #e5e5e5;
      border-radius: 30px;
      box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1) inset;
      overflow: hidden;
      width: 100%;
      background: transparent;
      color: #242424; }
      .search_top form .text_input::-moz-placeholder {
        color: #a5a5a5;
        opacity: 1; }
      .search_top form .text_input::-webkit-input-placeholder {
        color: #a5a5a5;
        opacity: 1; }
      .search_top form .text_input:-ms-input-placeholder {
        color: #a5a5a5;
        opacity: 1; }
    .search_top form button {
      position: absolute;
      top: 3px;
      right: 3px;
      height: 39px;
      width: 39px;
      display: inline-block;
      padding: 0;
      text-align: center;
      background: #80bb01;
      color: white;
      line-height: 39px;
      font-size: 18px;
      text-transform: uppercase;
      border: 0;
      text-align: center;
      border-radius: 100%;
      font-weight: 400;
      cursor: pointer;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear; }
      .search_top form button i {
        line-height: 39px; }
      .search_top form button:hover {
        background: #0dd4be;
        -webkit-transition: all 300ms linear;
        -moz-transition: all 300ms linear;
        -ms-transition: all 300ms linear;
        -o-transition: all 300ms linear;
        transition: all 300ms linear; }

.ui-corner-all {
  overflow: hidden;
  max-height: 300px;
  overflow-y: scroll; }
  @media (max-width: 360px) {
    .ui-corner-all {
      max-width: 300px !important; } }
  .ui-corner-all li a {
    display: inline-block !important;
    width: 100%;
    overflow: visible;
    max-height: none;
    overflow-y: auto; }
    .ui-corner-all li a img {
      float: left;
      margin-right: 30px;
      width: 50px; }
    .ui-corner-all li a > div {
      overflow: hidden;
      padding-top: 10px; }
    .ui-corner-all li a span {
      margin: 0;
      display: inline-block;
      font-size: 12px; }
      .ui-corner-all li a span.separator {
        margin-left: 5px;
        margin-right: 5px; }
      .ui-corner-all li a span.product {
        font-size: 13px;
        font-style: italic; }
    .ui-corner-all li a .price {
      font-weight: 600; }

/* end search block */
.blockcart {
  float: right;
  position: relative; }
  .blockcart .header {
    position: relative;
    display: inline-block;
    position: relative;
    height: 45px; }
    .blockcart .header a {
      display: block;
      position: relative;
      color: #777;
      font-size: 14px;
      font-weight: 400;
      height: 40px;
      text-align: left;
      line-height: 25px;
      padding-left: 45px;
      padding-right: 25px; }
      .blockcart .header a:before {
        content: '\e013';
        display: inline-block;
        font-size: 38px;
        font-family: 'ElegantIcons';
        vertical-align: middle;
        float: left;
        color: #333333;
        position: absolute;
        left: 0;
        top: 11px; }
      .blockcart .header a:after {
        content: '\e92e';
        display: inline-block;
        font-family: 'plaza-icon';
        vertical-align: middle;
        font-size: 18px;
        color: #777;
        line-height: 1;
        vertical-align: 1px;
        position: absolute;
        top: 50%;
        right: 0; }
      .blockcart .header a i {
        display: none; }
      .blockcart .header a span {
        display: block; }
      .blockcart .header a .item_count {
        font-size: 0.857em;
        display: block;
        width: 26px;
        height: 26px;
        color: white;
        font-weight: 400; }
    .blockcart .header a.mobile {
      padding-left: 55px;
      padding-right: 0; }
      .blockcart .header a.mobile:after {
        display: none; }
      .blockcart .header a.mobile .item_count {
        font-size: 13px;
        display: block;
        width: 26px;
        height: 26px;
        color: white;
        position: absolute;
        right: 0px;
        font-weight: 400;
        background: #80bb01;
        text-align: center;
        border-radius: 100%; }
  .blockcart .body {
    margin: 0;
    padding: 0;
    width: 340px;
    padding-top: 8px;
    top: 100%;
    left: auto;
    right: 0;
    position: absolute;
    display: none;
    z-index: 99;
    text-align: left; }
    @media (max-width: 479px) {
      .blockcart .body {
        width: 270px; } }
    .blockcart .body .mini_cart_arrow {
      right: 30px;
      top: 1px;
      position: absolute;
      height: 16px;
      width: 16px;
      border-color: transparent;
      border-top-color: #ebebeb;
      border-left-color: #ebebeb;
      border-style: solid;
      border-width: 1px 1px 1px 1px;
      transform: rotate(45deg);
      background: #fff;
      z-index: 1; }
    .blockcart .body .content-cart {
      background: white;
      border: 1px solid #ebebeb; }
    .blockcart .body ul {
      padding: 0 30px; }
      .blockcart .body ul li {
        padding: 20px 0;
        border-bottom: 1px solid #ebebeb;
        overflow: hidden; }
        .blockcart .body ul li .img_content {
          float: left;
          margin: 0 10px 0 0;
          position: relative;
          width: 80px; }
          .blockcart .body ul li .img_content .product-quantity {
            position: absolute;
            top: 5px;
            left: 5px;
            min-width: 25px;
            line-height: 25px;
            -webkit-border-radius: 100%;
            -moz-border-radius: 100%;
            border-radius: 100%;
            padding: 0;
            text-align: center;
            background: #80bb01;
            color: white;
            font-size: 14px;
            display: inline-block; }
        .blockcart .body ul li .right_block {
          overflow: hidden;
          position: relative;
          padding: 0 15px 0 0; }
          .blockcart .body ul li .right_block span {
            font-size: 13px; }
          .blockcart .body ul li .right_block .product-name {
            display: block;
            color: #242424;
            text-transform: capitalize;
            font-size: 14px;
            line-height: 20px; }
            .blockcart .body ul li .right_block .product-name:hover {
              color: #80bb01; }
          .blockcart .body ul li .right_block .product-price {
            display: block;
            margin: 5px 0 0;
            font-size: 14px;
            font-weight: 500;
            color: #242424; }
          .blockcart .body ul li .right_block .remove-from-cart {
            display: block;
            position: absolute;
            top: 0;
            right: 0;
            color: #777; }
            .blockcart .body ul li .right_block .remove-from-cart:hover {
              color: #333; }
          .blockcart .body ul li .right_block .attributes_content {
            display: block;
            font-size: 16px;
            line-height: 20px;
            color: #777;
            margin: 5px 0 0; }
          .blockcart .body ul li .right_block strong {
            font-weight: 400; }
    .blockcart .body .price_content {
      overflow: hidden;
      padding: 30px; }
      .blockcart .body .price_content .price_inline {
        overflow: hidden;
        line-height: 25px; }
        .blockcart .body .price_content .price_inline .label {
          float: left;
          font-weight: 400;
          color: #242424;
          font-size: 14px; }
        .blockcart .body .price_content .price_inline .value {
          float: right;
          font-weight: 400;
          color: #a4a4a4;
          font-size: 14px; }
        .blockcart .body .price_content .price_inline.cart-total .value {
          font-weight: 500;
          color: #80bb01; }
    .blockcart .body .checkout {
      padding: 0 30px 30px 30px; }
      .blockcart .body .checkout a {
        display: block;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 13px;
        border: 2px solid #eeeeee;
        color: #242424;
        box-shadow: none;
        padding: 10px 15px;
        line-height: 26px;
        border-radius: 3px;
        background: white; }
        .blockcart .body .checkout a:hover {
          background: #80bb01;
          color: white;
          border-color: #80bb01; }

@media (min-width: 992px) {
  .blockcart .body ul {
    max-height: 358px;
    overflow-y: auto; } }
.blockcart .body ul::-webkit-scrollbar-track {
  background-color: #80bb01; }

.blockcart .body ul::-webkit-scrollbar {
  width: 4px;
  background-color: #80bb01; }

.blockcart .body ul::-webkit-scrollbar-thumb {
  background-color: rgba(46, 46, 46, 0.85);
  border-radius: 10px; }

/* style layer cart */
#blockcart-modal .modal-body {
  background: white;
  padding: 3.125rem 1.875rem; }

#blockcart-modal .divide-right {
  border-right: 1px solid #ebebeb; }
  #blockcart-modal .divide-right p, #blockcart-modal .divide-right strong {
    color: #242424;
    font-size: 14px;
    font-weight: 600; }

#blockcart-modal .cart-content p, #blockcart-modal .cart-content strong {
  color: #242424;
  font-size: 14px; }
#blockcart-modal .cart-content strong {
  font-weight: 600; }

#blockcart-modal .product-name {
  font-size: 16px;
  margin-bottom: 20px;
  color: #242424; }

#blockcart-modal .modal-header {
  background: #80bb01; }

/* end style layer cart */
#blockcart-modal button.close {
  color: white;
  opacity: 1; }

#blockcart-modal .cart-content .btn {
  margin-top: 20px; }

/* end module cart block */
/* module slideshow */
.pos-loading {
  background: #12B5A3;
  position: relative; }
  .pos-loading span {
    width: 20px;
    height: 20px;
    position: absolute;
    z-index: 99;
    background: url(../img/preloader.gif) no-repeat;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px; }
  .pos-loading img {
    opacity: 0; }

.nivo-html-caption {
  display: none; }

@-webkit-keyframes myfirst {
  from {
    width: 0; }

  to {
    width: 100%; } }

@keyframes myfirst {
  from {
    width: 0; }

  to {
    width: 100%; } }

.timethai.pos_hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused; }

.slideshow_container .pos-slideshow {
  position: relative; }
  .slideshow_container .pos-slideshow:hover .nivo-directionNav a {
    opacity: 1;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear; }
    .slideshow_container .pos-slideshow:hover .nivo-directionNav a.nivo-prevNav {
      left: 20px; }
    .slideshow_container .pos-slideshow:hover .nivo-directionNav a.nivo-nextNav {
      right: 20px; }

.slideshow_container .pos-slideshow .nivo-directionNav a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  border-radius: 5px;
  border: 1px solid #ebebeb;
  color: #bdbfbe;
  background: white;
  text-align: center;
  font-size: 0;
  position: absolute;
  z-index: 8;
  cursor: pointer;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none; }
  .slideshow_container .pos-slideshow .nivo-directionNav a i {
    font-size: 18px; }
  @media (max-width: 767px) {
    .slideshow_container .pos-slideshow .nivo-directionNav a {
      display: none; } }
  .slideshow_container .pos-slideshow .nivo-directionNav a:hover {
    background: #80bb01;
    color: white;
    border-color: #80bb01; }
  .slideshow_container .pos-slideshow .nivo-directionNav a.nivo-prevNav {
    left: 10px; }
  .slideshow_container .pos-slideshow .nivo-directionNav a.nivo-nextNav {
    right: 10px; }

.slideshow_container .pos-slideshow .nivo-controlNav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
  display: inline-block;
  z-index: 8; }
  @media (max-width: 1199px) {
    .slideshow_container .pos-slideshow .nivo-controlNav {
      bottom: 2.92969vw; } }
  @media (max-width: 767px) {
    .slideshow_container .pos-slideshow .nivo-controlNav {
      display: none; } }
  .slideshow_container .pos-slideshow .nivo-controlNav a {
    display: inline-block;
    margin: 0 3px;
    cursor: pointer;
    font-size: 0;
    width: 10px;
    height: 10px;
    background: #fff;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    -moz-transform: scale3d(0.7, 0.7, 0.7);
    -webkit-transform: scale3d(0.7, 0.7, 0.7);
    -o-transform: scale3d(0.7, 0.7, 0.7);
    -ms-transform: scale3d(0.7, 0.7, 0.7);
    transform: scale3d(0.7, 0.7, 0.7); }
    .slideshow_container .pos-slideshow .nivo-controlNav a.active, .slideshow_container .pos-slideshow .nivo-controlNav a:hover {
      background: #80bb01;
      -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); }

.banner7-des {
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  width: 100%;
  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;
  margin: 0 auto;
  text-align: center;
  direction: ltr !important; }
  .banner7-des p {
    margin: 0; }
  .banner7-des .info {
    text-align: center;
    display: inline-block; }

.desc .title1, .desc1 .title1, .desc2 .title1, .desc3 .title1 {
  font-size: 155px;
  color: #fff;
  font-weight: 300;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s; }
  @media (min-width: 1200px) {
    .desc .title1, .desc1 .title1, .desc2 .title1, .desc3 .title1 {
      font-size: 80px; } }
.desc .title2, .desc1 .title2, .desc2 .title2, .desc3 .title2 {
  position: relative;
  font-size: 59px;
  color: #fff;
  font-weight: 300;
  font-style: italic;
  text-transform: capitalize;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s; }
  @media (min-width: 1200px) {
    .desc .title2, .desc1 .title2, .desc2 .title2, .desc3 .title2 {
      font-size: 38px; } }
.desc .title3, .desc1 .title3, .desc2 .title3, .desc3 .title3 {
  position: relative;
  font-size: 30px;
  color: #fff;
  font-weight: 400;
  margin: 55px auto 0;
  max-width: 70%;
  line-height: 30px;
  text-transform: capitalize;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s; }
  @media (min-width: 1200px) {
    .desc .title3, .desc1 .title3, .desc2 .title3, .desc3 .title3 {
      font-size: 18px; } }
.desc .readmore, .desc1 .readmore, .desc2 .readmore, .desc3 .readmore {
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  display: inline-block;
  margin-top: 60px; }
  .desc .readmore a, .desc1 .readmore a, .desc2 .readmore a, .desc3 .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: 23px;
    font-weight: 500;
    color: #fff;
    line-height: 78px;
    text-transform: uppercase;
    padding: 0 35px;
    border-radius: 30px;
    background: transparent;
    display: inline-block;
    background: #80bb01; }
    @media (min-width: 1200px) {
      .desc .readmore a, .desc1 .readmore a, .desc2 .readmore a, .desc3 .readmore a {
        font-size: 13px;
        line-height: 45px; } }
    .desc .readmore a:hover, .desc1 .readmore a:hover, .desc2 .readmore a:hover, .desc3 .readmore a:hover {
      background: #333;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear; }

/* responsive slideshow */
@media (max-width: 1199px) {
  .desc .title1, .desc1 .title1, .desc2 .title1, .desc3 .title1 {
    font-size: 9.76563vw; }
  .desc .title2, .desc1 .title2, .desc2 .title2, .desc3 .title2 {
    font-size: 2.92969vw; }
  .desc .title3, .desc1 .title3, .desc2 .title3, .desc3 .title3 {
    font-size: 1.95313vw;
    margin: 1.95313vw auto 0;
    line-height: 4.16667vw; }
  .desc .title4, .desc1 .title4, .desc2 .title4, .desc3 .title4 {
    font-size: 1.36719vw;
    margin: 0 0 2.44141vw 0; }
    .desc .title4 span, .desc1 .title4 span, .desc2 .title4 span, .desc3 .title4 span {
      font-size: 2.92969vw; }
  .desc .readmore, .desc1 .readmore, .desc2 .readmore, .desc3 .readmore {
    margin: 2.92969vw 0 0; }
    .desc .readmore a, .desc1 .readmore a, .desc2 .readmore a, .desc3 .readmore a {
      font-size: 1.26953vw;
      line-height: 3.51563vw;
      padding: 0vw 2.44141vw; } }
@media (max-width: 480px) {
  .desc .title1, .desc1 .title1, .desc2 .title1, .desc3 .title1 {
    font-size: 8.33333vw; }
  .desc .title2, .desc1 .title2, .desc2 .title2, .desc3 .title2 {
    font-size: 4.16667vw; }
  .desc .title3, .desc1 .title3, .desc2 .title3, .desc3 .title3 {
    font-size: 2.70833vw;
    margin: 1.95313vw auto 0;
    line-height: 4.16667vw; }
  .desc .title4, .desc1 .title4, .desc2 .title4, .desc3 .title4 {
    font-size: 2.5vw;
    line-height: 3.33333vw;
    margin: 0 0 1.04167vw 0; }
    .desc .title4 span, .desc1 .title4 span, .desc2 .title4 span, .desc3 .title4 span {
      font-size: 4.16667vw; }
  .desc .readmore, .desc1 .readmore, .desc2 .readmore, .desc3 .readmore {
    margin: 1.95313vw 0 0; }
    .desc .readmore a, .desc1 .readmore a, .desc2 .readmore a, .desc3 .readmore a {
      font-size: 2.5vw;
      line-height: 6.25vw;
      padding: 0vw 4.16667vw; } }
/* end responsive slideshow */
/* end module slideshow */
/* module postabproductslider */
.product-tabs-container-slider .owl-nav {
  top: -40px; }
.product-tabs-container-slider .pos_content {
  padding: 0; }
.product-tabs-container-slider .tab_inner {
  position: relative;
  display: inline-block;
  width: 100%; }
.product-tabs-container-slider ul.tabs_slider {
  display: inline-block;
  position: relative; }
  .product-tabs-container-slider ul.tabs_slider li {
    display: inline-block;
    position: relative;
    z-index: 2;
    padding: 0 25px 18px 25px;
    margin-left: 10px;
    border-bottom: 2px solid transparent;
    line-height: 26px;
    cursor: pointer;
    color: #222;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    -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: 575px) {
      .product-tabs-container-slider ul.tabs_slider li {
        display: block;
        margin-left: 0; } }
    @media (max-width: 480px) {
      .product-tabs-container-slider ul.tabs_slider li {
        padding: 0 25px 10px 0;
        margin-bottom: 10px; } }
    .product-tabs-container-slider ul.tabs_slider li:first-child {
      margin-left: 0; }
    .product-tabs-container-slider ul.tabs_slider li.active, .product-tabs-container-slider ul.tabs_slider li:hover {
      border-color: #80bb01;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear; }
.product-tabs-container-slider .js-product-miniature {
  margin: 0;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5; }

/* end  postabproductslider*/
/*  pos-bestsellers-product */
.pos-bestsellers-product .pos_content {
  margin-bottom: 0; }
.pos-bestsellers-product .js-product-miniature .img_block {
  width: 35%;
  float: left; }
  .pos-bestsellers-product .js-product-miniature .img_block .add-to-links {
    display: none; }
  .pos-bestsellers-product .js-product-miniature .img_block .product-flag .new, .pos-bestsellers-product .js-product-miniature .img_block .product-flag .on-sale, .pos-bestsellers-product .js-product-miniature .img_block .product-flag .pack, .pos-bestsellers-product .js-product-miniature .img_block .product-price-and-shipping-top .discount-product {
    display: none; }
.pos-bestsellers-product .js-product-miniature .product_desc {
  width: 65%;
  display: inline-block;
  padding: 0 0 0 20px;
  text-align: left; }

/*  end pos-bestsellers-product */
/* module tabcateslider */
.tab-category-container-slider {
  background: url(../img/bg_tabcate.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 60px 0;
  margin-bottom: 50px; }
  .tab-category-container-slider ul.tab_cates {
    font-size: 0;
    background: transparent;
    position: relative;
    line-height: 1; }
    @media (min-width: 992px) {
      .tab-category-container-slider ul.tab_cates {
        float: right;
        padding-right: 90px; } }
    .tab-category-container-slider ul.tab_cates li {
      display: inline-block;
      position: relative;
      background: transparent;
      padding: 10px 15px;
      line-height: 30px;
      cursor: pointer;
      color: #a4a4a4;
      text-transform: capitalize;
      font-size: 14px;
      font-weight: 400;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear; }
      @media (max-width: 991px) {
        .tab-category-container-slider ul.tab_cates li {
          padding: 0 15px 0 0; } }
      .tab-category-container-slider ul.tab_cates li.active, .tab-category-container-slider ul.tab_cates li:hover {
        color: #242424;
        -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: 1200px) {
      .tab-category-container-slider ul.tab_cates:before {
        content: "";
        position: absolute;
        top: 24px;
        width: 9999px;
        right: 100%;
        border-bottom: 1px solid #ebebeb; } }
  .tab-category-container-slider .pos_content {
    margin: 0 -10px; }
  .tab-category-container-slider .owl-carousel .owl-stage-outer {
    padding: 5px 0; }
  .tab-category-container-slider .owl-carousel .owl-item {
    padding: 0 10px; }
  .tab-category-container-slider .pos_title {
    overflow: hidden; }
    .tab-category-container-slider .pos_title:before {
      display: none; }
    .tab-category-container-slider .pos_title h2 {
      background: #f8f9f9; }
  .tab-category-container-slider .owl-nav {
    background: transparent;
    right: 10px; }
  .tab-category-container-slider .item-product {
    margin: 0 -10px; }
    .tab-category-container-slider .item-product .item-inner {
      padding: 10px;
      overflow: hidden; }
      @media (min-width: 768px) and (max-width: 991px) {
        .tab-category-container-slider .item-product .item-inner:nth-child(2), .tab-category-container-slider .item-product .item-inner:nth-child(3) {
          width: 50%;
          float: left; } }
      .tab-category-container-slider .item-product .item-inner:nth-child(1) {
        float: left;
        width: 66.66666667%; }
        @media (min-width: 992px) and (max-width: 1199px) {
          .tab-category-container-slider .item-product .item-inner:nth-child(1) {
            width: 62.66666667%; } }
        @media (max-width: 991px) {
          .tab-category-container-slider .item-product .item-inner:nth-child(1) {
            float: none;
            width: 100%; } }
        .tab-category-container-slider .item-product .item-inner:nth-child(1) .js-product-miniature .img_block {
          width: 46.4%; }
          @media (max-width: 543px) {
            .tab-category-container-slider .item-product .item-inner:nth-child(1) .js-product-miniature .img_block {
              float: none;
              display: inline-block;
              width: 100%; } }
        .tab-category-container-slider .item-product .item-inner:nth-child(1) .js-product-miniature .product_desc {
          padding: 38px 20px; }
          .tab-category-container-slider .item-product .item-inner:nth-child(1) .js-product-miniature .product_desc .product-desc {
            display: block;
            margin-bottom: 0;
            font-size: 14px;
            padding: 20px 0;
            line-height: 24px; }
            .tab-category-container-slider .item-product .item-inner:nth-child(1) .js-product-miniature .product_desc .product-desc p {
              font-size: 14px;
              color: #a4a4a4;
              line-height: 24px;
              margin: 0; }
          .tab-category-container-slider .item-product .item-inner:nth-child(1) .js-product-miniature .product_desc .add-to-links li {
            opacity: 1 !important;
            -moz-transform: translateX(0px) !important;
            -webkit-transform: translateX(0px) !important;
            -o-transform: translateX(0px) !important;
            -ms-transform: translateX(0px) !important;
            transform: translateX(0px) !important; }
            .tab-category-container-slider .item-product .item-inner:nth-child(1) .js-product-miniature .product_desc .add-to-links li.cart button.ajax_add_to_cart_button, .tab-category-container-slider .item-product .item-inner:nth-child(1) .js-product-miniature .product_desc .add-to-links li.cart span.ajax_add_to_cart_button {
              padding: 0 40px; }
  .tab-category-container-slider .js-product-miniature {
    overflow: hidden;
    margin: 0; }
    .tab-category-container-slider .js-product-miniature:hover .add-to-links li {
      opacity: 1;
      -moz-transform: translateX(0px);
      -webkit-transform: translateX(0px);
      -o-transform: translateX(0px);
      -ms-transform: translateX(0px);
      transform: translateX(0px);
      -webkit-transition: all 400ms linear;
      -moz-transition: all 400ms linear;
      -ms-transition: all 400ms linear;
      -o-transition: all 400ms linear;
      transition: all 400ms linear; }
    .tab-category-container-slider .js-product-miniature .img_block {
      float: left;
      width: 170px; }
      @media (max-width: 380px) {
        .tab-category-container-slider .js-product-miniature .img_block {
          float: none;
          display: inline-block;
          width: 100%; } }
    .tab-category-container-slider .js-product-miniature .product_desc {
      overflow: hidden;
      text-align: left;
      padding: 15px 15px 0 15px; }
      @media (max-width: 380px) {
        .tab-category-container-slider .js-product-miniature .product_desc {
          display: inline-block;
          width: 100%; } }
      .tab-category-container-slider .js-product-miniature .product_desc .product-desc {
        display: none; }
    .tab-category-container-slider .js-product-miniature .add-to-links li {
      opacity: 0;
      -moz-transform: translateX(10px);
      -webkit-transform: translateX(10px);
      -o-transform: translateX(10px);
      -ms-transform: translateX(10px);
      transform: translateX(10px);
      -webkit-transition: all 400ms linear;
      -moz-transition: all 400ms linear;
      -ms-transition: all 400ms linear;
      -o-transition: all 400ms linear;
      transition: all 400ms linear; }

.tab-category-container-slider2 ul.tab2_cates {
  margin-right: 80px;
  margin-top: 10px; }
  @media (min-width: 768px) {
    .tab-category-container-slider2 ul.tab2_cates {
      float: right;
      margin-top: 0; } }
  .tab-category-container-slider2 ul.tab2_cates li {
    display: inline-block;
    position: relative;
    background: white;
    margin-right: 20px;
    line-height: 1;
    cursor: pointer;
    color: #bbbbbb;
    text-transform: capitalize;
    font-size: 13px;
    font-weight: 400;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear; }
    .tab-category-container-slider2 ul.tab2_cates li:last-child {
      margin: 0; }
    .tab-category-container-slider2 ul.tab2_cates li.active, .tab-category-container-slider2 ul.tab2_cates li:hover {
      color: #242424;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear; }

/* end module tabcateslider */
/* module featured-products */
/* end module featured-products */
/* module new-products */
.pos_new_product .owl-stage-outer {
  padding: 15px 0; }
.pos_new_product .js-product-miniature {
  box-shadow: none !important;
  margin-bottom: 30px; }
  .pos_new_product .js-product-miniature:last-child {
    margin-bottom: 0; }
  .pos_new_product .js-product-miniature .img_block {
    float: left;
    width: 100px; }
  .pos_new_product .js-product-miniature .product_desc {
    overflow: hidden;
    padding: 0 10px;
    text-align: left; }

/* end module cate-products-slider */
.category-products-slider .owl-stage-outer {
  padding: 15px 0; }
.category-products-slider .js-product-miniature {
  box-shadow: none !important;
  margin-bottom: 30px; }
  .category-products-slider .js-product-miniature:last-child {
    margin-bottom: 0; }
  .category-products-slider .js-product-miniature .img_block {
    float: left;
    width: 100px; }
  .category-products-slider .js-product-miniature .product_desc {
    overflow: hidden;
    padding: 0 10px;
    text-align: left; }

/* end module  cate-products-slider */
/* module special-products */
.pos-special-products {
  margin-top: 120px; }
  @media (max-width: 1024px) {
    .pos-special-products {
      margin-top: 40px; } }
  .pos-special-products .pos_title {
    text-align: center;
    margin-bottom: 40px; }
    .pos-special-products .pos_title:before {
      display: none; }
    .pos-special-products .pos_title h2 {
      background: transparent;
      color: #222222;
      font-size: 40px;
      text-transform: capitalize;
      padding: 0; }
      .pos-special-products .pos_title h2:before, .pos-special-products .pos_title h2:after {
        display: none; }
    .pos-special-products .pos_title p.des-title {
      color: #80bb01;
      font-size: 15px;
      line-height: 15px;
      margin: 30px 0 0;
      font-weight: 500;
      text-transform: uppercase;
      vertical-align: top; }
  .pos-special-products .pos_content {
    padding: 0;
    margin: 0;
    box-shadow: none;
    background: transparent; }
  .pos-special-products .owl-carousel .owl-item {
    padding-left: 60px; }
    @media (max-width: 640px) {
      .pos-special-products .owl-carousel .owl-item {
        padding-left: 0; } }
  .pos-special-products .js-product-miniature {
    border: 3px solid #80bb01; }
    .pos-special-products .js-product-miniature .img_block {
      width: 40%;
      display: inline-block;
      float: right; }
      @media (max-width: 640px) {
        .pos-special-products .js-product-miniature .img_block {
          width: 100%; } }
    .pos-special-products .js-product-miniature .product_desc {
      width: 60%;
      display: inline-block;
      padding-top: 48px; }
      @media (max-width: 640px) {
        .pos-special-products .js-product-miniature .product_desc {
          width: 100%; } }
      .pos-special-products .js-product-miniature .product_desc .product_name {
        font-size: 31px;
        color: #222;
        line-height: 32px;
        margin-bottom: 35px; }
      .pos-special-products .js-product-miniature .product_desc .product-desc {
        display: block;
        margin-bottom: 35px; }
        .pos-special-products .js-product-miniature .product_desc .product-desc p {
          font-size: 16px;
          color: #777;
          line-height: 25px;
          max-width: 80%;
          margin: auto; }
          @media (max-width: 768px) {
            .pos-special-products .js-product-miniature .product_desc .product-desc p {
              max-width: 65%; } }
          @media (max-width: 480px) {
            .pos-special-products .js-product-miniature .product_desc .product-desc p {
              max-width: 90%; } }
      .pos-special-products .js-product-miniature .product_desc .cart {
        margin-top: 30px; }
        .pos-special-products .js-product-miniature .product_desc .cart button.ajax_add_to_cart_button, .pos-special-products .js-product-miniature .product_desc .cart span.ajax_add_to_cart_button {
          border: none;
          box-shadow: none;
          background: #80bb01;
          font-size: 15px;
          text-transform: uppercase;
          font-weight: 500;
          border-radius: 30px;
          padding: 0 35px;
          line-height: 50px;
          color: #fff;
          cursor: pointer; }
          .pos-special-products .js-product-miniature .product_desc .cart button.ajax_add_to_cart_button:hover, .pos-special-products .js-product-miniature .product_desc .cart span.ajax_add_to_cart_button:hover {
            background: #5d8801;
            -webkit-transition: all 300ms linear;
            -moz-transition: all 300ms linear;
            -ms-transition: all 300ms linear;
            -o-transition: all 300ms linear;
            transition: all 300ms linear; }

/* countdown */
.is-countdown {
  display: inline-block;
  width: 100px;
  padding: 30px 0;
  font-size: 0;
  border-radius: 5px;
  background: #80bb01;
  position: absolute;
  top: 50%;
  left: -5%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }
  @media (max-width: 640px) {
    .is-countdown {
      position: static;
      padding: 10px;
      margin-top: 20px;
      width: auto;
      -moz-transform: translateY(0);
      -webkit-transform: translateY(0);
      -o-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0); } }
  .is-countdown .countdown-section {
    text-align: center; }
    @media (max-width: 640px) {
      .is-countdown .countdown-section {
        display: inline-block;
        margin-right: 10px;
        width: 80px; } }
    @media (max-width: 480px) {
      .is-countdown .countdown-section {
        width: 60px; } }
    .is-countdown .countdown-section:last-child {
      margin: 0; }
    .is-countdown .countdown-section .countdown-amount {
      display: block;
      font-size: 34px;
      line-height: 46px;
      color: #fff;
      font-weight: 500;
      position: relative;
      margin-bottom: 10px; }
    .is-countdown .countdown-section .countdown-period {
      display: block;
      font-size: 14px;
      line-height: 15px;
      color: #fff;
      font-weight: 500;
      text-transform: uppercase; }

/* 	.countdown-show1 .countdown-section {
		width: 100%;
	}
	.countdown-show2 .countdown-section {
		width: 50%;
	}
	.countdown-show3 .countdown-section {
		width: 33.33%;
	}
	.countdown-show4 .countdown-section {
		width: 25%;
	}
	#product .countdown-show4 .countdown-section{width: auto;}
	.countdown-show5 .countdown-section {
		width: 19.5%;
	}
	.countdown-show6 .countdown-section {
		width: 16.25%;
	}
	.countdown-show7 .countdown-section {
		width: 14%;
	}  */
/* end countdown */
/* end module special-products */
/* module recommendedproducts */
.recommended-product {
  background: #fff;
  border: 1px solid #e8e3dd; }
  .recommended-product .pos_title:before {
    display: none; }
  .recommended-product .pos_title h2 {
    font-size: 18px;
    color: #222222;
    padding: 40px 0 40px 30px;
    font-weight: 400;
    width: 100%;
    background: transparent; }
    .recommended-product .pos_title h2:before, .recommended-product .pos_title h2:after {
      display: none; }
    @media (max-width: 991px) {
      .recommended-product .pos_title h2 {
        padding: 10px 0 10px 0px; } }
  .recommended-product .pos_content {
    box-shadow: none;
    padding: 0;
    margin: 0; }
  .recommended-product .owl-nav {
    right: 15px; }
  .recommended-product .js-product-miniature {
    padding: 20px 10px 30px 10px;
    margin: 0;
    border-bottom: 1px solid #e5e5e5; }
    .recommended-product .js-product-miniature:last-child {
      border-bottom: none; }
    .recommended-product .js-product-miniature .img_block {
      width: 100px;
      display: inline-block;
      float: left; }
      .recommended-product .js-product-miniature .img_block .add-to-links, .recommended-product .js-product-miniature .img_block .product-price-and-shipping-top .discount-product {
        display: none; }
    .recommended-product .js-product-miniature .product_desc {
      text-align: left;
      display: inline-block;
      width: 58%;
      padding-left: 15px; }
      @media (max-width: 991px) {
        .recommended-product .js-product-miniature .product_desc {
          width: 100%;
          padding-left: 0; } }
      @media (max-width: 991px) {
        .recommended-product .js-product-miniature .product_desc .product_name {
          margin-bottom: 10px; } }

/*end  module recommendedproducts */
/* module list-categories */
.poslistcategories {
  position: relative; }
  .poslistcategories .pos_content {
    margin: 0; }
    .poslistcategories .pos_content .owl-item {
      padding: 0 15px; }
  .poslistcategories .list-categories {
    position: relative;
    text-align: center; }
    .poslistcategories .list-categories .thumb-category {
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear;
      margin-bottom: 10px; }
      .poslistcategories .list-categories .thumb-category img {
        -webkit-transition: all 300ms linear;
        -moz-transition: all 300ms linear;
        -ms-transition: all 300ms linear;
        -o-transition: all 300ms linear;
        transition: all 300ms linear;
        -moz-transform: scale3d(1, 1, 1);
        -webkit-transform: scale3d(1, 1, 1);
        -o-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        width: 100%; }
    .poslistcategories .list-categories .desc-listcategoreis {
      overflow: hidden; }
      .poslistcategories .list-categories .desc-listcategoreis .name_categories {
        font-size: 14px;
        line-height: 1;
        font-weight: 400;
        color: #777777;
        text-transform: capitalize;
        cursor: pointer;
        -webkit-transition: all 300ms linear;
        -moz-transition: all 300ms linear;
        -ms-transition: all 300ms linear;
        -o-transition: all 300ms linear;
        transition: all 300ms linear; }
        .poslistcategories .list-categories .desc-listcategoreis .name_categories:hover {
          color: #80bb01; }
      .poslistcategories .list-categories .desc-listcategoreis .sub a {
        color: #7a7a7a;
        font-size: 13px;
        line-height: 24px;
        text-transform: capitalize;
        float: left;
        clear: both; }
        .poslistcategories .list-categories .desc-listcategoreis .sub a:hover {
          padding-left: 10px;
          color: #80bb01; }
      .poslistcategories .list-categories .desc-listcategoreis .view-more a {
        display: block;
        float: left;
        clear: both;
        margin-top: 15px;
        padding: 0 20px;
        background: #242424;
        color: white;
        line-height: 30px;
        text-transform: capitalize;
        font-size: 12px;
        font-weight: 400;
        border-radius: 3px; }
        .poslistcategories .list-categories .desc-listcategoreis .view-more a:hover {
          background: #80bb01;
          color: #242424; }

/* end module list-categories */
/* blog */
.home_blog_post_area {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
  margin-top: 40px; }
  .home_blog_post_area .owl-carousel .owl-stage-outer {
    padding-top: 15px; }
  .home_blog_post_area .owl-carousel .owl-item {
    padding: 0 15px; }
  .home_blog_post_area .blog_slider .item .blog_post {
    display: inline-block;
    width: 100%;
    background: white; }
    .home_blog_post_area .blog_slider .item .blog_post img {
      width: 100%; }
    .home_blog_post_area .blog_slider .item .blog_post a.read-more {
      margin-top: 20px;
      display: inline-block;
      font-size: 14px;
      color: #999;
      font-weight: 700; }
      .home_blog_post_area .blog_slider .item .blog_post a.read-more:before {
        display: inline-block;
        font-family: 'ElegantIcons';
        font-size: 18px;
        vertical-align: top;
        content: '\24';
        color: #777;
        float: right;
        margin-left: 18px; }
      .home_blog_post_area .blog_slider .item .blog_post a.read-more:hover {
        color: #80bb01; }
        .home_blog_post_area .blog_slider .item .blog_post a.read-more:hover:before {
          color: #80bb01; }
    .home_blog_post_area .blog_slider .item .blog_post .post_title {
      margin: 20px 0 0; }
      .home_blog_post_area .blog_slider .item .blog_post .post_title a {
        font-size: 17px;
        font-weight: 500;
        line-height: 24px;
        color: #222;
        text-transform: capitalize;
        position: relative;
        display: block;
        margin-bottom: 0; }
        .home_blog_post_area .blog_slider .item .blog_post .post_title a:hover {
          color: #80bb01; }
    .home_blog_post_area .blog_slider .item .blog_post .meta_category a {
      color: white;
      background: #80bb01;
      padding: 0 10px;
      border-radius: 3px;
      font-size: 12px;
      font-weight: 500;
      display: inline-block;
      margin-bottom: 20px;
      display: none; }
      .home_blog_post_area .blog_slider .item .blog_post .meta_category a:hover {
        text-decoration: underline !important; }
    .home_blog_post_area .blog_slider .item .blog_post .post_meta {
      overflow: hidden;
      position: relative;
      padding-top: 25px; }
      .home_blog_post_area .blog_slider .item .blog_post .post_meta a.read-more {
        display: inline-block;
        line-height: 18px;
        color: #80bb01;
        text-transform: uppercase;
        font-size: 13px;
        font-weight: 500;
        opacity: 0;
        -moz-transform: translateX(-50px);
        -webkit-transform: translateX(-50px);
        -o-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
        transform: translateX(-50px); }
        .home_blog_post_area .blog_slider .item .blog_post .post_meta a.read-more:after {
          content: "\e934";
          font-family: 'plaza-icon';
          display: inline-block;
          margin: 0 0 0 5px; }
        .home_blog_post_area .blog_slider .item .blog_post .post_meta a.read-more:hover {
          text-decoration: underline !important; }
      .home_blog_post_area .blog_slider .item .blog_post .post_meta span {
        color: #999;
        font-size: 13px;
        line-height: 18px;
        text-transform: capitalize;
        display: inline-block;
        margin-right: 20px; }
        .home_blog_post_area .blog_slider .item .blog_post .post_meta span:last-child {
          margin: 0; }
        .home_blog_post_area .blog_slider .item .blog_post .post_meta span i {
          margin-right: 5px; }
    .home_blog_post_area .blog_slider .item .blog_post .post_description {
      font-size: 14px;
      font-weight: 400;
      color: #a4a4a4;
      margin: 0;
      display: inline-block;
      width: 100%;
      padding: 20px 0;
      display: none; }
      @media (max-width: 1199px) {
        .home_blog_post_area .blog_slider .item .blog_post .post_description {
          padding: 14px 0; } }

.home_blog_post_area .home_blog_post .blog_post .post_thumbnail {
  position: relative;
  overflow: hidden; }
  .home_blog_post_area .home_blog_post .blog_post .post_thumbnail:hover img {
    -moz-transform: scale3d(1.025, 1.025, 1.025);
    -webkit-transform: scale3d(1.025, 1.025, 1.025);
    -o-transform: scale3d(1.025, 1.025, 1.025);
    -ms-transform: scale3d(1.025, 1.025, 1.025);
    transform: scale3d(1.025, 1.025, 1.025);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear; }
  .home_blog_post_area .home_blog_post .blog_post .post_thumbnail img {
    -moz-transform: scale3d(1, 1, 1);
    -webkit-transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear; }

.blog_mask {
  display: none; }

.home_blog_post_area .home_blog_post .blog_post .post_thumbnail .blog_mask .blog_mask_content a {
  display: block;
  text-align: center;
  font-size: 70px;
  color: #fff;
  display: none; }

.home_blog_post_area .home_blog_post .blog_post .post_thumbnail:hover .blog_mask {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.home_blog_post_area .home_blog_post .blog_post .post_thumbnail:hover .blog_mask .blog_mask_content {
  left: 50%; }

.kr_blog_post_area .blog_post {
  margin-bottom: 40px; }

.kr_blog_post_area .blog_post .post_content {
  padding: 30px; }

.comment_respond {
  padding: 30px; }

h2.comments_title {
  padding: 0 30px; }

.btn.disabled, .btn:disabled {
  border: none; }

.kr_blog_post_area .blog_post .post_thumbnail img {
  margin: 0;
  width: 100%; }

.kr_blog_post_area .blog_post .post_content .post_title {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 15px; }

.kr_blog_post_area .blog_post .post_content .post_meta > p {
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  text-transform: capitalize;
  padding-right: 10px;
  margin-right: 10px; }

.kr_blog_post_area .blog_post .post_content .read_more a {
  color: #999999;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase; }

/* end blog */
/* module logo */
.pos_logo {
  position: relative; }
  .pos_logo:hover .owl-nav > div {
    opacity: 1; }
  .pos_logo .owl-nav {
    position: static;
    height: auto; }
    .pos_logo .owl-nav > div {
      position: absolute;
      top: 50%;
      -moz-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      opacity: 0; }
      .pos_logo .owl-nav > div.owl-prev {
        right: auto;
        left: -15px; }
      .pos_logo .owl-nav > div.owl-next {
        right: -15px; }
  .pos_logo .pos_title {
    display: none; }
  .pos_logo .item-banklogo {
    overflow: hidden; }

/* end module logo */
/* module newletter */
.ft_newsletter {
  position: relative; }
  .ft_newsletter .newsletter-title h3 {
    font-size: 31px;
    color: #f5f5f5;
    font-weight: 400;
    text-transform: capitalize;
    width: 60%;
    display: inline-block;
    float: left;
    line-height: 48px;
    margin: 0; }
    @media (max-width: 1199px) {
      .ft_newsletter .newsletter-title h3 {
        font-size: 26px; } }
    @media (max-width: 480px) {
      .ft_newsletter .newsletter-title h3 {
        width: 100%; } }
    .ft_newsletter .newsletter-title h3:after {
      display: inline-block;
      font-family: 'ElegantIcons';
      font-size: 35px;
      vertical-align: top;
      content: '\e010';
      color: #fff;
      float: left;
      line-height: 40px;
      margin-right: 12px; }
  .ft_newsletter .newsletter-title .desc {
    font-size: 14px;
    line-height: 24px;
    display: block;
    position: relative;
    color: #fff;
    width: 40%;
    display: inline-block;
    float: right; }
    @media (max-width: 480px) {
      .ft_newsletter .newsletter-title .desc {
        width: 100%;
        float: none; } }
  .ft_newsletter form {
    position: relative;
    overflow: hidden; }
    @media (max-width: 767px) {
      .ft_newsletter form {
        margin-top: 20px; } }
    .ft_newsletter form .input-wrapper input {
      height: 52px;
      background: #fff;
      border: 0;
      color: #999999;
      padding: 10px 180px 10px 22px;
      display: inline-block;
      width: 100%;
      font-size: 14px;
      border: none;
      -webkit-border-radius: 30px;
      -moz-border-radius: 30px;
      -ms-border-radius: 30px;
      -o-border-radius: 30px;
      border-radius: 30px; }
      .ft_newsletter form .input-wrapper input::-moz-placeholder {
        color: #999;
        opacity: 1; }
      .ft_newsletter form .input-wrapper input::-webkit-input-placeholder {
        color: #999;
        opacity: 1; }
      .ft_newsletter form .input-wrapper input:-ms-input-placeholder {
        color: #999;
        opacity: 1; }
      @media (max-width: 480px) {
        .ft_newsletter form .input-wrapper input {
          padding: 10px 140px 10px 22px; } }
    .ft_newsletter form .btn {
      position: absolute;
      top: 5px;
      right: 5px;
      text-transform: uppercase;
      font-size: 15px;
      font-weight: 500;
      color: white;
      background: #80bb01;
      border: 0;
      margin: 0;
      box-shadow: none;
      padding: 0 40px;
      line-height: 43px;
      height: 43px;
      float: left !important;
      -webkit-border-radius: 30px;
      -moz-border-radius: 30px;
      -ms-border-radius: 30px;
      -o-border-radius: 30px;
      border-radius: 30px;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear; }
      .ft_newsletter form .btn:hover {
        background: #242424;
        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; }
      @media (max-width: 479px) {
        .ft_newsletter form .btn {
          padding: 0 20px; } }
    .ft_newsletter form .condition, .ft_newsletter form .alert {
      margin: 10px 0 0;
      font-size: 12px;
      line-height: 24px;
      color: #bcbcbc;
      background: none;
      border: 0;
      padding: 0; }
      .ft_newsletter form .condition.alert-danger, .ft_newsletter form .alert.alert-danger {
        color: white; }
      .ft_newsletter form .condition.alert-success, .ft_newsletter form .alert.alert-success {
        color: white; }

/* end module newletter */
.social_follow {
  position: relative;
  font-size: 0; }
  @media (min-width: 1200px) {
    .social_follow {
      max-width: 80%; } }
  @media (max-width: 991px) {
    .social_follow {
      margin-bottom: 15px; } }
  @media (max-width: 768px) {
    .social_follow {
      width: 100%; } }
  .social_follow li {
    display: inline-block;
    margin: 0 8px 8px 0;
    line-height: 40px;
    background-image: none !important;
    padding: 0; }
    .social_follow li:last-child {
      margin: 0; }
    .social_follow li a {
      position: relative;
      display: inline-block;
      vertical-align: middle;
      color: white;
      font-size: 0;
      padding: 0;
      line-height: 40px;
      width: 40px;
      height: 40px;
      border-radius: 100%;
      text-align: center;
      border: 0;
      z-index: 1;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear; }
      .social_follow li a:before {
        padding: 0 !important;
        font-size: 18px;
        display: inline-block;
        font-family: 'ElegantIcons' !important;
        vertical-align: middle;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        -webkit-transition: all 300ms linear;
        -moz-transition: all 300ms linear;
        -ms-transition: all 300ms linear;
        -o-transition: all 300ms linear;
        transition: all 300ms linear; }
      .social_follow li a:hover {
        color: white;
        opacity: 0.8; }
    .social_follow li.facebook a {
      background: #3c5998; }
      .social_follow li.facebook a:before {
        content: "\e093"; }
    .social_follow li.twitter a {
      background: #29a9e0; }
      .social_follow li.twitter a:before {
        content: "\e094"; }
    .social_follow li.rss a {
      background: #eb8314; }
      .social_follow li.rss a:before {
        content: "\e9be"; }
    .social_follow li.youtube a {
      background: #db2d29; }
      .social_follow li.youtube a:before {
        content: "\e0a3"; }
    .social_follow li.googleplus a {
      background: #ff6c00; }
      .social_follow li.googleplus a:before {
        content: "\e096"; }
    .social_follow li.pinterest a {
      background: #c62a21; }
      .social_follow li.pinterest a:before {
        content: "\eb7f"; }
    .social_follow li.vimeo a {
      background: #82a418; }
      .social_follow li.vimeo a:before {
        content: "\eb88"; }
    .social_follow li.instagram a {
      background: #0f537a; }
      .social_follow li.instagram a:before {
        content: "\e09a"; }

/* end module social */
/* module advertising */
.advertising {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
  overflow: hidden; }
  .advertising a img {
    width: 100%;
    height: auto; }
  .advertising a:before {
    background: rgba(255, 255, 255, 0.2);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1; }
  .advertising a:after {
    background: rgba(255, 255, 255, 0.2);
    bottom: 50%;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    opacity: 1; }
  .advertising:hover a:before {
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 900ms linear;
    -moz-transition: all 900ms linear;
    -ms-transition: all 900ms linear;
    -o-transition: all 900ms linear;
    transition: all 900ms linear; }
  .advertising:hover a:after {
    top: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 900ms linear;
    -moz-transition: all 900ms linear;
    -ms-transition: all 900ms linear;
    -o-transition: all 900ms linear;
    transition: all 900ms linear; }

/* end module advertising */
/* module tags */
.tags_block {
  margin-top: 40px;
  margin-bottom: 30px; }
  .tags_block h3 {
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    color: #222222;
    padding-bottom: 15px;
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 28px;
    position: relative;
    text-transform: uppercase; }
  .tags_block .tags_content {
    font-size: 0; }
  .tags_block a {
    display: inline-block;
    padding: 0 20px;
    font-size: 14px;
    line-height: 30px;
    color: #555555;
    background: #ebebeb;
    border-radius: 10px;
    margin-right: 10px;
    margin-bottom: 10px; }
    .tags_block a:last-child {
      margin-right: 0; }
    .tags_block a:hover {
      color: white;
      background: #80bb01;
      border-color: #80bb01; }

/* end module tags */
/* module testimonials */
.testimonials_container {
  position: relative; }
  .testimonials_container .item-testimonials .item {
    position: relative;
    text-align: center;
    padding: 30px 25px; }
    .testimonials_container .item-testimonials .item .des_testimonial {
      position: relative;
      margin-bottom: 35px; }
      .testimonials_container .item-testimonials .item .des_testimonial:before {
        content: "";
        display: inline-block;
        position: absolute;
        left: 20px;
        bottom: -10px; }
      .testimonials_container .item-testimonials .item .des_testimonial p {
        color: #242424;
        font-style: italic;
        line-height: 24px;
        margin: 0;
        font-size: 16px; }
    .testimonials_container .item-testimonials .item .content_author img {
      margin-bottom: 30px;
      border: 2px solid #80bb01;
      border-radius: 100%;
      width: 85px;
      height: 85px; }
    .testimonials_container .item-testimonials .item .content_author .des_namepost {
      font-size: 14px;
      color: #242424;
      line-height: 30px;
      font-weight: 500;
      text-transform: capitalize;
      margin: 0; }
    .testimonials_container .item-testimonials .item .content_author .des_email {
      font-size: 13px;
      color: #444444;
      line-height: 20px;
      margin: 0; }
      .testimonials_container .item-testimonials .item .content_author .des_email:hover {
        color: #80bb01; }

/* end module testimonials */
/* static */
@-webkit-keyframes shine {
  100% {
    left: 125%; } }

@keyframes shine {
  100% {
    left: 125%; } }

.banner-nav {
  position: relative; }
  .banner-nav .close_banner {
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 30px;
    color: white;
    cursor: pointer;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear; }
    @media (min-width: 1200px) {
      .banner-nav .close_banner {
        right: 85px; } }
    .banner-nav .close_banner i {
      font-size: 18px; }
    .banner-nav .close_banner:hover {
      color: #80bb01;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear; }

.banner-slider .banner-box {
  margin-bottom: 10px; }

.banner-top {
  margin-top: 40px;
  border: 1px solid #dcdcdc;
  background: #fff;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1) inset; }
  .banner-top .col:last-child .banner-warpper {
    border-right: none; }
  .banner-top .banner-warpper {
    text-align: center;
    border-right: 1px solid #e5e5e5;
    padding: 15px 0; }
    @media (max-width: 768px) {
      .banner-top .banner-warpper {
        min-height: 96px; } }
    .banner-top .banner-warpper h3 {
      margin: 0;
      font-size: 14px;
      color: #777777;
      text-transform: uppercase;
      font-weight: 500; }
      @media (max-width: 1199px) {
        .banner-top .banner-warpper h3 {
          font-size: 12px; } }
      .banner-top .banner-warpper h3:before {
        content: '\e030';
        display: inline-block;
        font-size: 28px;
        font-family: 'ElegantIcons';
        vertical-align: middle;
        margin-right: 20px;
        color: #80bb01; }
        @media (max-width: 768px) {
          .banner-top .banner-warpper h3:before {
            display: block;
            margin: 0 0 10px 0; } }
    .banner-top .banner-warpper h3.icon2:before {
      content: '\e02a'; }
    .banner-top .banner-warpper h3.icon3:before {
      content: '\e028'; }

.home-banner {
  position: relative;
  margin-bottom: 30px; }
  @media (min-width: 768px) {
    .home-banner {
      margin-bottom: 30px; } }
  .home-banner .row {
    margin: 0 -15px; }
    .home-banner .row .col {
      padding: 0 15px; }

.banner-box {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px; }
  .banner-box:hover img {
    -moz-transform: scale(1.1) rotate(0.05deg);
    -ms-transform: scale(1.1) rotate(0.05deg);
    -o-transform: scale(1.1) rotate(0.05deg);
    -webkit-transform: scale(1.1) rotate(0.05deg);
    transform: scale(1.1) rotate(0.05deg);
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear; }
  .banner-box img {
    width: 100%;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear; }

.banner-home {
  position: relative;
  background: url(../img/bg-static.jpg) no-repeat;
  background-position: center !important;
  background-size: cover !important;
  max-height: 530px; }
  @media (max-width: 767px) {
    .banner-home {
      text-align: center; } }
  .banner-home .col {
    padding: 0;
    margin-top: 115px; }
    @media (max-width: 767px) {
      .banner-home .col {
        margin-top: 0; } }
    .banner-home .col .banner-box {
      margin: 0; }
      @media (max-width: 767px) {
        .banner-home .col .banner-box {
          margin-top: 30px; } }
      @media (max-width: 767px) {
        .banner-home .col .banner-box img {
          display: inline-block;
          width: auto; } }

.connect-area {
  position: relative; }
  .connect-area .connect-content {
    padding: 20px 0; }
    @media (min-width: 768px) {
      .connect-area .connect-content {
        position: absolute;
        left: 0;
        top: 50%;
        right: 0;
        padding: 0;
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); } }
    .connect-area .connect-content h2 {
      font-weight: 300;
      font-size: 48px;
      line-height: 1;
      margin-bottom: 30px; }
    .connect-area .connect-content p {
      font-size: 18px;
      line-height: 24px;
      color: #242424;
      font-weight: 300;
      margin-bottom: 20px; }
    .connect-area .connect-content h4 {
      color: #80bb01;
      font-size: 30px;
      font-weight: 400;
      margin-bottom: 30px; }
    .connect-area .connect-content a {
      background: #242424;
      color: white;
      height: 50px;
      line-height: 50px;
      padding: 0 30px;
      font-size: 13px;
      font-weight: 500;
      text-transform: uppercase;
      display: inline-block; }
      .connect-area .connect-content a:hover {
        background: #80bb01;
        color: white; }

@media (max-width: 1199px) {
  .connect-area .connect-content h2 {
    font-size: 30px;
    margin-bottom: 15px; }
  .connect-area .connect-content p {
    font-size: 14px;
    margin-bottom: 15px; }
  .connect-area .connect-content h4 {
    font-size: 20px;
    margin-bottom: 15px; }
  .connect-area .connect-content a {
    height: 40px;
    line-height: 40px;
    padding: 0 20px; }
    .connect-area .connect-content a:hover {
      background: #80bb01;
      color: white; } }
.static_cms {
  position: relative;
  padding: 17px 0;
  border: 1px solid #ebebeb;
  background: white;
  text-align: center; }
  .static_cms .col-cms {
    border-left: 1px solid #ebebeb; }
    .static_cms .col-cms:first-child {
      border: none; }
    @media (max-width: 767px) {
      .static_cms .col-cms {
        border: none; }
        .static_cms .col-cms .txt_cms {
          margin-bottom: 20px; }
        .static_cms .col-cms:last-child .txt_cms {
          margin-bottom: 0; } }
  .static_cms .txt_cms h2 {
    line-height: 1;
    color: #80bb01;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: -0.025em;
    margin-bottom: 8px; }
  .static_cms .txt_cms p {
    line-height: 1;
    color: #757575;
    font-size: 13px;
    margin: 0; }

.tag-static {
  margin-top: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05); }
  .tag-static li a {
    line-height: 30px;
    text-transform: capitalize;
    color: #5b697b;
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 13px; }
    .tag-static li a:first-child {
      padding: 0 15px;
      font-weight: 400;
      color: #fff;
      background: #37475a;
      border-radius: 2px;
      margin-right: 8px; }
      .tag-static li a:first-child:after {
        display: none; }
    .tag-static li a:hover {
      color: white; }
    .tag-static li a:after {
      content: "/";
      display: inline-block;
      vertical-align: top;
      margin: 0 9px;
      color: #5b697b; }
    .tag-static li a:last-child:after {
      display: none; }

/* end static */
/* footer */
#footer {
  padding: 0;
  color: #757575; }
  #footer .footer-container {
    margin: 0;
    padding: 0;
    overflow: visible;
    box-shadow: none;
    background: #fff; }
    #footer .footer-container .footer-top {
      background: #008459;
      padding: 26px 0; }
    #footer .footer-container .footer-center {
      padding: 40px 0;
      border-bottom: 1px solid #e5e5e5;
      border-top: 1px solid #e5e5e5; }
    #footer .footer-container .footer-middle {
      position: relative;
      padding: 60px 0; }
      @media (max-width: 768px) {
        #footer .footer-container .footer-middle {
          padding: 30px 0; } }
      #footer .footer-container .footer-middle h3.title-footer {
        font-size: 31px;
        color: #222222;
        font-weight: 500;
        margin: 0 0 25px; }
      #footer .footer-container .footer-middle .col1 {
        padding-right: 0; }
      @media (max-width: 768px) {
        #footer .footer-container .footer-middle .col-contac {
          width: 100%; } }
      #footer .footer-container .footer-middle .contact-us .icon {
        color: #777777;
        font-size: 38px;
        line-height: 38px;
        position: absolute;
        top: 0;
        left: 0;
        display: inline-block;
        font-family: 'ElegantIcons' !important; }
      #footer .footer-container .footer-middle .contact-us .address {
        position: relative; }
        @media (max-width: 767px) {
          #footer .footer-container .footer-middle .contact-us .address {
            margin-bottom: 15px; } }
        #footer .footer-container .footer-middle .contact-us .address .icon:before {
          content: "\e01d"; }
        #footer .footer-container .footer-middle .contact-us .address .text {
          padding-left: 45px;
          color: #777;
          font-size: 14px; }
          #footer .footer-container .footer-middle .contact-us .address .text span {
            display: block; }
      #footer .footer-container .footer-middle .contact-us .phone {
        position: relative; }
        @media (max-width: 767px) {
          #footer .footer-container .footer-middle .contact-us .phone {
            margin-bottom: 15px; } }
        #footer .footer-container .footer-middle .contact-us .phone .icon:before {
          content: "\e00b"; }
        #footer .footer-container .footer-middle .contact-us .phone .text {
          padding-left: 45px;
          color: #777;
          font-size: 14px; }
          #footer .footer-container .footer-middle .contact-us .phone .text span {
            display: block; }
      #footer .footer-container .footer-middle .contact-us .email {
        position: relative; }
        @media (max-width: 767px) {
          #footer .footer-container .footer-middle .contact-us .email {
            margin-bottom: 15px; } }
        #footer .footer-container .footer-middle .contact-us .email .icon:before {
          content: "\e010"; }
        #footer .footer-container .footer-middle .contact-us .email .text {
          padding-left: 45px;
          color: #777;
          font-size: 14px; }
          #footer .footer-container .footer-middle .contact-us .email .text span {
            display: block; }
      #footer .footer-container .footer-middle .footer-links {
        text-align: center; }
        #footer .footer-container .footer-middle .footer-links .links-tag {
          position: relative;
          text-align: center;
          margin-bottom: 30px; }
          #footer .footer-container .footer-middle .footer-links .links-tag li {
            display: inline-block;
            margin: 0;
            vertical-align: top; }
            #footer .footer-container .footer-middle .footer-links .links-tag li:not(:last-child):after {
              content: "/";
              display: inline-block;
              vertical-align: middle;
              color: #757575;
              margin: 0 5px; }
            #footer .footer-container .footer-middle .footer-links .links-tag li a {
              display: inline-block;
              padding: 0 5px;
              font-size: 14px;
              line-height: 24px;
              color: #6d6d6d;
              border-radius: 3px; }
              #footer .footer-container .footer-middle .footer-links .links-tag li a:hover {
                color: #80bb01; }
    #footer .footer-container .footer-bottom {
      padding: 36px 0; }
      @media (max-width: 767px) {
        #footer .footer-container .footer-bottom {
          text-align: center; } }
      #footer .footer-container .footer-bottom .link-bottom {
        margin-bottom: 12px; }
        #footer .footer-container .footer-bottom .link-bottom a {
          font-size: 14px;
          color: #222222; }
          #footer .footer-container .footer-bottom .link-bottom a:hover {
            color: #80bb01; }
      #footer .footer-container .footer-bottom .copyright {
        background: white;
        color: #777;
        font-size: 14px; }
        #footer .footer-container .footer-bottom .copyright a {
          color: #80bb01; }
          #footer .footer-container .footer-bottom .copyright a:hover {
            text-decoration: underline; }
      #footer .footer-container .footer-bottom .payment {
        text-align: right;
        line-height: 60px; }
        @media (max-width: 1199px) {
          #footer .footer-container .footer-bottom .payment {
            line-height: inherit; } }
        @media (max-width: 767px) {
          #footer .footer-container .footer-bottom .payment {
            text-align: center; } }
        #footer .footer-container .footer-bottom .payment img {
          margin: 0 0 0 15px;
          display: inline-block; }
    #footer .footer-container .about_us .footer-info {
      margin-bottom: 20px; }
      #footer .footer-container .about_us .footer-info .desc {
        margin-bottom: 10px; }
      #footer .footer-container .about_us .footer-info a {
        color: white;
        font-size: 14px; }
        #footer .footer-container .about_us .footer-info a i {
          font-size: 18px;
          display: inline-block;
          margin-right: 5px; }
        #footer .footer-container .about_us .footer-info a:hover {
          color: #80bb01; }
    #footer .footer-container .contact_us .footer-info p {
      margin-bottom: 5px; }
      #footer .footer-container .contact_us .footer-info p span {
        color: white; }
    #footer .footer-container .contact_us .footer-info .address-contact {
      margin-bottom: 20px; }
    #footer .footer-container .footer_block {
      margin-bottom: 0; }
      @media (max-width: 991px) {
        #footer .footer-container .footer_block {
          margin-bottom: 15px; } }
      @media (max-width: 767px) {
        #footer .footer-container .footer_block {
          margin-bottom: 0; }
          #footer .footer-container .footer_block .title {
            padding: 0;
            border: none; } }
      #footer .footer-container .footer_block h3 {
        font-size: 15px;
        line-height: 35px;
        font-weight: 500;
        color: #222222;
        margin: 0 0 20px 0;
        text-transform: uppercase; }
        @media (max-width: 767px) {
          #footer .footer-container .footer_block h3 {
            margin-bottom: 10px; } }
      #footer .footer-container .footer_block .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 5px;
        width: auto;
        height: auto;
        color: #242424; }
      #footer .footer-container .footer_block .footer_list {
        margin-bottom: 0;
        background: none; }
        #footer .footer-container .footer_block .footer_list li {
          display: block;
          margin: 0;
          line-height: 1;
          border: 0;
          padding: 0;
          font-weight: 400; }
          #footer .footer-container .footer_block .footer_list li a {
            font-size: 12px;
            line-height: 24px;
            margin-bottom: 12px;
            display: block;
            position: relative;
            color: #777;
            text-transform: uppercase;
            -webkit-transition: all 300ms linear;
            -moz-transition: all 300ms linear;
            -ms-transition: all 300ms linear;
            -o-transition: all 300ms linear;
            transition: all 300ms linear; }
            #footer .footer-container .footer_block .footer_list li a:before {
              content: "\f105";
              font-family: "Font Awesome 5 Free";
              font-size: 14px;
              display: inline-block;
              margin-right: 5px;
              font-weight: 700;
              display: none; }
            #footer .footer-container .footer_block .footer_list li a:hover {
              color: #80bb01;
              padding-left: 10px;
              -webkit-transition: all 300ms linear;
              -moz-transition: all 300ms linear;
              -ms-transition: all 300ms linear;
              -o-transition: all 300ms linear;
              transition: all 300ms linear; }
              #footer .footer-container .footer_block .footer_list li a:hover:before {
                color: #80bb01; }

/* end footer */
/* category page */
@media (max-width: 767px) {
  #left-column, #content-wrapper, #right-column {
    width: 100%; } }
.name_category {
  text-align: center;
  margin-bottom: 40px;
  display: inline-block;
  width: 100%; }
  .name_category h2 {
    display: inline-block;
    position: relative;
    font-size: 30px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1;
    text-transform: uppercase; }

#js-product-list-top ul.display {
  float: left;
  margin-right: 50px;
  position: relative;
  z-index: 1; }
  @media (min-width: 768px) and (max-width: 991px) {
    #js-product-list-top ul.display {
      margin-right: 10px; } }
  @media (max-width: 767px) {
    #js-product-list-top ul.display {
      margin-bottom: 10px; } }
  #js-product-list-top ul.display li {
    float: left;
    border: none;
    width: 50px;
    background: #ebebeb;
    height: 36px;
    cursor: pointer;
    position: relative;
    border-radius: 30px 0 0 30px;
    color: #cccccc;
    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; }
    #js-product-list-top ul.display li:hover, #js-product-list-top ul.display li.selected {
      background: #80bb01;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear; }
      #js-product-list-top ul.display li:hover:before, #js-product-list-top ul.display li.selected:before {
        background-position: 100% 100%; }
    #js-product-list-top ul.display li:before {
      content: "";
      background: url(../img/gird.png) no-repeat 100% 0;
      height: 20px;
      width: 20px;
      display: inline-block;
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      margin: 0 auto;
      -moz-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
    #js-product-list-top ul.display li i {
      display: none; }
  #js-product-list-top ul.display li#list {
    background: #ebebeb;
    margin-right: 0;
    border-radius: 0 30px 30px 0; }
    #js-product-list-top ul.display li#list:before {
      background: url(../img/list.png) no-repeat 100% 0;
      height: 20px;
      width: 20px;
      display: inline-block;
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      margin: 0 auto;
      -moz-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
    #js-product-list-top ul.display li#list:hover, #js-product-list-top ul.display li#list.selected {
      background: #80bb01;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear; }
      #js-product-list-top ul.display li#list:hover:before, #js-product-list-top ul.display li#list.selected:before {
        background-position: 100% 100%; }

.quickview .modal-content {
  background: white; }

#js-product-list .product_content {
  position: relative;
  background: white;
  margin: 0; }
  #js-product-list .product_content.list .item-product {
    padding: 0; }
  #js-product-list .product_content.list .js-product-miniature {
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 30px;
    box-shadow: none !important;
    padding: 40px 0 30px; }
    @media (min-width: 480px) {
      #js-product-list .product_content.list .js-product-miniature .row {
        margin: 0; } }
    #js-product-list .product_content.list .js-product-miniature .img_block {
      padding: 0;
      overflow: hidden; }
      #js-product-list .product_content.list .js-product-miniature .img_block .add-to-links {
        display: none; }
    #js-product-list .product_content.list .js-product-miniature .product_desc {
      padding-left: 30px;
      padding-top: 0;
      text-align: left;
      overflow: inherit; }
      #js-product-list .product_content.list .js-product-miniature .product_desc .desc_grid {
        display: none !important; }
      @media (max-width: 479px) {
        #js-product-list .product_content.list .js-product-miniature .product_desc {
          padding: 30px 15px; } }
      #js-product-list .product_content.list .js-product-miniature .product_desc .product_name {
        min-height: auto;
        text-transform: capitalize; }
        #js-product-list .product_content.list .js-product-miniature .product_desc .product_name:hover {
          color: #80bb01; }
      #js-product-list .product_content.list .js-product-miniature .product_desc .add-to-links {
        display: block;
        position: static;
        opacity: 1;
        margin: 0;
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        transform: translate(0); }
      #js-product-list .product_content.list .js-product-miniature .product_desc .hook-reviews:before {
        display: none; }
      #js-product-list .product_content.list .js-product-miniature .product_desc .hook-reviews .comments_note {
        padding: 0;
        background: transparent; }
      #js-product-list .product_content.list .js-product-miniature .product_desc .product-price-and-shipping {
        animation: none !important;
        opacity: 1; }
      #js-product-list .product_content.list .js-product-miniature .product_desc .product-desc {
        display: block;
        padding: 25px 0;
        margin: 0; }
        #js-product-list .product_content.list .js-product-miniature .product_desc .product-desc p {
          font-size: 15px;
          color: #666666;
          line-height: 25px;
          padding: 0; }
      #js-product-list .product_content.list .js-product-miniature .product_desc .variant-links {
        margin-top: 30px; }
    @media (max-width: 479px) {
      #js-product-list .product_content.list .js-product-miniature .img_block, #js-product-list .product_content.list .js-product-miniature .product_desc {
        width: 100%; } }
  #js-product-list .product_content.grid {
    margin: 0; }
    #js-product-list .product_content.grid .item-product {
      padding: 0;
      margin-bottom: 20px;
      -webkit-animation-fill-mode: none;
      animation-fill-mode: none; }
      @media (min-width: 480px) and (max-width: 543px) {
        #js-product-list .product_content.grid .item-product {
          width: 50%; } }
      #js-product-list .product_content.grid .item-product .js-product-miniature .product_desc .product-desc.desc_list {
        display: none !important; }
    @media (min-width: 1200px) {
      #js-product-list .product_content.grid .item-product:nth-child(3n+1) {
        clear: both; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      #js-product-list .product_content.grid .item-product:nth-child(3n+1) {
        clear: both; } }
    @media (min-width: 480px) and (max-width: 991px) {
      #js-product-list .product_content.grid .item-product:nth-child(2n+1) {
        clear: both; } }
    @media (max-width: 479px) {
      #js-product-list .product_content.grid .item-product {
        clear: both; } }

@media (min-width: 480px) and (max-width: 543px) {
  #js-product-list .product_content .item-product.grid {
    float: left;
    width: 50%; } }
.breadcrumb_container {
  overflow: hidden;
  margin: 0;
  font-size: 13px;
  background: #f9f9f9; }
  .breadcrumb_container .breadcrumb-inner {
    background: transparent;
    padding: 20px 0; }
    .breadcrumb_container .breadcrumb-inner ol {
      padding-left: 0;
      margin-bottom: 0; }
      .breadcrumb_container .breadcrumb-inner ol li {
        display: inline; }
        .breadcrumb_container .breadcrumb-inner ol li:after {
          content: "/";
          color: #a4a4a4;
          margin: 0.3125em;
          font-size: 13px;
          vertical-align: -1px; }
        .breadcrumb_container .breadcrumb-inner ol li:last-child a, .breadcrumb_container .breadcrumb-inner ol li:last-child span {
          color: #80bb01; }
        .breadcrumb_container .breadcrumb-inner ol li:last-child:after {
          content: ""; }
        .breadcrumb_container .breadcrumb-inner ol li a {
          display: inline-block;
          position: relative;
          color: #a4a4a4;
          line-height: 25px; }
          .breadcrumb_container .breadcrumb-inner ol li a:hover {
            color: #80bb01; }
  .breadcrumb_container .breadcrumb-inner[data-depth="1"] {
    display: none; }

.block-category {
  padding: 0;
  min-height: auto; }
  .block-category h1.h1 {
    color: #242424;
    font-size: 24px;
    line-height: 24px;
    padding: 0 0 15px 0;
    margin: 0;
    border: none; }
  .block-category .category-cover {
    position: static; }
    .block-category .category-cover img {
      width: auto;
      height: auto; }
  .block-category.card {
    box-shadow: none;
    border: 0;
    padding: 30px; }

#products img, .featured-products img, .product-accessories img {
  margin: 0; }

.block-categories, #search_filters {
  box-shadow: none;
  background: #fff;
  padding: 0;
  border: none;
  margin-bottom: 30px;
  box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1); }

.block-categories a.h6 {
  margin: 0;
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 15px;
  background: #80bb01;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  border-radius: 0 5px 0 0;
  padding: 15px 25px 15px 10px; }
  .block-categories a.h6:before {
    background: #80bb01;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 15px;
    z-index: 1;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%); }
  .block-categories a.h6:after {
    border-bottom: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 15px solid #5d8801;
    bottom: 0;
    content: '';
    left: -15px;
    position: absolute;
    z-index: 1;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%); }
.block-categories .category-top-menu li .category-sub-menu {
  padding: 30px 15px; }
  .block-categories .category-top-menu li .category-sub-menu li[data-depth="0"] .category-sub-menu {
    padding: 0; }
.block-categories .category-sub-menu {
  margin: 0; }
  .block-categories .category-sub-menu li {
    display: inline-block;
    width: 100%; }
    .block-categories .category-sub-menu li a {
      color: #242424; }
      .block-categories .category-sub-menu li a:hover {
        color: #80bb01; }
.block-categories .category-sub-menu li[data-depth="0"] > a {
  font-weight: 400;
  color: #777;
  display: block;
  font-size: 14px;
  text-transform: capitalize;
  line-height: 30px;
  margin: 0;
  padding: 0;
  border: none; }
  .block-categories .category-sub-menu li[data-depth="0"] > a:hover {
    color: #80bb01; }
.block-categories .category-sub-menu li[data-depth="1"] {
  margin: 0; }
.block-categories .category-sub-menu li:last-child a {
  border-bottom: 0; }
.block-categories .category-sub-menu .category-sub-link {
  font-size: 14px;
  line-height: 30px;
  margin: 0;
  padding: 0 10px;
  display: block;
  color: #a4a4a4; }
.block-categories .collapse-icons {
  top: 5px;
  right: 0;
  height: auto;
  width: auto; }
  .block-categories .collapse-icons i {
    font-size: 18px; }
    .block-categories .collapse-icons i:hover {
      color: #80bb01 !important; }

.block-categories .category-sub-menu li:not([data-depth="0"]):not([data-depth="1"]):before {
  display: none; }

#search_filters_wrapper #search_filters h4 {
  margin: 0;
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 15px;
  background: #80bb01;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  border-radius: 0 5px 0 0;
  padding: 15px 25px 15px 10px; }
  #search_filters_wrapper #search_filters h4:before {
    background: #80bb01;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 15px;
    z-index: 1;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%); }
  #search_filters_wrapper #search_filters h4:after {
    border-bottom: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 15px solid #5d8801;
    bottom: 0;
    content: '';
    left: -15px;
    position: absolute;
    z-index: 1;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%); }

.facet-content {
  margin-top: 0;
  padding: 30px 15px; }

#search_filters .facet .facet-title {
  display: block;
  clear: both;
  color: #222222;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 24px;
  text-transform: capitalize;
  padding-bottom: 13px;
  border-bottom: 1px solid #e5e5e5; }
#search_filters .facet .collapse {
  margin: 0; }
  #search_filters .facet .collapse li {
    line-height: 25px; }
#search_filters .facet .custom-checkbox input[type="checkbox"] + span {
  margin: -3px 3px 0 0;
  width: 15px;
  height: 15px;
  border: 1px #dadada solid;
  border-radius: 3px; }
  #search_filters .facet .custom-checkbox input[type="checkbox"] + span.color {
    border: 0; }
#search_filters .facet .facet-label {
  margin: 5px 0; }
  #search_filters .facet .facet-label a {
    color: #242424;
    font-size: 14px;
    margin-top: 0; }
  #search_filters .facet .facet-label:hover a, #search_filters .facet .facet-label.active a {
    color: #80bb01; }
  #search_filters .facet .facet-label:hover .custom-checkbox input[type="checkbox"] + span, #search_filters .facet .facet-label.active .custom-checkbox input[type="checkbox"] + span {
    border-color: #80bb01;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear; }

/* Drop-down list */
.facet-dropdown {
  color: #242424;
  background: white;
  border: none;
  box-shadow: none; }

.facet-dropdown .select-title {
  border: 1px solid #ebebeb;
  color: #242424;
  padding: 10px 15px;
  border-radius: 5px;
  background: #ffffff;
  background: -moz-linear-gradient(top, white 1%, #f3f3f3 100%);
  background: -webkit-linear-gradient(top, white 1%, #f3f3f3 100%);
  background: linear-gradient(to bottom, white 1%, #f3f3f3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f3f3f3',GradientType=0 ); }

.facet-dropdown.open > .select-title {
  border: 1px solid #ebebeb;
  background: #ffffff;
  background: -moz-linear-gradient(top, white 1%, #f3f3f3 100%);
  background: -webkit-linear-gradient(top, white 1%, #f3f3f3 100%);
  background: linear-gradient(to bottom, white 1%, #f3f3f3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f3f3f3',GradientType=0 ); }

.facet-dropdown .dropdown-menu {
  border: 1px solid #ebebeb;
  background: -moz-linear-gradient(top, white 1%, #f3f3f3 100%);
  background: -webkit-linear-gradient(top, white 1%, #f3f3f3 100%);
  background: linear-gradient(to bottom, white 1%, #f3f3f3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f3f3f3',GradientType=0 );
  box-shadow: none; }

.facet-dropdown .select-list {
  display: block;
  color: #242424;
  font-size: 13px;
  background: transparent; }

/* end Drop-down list */
/* page list */
.pagination .page-list {
  box-shadow: none;
  padding: 0;
  background: transparent;
  text-align: left !important; }

@media (max-width: 900px) {
  .custom-radio {
    margin-right: 10px; } }

.pagination {
  font-size: 14px;
  font-weight: 400;
  border: none;
  padding: 15px 0;
  margin: 30px 0 15px 0;
  line-height: 40px;
  color: #242424; }
  .pagination .previous, .pagination .next {
    float: none; }
    .pagination .previous:hover, .pagination .next:hover {
      background: #242424; }
  .pagination a {
    font-weight: 400;
    color: #242424;
    padding: 0 10px;
    height: 28px;
    line-height: 28px;
    background: #f1f2f4;
    border-radius: 3px;
    font-size: 13px;
    display: inline-block; }
    .pagination a i {
      font-size: 14px;
      vertical-align: -3px; }
    .pagination a:hover {
      background: #80bb01;
      color: white; }
  .pagination .disabled {
    color: #242424; }
  .pagination .current a {
    background: #80bb01;
    font-size: 13px;
    color: white; }
  .pagination .show_items {
    line-height: 28px;
    font-size: 13px;
    text-align: right; }
    @media (max-width: 991px) {
      .pagination .show_items {
        font-size: 11px; } }
  .pagination > div:first-child {
    line-height: 1; }

/*end page list */
@media (max-width: 767px) {
  #category #left-column #search_filters .facet .navbar-toggler {
    padding: 0.625rem 3rem 0 0; } }
.products-selection .filter-button .btn-secondary, .products-selection .filter-button .btn-tertiary {
  box-shadow: none;
  padding: 4px 15px;
  border-radius: 4px; }

.products-selection .total-products {
  padding-top: 0; }

.products-selection {
  padding: 15px 0;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%; }
  .products-selection p, .products-selection .sort-by {
    line-height: 20px;
    font-size: 14px;
    padding: 5px;
    margin: 0;
    float: left;
    color: #222222;
    font-weight: 500;
    text-transform: capitalize; }
  .products-selection .products-sort-order .select-title {
    border: 1px solid #ebebeb;
    padding: 2px 15px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    line-height: 24px;
    font-size: 14px;
    margin: 0;
    color: #242424;
    text-align: left;
    box-shadow: none; }
    .products-selection .products-sort-order .select-title i {
      float: right; }
  .products-selection .products-sort-order .dropdown-menu {
    background: #fff;
    border: 1px solid #ebebeb;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    right: 15px;
    left: auto;
    text-align: right;
    box-shadow: none;
    max-width: 100%; }
    .products-selection .products-sort-order .dropdown-menu .select-list {
      line-height: 24px;
      font-size: 14px;
      padding: 3px 15px; }
      .products-selection .products-sort-order .dropdown-menu .select-list:hover {
        background: #80bb01; }

.text-muted {
  margin-bottom: 20px; }

/* end category page */
/* product page */
.h1.namne_details, .product_name_h1 {
  font-size: 34px;
  line-height: 1;
  color: #222222;
  text-transform: capitalize;
  font-weight: 500;
  margin: 0 0 20px 0; }

.product-prices {
  margin-top: 15px; }
  .product-prices .price, .product-prices .current-price span:first-child {
    font-weight: 400;
    font-size: 28px;
    line-height: 30px;
    color: #80bb01; }

.product-discount {
  display: inline-block; }

.product-discount .regular-price {
  font-weight: 400;
  font-size: 24px;
  line-height: 20px;
  color: #a4a4a4; }

.has-discount.product-price, .has-discount p {
  font-weight: 500;
  font-size: 24px;
  line-height: 20px;
  display: inline-block;
  color: #a4a4a4; }

.has-discount .discount {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: white;
  padding: 3px 10px 0 10px;
  background: #f35833;
  vertical-align: 4px;
  border-radius: 3px;
  text-transform: capitalize; }

.product-information {
  color: #a4a4a4;
  font-size: 14px;
  font-weight: normal;
  line-height: 24px; }
  .product-information span {
    font-size: 14px; }
  .product-information .product-desc {
    padding: 25px 0; }
    .product-information .product-desc p {
      font-size: 15px;
      color: #666666;
      margin: 0; }
      .product-information .product-desc p span {
        font-size: 15px !important;
        font-family: 'Rubik', sans-serif  !important;
        color: #666666; }
  .product-information label {
    margin: 0; }
  .product-information .product-variants {
    margin-bottom: 25px; }
  .product-information .product-variants > .product-variants-item .color {
    margin-bottom: 0; }

.product-prices div {
  margin: 0; }

.bootstrap-touchspin, .product-variants > .product-variants-item select {
  box-shadow: none; }

.product-variants > .product-variants-item {
  margin: 0 0 10px 0; }

.product-quantity {
  display: block; }
  .product-quantity .qty {
    margin-right: 10px; }
  @media (max-width: 360px) {
    .product-quantity .add {
      clear: both;
      margin-top: 10px; } }

.product-quantity #quantity_wanted {
  height: 40px; }

.product-quantity .btn-touchspin {
  height: 21px; }
  .product-quantity .btn-touchspin:hover {
    border: 1px solid rgba(0, 0, 0, 0.25); }

.product-actions .add-to-cart {
  position: relative;
  padding: 0 40px;
  color: white;
  line-height: 40px;
  height: 40px;
  font-size: 12px;
  font-weight: 500;
  border: 0;
  margin-top: 0;
  background: #242424;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  box-shadow: none;
  text-transform: uppercase; }
  .product-actions .add-to-cart:hover {
    background: #80bb01;
    color: white; }
  .product-actions .add-to-cart i {
    display: none; }

.reference {
  font-size: 14px;
  color: #242424;
  margin: 0; }

#product #block-reassurance {
  box-shadow: none;
  margin-top: 10px; }
  #product #block-reassurance span {
    font-weight: 400;
    font-size: 14px; }
  #product #block-reassurance li .block-reassurance-item {
    padding: 15px 0; }

#product #content {
  max-width: 100%; }

.product-cover img {
  box-shadow: none;
  border: none; }

li.product-flag {
  background: #80bb01;
  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; }

.social-sharing {
  margin-top: 10px; }
  .social-sharing > span {
    display: none; }

.social-sharing li {
  box-shadow: none;
  height: auto;
  width: auto;
  border-radius: 0;
  display: inline-block;
  background-color: transparent;
  line-height: 1;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear; }
  .social-sharing li:first-child {
    margin: 0; }
  .social-sharing li.facebook a {
    background: #3c5b9b; }
  .social-sharing li.twitter a {
    background: #40c1df; }
  .social-sharing li.googleplus a {
    background: #ed3c32; }
  .social-sharing li.pinterest a {
    background: #c62a21; }
  .social-sharing li a {
    display: inline-block;
    line-height: 30px;
    height: 30px;
    text-align: center;
    color: white;
    margin-right: 20px;
    white-space: normal;
    text-indent: 0;
    overflow: hidden;
    font-size: 13px;
    padding: 0 5px;
    border-radius: 2px; }
    .social-sharing li a:before {
      font-family: "Font Awesome\ 5 Brands";
      font-size: 14px;
      display: inline-block;
      background: transparent;
      margin-right: 5px; }
    .social-sharing li a:hover {
      color: #fff;
      background: #333; }
  .social-sharing li.facebook a:before {
    content: "\f09a"; }
  .social-sharing li.twitter a:before {
    content: "\f099"; }
  .social-sharing li.googleplus a:before {
    content: "\f0d5"; }
  .social-sharing li.pinterest a:before {
    content: "\f0d2"; }

.tabs {
  box-shadow: none;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  background: transparent;
  text-align: left;
  margin-bottom: 40px; }
  .tabs .nav-tabs {
    border: none;
    position: relative;
    display: block;
    border-bottom: 1px solid #ebebeb; }
    .tabs .nav-tabs .nav-item {
      position: relative;
      display: inline-block;
      margin: 0;
      float: none; }
      @media (max-width: 639px) {
        .tabs .nav-tabs .nav-item {
          width: 100%; } }
      .tabs .nav-tabs .nav-item .nav-link {
        background: transparent;
        border: 0;
        text-transform: uppercase;
        line-height: 24px;
        font-weight: 400;
        color: #a4a4a4;
        padding: 10px 25px;
        font-size: 15px;
        font-weight: 500;
        position: relative;
        -webkit-transition: all 300ms linear;
        -moz-transition: all 300ms linear;
        -ms-transition: all 300ms linear;
        -o-transition: all 300ms linear;
        transition: all 300ms linear; }
        .tabs .nav-tabs .nav-item .nav-link:before {
          content: "";
          display: block;
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 2px;
          opacity: 0;
          border-bottom: 2px solid #80bb01;
          -webkit-transition: all 300ms linear;
          -moz-transition: all 300ms linear;
          -ms-transition: all 300ms linear;
          -o-transition: all 300ms linear;
          transition: all 300ms linear; }
        .tabs .nav-tabs .nav-item .nav-link span {
          position: relative;
          z-index: 1; }
        .tabs .nav-tabs .nav-item .nav-link:hover, .tabs .nav-tabs .nav-item .nav-link.active {
          color: #242424;
          -webkit-transition: all 300ms linear;
          -moz-transition: all 300ms linear;
          -ms-transition: all 300ms linear;
          -o-transition: all 300ms linear;
          transition: all 300ms linear; }
          .tabs .nav-tabs .nav-item .nav-link:hover:before, .tabs .nav-tabs .nav-item .nav-link.active:before {
            opacity: 1;
            -webkit-transition: all 300ms linear;
            -moz-transition: all 300ms linear;
            -ms-transition: all 300ms linear;
            -o-transition: all 300ms linear;
            transition: all 300ms linear; }

.tab-content {
  overflow: hidden;
  padding: 35px;
  background: white;
  font-size: 14px;
  background: white;
  line-height: 24px;
  text-align: left; }

.product-description p {
  font-size: 15px;
  color: #666; }
  .product-description p span {
    font-size: 14px !important;
    font-family: 'Rubik', sans-serif  !important; }

#tab-content {
  font-size: 12px; }
  #tab-content label {
    font-size: 12px; }

#product-modal .modal-content .modal-body .product-images {
  margin-left: 15px !important; }

#product-modal .modal-content .modal-body .product-images img {
  max-width: none;
  opacity: 1;
  border: transparent 3px solid;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear; }
  #product-modal .modal-content .modal-body .product-images img:hover {
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear; }

#main .images-container .js-qv-mask, #main .images-container .js-qv-mask.scroll, .quickview .images-container .js-qv-mask {
  width: 98px;
  margin: 0;
  padding: 0;
  margin-right: 10px;
  box-shadow: none;
  overflow: inherit; }

.product-cover {
  overflow: hidden;
  position: relative;
  display: block; }

.main-inner {
  background: #fff;
  display: inline-block;
  width: 100%;
  margin: 0 0 35px 0;
  padding: 32px 0;
  -webkit-box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1); }

.images-container .product-cover {
  width: 78%;
  display: inline-block;
  float: right; }
.images-container .product-images:hover .owl-nav > div {
  opacity: 1; }
.images-container .product-images .owl-item {
  padding: 0; }
.images-container .product-images .owl-nav {
  position: static;
  display: block; }
  .images-container .product-images .owl-nav > div {
    bottom: 0;
    top: 50%;
    margin: 0;
    opacity: 0;
    position: absolute; }
    .images-container .product-images .owl-nav > div:hover:before {
      color: #80bb01; }
    .images-container .product-images .owl-nav > div:before {
      font-size: 35px;
      color: #666666; }
    .images-container .product-images .owl-nav > div.owl-prev {
      left: -20px; }
      .images-container .product-images .owl-nav > div.owl-prev:before {
        content: "\34"; }
    .images-container .product-images .owl-nav > div.owl-next {
      right: -20px; }
      .images-container .product-images .owl-nav > div.owl-next:before {
        content: "\35"; }

#click-zoom {
  display: inline-block;
  position: absolute;
  bottom: 5px;
  right: 5px;
  z-index: 1;
  color: #7e7e7e;
  cursor: pointer; }
  #click-zoom:hover {
    color: #80bb01; }
  #click-zoom i {
    font-size: 45px; }

.quickview .images-container .js-qv-mask {
  width: auto; }
.quickview .images-container .product-cover {
  width: 100%;
  float: none; }

.thumb-container img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 3px;
  opacity: 0.3;
  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; }
  .thumb-container img.selected, .thumb-container img:hover {
    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; }

.modal-content .thumb-container {
  margin-bottom: 10px; }

.product-cover .layer {
  background: transparent;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear; }

.product-cover .layer .zoom-in {
  color: #80bb01;
  font-size: 4.25rem; }

.product-accessories .pos_content, .categoryproducts .pos_content {
  padding: 0; }
.product-accessories .js-product-miniature, .categoryproducts .js-product-miniature {
  border-right: 1px solid #e5e5e5;
  padding: 10px 10px 30px 10px; }

.scroll-box-arrows.scroll {
  display: none; }

.img-thumbnail {
  margin-bottom: 20px; }

#product-modal .modal-content .modal-body .product-images img {
  max-width: 90px;
  margin: 0; }

#product-modal .modal-content .modal-body .image-caption {
  width: 100%; }

#product-modal .modal-content .modal-body .mask {
  max-height: 390px; }

#product-modal .modal-content .modal-body {
  margin: 0;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }

@media (min-width: 992px) {
  #product-modal .modal-content .modal-body .product-images {
    display: inline-block; }

  .product-images > li.thumb-container {
    float: left;
    clear: both;
    display: inline-block; } }
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 700px; } }
@media (min-width: 1920px) {
  .modal-dialog {
    margin-top: 200px; } }
.quickview .social-sharing {
  margin: 0;
  text-align: left; }

.product-discounts {
  margin: 0; }

.quickview #product_comments_block_extra .comments_advices {
  display: none; }

#blockcart-modal .modal-title, #blockcart-modal button.close {
  color: white;
  font-weight: 400; }

.product-line-grid-body > .product-line-info > .label {
  float: left;
  color: #222;
  font-size: 14px;
  display: inline-block;
  width: 100%; }
  .product-line-grid-body > .product-line-info > .label:hover {
    color: #80bb01; }

.product-line-grid-body > .product-line-info > a.label {
  font-size: 16px;
  margin-bottom: 10px;
  color: #000; }

.product-line-grid-body .product-discount .regular-price {
  font-size: 14px;
  color: #a4a4a4; }

.product-line-grid-body .current-price {
  line-height: 1; }

.product-line-grid-body .current-price .price {
  font-size: 21px;
  font-weight: 400;
  color: #80bb01; }

.modal-content {
  border: none; }

.cart-grid-body a.label {
  font-size: 17px; }

.panel-product-actions {
  margin-top: 15px;
  text-align: left; }
  .panel-product-actions i {
    margin-right: 5px; }

.product-line-grid-body > .product-line-info > .label {
  float: left; }

@media (max-width: 1199px) {
  .zoomContainer {
    display: none !important; }

  .zoomWrapper {
    width: auto !important;
    height: auto !important; } }
/* end product page */
.lang-fr .js-product-miniature .product_desc .add-to-links li.cart button.ajax_add_to_cart_button, .lang-fr .js-product-miniature .product_desc .add-to-links li.cart span.ajax_add_to_cart_button {
  padding: 0 8px;
  letter-spacing: -0.05em; }
.lang-fr .product-price-and-shipping-top .discount-product, .lang-fr .product-flag .new, .lang-fr .product-flag .on-sale, .lang-fr .product-flag .pack {
  min-width: 65px; }

/* ===== end edit theme ======== */
/* end custom */



.col-xs-12.col-md-3.col-lg-3.links.footer_block:nth-child(1) {
    display: none;
}

.col-xs-12.col-md-3.col-lg-3.links.footer_block:nth-child(2) {
    display: none;
}

#index .poslistcategories {
    display: none;
}
.copyright {
    display: none;
}
