.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide {float: right;}
.slick-slide img {display: block;}
.slick-slide.slick-loading img {display: none;}
.slick-slide.dragging img {pointer-events: none;}
.slick-initialized .slick-slide {display: block;}
.slick-loading .slick-slide {visibility: hidden;}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {display: none;}


@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 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;
}

@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) 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-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@charset 'UTF-8';

.slick-prev,
.slick-next {
    z-index: 1;
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: red;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {left: 0px;}
[dir='rtl'] .slick-prev {
    right: 0px;
    left: auto;
}
.slick-prev:before {content: '←';}
[dir='rtl'] .slick-prev:before {content: '→';}

.slick-next {right: 0px;}
[dir='rtl'] .slick-next {
    right: auto;
    left: 0px;
}
.slick-next:before {content: '→';}
[dir='rtl'] .slick-next:before {content: '←';}


.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: 0px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li {
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;
    background: red;

    content: '';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}
.text-logo
{
	font-size:28px !important;
	margin-top:10px;
}



.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;
}

@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) 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-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}


.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide {float: right;}
.slick-slide img {display: block;}
.slick-slide.slick-loading img {display: none;}
.slick-slide.dragging img {pointer-events: none;}
.slick-initialized .slick-slide {display: block;}
.slick-loading .slick-slide {visibility: hidden;}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {display: none;}

.social-icon
{
	max-height:25px;
	margin-left:10px;
}

#Cart
{
	display:inline !important;
}

.home-category-wrap
{
	margin-bottom:10px;
}


.home-img-category
{
	background-size:cover;
	text-align:center;
	color:white;
	font-weight:bold;
	font-size:26px;
	min-height:150px;
	padding-top:50px;
	text-shadow: 1px 1px #000000;
	text-decoration:none !important;
	border-radius:3px;
	z-index:12
}

.home-img-link
{
	text-decoration:none !important;
	width:100%;
}

 
.close-login-icon
{
	float:right !important;
	
}



#main-login-form
{
    -webkit-box-shadow: 0 3px 10px #aaa;
    -moz-box-shadow: 0 3px 10px #aaa;
    box-shadow: 0 3px 10px #aaa;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;
	border-radius: 3px;
	line-height:1.1em;
	float: right;
    width: 100%;
	min-height:240px;
	position:absolute;      
	top: 200px;
    left: 50%;
   
    margin-left:-250px; 
	z-index:6001;
	border:4px solid #999999;
	background:#f3f3f3;
	margin-bottom:40px;
	padding: 15px 20px 10px;

	display:none;	
}

@media (max-width: 600px) 
{
	.popup 
	{
		width:90% !important;
		left:5% !important;
		margin-left:0px !important; 
	}
	#main-login-form
	{
		width:90% !important;
		left:5% !important;
		margin-left:0px !important; 
	}
	
	#main-login-form .form-field
	{
		width:40% !important;
	}
}

.no-margin
{
	margin-top:0px !important;
	margin-bottom:0px !important;
}


 .popup 
 {
	text-align:center !important;
    width:400px;
    min-height:50px;
    position:absolute;
    top:50%;
    left:50%;
    margin:20px 0 0 -200px;
    display:none;
	font-size:16px;
	position:fixed;
	border:1px solid #cccccc;
	margin-bottom:40px;
	-webkit-box-shadow: 0 3px 10px #aaa;
    -moz-box-shadow: 0 3px 10px #aaa;
    box-shadow: 0 3px 10px #aaa;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;
	border-radius: 3px;
	line-height:1.1em;
	background:#eeeeee;
	z-index:10000;
	padding:10px;
}


.margin-20
{
	margin-top:20px;
}


.cart-wrap
{
	width:100% !important;
	
	padding:8px;
	margin-top:5px;
}




form#main fieldset 
	{
		border: none;
		margin-bottom: 25px;
	
	}

	form#main fieldset:last-of-type 
	{
		margin-bottom: 0;
	}

	form#main legend 
	{
		
		font-size: 16px;
		font-weight: bold;
		padding-bottom: 10px;
		color:#333333;
	}
	
	form#main ol li 
	{
		list-style: none;
	}

@media (max-width: 767px) 
{
	form#main {
		padding:20px;
		width:100% !important;
		min-width:300px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
		background:#f8f8f8;
	}
	
	form#main input:not([type=radio]):not([type=checkbox]),
	form#main select,
	form#main textarea {
		background: #ffffff;
		border: 1px solid #eaeaea;
		outline: none;
		padding: 5px;
		clear:both !important;
		width: 100% !important;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		-khtml-border-radius: 3px;
		border-radius: 3px;
		min-height:32px;
	}
	
	form#main label {
		
		font-size:16px;
		margin-top:10px;
	}
}


@media (min-width: 768px) 
{
	form#main {
		
		padding: 20px;
		width: 90%;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
		background:#eaeaea;
	}

	



	form#main ol li 
	{
		background: #f4f4f4;
		border-color: #cccccc;
		border-style: solid;
		border-width: 1px;
		line-height: 30px;
		list-style: none;
		padding: 5px 10px;
		margin-bottom: 2px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
	}

	form#main ol ol li 
	{
		background: none;
		border: none;
		float: left;
	}

	form#main label {
		float: right;

		width: 26%;
		font-weight:400;
	}

	form#main input:not([type=radio]):not([type=checkbox]),
	form#main select,
	form#main textarea {
		background: #ffffff;
		border: none;
		font: italic 13px Georgia, "Times New Roman", Times, serif;
		outline: none;
		padding: 5px;
		width: 66%;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		-khtml-border-radius: 3px;
		border-radius: 3px;
		min-height:32px;
	}
	form#main input:not([type=submit]):focus,
	form#main textarea:focus 
	{
		background: #eaeaea;
	}

	form#main input[type=radio]
	 {
		float: left;
		margin-right: 5px;
		margin-top: 5px;
	}
}


.form-field
{
	border:1px solid #aaaaaa;
		-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	-khtml-border-radius: 2px;
	border-radius: 2px;
	height:28px;
	min-width:200px;
	font-size:14px;
}

.pull-right
{
	float:right !important;
}


.pull-left
{
	float:left !important;
}

.clear
{
	clear:both;
}

.margin-right-20
{
	margin-right:20px;
}

.cart-icon
{
	position:relative;
	top:3px;
	left:-5px;
}

.small-input
{
	max-width:160px;
	display:inline !important;
}





body, p {
  font-family: "Poppins", sans-serif; }

button, a,
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif; }


  
  
  
  
  
body {
  margin: 0px;
  padding: 0px;
  font-size: 14px;
  word-spacing: 1px;
  position: relative;
  color: #666666;
  line-height: 1.625;
  letter-spacing: .5px;
  background-color: #ffffff;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased; }

::-moz-selection {
  color: #666666;
  background: #222222; }

::selection {
  color: #666666;
  background: #222222; }

.container {
  margin: 0 auto;
  max-width: 1200px; }

a,
button {
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  color: #222222;
  display: inline-block;
   }

button {
  border: none;
  background: none; }

a:hover {
  color: #666666;
  text-decoration: none; }

button:focus {
  outline: none; }

h1, h2, h4, h5, h6 {
  font-weight: 600;
  color: #222222;
  text-transform: capitalize; }

img {
  height: auto;
  max-width: 100%; }

.image-container {
	
	height:200px !important;
  overflow: hidden;
  border-radius: 3px;
  position: relative; 
  
  }
  
  .image-container  img{
	  max-height:200px !important;
	  object-fit: contain;
  }

strong, span, small, i {
  line-height: 1;
  display: inline-block; }

strong {
  font-weight: 800; }

.form-item {
  height: auto;
  position: relative;
  margin-bottom: 30px; }
  .form-item input {
    margin: 0px;
    width: 100%;
    height: 50px;
    padding: 0px 20px;
    border-radius: 3px;
    background-color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 1px solid #f0f0f0; }
    .form-item input:focus {
      outline: none;
      -webkit-box-shadow: none;
      box-shadow: none;
      border-color: #666666; }
      .form-item input:focus + .form-item-btn {
        color: #ffffff;
        background-color: #666666; }
  .form-item .form-item-btn {
    top: 5px;
    right: 5px;
    margin: 0px;
    height: 40px;
    min-width: 40px;
    font-size: 18px;
    cursor: pointer;
    line-height: 40px;
    border-radius: 3px;
    text-align: center;
    position: absolute;
    color: #666666;
    background-color: #f7f7f7;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }

.form-textarea {
  overflow: hidden;
  position: relative;
  border-radius: 3px;
  border: 1px solid #f0f0f0; }
  .form-textarea textarea {
    margin: 0px;
    width: 100%;
    border: none;
    min-height: 180px;
    padding: 30px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0; }
    .form-textarea textarea:focus {
      outline: none; }
      .form-textarea textarea:focus + .form-item-btn {
        opacity: 0;
        visibility: hidden; }
  .form-textarea .form-item-btn {
    top: 20px;
    left: 20px;
    opacity: 1;
    padding: 10px 0px;
    position: absolute;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .form-textarea .form-item-btn .admin-img {
      width: 40px;
      float: left;
      height: 40px;
      overflow: hidden;
      margin: -8px 0px;
      margin-right: 10px;
      border-radius: 100%; }
  .form-textarea .textarea-footer {
    padding: 30px 15px; }
    .form-textarea .textarea-footer ul li {
      margin-right: 20px; }
      .form-textarea .textarea-footer ul li:last-child {
        margin-right: 0px; }
      .form-textarea .textarea-footer ul li a {
        font-size: 16px;
        color: #666666; }
        .form-textarea .textarea-footer ul li a:hover {
          color: #666666; }
      .form-textarea .textarea-footer ul li .submit-btn {
        font-size: 14px;
        margin: -15px 0px;
        padding: 15px 45px;
        text-align: center;
        border-radius: 30px;
        color: #ffffff;
        background-color: #666666; }
        .form-textarea .textarea-footer ul li .submit-btn:hover {
          color: #ffffff; }

:-moz-placeholder {
  color: #666666;
  }

::-moz-placeholder {
  color: #666666;
  }

:-ms-input-placeholder {
  color: #666666;
   }

::-webkit-input-placeholder {
  color: #666666;
  }

.custom-form-check input[type=checkbox] {
  cursor: pointer;
  margin-left: 5px;
  margin-right: 5px;
  position: relative; }
  .custom-form-check input[type=checkbox]:before {
    top: -3px;
    left: -5px;
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 3px;
    background-color: #ffffff;
    border: 1px solid #f0f0f0; }
  .custom-form-check input[type=checkbox]:after {
    left: 0;
    top: -2px;
    opacity: 0;
    font-size: 14px;
    content: '\f00c';
    font-weight: 900;
    position: absolute;
    color: #222222;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-family: 'Font Awesome 5 Free'; }
  .custom-form-check input[type=checkbox]:focus:after {
    opacity: 1; }
  .custom-form-check input[type=checkbox] label {
    margin: 0px; }


select:focus {
  outline: none; }


.ul-li ul,
.ul-li-right ul,
.ul-li-center ul {
  margin: 0px;
  padding: 0px;
  display: table; }
  .ul-li ul li,
  .ul-li-right ul li,
  .ul-li-center ul li {
    float: left;
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: inline-block; }

.ul-li-block ul {
  margin: 0px;
  width: 100%;
  padding: 0px;
  display: table; }
  .ul-li-block ul li {
    width: 100%;
    margin: 0px;
    padding: 0px;
    display: block;
    list-style: none; }

.ul-li-right ul {
  float: left; }

.ul-li-center ul {
  display: table;
  margin: 0 auto; }


.post-meta ul li {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  position: relative;
  margin-right: 15px;
  padding-right: 15px;
  text-transform: uppercase; }
  .post-meta ul li:after {
    top: 50%;
    right: 1px;
    width: 2px;
    content: '';
    height: 20px;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #f0f0f0; }
  .post-meta ul li:last-child {
    margin-right: 0px;
    padding-right: 0px; }
    .post-meta ul li:last-child:after {
      display: none; }
  .post-meta ul li a {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    text-transform: uppercase; }
    .post-meta ul li a:hover {
      color: #666666; }
  .post-meta ul li .admin .admin-img {
    width: 30px;
    height: 30px;
    overflow: hidden;
    margin: -3px 5px;
    text-align: center;
    border-radius: 100%; }


.post-labels {
  z-index: 1; }
  .post-labels ul {
    margin: 0px;
    padding: 0px; }
    .post-labels ul li {
      display: table;
      font-size: 14px;
      font-weight: 500;
      list-style: none;
      padding: 3px 8px;
      position: relative;
      border-radius: 3px;
      text-align: center;
      margin-bottom: 12px;
      color: #ffffff;
      background-color: blue;
      text-transform: uppercase;
      border-bottom-right-radius: 0px; }
      .post-labels ul li:after {
        right: 0;
        width: 0px;
        height: 0px;
        content: '';
        bottom: -8px;
        position: absolute;
        border-top: 8px solid transparent;
        border-left: 8px solid transparent;
        border-bottom: 8px solid transparent; }
    .post-labels ul .bg-primary:after {
      border-right: 8px solid #111e6c; }
    .post-labels ul .bg-success:after {
      border-right: 8px solid #111e6c; }
    .post-labels ul .bg-danger:after {
      border-right: 8px solid #111e6c; }



.sec-ptb-100 {
  padding: 100px 0px; }

.sec-ptb-60 {
  padding: 60px 0px; }

.mb-15 {
  margin-bottom: 15px; }

.mb-30 {
  margin-bottom: 30px; }

.mb-60 {
  margin-bottom: 60px; }


.deal-label,
.best-seller-label {
  top: 0px;
  left: 0px;
  z-index: 1;
  position: absolute; }

.best-seller-label-2 {
  top: 0;
  right: 0;
  z-index: 1;
  position: absolute; }


.quick-view {
  top: 50%;
  left: 50%;
  opacity: 0;
  display: table;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 30px;
  text-align: center;
  position: absolute;
  border-radius: 3px;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: rgba(30, 199, 166, 0.5); }
  .quick-view:hover {
    color: #ffffff;
    background-color: #666666; }


.custom-btn {
  height: 50px;
  font-weight: 600;
  overflow: hidden;
  line-height: 50px;
  padding: 0px 35px;
  border-radius: 3px;
  text-align: center;
  position: relative;
  color: #ffffff;
  text-transform: uppercase;
  background-color: #666666; }
  .custom-btn:hover {
    color: #ffffff;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3); }


.section-title {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0; }
  .section-title h2 {
    margin: 0px;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase; }



.thetop {
  top: 0;
  left: 0;
  right: 0;
  position: absolute; }

.backtotop {
  right: 15px;
  width: 40px;
  height: 60px;
  z-index: 999;
  bottom: 60px;
  display: none;
  position: fixed;
  overflow: hidden;
  border-radius: 3px;
  -webkit-box-shadow: 0px 0px 25px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 25px 1px rgba(0, 0, 0, 0.2); }
  .backtotop .scroll {
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    font-size: 24px;
    line-height: 60px;
    text-align: center;
    position: relative;
    color: #222222;
    background-color: #ffffff; }


.color-past {
  color: #666666; }

.color-gold {
  color: #c09749; }

.color-sky-blue {
  color: #02a8f3; }

.color-white {
  color: #ffffff; }

.color-pure-red {
  color: #ed2b2b; }

.color-green {
  color: #4bba5b; }

.color-default {
  color: #666666; }

.color-navy-blue {
  color: #085a9d; }

.color-yellow {
  color: #fed700; }

.color-gplus-red {
  color: #f56c57; }

.color-light-red {
  color: #ff0000; }

.color-black {
  color: #222222; }

.color-purple {
  color: #9d3bc6; }

.color-orange {
  color: #f28f00; }

.color-maroon {
  color: #bf0b26; }

.color-pure-black {
  color: #000000; }

.color-royal-blue {
  color: #666666; }

.color-yellow-deep {
  color: #edb402; }

.color-olive-green {
  color: #9cb130; }

.bg-past {
  background-color: #666666; }

.bg-gold {
  background-color: #c09749; }

.bg-gray {
  background-color: #f7f7f7; }

.bg-sky-blue {
  background-color: #02a8f3; }

.bg-white {
  background-color: #ffffff; }

.bg-pure-red {
  background-color: #ed2b2b; }

.bg-green {
  background-color: #4bba5b; }

.bg-navy-blue {
  background-color: #085a9d; }

.bg-yellow {
  background-color: #fed700; }

.bg-purple {
  background-color: #9d3bc6; }

.bg-light-red {
  background-color: #ff0000; }

.bg-maroon {
  background-color: #bf0b26; }

.bg-orange {
  background-color: #f28f00; }

.bg-black {
  background-color: #222222; }

.bg-gplus-red {
  background-color: #f56c57; }

.bg-pure-black {
  background-color: #000000; }

.bg-royal-blue {
  background-color: #666666; }

.bg-yellow-deep {
  background-color: #edb402; }

.bg-olive-green {
  background-color: #9cb130; }

.bg-gray-deep {
  background-color: #f0f0f0; }

.overlay-white {
  background-color: rgba(255, 255, 255, 0.8); }

.overlay-black {
  background-color: rgba(0, 0, 0, 0.8); }


a,
button {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.header-section .digital-header .header-top {
  padding: 10px 0px; }
  .header-section .digital-header .header-top ul li {
    font-size: 14px;
    font-weight: 400;
    margin-right: 20px;
    position: relative;
    padding-right: 20px;
    color: #ffffff;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .header-section .digital-header .header-top ul li:after {
      top: 0;
      right: 0;
      bottom: 0;
      content: '|';
      position: absolute;
      color: rgba(255, 255, 255, 0.8); }
    .header-section .digital-header .header-top ul li:last-child {
      margin-right: 0px;
      padding-right: 0px; }
      .header-section .digital-header .header-top ul li:last-child:after {
        display: none; }
    .header-section .digital-header .header-top ul li a {
      font-size: 14px;
      font-weight: 400;
      color: #ffffff;
      text-transform: capitalize; }

.header-section .digital-header .header-middle {
  padding: 20px 0px; }
  .header-section .digital-header .header-middle .main-search-container {
    padding: 8px 0px; }
    .header-section .digital-header .header-middle .main-search-container .search-form {
      position: relative;
      border-radius: 3px;
      border: 2px solid; }
      .header-section .digital-header .header-middle .main-search-container .search-form input {
        width: 100%;
        height: 45px;
        border: none;
        outline: none;
        display: block;
        padding: 0px 20px;
        border-radius: 3px; }
      .header-section .digital-header .header-middle .main-search-container .search-form .search-btn {
        top: 0px;
        left: 0px;
        bottom: 0px;
        width: 70px;
        margin: 0px;
        padding: 0px;
        font-size: 18px;
        position: absolute;
        text-align: center;
        color: #ffffff;
        background-color: #999999; }
      .header-section .digital-header .header-middle .main-search-container .search-form .categories-select {
        top: 0;
        bottom: 0;
        right: 70px;
        border: none;
        cursor: pointer;
        font-size: 14px;
        padding: 0px 30px;
        position: absolute;
        -webkit-appearance: none;
        background: #f7f7f7 url(../images/down-arrow.png) no-repeat right 15px center; }
  .header-section .digital-header .header-middle .three-btn-group {
    padding: 17px 0px; }
    .header-section .digital-header .header-middle .three-btn-group .currency-select {
      width: 30%;
      float: left; }
      .header-section .digital-header .header-middle .three-btn-group .currency-select select {
        width: 100%;
        border: none;
        cursor: pointer;
        font-size: 18px;
        padding: 0px 20px;
        -webkit-appearance: none;
        background: #ffffff url(../images/down-arrow.png) no-repeat right 0px center; }
    .header-section .digital-header .header-middle .three-btn-group .wishlist-cart-btn {
      width: 70%;
      float: right; }
      .header-section .digital-header .header-middle .three-btn-group .wishlist-cart-btn ul li {
        line-height: 0px;
        margin-right: 30px; }
        .header-section .digital-header .header-middle .three-btn-group .wishlist-cart-btn ul li:last-child {
          margin-right: 0px; }
        .header-section .digital-header .header-middle .three-btn-group .wishlist-cart-btn ul li a {
          font-size: 30px;
          position: relative;
          display: inline-block;
          color: #222222; }
          .header-section .digital-header .header-middle .three-btn-group .wishlist-cart-btn ul li a:hover {
            color: #666666; }
          .header-section .digital-header .header-middle .three-btn-group .wishlist-cart-btn ul li a .item-counter {
            top: -5px;
            right: -12px;
            height: 25px;
            font-size: 14px;
            min-width: 25px;
            padding: 0px 5px;
            line-height: 25px;
            position: absolute;
            text-align: center;
            color: #ffffff;
            border-radius: 100%; }

.header-section .digital-header .header-bottom .main-menu [class^="col-lg-"] {
  position: static; }

.header-section .digital-header .header-bottom .main-menu .main-menu-list > ul > li {
  padding: 17px 0px;
  margin-right: 30px; }
  .header-section .digital-header .header-bottom .main-menu .main-menu-list > ul > li:last-child {
    margin-right: 0px; }
  .header-section .digital-header .header-bottom .main-menu .main-menu-list > ul > li > a {
    width: 100%;
    height: 100%;
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    text-transform: uppercase; }
  .header-section .digital-header .header-bottom .main-menu .main-menu-list > ul > li:hover > a {
    color: #666666; }

.header-section .digital-header .header-bottom .main-menu .main-menu-list > ul > .active > a {
  color: #666666; }

.header-section .digital-header .header-bottom .hotline-support .icon {
  float: left;
  width: 60px;
  height: 60px;
  font-size: 48px;
  line-height: 60px;
  color: #666666;
  margin-right: 10px;
  text-align: center; }

.header-section .digital-header .header-bottom .hotline-support .hotline-content {
  display: table;
  font-size: 16px;
  padding: 3px 0px;
  color: #222222; }
  .header-section .digital-header .header-bottom .hotline-support .hotline-content strong {
    font-weight: 600; }

.header-section .digital-header .header-bottom-2 {
  padding: 15px 0px; }
  .header-section .digital-header .header-bottom-2 .main-menu .main-menu-list > ul > li {
    margin-right: 2px; }
    .header-section .digital-header .header-bottom-2 .main-menu .main-menu-list > ul > li:last-child {
      margin-right: 0px; }
    .header-section .digital-header .header-bottom-2 .main-menu .main-menu-list > ul > li > a {
      font-size: 14px;
      padding: 6px 18px;
      border-radius: 3px;
      color: rgba(255, 255, 255, 0.8); }
    .header-section .digital-header .header-bottom-2 .main-menu .main-menu-list > ul > li:hover > a {
      color: #ffffff; }
  .header-section .digital-header .header-bottom-2 .main-menu .main-menu-list > ul > .active > a {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2); }

.home-digital-2 .header-section .digital-header .header-top ul li {
  color: #222222; }
  .home-digital-2 .header-section .digital-header .header-top ul li:after {
    color: #f0f0f0; }
  .home-digital-2 .header-section .digital-header .header-top ul li a {
    color: #222222; }
  .home-digital-2 .header-section .digital-header .header-top ul li:hover {
    color: #02a8f3; }
    .home-digital-2 .header-section .digital-header .header-top ul li:hover a {
      color: #02a8f3; }

.home-digital-2 .header-section .digital-header .header-middle .main-search-container .search-form {
  border: 2px solid #02a8f3; }
  .home-digital-2 .header-section .digital-header .header-middle .main-search-container .search-form .search-btn {
    background-color: #02a8f3; }

.home-digital-2 .header-section .digital-header .header-middle .three-btn-group .wishlist-cart-btn ul li a:hover {
  color: #02a8f3; }

  
  
  .main-menu .main-menu-list .menu-item-has-children {
  position: relative; }
  .main-menu .main-menu-list .menu-item-has-children > .sub-menu {
    top: 60px;
    left: 50%;
    opacity: 0;
    z-index: 999;
    height: auto;
    min-width: 280px;
    position: absolute;
    visibility: hidden;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .main-menu .main-menu-list .menu-item-has-children > .sub-menu:before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      z-index: -1;
      position: absolute;
      background-color: #ffffff;
      -webkit-box-shadow: 0px 3px 9px 1px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 3px 9px 1px rgba(0, 0, 0, 0.1); }
    .main-menu .main-menu-list .menu-item-has-children > .sub-menu > li {
      width: 100%;
      display: block;
      padding: 0px 15px; }
      .main-menu .main-menu-list .menu-item-has-children > .sub-menu > li > a {
        width: 100%;
        height: 50px;
        display: block;
        font-size: 14px;
        line-height: 50px;
        padding: 0px 10px;
        color: #222222;
        border-bottom: 1px solid #f0f0f0; }
      .main-menu .main-menu-list .menu-item-has-children > .sub-menu > li:last-child a {
        border-bottom: none; }
      .main-menu .main-menu-list .menu-item-has-children > .sub-menu > li:hover > a {
        color: #666666; }
    .main-menu .main-menu-list .menu-item-has-children > .sub-menu > .menu-item-has-children > a {
      position: relative; }
      .main-menu .main-menu-list .menu-item-has-children > .sub-menu > .menu-item-has-children > a:after {
        top: 50%;
        right: 10px;
        font-size: 14px;
       
        font-weight: 900;
        position: absolute;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        font-family: 'Font Awesome 5 Free'; }
  .main-menu .main-menu-list .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible; }

.main-menu .main-menu-list .menu-item-has-children > .sub-menu > .menu-item-has-children > .sub-menu {
  top: 0;
  left: 150%;
  position: absolute; }
  .main-menu .main-menu-list .menu-item-has-children > .sub-menu > .menu-item-has-children > .sub-menu > li a {
    color: #222222; }
  .main-menu .main-menu-list .menu-item-has-children > .sub-menu > .menu-item-has-children > .sub-menu > li:hover > a {
    color: #666666; }

.main-menu {
  position: relative; }
  .main-menu .main-menu-list .menu-item-has-children.has-mega-menu {
    position: static; }
    .main-menu .main-menu-list .menu-item-has-children.has-mega-menu > .mega-menu {
      left: 0;
      right: 0;
      top: 60px;
      opacity: 0;
      width: 100%;
      z-index: 999;
      height: auto;
      padding: 15px;
      visibility: hidden;
      position: absolute;
      background-size: cover;
      background-repeat: no-repeat;
      -webkit-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      background-position: center center;
      -webkit-box-shadow: 0px 3px 9px 1px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 3px 9px 1px rgba(0, 0, 0, 0.1); }
      .main-menu .main-menu-list .menu-item-has-children.has-mega-menu > .mega-menu > li {
        width: 25%;
        float: left;
        margin: 0px;
        padding: 15px;
        display: inline-block; }
        .main-menu .main-menu-list .menu-item-has-children.has-mega-menu > .mega-menu > li .title-text {
          width: 100%;
          display: table;
          font-size: 18px;
          font-weight: 600;
          text-transform: uppercase; }
        .main-menu .main-menu-list .menu-item-has-children.has-mega-menu > .mega-menu > li > .menu-item-list > li {
          width: 100%;
          display: table;
          margin-bottom: 8px; }
          .main-menu .main-menu-list .menu-item-has-children.has-mega-menu > .mega-menu > li > .menu-item-list > li:last-child {
            margin-bottom: 0px; }
          .main-menu .main-menu-list .menu-item-has-children.has-mega-menu > .mega-menu > li > .menu-item-list > li > a {
            font-size: 16px;
            font-weight: 400;
            color: #666666;
            text-transform: capitalize; }
            .main-menu .main-menu-list .menu-item-has-children.has-mega-menu > .mega-menu > li > .menu-item-list > li > a:hover {
              color: #666666; }
    .main-menu .main-menu-list .menu-item-has-children.has-mega-menu:hover .mega-menu {
      opacity: 1;
      visibility: visible; }

.main-menu {
  position: relative; }
  .main-menu .main-menu-list .menu-item-has-children.has-mega-menu > .demo-list {
    left: 0;
    right: 0;
    top: 60px;
    opacity: 0;
    width: 100%;
    z-index: 999;
    height: auto;
    padding: 15px;
    visibility: hidden;
    position: absolute;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .main-menu .main-menu-list .menu-item-has-children.has-mega-menu > .demo-list:before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: -1;
      content: '';
      position: absolute;
      background-color: #ffffff;
      -webkit-box-shadow: 0px 3px 9px 1px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 3px 9px 1px rgba(0, 0, 0, 0.1); }
    .main-menu .main-menu-list .menu-item-has-children.has-mega-menu > .demo-list > li {
      z-index: 1;
      width: 20%;
      float: left;
      list-style: none;
      text-align: center;
      display: inline-block; }
      .main-menu .main-menu-list .menu-item-has-children.has-mega-menu > .demo-list > li > a {
        width: 100%;
        height: auto;
        padding: 15px;
        display: block;
        border-radius: 3px; }
        .main-menu .main-menu-list .menu-item-has-children.has-mega-menu > .demo-list > li > a .demo-img {
          width: 100%;
          height: 160px;
          display: block;
          border-radius: 3px;
          margin-bottom: 15px;
          background-color: #f7f7f7;
          border: 2px solid #f0f0f0;
          -webkit-transition: all 0.3s ease-in-out;
          -o-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out; }
        .main-menu .main-menu-list .menu-item-has-children.has-mega-menu > .demo-list > li > a .demo-title {
          font-size: 16px;
          font-weight: 600;
          color: #222222;
          text-transform: uppercase;
          -webkit-transition: all 0.3s ease-in-out;
          -o-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out; }
      .main-menu .main-menu-list .menu-item-has-children.has-mega-menu > .demo-list > li:hover > a .demo-img {
        -webkit-box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.1); }
      .main-menu .main-menu-list .menu-item-has-children.has-mega-menu > .demo-list > li:hover > a .demo-title {
        color: #666666; }
  .main-menu .main-menu-list .menu-item-has-children.has-mega-menu:hover .demo-list {
    opacity: 1;
    visibility: visible; }

.main-menu .all-departments-menu {
  width: 270px;
  height: auto;
  position: relative; }
  .main-menu .all-departments-menu .menu-btn {
    width: 100%;
    height: 60px;
    text-align: left;
    padding: 0px 30px;
    line-height: 60px;
    color: #ffffff;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px; }
    .main-menu .all-departments-menu .menu-btn i {
      margin-right: 15px; }
  .main-menu .all-departments-menu .categories-dropdown {
    left: 0;
    top: 60px;
    opacity: 0;
    margin: 0px;
    width: 270px;
    z-index: 999;
    height: auto;
    padding: 15px 0px;
    position: absolute;
    visibility: hidden;
    background-color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0px 3px 9px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 9px 1px rgba(0, 0, 0, 0.1); }
    .main-menu .all-departments-menu .categories-dropdown > li {
      width: 100%;
      display: table;
      list-style: none;
      padding: 0px 15px; }
      .main-menu .all-departments-menu .categories-dropdown > li > a {
        width: 100%;
        display: block;
        font-size: 14px;
        padding: 12px 10px;
        border-bottom: 1px solid #f0f0f0; }
     
      .main-menu .all-departments-menu .categories-dropdown > li:hover > a {
        color: #000000; }
		
		
    .main-menu .all-departments-menu .categories-dropdown > .menu-item-has-children {
      position: relative; }
      .main-menu .all-departments-menu .categories-dropdown > .menu-item-has-children > a {
        position: relative; }
        .main-menu .all-departments-menu .categories-dropdown > .menu-item-has-children > a:before {
          top: 50%;
          right: 10px;
          font-size: 14px;
          content: '';
          font-weight: 900;
          position: absolute;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          -webkit-transition: all 0.3s ease-in-out;
          -o-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out; }
  .main-menu .all-departments-menu:hover .categories-dropdown {
    opacity: 1;
    visibility: visible; }
  .main-menu .all-departments-menu .categories-dropdown > .menu-item-has-children.has-mega-menu > .mega-menu {
    top: 0;
    right: 270px;
    opacity: 0;
    z-index: 999;
    height: auto;
    padding: 15px;
    width: 1000px;
    visibility: hidden;
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-position: center center;
    -webkit-box-shadow: 0px 3px 9px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 9px 1px rgba(0, 0, 0, 0.1); }
    .main-menu .all-departments-menu .categories-dropdown > .menu-item-has-children.has-mega-menu > .mega-menu > li {
      width: 33%;
      float: left;
      margin: 0px;
      padding: 15px;
      display: inline-block; }
      .main-menu .all-departments-menu .categories-dropdown > .menu-item-has-children.has-mega-menu > .mega-menu > li .title-text {
        width: 100%;
        display: table;
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase; }
      .main-menu .all-departments-menu .categories-dropdown > .menu-item-has-children.has-mega-menu > .mega-menu > li > .mega-menu-item-list {
        margin: 0px;
        padding: 0px; }
        .main-menu .all-departments-menu .categories-dropdown > .menu-item-has-children.has-mega-menu > .mega-menu > li > .mega-menu-item-list > li {
          width: 100%;
          display: table;
          margin-bottom: 8px; }
          .main-menu .all-departments-menu .categories-dropdown > .menu-item-has-children.has-mega-menu > .mega-menu > li > .mega-menu-item-list > li:last-child {
            margin-bottom: 0px; }
          .main-menu .all-departments-menu .categories-dropdown > .menu-item-has-children.has-mega-menu > .mega-menu > li > .mega-menu-item-list > li > a {
            font-size: 16px;
            font-weight: 400;
            color: #666666;
            text-transform: capitalize; }
            .main-menu .all-departments-menu .categories-dropdown > .menu-item-has-children.has-mega-menu > .mega-menu > li > .mega-menu-item-list > li > a:hover {
              color: #666666; }
  .main-menu .all-departments-menu .categories-dropdown > .menu-item-has-children.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible; }

.cart-btn {
  position: relative; }
  .cart-btn .cart-items-container {
    top: 30px;
    right: -15px;
    opacity: 0;
    z-index: 999;
    height: auto;
    padding: 30px;
    min-width: 550px;
    padding-top: 40px;
    visibility: hidden;
    position: absolute;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .cart-btn .cart-items-container:before {
      top: 10px;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: -1;
      content: '';
      width: 100%;
      height: auto;
      position: absolute;
      background-color: #ffffff;
      -webkit-box-shadow: 0px 3px 9px 1px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 3px 9px 1px rgba(0, 0, 0, 0.1); }
  .cart-btn:hover .cart-items-container {
    opacity: 1;
    visibility: visible; }
  .cart-btn .cart-items-container.has-items .title-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 15px;
    color: #222222;
    text-transform: uppercase;
    border-bottom: 1px solid #f0f0f0; }
  .cart-btn .cart-items-container.has-items .cart-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0; }
    .cart-btn .cart-items-container.has-items .cart-item .image-container {
      float: left;
      width: 100px;
      height: auto;
      margin-right: 15px; }
    .cart-btn .cart-items-container.has-items .cart-item .item-content {
      display: table; }
      .cart-btn .cart-items-container.has-items .cart-item .item-content .item-title {
        font-size: 16px;
        font-weight: 600;
        color: #222222;
        text-transform: uppercase; }
      .cart-btn .cart-items-container.has-items .cart-item .item-content .item-price > strong {
        color: #222222; }
      .cart-btn .cart-items-container.has-items .cart-item .item-content > ul {
        width: 100%;
        margin: 0px;
        padding: 0px;
        display: table; }
        .cart-btn .cart-items-container.has-items .cart-item .item-content > ul > li {
          float: left;
          padding: 0px;
          list-style: none;
          margin-right: 15px;
          display: inline-block; }
          .cart-btn .cart-items-container.has-items .cart-item .item-content > ul > li:last-child {
            margin-right: 0px; }
          .cart-btn .cart-items-container.has-items .cart-item .item-content > ul > li .qty-text {
            font-weight: 500;
            margin-right: 5px;
            text-transform: capitalize; }
          .cart-btn .cart-items-container.has-items .cart-item .item-content > ul > li .quantity-input {
            width: 70px;
            height: 40px;
            padding: 0px 10px;
            text-align: center;
            border-radius: 30px;
            border: 1px solid #f7f7f7;
            background-color: #f7f7f7; }
            .cart-btn .cart-items-container.has-items .cart-item .item-content > ul > li .quantity-input:focus {
              outline: none; }
          .cart-btn .cart-items-container.has-items .cart-item .item-content > ul > li button {
            width: 40px;
            height: 40px;
            font-size: 14px;
            line-height: 40px;
            text-align: center;
            font-weight: normal;
            border-radius: 100%;
            color: #222222;
            background-color: #f7f7f7; }
            .cart-btn .cart-items-container.has-items .cart-item .item-content > ul > li button:hover {
              color: #ffffff;
              background-color: #666666; }
  .cart-btn .cart-items-container.has-items .footer-container .footer-left {
    width: 40%;
    float: left;
    padding: 11px 0px; }
    .cart-btn .cart-items-container.has-items .footer-container .footer-left .total-price {
      font-size: 18px;
      font-weight: 500;
      text-transform: uppercase; }
      .cart-btn .cart-items-container.has-items .footer-container .footer-left .total-price strong {
        font-weight: 600; }
  .cart-btn .cart-items-container.has-items .footer-container .footer-right {
    width: 60%;
    display: table; }
    .cart-btn .cart-items-container.has-items .footer-container .footer-right > ul {
      margin: 0px;
      padding: 0px; }
      .cart-btn .cart-items-container.has-items .footer-container .footer-right > ul > li {
        padding: 0px;
        margin-right: 5px; }
        .cart-btn .cart-items-container.has-items .footer-container .footer-right > ul > li:last-child {
          margin-right: 0px; }
        .cart-btn .cart-items-container.has-items .footer-container .footer-right > ul > li > a {
          height: 40px;
          font-size: 14px;
          line-height: 40px;
          padding: 0px 30px;
          text-align: center;
          border-radius: 3px;
          color: #222222;
          background-color: #f7f7f7; }
          .cart-btn .cart-items-container.has-items .footer-container .footer-right > ul > li > a:hover {
            color: #ffffff;
            background-color: #666666; }


.home-digital-1 .main-menu .all-departments-menu .categories-dropdown > li:hover > a {
  color: #666666; }

.home-digital-1 .main-menu .all-departments-menu .categories-dropdown > li > .add-new:hover {
  color: #ffffff;
  background-color: #666666; }

.home-digital-1 .main-menu .all-departments-menu .categories-dropdown > .menu-item-has-children.has-mega-menu > .mega-menu > li > .mega-menu-item-list > li > a:hover {
  color: #666666; }

.home-digital-1 .main-menu .main-menu-list .menu-item-has-children.has-mega-menu > .mega-menu > li > .menu-item-list > li > a:hover {
  color: #666666; }

.home-digital-1 .main-menu .main-menu-list .menu-item-has-children > .sub-menu > li:hover > a {
  color: #666666; }

.home-digital-1 .main-menu .main-menu-list .menu-item-has-children > .sub-menu > .menu-item-has-children > .sub-menu > li:hover > a {
  color: #666666; }

.home-digital-1 .main-menu .main-menu-list .menu-item-has-children.has-mega-menu > .demo-list > li:hover > a .demo-title {
  color: #666666; }

.home-digital-1 .cart-btn .cart-items-container.has-items .cart-item .item-content > ul > li button:hover {
  color: #ffffff;
  background-color: #666666; }

.home-digital-1 .cart-btn .cart-items-container.has-items .footer-container .footer-right > ul > li > a:hover {
  color: #ffffff;
  background-color: #666666; }

.header-section .digital-header .header-bottom-2 .main-menu .main-menu-list > ul > .menu-item-has-children > .sub-menu {
  top: 34px;
  padding-top: 15px;
  background-color: transparent; }
  .header-section .digital-header .header-bottom-2 .main-menu .main-menu-list > ul > .menu-item-has-children > .sub-menu:before {
    top: 15px; }

.header-section .digital-header .header-bottom-2 .main-menu .main-menu-list > ul > .menu-item-has-children > .demo-list {
  top: 34px;
  padding-top: 30px;
  background-color: transparent; }
  .header-section .digital-header .header-bottom-2 .main-menu .main-menu-list > ul > .menu-item-has-children > .demo-list:before {
    top: 15px; }

	
	
	
	.mobile-menu {
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: none;
  position: fixed;
  padding: 20px 0px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 3px 4px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 4px 1px rgba(0, 0, 0, 0.1); }
  .mobile-menu .menu-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin: 10px 0px;
    line-height: 50px;
    text-align: center;
    border-radius: 100%;
    color: #ffffff; }

.mobile-menu-wrapper {
  display: block;
  position: relative; }
  .mobile-menu-wrapper #sidebar,
  .mobile-menu-wrapper .cart-sidebar,
  .mobile-menu-wrapper .wishlist-sidebar {
    top: 0;
    bottom: 0;
    left: -310px;
    height: 100%;
    z-index: 9999;
    position: fixed;
    min-width: 300px;
    max-width: 300px;
    overflow-y: scroll;
    padding-bottom: 100px;
    background-color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .mobile-menu-wrapper #sidebar .mCustomScrollBox,
    .mobile-menu-wrapper .cart-sidebar .mCustomScrollBox,
    .mobile-menu-wrapper .wishlist-sidebar .mCustomScrollBox {
      overflow: visible !important; }
  .mobile-menu-wrapper #sidebar.active,
  .mobile-menu-wrapper .cart-sidebar.active,
  .mobile-menu-wrapper .wishlist-sidebar.active {
    left: 0px; }
  .mobile-menu-wrapper .overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: 998;
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  .mobile-menu-wrapper .overlay.active {
    opacity: 1;
    display: block; }
  .mobile-menu-wrapper #dismiss,
  .mobile-menu-wrapper .dismiss {
    top: 0px;
    right: 15px;
    width: 30px;
    height: 30px;
    z-index: 10000;
    font-size: 18px;
    cursor: pointer;
    line-height: 40px;
    border-radius: 3px;
    text-align: center;
    position: absolute;
    color: #666666;
   
   }
  .mobile-menu-wrapper #sidebar {
    -webkit-box-shadow: 3px 0 9px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 3px 0 9px 1px rgba(0, 0, 0, 0.1); }
    .mobile-menu-wrapper #sidebar .sidebar-title {
      padding: 15px 30px;
      border-bottom: 1px solid #f7f7f7; }
      .mobile-menu-wrapper #sidebar .sidebar-title h2 {
        margin: 0px;
        font-size: 18px;
        text-transform: uppercase; }
    .mobile-menu-wrapper #sidebar .brand-logo {
      padding: 50px 30px;
      padding-top: 100px; }
    .mobile-menu-wrapper #sidebar .btns-group ul li {
      position: relative;
      margin-right: 20px;
      padding-right: 20px; }
      .mobile-menu-wrapper #sidebar .btns-group ul li:after {
        top: 50%;
        width: 2px;
        right: -1px;
        content: '';
        height: 10px;
        position: absolute;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        background-color: rgba(0, 0, 0, 0.2); }
      .mobile-menu-wrapper #sidebar .btns-group ul li:last-child {
        margin-right: 0px;
        padding-right: 0px; }
        .mobile-menu-wrapper #sidebar .btns-group ul li:last-child:after {
          display: none; }
      .mobile-menu-wrapper #sidebar .btns-group ul li a {
        font-size: 24px;
        position: relative; }
        .mobile-menu-wrapper #sidebar .btns-group ul li a .item-counter {
          right: -8px;
          bottom: -2px;
          width: 20px;
          height: 20px;
          font-size: 14px;
          line-height: 20px;
          position: absolute;
          text-align: center;
          border-radius: 100%;
          color: #ffffff; }
    .mobile-menu-wrapper #sidebar .search-bar {
      padding: 0px 30px; }
    .mobile-menu-wrapper #sidebar .home-pages > ul > li > a {
      width: 100%;
      display: block;
      font-size: 14px;
      font-weight: 400;
      padding: 10px 30px;
      text-transform: capitalize; }
      .mobile-menu-wrapper #sidebar .home-pages > ul > li > a .icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
        font-weight: 400;
        line-height: 30px;
        margin-right: 10px;
        text-align: center;
        border-radius: 100%;
        color: #ffffff;
        background-color: #666666;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
      .mobile-menu-wrapper #sidebar .home-pages > ul > li > a:hover {
        color: #666666;
        background-color: #f0f0f0; }
        .mobile-menu-wrapper #sidebar .home-pages > ul > li > a:hover .icon {
          color: #ffffff; }
    .mobile-menu-wrapper #sidebar .home-pages > ul > .active > a {
      color: #666666;
      background-color: #f0f0f0; }
    .mobile-menu-wrapper #sidebar .home-pages > ul > .menu-item-has-child {
      position: relative; }
      .mobile-menu-wrapper #sidebar .home-pages > ul > .menu-item-has-child > a {
        width: 100%;
        display: block;
        font-size: 14px;
        position: relative; }
        .mobile-menu-wrapper #sidebar .home-pages > ul > .menu-item-has-child > a:after {
          top: 23px;
          right: 30px;
          font-size: 14px;
          font-weight: 900;
          
          line-height: 0px;
          position: absolute;
          color: #666666;
          font-family: "Font Awesome 5 Free"; }
      .mobile-menu-wrapper #sidebar .home-pages > ul > .menu-item-has-child .sub-menu {
        position: relative;
        background-color: #f7f7f7; }
        .mobile-menu-wrapper #sidebar .home-pages > ul > .menu-item-has-child .sub-menu:before {
          top: 0;
          bottom: 0;
          left: 45px;
          width: 1px;
          content: '';
          height: 100%;
          position: absolute;
          background-color: #f0f0f0; }
        .mobile-menu-wrapper #sidebar .home-pages > ul > .menu-item-has-child .sub-menu > li {
          position: relative; }
          .mobile-menu-wrapper #sidebar .home-pages > ul > .menu-item-has-child .sub-menu > li:before {
            top: 50%;
            left: 43px;
            width: 5px;
            height: 5px;
            content: '';
            position: absolute;
            border-radius: 100%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            background-color: #666666; }
          .mobile-menu-wrapper #sidebar .home-pages > ul > .menu-item-has-child .sub-menu > li a {
            font-size: 14px;
            font-weight: 400;
            padding: 10px 30px;
            padding-left: 70px;
            text-transform: capitalize; }
    .mobile-menu-wrapper #sidebar .login-signup {
      padding: 15px 0px;
      border-top: 1px solid #f0f0f0;
      border-bottom: 1px solid #f0f0f0; }
      .mobile-menu-wrapper #sidebar .login-signup ul li {
        position: relative;
        margin-right: 30px;
        padding-right: 30px; }
        .mobile-menu-wrapper #sidebar .login-signup ul li:before {
          top: 50%;
          right: 0;
          width: 2px;
          content: '';
          height: 10px;
          position: absolute;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          background-color: #f0f0f0; }
        .mobile-menu-wrapper #sidebar .login-signup ul li:last-child {
          margin-right: 0px;
          padding-left: 0px; }
          .mobile-menu-wrapper #sidebar .login-signup ul li:last-child:before {
            display: none; }
    .mobile-menu-wrapper #sidebar .footer-area {
      padding: 30px; }
      .mobile-menu-wrapper #sidebar .footer-area .social-links li {
        width: 30px;
        height: 30px;
        overflow: hidden;
        text-align: center;
        margin-right: 10px;
        border-radius: 100%; }
        .mobile-menu-wrapper #sidebar .footer-area .social-links li:last-child {
          margin-right: 0px; }
        .mobile-menu-wrapper #sidebar .footer-area .social-links li a {
          width: 100%;
          height: 100%;
          display: block;
          font-size: 14px;
          font-weight: 500;
          line-height: 30px;
          text-align: center;
          color: #222222;
          background-color: #f7f7f7; }
          .mobile-menu-wrapper #sidebar .footer-area .social-links li a:hover {
            color: #ffffff;
            background-color: #666666; }

#sidebar::-webkit-scrollbar {
  width: 0px; }

.auto-hide-header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  position: fixed;
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: -webkit-transform .5s;
  -o-transition: transform .5s;
  transition: transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s, -webkit-transform .5s; }

.auto-hide-header.is-hidden {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%); }


  .footer-section .footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase; }

.footer-section .default-footer .footer-top {
  padding: 30px 0px; }
  .footer-section .default-footer .footer-top .footer-menu {
    padding: 20px 0px; }
    .footer-section .default-footer .footer-top .footer-menu ul li {
      position: relative;
      margin-right: 20px;
      padding-right: 20px; }
      .footer-section .default-footer .footer-top .footer-menu ul li:after {
        top: 0px;
        right: 0px;
        bottom: 0px;
        content: '|';
        position: absolute;
        color: rgba(255, 255, 255, 0.8); }
      .footer-section .default-footer .footer-top .footer-menu ul li:last-child {
        margin-right: 0px;
        padding-right: 0px; }
        .footer-section .default-footer .footer-top .footer-menu ul li:last-child:after {
          display: none; }
      .footer-section .default-footer .footer-top .footer-menu ul li a {
        font-size: 16px;
        color: #ffffff;
        text-transform: capitalize; }
        .footer-section .default-footer .footer-top .footer-menu ul li a:hover {
          text-decoration: underline; }
  .footer-section .default-footer .footer-top .footer-social-links {
    padding: 13px 0px; }
    .footer-section .default-footer .footer-top .footer-social-links ul li {
      width: 40px;
      height: 40px;
      overflow: hidden;
      margin-right: 5px;
      text-align: center;
      border-radius: 3px; }
      .footer-section .default-footer .footer-top .footer-social-links ul li:last-child {
        margin-right: 0px; }
      .footer-section .default-footer .footer-top .footer-social-links ul li a {
        opacity: .8;
        width: 100%;
        height: 100%;
        display: block;
        font-size: 18px;
        line-height: 40px;
        text-align: center;
        color: #222222;
        background-color: #ffffff; }
        .footer-section .default-footer .footer-top .footer-social-links ul li a:hover {
          opacity: 1; }

.footer-section .default-footer .footer-middle {
  padding: 30px 0px; }
  .footer-section .default-footer .footer-middle .footer-contact {
    padding-right: 70px; }
    .footer-section .default-footer .footer-middle .footer-contact ul li {
      width: 100%;
      display: table;
      font-size: 14px;
      margin-bottom: 15px; }
      .footer-section .default-footer .footer-middle .footer-contact ul li:last-child {
        margin-bottom: 0px; }
      .footer-section .default-footer .footer-middle .footer-contact ul li .icon {
        float: left;
        font-size: 24px;
        margin-right: 15px;
        text-align: center; }
      .footer-section .default-footer .footer-middle .footer-contact ul li .contact-text {
        display: table; }
  .footer-section .default-footer .footer-middle .useful-links ul li {
    margin-bottom: 15px; }
    .footer-section .default-footer .footer-middle .useful-links ul li:last-child {
      margin-bottom: 0px; }
    .footer-section .default-footer .footer-middle .useful-links ul li a {
      font-weight: 400;
      color: #666666;
      text-transform: capitalize; }
      .footer-section .default-footer .footer-middle .useful-links ul li a:hover {
        color: #666666; }
  .footer-section .default-footer .footer-middle .footer-newsletter {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0; }
    .footer-section .default-footer .footer-middle .footer-newsletter .newsletter-form .form-item button {
      top: 0;
      left: 0;
      bottom: 0;
      font-weight: 500;
      padding: 0px 30px;
      position: absolute;
      color: #ffffff;
      text-transform: uppercase;
      border-top-right-radius: 3px;
      border-bottom-right-radius: 3px; }

.footer-section .default-footer .footer-bottom {
  padding: 30px 0px;
  border-top: 1px solid #f0f0f0; }

  
  .item-price strong {
  font-size: 24px;
  font-weight: 600; }

.product-item 
{
	min-height:400px;
  position: relative;
  border-radius: 3px;
  margin-bottom: 20px;
  background-color: #ffffff; 
  padding:10px;
}
  .product-item .post-labels {
    top: 10px;
    left: 10px;
    position: absolute; }
  .product-item .image-container {
    width: 100%;
    height: auto;
    text-align: center; }
    .product-item .image-container img {
      width: 100%;
      display: block; }
  .product-item .item-content {
    padding: 15px; }
    .product-item .item-content .item-title {
      width: 100%;
      display: block;
      font-weight: 600;
      margin-bottom: 15px;
      text-transform: uppercase; }
	  
	  
  .product-item .hover-content 
  {
    left: 0px;
    right: 0px;
    z-index: 2;
    opacity: 1;
    padding: 15px;
    visibility: visible;
    background-color: #ffffff;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}
    
    .product-item .hover-content .add-to-cart {
      width: 100%;
      display: block;
      font-size: 14px;
      font-weight: 600;
      padding: 10px 20px;
      text-align: center;
      border-radius: 3px;
      color: #666666;
      margin-bottom: 15px;
      text-transform: uppercase;
      border: 1px solid #f0f0f0; }
      .product-item .hover-content .add-to-cart:hover {
        color: #ffffff;
        border-color: #666666;
        background-color: #666666; }
    .product-item .hover-content .product-meta ul li {
      margin-right: 30px; }
      .product-item .hover-content .product-meta ul li:last-child {
        margin-right: 0px; }
      .product-item .hover-content .product-meta ul li a {
        font-size: 18px;
        font-weight: 400; }
        .product-item .hover-content .product-meta ul li a:hover {
          color: #666666; }
  .product-item {
    z-index: 2;
    -webkit-box-shadow: 0 2px 8px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px 1px rgba(0, 0, 0, 0.1); }
    .product-item:hover .image-container .quick-view {
      opacity: 1; }
    .product-item:hover .hover-content {
      opacity: 1;
      bottom: -148px;
      visibility: visible;
     }

.product-list-item {
  position: relative;
  margin-bottom: 30px; }
  .product-list-item .post-labels {
    top: 10px;
    left: 10px;
    position: absolute; }
  .product-list-item .image-container {
    width: 30%;
    height: auto;
    text-align: center; }
  .product-list-item .item-content {
    width: 70%;
    display: table;
    padding: 15px 30px; }
    .product-list-item .item-content .item-title {
      font-size: 18px;
      margin-bottom: 5px;
      text-transform: uppercase; }
    .product-list-item .item-content .item-size-color ul {
      float: left;
      position: relative;
      margin-right: 30px;
      padding-right: 30px;
      display: inline-block; }
      .product-list-item .item-content .item-size-color ul:before {
        top: 50%;
        width: 2px;
        right: -1px;
        content: '';
        height: 20px;
        position: absolute;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        background-color: #222222; }
      .product-list-item .item-content .item-size-color ul:last-child {
        margin-right: 0px;
        padding-right: 0px; }
        .product-list-item .item-content .item-size-color ul:last-child:before {
          display: none; }
      .product-list-item .item-content .item-size-color ul li {
        margin-right: 10px; }
        .product-list-item .item-content .item-size-color ul li:last-child {
          margin-right: 0px; }
    .product-list-item .item-content .item-size-color .size-list li {
      height: 30px;
      min-width: 30px; }
      .product-list-item .item-content .item-size-color .size-list li a {
        width: 100%;
        height: 100%;
        display: block;
        font-size: 14px;
        font-weight: 500;
        padding: 0px 15px;
        line-height: 28px;
        text-align: center;
        border-radius: 3px;
        border: 1px solid #f0f0f0; }
        .product-list-item .item-content .item-size-color .size-list li a:hover {
          color: #ffffff;
          border-color: #666666;
          background-color: #666666; }
      .product-list-item .item-content .item-size-color .size-list li .active {
        color: #ffffff;
        border-color: #666666;
        background-color: #666666; }
    .product-list-item .item-content .item-size-color .color-list li {
      width: 30px;
      height: 30px; }
      .product-list-item .item-content .item-size-color .color-list li a {
        width: 100%;
        height: 100%;
        display: block;
        position: relative;
        border-radius: 100%;
        border: 2px solid #f0f0f0; }
        .product-list-item .item-content .item-size-color .color-list li a:before {
          top: 50%;
          left: 50%;
          opacity: 0;
          font-size: 14px;
          content: '\f00c';
          font-weight: 900;
          position: absolute;
          color: #ffffff;
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          -webkit-transition: all 0.3s ease-in-out;
          -o-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;
          font-family: 'Font Awesome 5 Free'; }
        .product-list-item .item-content .item-size-color .color-list li a:hover:before {
          opacity: 1; }
      .product-list-item .item-content .item-size-color .color-list li .active:before {
        opacity: 1; }
      .product-list-item .item-content .item-size-color .color-list li .color-1 {
        background-color: #ffffff; }
        .product-list-item .item-content .item-size-color .color-list li .color-1:before {
          color: #000000; }
      .product-list-item .item-content .item-size-color .color-list li .color-2 {
        border-color: #000000;
        background-color: #000000; }
      .product-list-item .item-content .item-size-color .color-list li .color-3 {
        border-color: #837f7b;
        background-color: #837f7b; }
      .product-list-item .item-content .item-size-color .color-list li .color-4 {
        border-color: #84664d;
        background-color: #84664d; }
    .product-list-item .item-content .item-btns-group ul li {
      height: 45px;
      min-width: 45px;
      margin-right: 15px; }
      .product-list-item .item-content .item-btns-group ul li:last-child {
        margin-right: 0px; }
      .product-list-item .item-content .item-btns-group ul li a {
        width: 100%;
        height: 100%;
        display: block;
        line-height: 43px;
        text-align: center;
        border-radius: 100%;
        border: 2px solid #f0f0f0; }
        .product-list-item .item-content .item-btns-group ul li a:hover {
          color: #ffffff;
          border-color: #666666;
          background-color: #666666; }
      .product-list-item .item-content .item-btns-group ul li .add-to-cart {
        padding: 0px 30px;
        color: #ffffff;
        border-radius: 30px;
        border-color: #666666;
        background-color: #666666; }

		.breadcrumb-section .breadcrumb-big-title {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
  .breadcrumb-section .breadcrumb-big-title .overlay-black {
    background-color: rgba(0, 0, 0, 0.5); }
  .breadcrumb-section .breadcrumb-big-title .title-text {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase; }

.breadcrumb-section .breadcrumb-list {
  padding: 30px 0px;
  background-color: #f7f7f7; }
  .breadcrumb-section .breadcrumb-list ul {
    margin: 0px;
    padding: 0px; }
    .breadcrumb-section .breadcrumb-list ul li {
      float: left;
      font-size: 18px;
      font-weight: 600;
      list-style: none;
      position: relative;
      color: #666666;
      margin-right: 30px;
      padding-right: 30px;
      display: inline-block;
      text-transform: uppercase; }
      .breadcrumb-section .breadcrumb-list ul li:after {
        top: 50%;
        right: -8px;
        content: '\f101';
        font-weight: 900;
        position: absolute;
        color: #666666;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        font-family: 'Font Awesome 5 Free'; }
      .breadcrumb-section .breadcrumb-list ul li:last-child {
        margin-right: 0px;
        padding-right: 0px; }
        .breadcrumb-section .breadcrumb-list ul li:last-child:after {
          display: none; }
      .breadcrumb-section .breadcrumb-list ul li a {
        font-size: 18px;
        font-weight: 600;
        color: #666666;
        text-transform: uppercase; }
      .breadcrumb-section .breadcrumb-list ul li:hover {
        color: #222222; }
        .breadcrumb-section .breadcrumb-list ul li:hover a {
          color: #222222; }
    .breadcrumb-section .breadcrumb-list ul li.active {
      color: #222222; }
      .breadcrumb-section .breadcrumb-list ul li.active a {
        color: #222222; }

.slider-section {
  overflow-x: hidden; }
  .slider-section .slider-item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; }
    .slider-section .slider-item:focus {
      outline: none; }
  .slider-section .slick-arrow {
    top: 50%;
    opacity: 0;
    width: 50px;
    height: 80px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transform: scale(0.8) translateY(-50%);
    -ms-transform: scale(0.8) translateY(-50%);
    transform: scale(0.8) translateY(-50%); }
    .slider-section .slick-arrow:before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      font-size: 18px;
      font-weight: 900;
      line-height: 80px;
      text-align: center;
      position: absolute;
      color: #ffffff; }
  .slider-section .slick-prev {
    left: -50px; }
    .slider-section .slick-prev:before {
      content: '<'; }
  .slider-section .slick-next {
    right: -50px; }
    .slider-section .slick-next:before {
      content: '>'; }
  .slider-section:hover .slick-arrow {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-50%);
    -ms-transform: scale(1) translateY(-50%);
    transform: scale(1) translateY(-50%); }
  .slider-section:hover .slick-prev {
    left: 0px; }
  .slider-section:hover .slick-next {
    right: 0px; }

.sidebar-section .section-title h2 {
  font-size: 18px; }

.sidebar-section .sidebar-title {
  margin-bottom: 30px; }
  .sidebar-section .sidebar-title h2 {
    margin: 0px;
    display: table;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 5px;
    text-transform: uppercase;
    border-bottom: 2px solid #666666; }

.sidebar-section .brand-list ul li,
.sidebar-section .category-list ul li,
.sidebar-section .price-range-list ul li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0; }
  .sidebar-section .brand-list ul li a,
  .sidebar-section .category-list ul li a,
  .sidebar-section .price-range-list ul li a {
    width: 100%;
    display: block;
    line-height: 1;
    font-size: 14px;
    color: #666666;
    text-transform: capitalize; }
    .sidebar-section .brand-list ul li a:hover,
    .sidebar-section .category-list ul li a:hover,
    .sidebar-section .price-range-list ul li a:hover {
      color: #666666; }

.sidebar-section .size-list ul li {
  margin-right: 10px;
  margin-bottom: 10px; }
  .sidebar-section .size-list ul li a {
    padding: 4px 16px;
    border-radius: 3px;
    color: #222222;
    border: 2px solid #f0f0f0; }
    .sidebar-section .size-list ul li a:hover {
      color: #ffffff;
      border-color: #666666;
      background-color: #666666; }

.sidebar-section .colors-list ul li {
  margin-right: 10px; }
  .sidebar-section .colors-list ul li:last-child {
    margin-right: 0px; }
  .sidebar-section .colors-list ul li a {
    width: 25px;
    height: 25px;
    position: relative;
    border-radius: 100%; }
    .sidebar-section .colors-list ul li a:before {
      top: 50%;
      left: 50%;
      opacity: 0;
      font-size: 14px;
      content: '\f00c';
      font-weight: 900;
      position: absolute;
      color: #ffffff;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      -webkit-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      font-family: 'Font Awesome 5 Free'; }
    .sidebar-section .colors-list ul li a:hover:before {
      opacity: 1; }
  .sidebar-section .colors-list ul li a.bg-gray:before {
    color: #222222; }
  .sidebar-section .colors-list ul li a.active:before {
    opacity: 1; }

.sidebar-section .sidebar-newsletter {
  padding: 30px 20px;
  border-radius: 3px;
  border: 2px solid #f0f0f0; }
  .sidebar-section .sidebar-newsletter .title {
    z-index: 1;
    padding: 30px 0px;
    position: relative; }
    .sidebar-section .sidebar-newsletter .title:before {
      left: 40px;
      top: -40px;
      z-index: -1;
      font-size: 150px;
      content: "\f129";
      position: absolute;
      color: #f0f0f0;
      font-family: "Flaticon";
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg); }
    .sidebar-section .sidebar-newsletter .title h2 {
      font-size: 24px;
      font-weight: 600;
      text-transform: uppercase; }
    .sidebar-section .sidebar-newsletter .title p {
      font-size: 14px;
      font-weight: 500; }
  .sidebar-section .sidebar-newsletter input {
    text-align: center; }
  .sidebar-section .sidebar-newsletter .submit-btn {
    width: 100%;
    height: 50px;
    display: block;
    font-size: 16px;
    font-weight: 600;
    padding: 0px 30px;
    text-align: center;
    border-radius: 3px;
    color: #ffffff;
    text-transform: uppercase; }

.sidebar-section .sidebar-testimonial .sidebar-testimonial-carousel .item .client-comment {
  z-index: 1;
  font-size: 14px;
  text-align: left;
  border-radius: 3px;
  position: relative;
  padding: 15px 20px; }
  .sidebar-section .sidebar-testimonial .sidebar-testimonial-carousel .item .client-comment:before {
    left: 35px;
    width: 0px;
    z-index: -1;
    height: 0px;
    content: '';
    bottom: -25px;
    position: absolute;
    border-top: 30px solid transparent;
    border-left: 30px solid #f28f00;
    border-right: 30px solid transparent;
    border-bottom: 30px solid transparent; }

.sidebar-section .sidebar-testimonial .sidebar-testimonial-carousel .item .client .client-image {
  float: left;
  padding: 2px;
  overflow: hidden;
  margin-right: 10px;
  border-radius: 3px;
  border: 2px solid #f0f0f0; }
  .sidebar-section .sidebar-testimonial .sidebar-testimonial-carousel .item .client .client-image .image-container {
    width: 70px;
    height: 70px; }

.sidebar-section .sidebar-testimonial .sidebar-testimonial-carousel .item .client .client-name {
  display: table;
  padding: 5px 0px; }
  .sidebar-section .sidebar-testimonial .sidebar-testimonial-carousel .item .client .client-name h3 {
    font-size: 18px;
    margin-bottom: 5px;
    text-transform: capitalize; }

.sidebar-section .popular-tags ul li {
  margin-right: 10px;
  margin-bottom: 10px; }
  .sidebar-section .popular-tags ul li a {
    font-size: 14px;
    font-weight: 500;
    padding: 5px 15px;
    text-align: center;
    border-radius: 30px;
    border: 1px solid #f0f0f0; }

.sidebar-section .recent-post ul li {
  width: 100%;
  display: table;
  margin-bottom: 30px; }
  .sidebar-section .recent-post ul li:last-child {
    margin-bottom: 0px; }
  .sidebar-section .recent-post ul li .image-container {
    float: left;
    width: 125px;
    height: auto;
    margin-right: 15px; }
  .sidebar-section .recent-post ul li .content {
    display: table; }

.sidebar-section .police-service {
  padding: 30px 15px;
  border-radius: 3px;
  border: 2px solid #f0f0f0; }
  .sidebar-section .police-service ul li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0; }
    .sidebar-section .police-service ul li:last-child {
      margin-bottom: 0px;
      padding-bottom: 0px;
      border-bottom: none; }
    .sidebar-section .police-service ul li .icon {
      float: left;
      width: 50px;
      height: 60px;
      font-size: 30px;
      line-height: 60px;
      margin-right: 20px;
      border-radius: 3px;
      text-align: center;
      position: relative;
      color: #ffffff; }
      .sidebar-section .police-service ul li .icon:before {
        top: 50%;
        width: 0px;
        height: 0px;
        content: '';
        right: -20px;
        position: absolute;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        border-top: 10px solid transparent;
        border-right: 10px solid transparent;
        border-left: 10px solid #f28f00;
        border-bottom: 10px solid transparent; }
    .sidebar-section .police-service ul li .content {
      display: table; }
      .sidebar-section .police-service ul li .content h3 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
        text-transform: uppercase; }

.sidebar-section .popular-products ul li {
  padding: 15px 0px;
  border-bottom: 1px solid #f0f0f0; }
  .sidebar-section .popular-products ul li:last-child {
    border-bottom: none; }
  .sidebar-section .popular-products ul li .product-image {
    float: left;
    width: 80px;
    height: 80px;
    overflow: hidden;
    margin-right: 15px;
    border-radius: 100%; }
  .sidebar-section .popular-products ul li .product-content {
    display: table; }
    .sidebar-section .popular-products ul li .product-content .product-title {
      width: 100%;
      display: block;
      font-size: 14px;
      margin-bottom: 10px; }
      .sidebar-section .popular-products ul li .product-content .product-title:hover {
        color: #f28f00; }
  .sidebar-section .popular-products ul li:hover .product-content .product-title {
    color: #f28f00;
    text-decoration: underline; }

.sidebar-section .sidebar-bestseller .item .item-content {
  padding: 15px; }

.sidebar-section .sidebar-bestseller .item:hover .image-container .absolute-cartview {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.sidebar-section .sidebar-bestseller .owl-theme .owl-nav {
  right: 0;
  top: -77px;
  display: table;
  position: absolute; }

.sidebar-section .sidebar-blog-section .sidebar-blog-carousel .item .blog-item .blog-image {
  overflow: hidden;
  position: relative; }
  .sidebar-section .sidebar-blog-section .sidebar-blog-carousel .item .blog-item .blog-image .comment-btn {
    top: 15px;
    right: 15px;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 3px;
    position: absolute;
    color: #ffffff; }
  .sidebar-section .sidebar-blog-section .sidebar-blog-carousel .item .blog-item .blog-image .blog-title {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px;
    position: absolute;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.8); }

.sidebar-section .sidebar-blog-section .owl-theme .owl-nav {
  top: -77px;
  right: 0px;
  position: absolute; }

  
 
.brand-logo-section .digital-brandlogo {
  padding: 30px 0px;
  background-color: #f7f7f7; }
  .brand-logo-section .digital-brandlogo .brand-logo-carousel .item a {
    width: 100%;
    height: 80px;
    display: block;
    line-height: 80px;
    text-align: center; }
  .brand-logo-section .digital-brandlogo .owl-theme .owl-nav .owl-prev,
  .brand-logo-section .digital-brandlogo .owl-theme .owl-nav .owl-next {
    top: 22px;
    position: absolute; }
    .brand-logo-section .digital-brandlogo .owl-theme .owl-nav .owl-prev:before,
    .brand-logo-section .digital-brandlogo .owl-theme .owl-nav .owl-next:before {
      background: #f0f0f0; }
    .brand-logo-section .digital-brandlogo .owl-theme .owl-nav .owl-prev:hover:before,
    .brand-logo-section .digital-brandlogo .owl-theme .owl-nav .owl-next:hover:before {
      background: #666666; }
  .brand-logo-section .digital-brandlogo .owl-theme .owl-nav .owl-prev {
    left: -40px; }
  .brand-logo-section .digital-brandlogo .owl-theme .owl-nav .owl-next {
    right: -40px; }

	.newsletter-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
  .newsletter-section .newsletter-content h2 {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase; }
  .newsletter-section .newsletter-content p {
    font-size: 16px;
    font-weight: 500; }
  .newsletter-section .newsletter-content .form-item-btn {
    font-size: 14px;
    padding: 0px 15px; }


	
	.blog-section .blog-grid-item .blog-image {
  overflow: hidden;
  border-radius: 3px;
  position: relative; }
  .blog-section .blog-grid-item .blog-image img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  .blog-section .blog-grid-item .blog-image .post-date {
    top: 15px;
    left: 15px;
    padding: 15px 10px;
    border-radius: 3px;
    position: absolute; }
    .blog-section .blog-grid-item .blog-image .post-date span {
      width: 100%;
      display: table;
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 5px;
      color: #ffffff; }
    .blog-section .blog-grid-item .blog-image .post-date strong {
      width: 100%;
      display: table;
      font-size: 14px;
      font-weight: 600;
      color: #ffffff;
      text-transform: uppercase; }
  .blog-section .blog-grid-item .blog-image .blog-category-tag {
    top: 15px;
    left: 15px;
    z-index: 1;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 3px;
    position: absolute;
    color: #ffffff; }

.blog-section .blog-grid-item .blog-content {
  padding: 15px; }
  .blog-section .blog-grid-item .blog-content .blog-tags {
    margin-bottom: 10px; }
    .blog-section .blog-grid-item .blog-content .blog-tags ul li a {
      font-size: 14px;
      font-weight: 500;
      color: #666666;
      text-transform: uppercase; }
      .blog-section .blog-grid-item .blog-content .blog-tags ul li a:hover {
        color: #666666; }
  .blog-section .blog-grid-item .blog-content .blog-title {
    width: 100%;
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px; }
    .blog-section .blog-grid-item .blog-content .blog-title:hover {
      color: #666666; }

.blog-section .blog-grid-item:hover .blog-image img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1); }

.blog-section .blog-grid-item:hover .blog-image .plus-effect {
  opacity: 1; }

.blog-section .blog-grid-item-2 .blog-image {
  padding: 5px;
  overflow: hidden;
  border-radius: 3px;
  background-color: #f7f7f7;
  border: 1px solid #f0f0f0; }
  .blog-section .blog-grid-item-2 .blog-image .image-container .post-date {
    top: 15px;
    z-index: 1;
    left: 15px;
    width: 80px;
    height: 80px;
    padding: 17px;
    position: absolute;
    color: #ffffff;
    border-radius: 100%;
    border: 5px solid #ffffff; }
    .blog-section .blog-grid-item-2 .blog-image .image-container .post-date strong {
      width: 100%;
      display: table;
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 5px; }
    .blog-section .blog-grid-item-2 .blog-image .image-container .post-date span {
      width: 100%;
      display: table;
      text-transform: uppercase; }

.blog-section .blog-grid-item-2 .blog-content {
  padding-top: 30px;
  position: relative; }
  .blog-section .blog-grid-item-2 .blog-content .tag {
    left: 50%;
    top: -23px;
    font-size: 14px;
    padding: 5px 15px;
    position: absolute;
    text-align: center;
    border-radius: 3px;
    color: #ffffff;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
  .blog-section .blog-grid-item-2 .blog-content .blog-title {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0; }

.blog-section .blog-grid-item-2:hover .blog-content .blog-title {
  color: #666666; }

.blog-section .blog-3-item-list {
  width: 100%;
  display: table; }
  .blog-section .blog-3-item-list .blog-grid-item-3 {
    float: left;
    width: 33.3339%;
    position: relative;
    display: inline-block;
    background-color: #ffffff; }
    .blog-section .blog-3-item-list .blog-grid-item-3:before {
      top: 51.35%;
      left: 46%;
      z-index: 1;
      content: '';
      width: 30px;
      height: 30px;
      position: absolute;
      background-color: #ffffff;
      -webkit-transform: rotate(45deg) translateX(-46%) translateY(-51.39%);
      -ms-transform: rotate(45deg) translateX(-46%) translateY(-51.39%);
      transform: rotate(45deg) translateX(-46%) translateY(-51.39%); }
    .blog-section .blog-3-item-list .blog-grid-item-3 .blog-image {
      width: 100%;
      height: 254px;
      overflow: hidden;
      position: relative; }
      .blog-section .blog-3-item-list .blog-grid-item-3 .blog-image:before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        content: '';
        position: absolute;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        background-color: rgba(0, 0, 0, 0.8); }
    .blog-section .blog-3-item-list .blog-grid-item-3 .blog-content {
      width: 100%;
      height: 254px;
      padding: 26px 30px; }
      .blog-section .blog-3-item-list .blog-grid-item-3 .blog-content .post-date {
        font-size: 14px;
        font-weight: 400;
        color: #666666;
        text-transform: uppercase; }
      .blog-section .blog-3-item-list .blog-grid-item-3 .blog-content .post-meta {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #f0f0f0; }
    .blog-section .blog-3-item-list .blog-grid-item-3:hover .blog-image:before {
      opacity: 1; }
    .blog-section .blog-3-item-list .blog-grid-item-3:hover .blog-content .blog-title {
      color: #666666; }

.blog-section .blog-grid-item-4 .blog-content-1 .blog-title {
  font-size: 18px;
  margin-bottom: 5px; }
  .blog-section .blog-grid-item-4 .blog-content-1 .blog-title:hover {
    color: #c09749; }

.blog-section .blog-grid-item-4 .blog-image {
  overflow: hidden;
  position: relative; }
  .blog-section .blog-grid-item-4 .blog-image img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  .blog-section .blog-grid-item-4 .blog-image .pin {
    top: 10px;
    left: 10px;
    z-index: 1;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 15px;
    position: absolute;
    color: #ffffff;
    text-transform: uppercase; }

.blog-section .blog-grid-item-4 .blog-content-2 .blog-links > ul > li {
  margin-right: 40px; }
  .blog-section .blog-grid-item-4 .blog-content-2 .blog-links > ul > li:last-child {
    margin-right: 0px; }
  .blog-section .blog-grid-item-4 .blog-content-2 .blog-links > ul > li > a {
    font-size: 14px;
    font-weight: 600; }
    .blog-section .blog-grid-item-4 .blog-content-2 .blog-links > ul > li > a:hover {
      color: #c09749; }
  .blog-section .blog-grid-item-4 .blog-content-2 .blog-links > ul > li .share-links li {
    width: 30px;
    height: 30px;
    overflow: hidden;
    margin-right: 5px;
    text-align: center;
    border-radius: 100%; }
    .blog-section .blog-grid-item-4 .blog-content-2 .blog-links > ul > li .share-links li:last-child {
      margin-right: 0px; }
    .blog-section .blog-grid-item-4 .blog-content-2 .blog-links > ul > li .share-links li a {
      width: 100%;
      height: 100%;
      display: block;
      font-size: 14px;
      font-weight: 400;
      line-height: 30px;
      text-align: center;
      color: #222222;
      background-color: #f0f0f0; }
      .blog-section .blog-grid-item-4 .blog-content-2 .blog-links > ul > li .share-links li a:hover {
        color: #ffffff;
        background-color: #c09749; }

.blog-section .blog-grid-item-4:hover .blog-image img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1); }

.blog-section .blog-grid-item-5 .blog-image {
  overflow: hidden;
  position: relative; }
  .blog-section .blog-grid-item-5 .blog-image .social-links {
    left: 50%;
    bottom: 0px;
    display: table;
    padding: 8px 16px;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8); }
    .blog-section .blog-grid-item-5 .blog-image .social-links .like-btn {
      float: left;
      font-size: 14px;
      font-weight: 400;
      margin-right: 50px;
      position: relative;
      color: #ffffff; }
      .blog-section .blog-grid-item-5 .blog-image .social-links .like-btn:hover {
        color: #085a9d; }
      .blog-section .blog-grid-item-5 .blog-image .social-links .like-btn:before {
        top: 0;
        bottom: 0;
        width: 1px;
        content: '';
        right: -25px;
        position: absolute;
        background-color: rgba(255, 255, 255, 0.8); }
    .blog-section .blog-grid-item-5 .blog-image .social-links ul li {
      margin-right: 15px; }
      .blog-section .blog-grid-item-5 .blog-image .social-links ul li:last-child {
        margin-right: 0px; }
      .blog-section .blog-grid-item-5 .blog-image .social-links ul li a {
        font-size: 14px;
        font-weight: 400;
        color: #ffffff; }
        .blog-section .blog-grid-item-5 .blog-image .social-links ul li a:hover {
          color: #085a9d; }

.blog-section .blog-grid-item-5 .blog-content .tag-date ul li {
  font-size: 14px;
  font-weight: 600;
  position: relative;
  padding-right: 15px; }
  .blog-section .blog-grid-item-5 .blog-content .tag-date ul li:after {
    top: 50%;
    right: 2px;
    content: '-';
    color: #666666;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
  .blog-section .blog-grid-item-5 .blog-content .tag-date ul li:last-child {
    padding-right: 0px; }
    .blog-section .blog-grid-item-5 .blog-content .tag-date ul li:last-child:after {
      display: none; }
  .blog-section .blog-grid-item-5 .blog-content .tag-date ul li a {
    font-size: 14px;
    font-weight: 600; }
    .blog-section .blog-grid-item-5 .blog-content .tag-date ul li a:hover {
      color: #085a9d; }

.blog-section .blog-grid-item-5 .blog-content .blog-title {
  font-size: 16px; }
  .blog-section .blog-grid-item-5 .blog-content .blog-title:hover {
    color: #085a9d; }

.blog-section .blog-grid-item-5 .blog-content .read-more {
  color: #085a9d; }
  .blog-section .blog-grid-item-5 .blog-content .read-more:hover {
    text-decoration: underline; }

.blog-section .blog-big-item .blog-title .title-text {
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase; }

.blog-section .blog-big-item .blog-title .post-meta ul li {
  color: #666666; }

.blog-section .blog-big-item .blog-content .read-more {
  padding: 15px 45px;
  text-align: center;
  color: #ffffff;
  border-radius: 30px;
  background-color: #666666; }

.blog-section .blog-details {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #f0f0f0; }
  .blog-section .blog-details .blog-title .title-text {
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase; }
  .blog-section .blog-details .blog-title .post-meta ul li {
    color: #666666; }
  .blog-section .blog-details .blockquote {
    padding: 0px 30px; }
    .blog-section .blog-details .blockquote p {
      font-size: 16px;
      font-style: italic; }
      .blog-section .blog-details .blockquote p i {
        font-size: 36px;
        color: #666666; }

.blog-section .blog-review {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #f0f0f0; }
  .blog-section .blog-review .review-item {
    margin-bottom: 30px; }
    .blog-section .blog-review .review-item:last-child {
      margin-bottom: 0px; }
    .blog-section .blog-review .review-item .reviewer-img {
      float: left;
      width: 100px;
      height: 100px;
      overflow: hidden;
      margin-right: 15px;
      text-align: center;
      position: relative;
      border-radius: 100%;
      color: #f0f0f0;
      background-color: #f7f7f7; }
      .blog-section .blog-review .review-item .reviewer-img:before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        font-size: 42px;
        content: '\f007';
        font-weight: 900;
        line-height: 100px;
        position: absolute;
        color: #ffffff;
        font-family: 'Font Awesome 5 Free'; }
    .blog-section .blog-review .review-item .review-content {
      display: table;
      padding: 23px 0px; }
      .blog-section .blog-review .review-item .review-content .post-meta {
        margin-bottom: 5px; }
        .blog-section .blog-review .review-item .review-content .post-meta ul li {
          font-size: 14px;
          font-weight: 500; }
          .blog-section .blog-review .review-item .review-content .post-meta ul li a {
            font-size: 16px;
            font-weight: 600; }


			.testimonial-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
  .testimonial-section .overlay-black {
    background-color: rgba(0, 0, 0, 0.2); }
  .testimonial-section .testimonial-carousel .item {
    padding: 0px 170px; }
    .testimonial-section .testimonial-carousel .item .testimonial-hero .image-container {
      width: 80px;
      height: 80px;
      margin: 0 auto 15px;
      border-radius: 100%;
      border: 3px solid #ffffff; }
    .testimonial-section .testimonial-carousel .item .testimonial-hero .hero-name {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 5px;
      text-transform: uppercase; }
    .testimonial-section .testimonial-carousel .item .testimonial-hero .hero-position {
      font-size: 16px;
      font-weight: 500;
      text-transform: capitalize; }
    .testimonial-section .testimonial-carousel .item .testimonial-content p {
      font-size: 16px;
      font-weight: 500;
      font-style: italic; }
      .testimonial-section .testimonial-carousel .item .testimonial-content p sup,
      .testimonial-section .testimonial-carousel .item .testimonial-content p sub {
        font-size: 18px; }
    .testimonial-section .testimonial-carousel .item .testimonial-content .rating-star ul li {
      font-size: 16px;
      margin-right: 5px;
      color: #666666; }
    .testimonial-section .testimonial-carousel .item .testimonial-content .rating-star ul .rated {
      color: #f3cd1e; }
  .testimonial-section .owl-theme .owl-dots {
    margin-top: 60px !important; }
    .testimonial-section .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 0px 5px;
      -webkit-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
    .testimonial-section .owl-theme .owl-dots .owl-dot.active span {
      -webkit-transform: scale(1.5);
      -ms-transform: scale(1.5);
      transform: scale(1.5);
      background-color: #c09749;
      -webkit-box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.2);
      box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.2); }


.featured-section .featured-container .digital-featured-nav {
  width: 100%;
  display: table;
  margin-bottom: 30px;
  border-bottom: 1px solid #f0f0f0; }
  .featured-section .featured-container .digital-featured-nav li {
    z-index: 1;
    float: left;
    margin-bottom: -1px;
    display: inline-block; }
    .featured-section .featured-container .digital-featured-nav li a {
      width: 100%;
      height: 100%;
      display: block;
      font-size: 18px;
      font-weight: 600;
      padding: 15px 30px;
      color: #222222;
      text-transform: uppercase;
      border-top-left-radius: 3px;
      border-top-right-radius: 3px;
      border: 1px solid transparent; }
    .featured-section .featured-container .digital-featured-nav li:hover a {
      color: #666666; }
    .featured-section .featured-container .digital-featured-nav li a.active {
      color: #666666;
      border-color: #f0f0f0;
      border-bottom-color: #ffffff; }


		.home-digital-1 ::-moz-selection {
  color: #666666; }
.home-digital-1 ::selection {
  color: #666666; }

.home-digital-1 .form-item input:focus {
  border-color: #666666; }
  .home-digital-1 .form-item input:focus + .form-item-btn {
    background-color: #666666; }

.home-digital-1 .form-textarea {
  margin-bottom: 30px; }
  .home-digital-1 .form-textarea textarea:focus {
    border-color: #666666; }

.home-digital-1 .quick-view {
  background-color: rgba(55, 0, 255, 0.5); }
  .home-digital-1 .quick-view:hover {
    background-color: #666666; }

.home-digital-1 .post-meta ul li a:hover {
  color: #666666; }

.home-digital-1 .owl-theme .owl-nav .owl-next:hover:before,
.home-digital-1 .owl-theme .owl-nav .owl-prev:hover:before {
  background-color: #666666; }

.home-digital-1 .owl-theme .owl-dots .owl-dot.active span {
  background: #666666; }

.home-digital-1 .plus-effect:before, .home-digital-1 .plus-effect:after {
  background-color: #666666; }

.home-digital-1 .product-item .item-content .item-title:hover {
  color: #666666; }

.home-digital-1 .product-item .hover-content .add-to-cart:hover {
  border-color: #666666;
  background-color: #666666; }

.home-digital-1 .product-item .hover-content .product-meta ul li a:hover {
  color: #666666; }

.home-digital-1 .item-title:hover {
  color: #666666; }

.home-digital-1 .slider-section .slider-item .slider-content h1 {
  font-size: 60px;
  font-weight: 800;
  text-transform: uppercase; }

.home-digital-1 .slider-section .slider-item .slider-content h2 {
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase; }

.home-digital-1 .slider-section .slider-item .slider-content h3 {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize; }

.home-digital-1 .slider-section .slider-item .slider-content h4 {
  font-size: 18px;
  font-weight: 500; }
  .home-digital-1 .slider-section .slider-item .slider-content h4 strong {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase; }

.home-digital-1 .slider-section .slider-item .slider-content h5 {
  font-size: 18px;
  font-weight: 500; }

.police-section 
{
	margin-top:10px;
}
  .police-section .police-service-list {
    padding: 20px;
    border-radius: 3px;
    border: 2px solid #f0f0f0; }
    .police-section .police-service-list ul li {
      width: 25%;
      padding-right: 10px; }
      .police-section .police-service-list ul li .icon {
        float: left;
        width: 50px;
        height: 60px;
        font-size: 30px;
        line-height: 60px;
        position: relative;
        text-align: center;
        border-radius: 3px;
        margin-right: 20px;
        color: #ffffff; }
        .police-section .police-service-list ul li .icon:before {
          top: 50%;
          width: 0px;
          height: 0px;
          content: '';
          right: -20px;
          position: absolute;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          border-top: 10px solid transparent;
          border-left: 10px solid #666666;
          border-right: 10px solid transparent;
          border-bottom: 10px solid transparent; }
      .police-section .police-service-list ul li .content {
        display: table; }
        .police-section .police-service-list ul li .content h3 {
          font-size: 14px;
          font-weight: 600;
          margin-bottom: 5px;
          text-transform: uppercase; }
        .police-section .police-service-list ul li .content p {
          font-size: 14px; }

.home-digital-1 .featured-section .featured-container .digital-featured-nav li a:hover {
  color: #666666; }

.home-digital-1 .featured-section .featured-container .digital-featured-nav li a.active {
  color: #666666; }

.home-digital-1 .featured-section .promotion-banner .deal-item {
  border-color: #666666; }
  .home-digital-1 .featured-section .promotion-banner .deal-item .item-content .item-title:hover {
    color: #666666; }
  .home-digital-1 .featured-section .promotion-banner .deal-item .item-content .progress .progress-bar {
    background-color: #666666; }

.promotion-banner-section .digital-banner-content .item-details .details-bar .item-title:hover,
.promotion-banner-section .digital-banner-content .item-details-2 .details-bar .item-title:hover {
  color: #666666; }

.category-section .digital-category-post .post-item {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
  border-radius: 3px;
  margin-top: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .category-section .digital-category-post .post-item .item-img {
    width: 100%;
    height: 100%;
    display: block; }
  .category-section .digital-category-post .post-item .post-item-title {
    top: 20px;
    left: 20px;
    font-size: 16px;
    font-weight: 600;
    max-width: 136px;
    line-height: 18px;
    position: absolute;
    color: #222222;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif; }
  .category-section .digital-category-post .post-item:hover {
    -webkit-box-shadow: 0px 3px 8px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 8px 1px rgba(0, 0, 0, 0.2); }

.home-digital-1 .footer-section .default-footer .footer-middle .useful-links ul li a:hover {
  color: #666666; }


.cart-items-sidebar,
.wishlist-items-sidebar {
  display: block;
  position: relative; }
  .cart-items-sidebar #cart-sidebar,
  .cart-items-sidebar #wishlist-sidebar,
  .wishlist-items-sidebar #cart-sidebar,
  .wishlist-items-sidebar #wishlist-sidebar {
    top: 0;
    bottom: 0;
    left: -360px;
    height: 100%;
    z-index: 9999;
    position: fixed;
    min-width: 350px;
    max-width: 350px;
    overflow-y: scroll;
    padding-bottom: 100px;
    background-color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .cart-items-sidebar #cart-sidebar .mCustomScrollBox,
    .cart-items-sidebar #wishlist-sidebar .mCustomScrollBox,
    .wishlist-items-sidebar #cart-sidebar .mCustomScrollBox,
    .wishlist-items-sidebar #wishlist-sidebar .mCustomScrollBox {
      overflow: visible !important; }
  .cart-items-sidebar #cart-sidebar.active,
  .cart-items-sidebar #wishlist-sidebar.active,
  .wishlist-items-sidebar #cart-sidebar.active,
  .wishlist-items-sidebar #wishlist-sidebar.active {
    left: 0px; }
  .cart-items-sidebar .overlay,
  .wishlist-items-sidebar .overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: 998;
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  .cart-items-sidebar .overlay.active,
  .wishlist-items-sidebar .overlay.active {
    opacity: 1;
    display: block; }
  .cart-items-sidebar .dismiss,
  .wishlist-items-sidebar .dismiss {
    top: 10px;
    right: 30px;
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    line-height: normal;
    color: #ffffff; }
  .cart-items-sidebar #wishlist-sidebar,
  .wishlist-items-sidebar #wishlist-sidebar {
    -webkit-box-shadow: 3px 0 9px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 3px 0 9px 1px rgba(0, 0, 0, 0.1); }
    .cart-items-sidebar #wishlist-sidebar .sidebar-title,
    .wishlist-items-sidebar #wishlist-sidebar .sidebar-title {
      margin: 0px;
      font-size: 16px;
      text-align: left;
      font-weight: 500;
      padding: 15px 30px;
      color: #ffffff;
      text-transform: uppercase; }
    .cart-items-sidebar #wishlist-sidebar .wishlist-items-container.no-items,
    .wishlist-items-sidebar #wishlist-sidebar .wishlist-items-container.no-items {
      padding: 30px; }
      .cart-items-sidebar #wishlist-sidebar .wishlist-items-container.no-items .empty-text,
      .wishlist-items-sidebar #wishlist-sidebar .wishlist-items-container.no-items .empty-text {
        font-size: 16px;
        font-weight: 500;
        line-height: 30px;
        text-align: center;
        text-transform: uppercase; }

.cart-items-sidebar #cart-sidebar .sidebar-title {
  margin: 0px;
  font-size: 16px;
  text-align: left;
  font-weight: 500;
  padding: 15px 30px;
  color: #ffffff;
  text-transform: uppercase; }

.cart-items-sidebar #cart-sidebar .cart-items-container {
  padding: 30px; }
  .cart-items-sidebar #cart-sidebar .cart-items-container .title-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 1px solid #f0f0f0; }
  .cart-items-sidebar #cart-sidebar .cart-items-container .cart-item {
    margin-bottom: 30px; }
    .cart-items-sidebar #cart-sidebar .cart-items-container .cart-item .image-container {
      float: left;
      width: 100px;
      height: auto;
      margin-right: 15px; }
    .cart-items-sidebar #cart-sidebar .cart-items-container .cart-item .item-content {
      display: table; }
      .cart-items-sidebar #cart-sidebar .cart-items-container .cart-item .item-content .item-title {
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase; }
      .cart-items-sidebar #cart-sidebar .cart-items-container .cart-item .item-content .item-price strong {
        font-size: 18px; }
      .cart-items-sidebar #cart-sidebar .cart-items-container .cart-item .item-content > ul {
        width: 100%;
        margin: 0px;
        padding: 0px;
        display: table; }
        .cart-items-sidebar #cart-sidebar .cart-items-container .cart-item .item-content > ul > li {
          float: left;
          padding: 0px;
          list-style: none;
          margin-right: 5px;
          display: inline-block; }
          .cart-items-sidebar #cart-sidebar .cart-items-container .cart-item .item-content > ul > li:last-child {
            margin-right: 0px; }
          .cart-items-sidebar #cart-sidebar .cart-items-container .cart-item .item-content > ul > li .quantity-input {
            width: 60px;
            height: 35px;
            padding: 0px 10px;
            text-align: center;
            border-radius: 30px;
            border: 1px solid #f7f7f7;
            background-color: #f7f7f7; }
            .cart-items-sidebar #cart-sidebar .cart-items-container .cart-item .item-content > ul > li .quantity-input:focus {
              outline: none; }
          .cart-items-sidebar #cart-sidebar .cart-items-container .cart-item .item-content > ul > li button {
            width: 35px;
            height: 35px;
            font-size: 14px;
            line-height: 35px;
            text-align: center;
            font-weight: normal;
            border-radius: 100%;
            background-color: #f7f7f7; }
            .cart-items-sidebar #cart-sidebar .cart-items-container .cart-item .item-content > ul > li button:hover {
              color: #ffffff;
              background-color: #666666; }
  .cart-items-sidebar #cart-sidebar .cart-items-container .footer-container .total-price {
    font-size: 18px;
    font-weight: 500;
    padding-top: 15px;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-top: 1px solid #f0f0f0; }
    .cart-items-sidebar #cart-sidebar .cart-items-container .footer-container .total-price strong {
      font-weight: 600; }
  .cart-items-sidebar #cart-sidebar .cart-items-container .footer-container .footer-btns-group > ul > li {
    padding: 0px;
    margin-right: 5px; }
    .cart-items-sidebar #cart-sidebar .cart-items-container .footer-container .footer-btns-group > ul > li:last-child {
      margin-right: 0px; }
    .cart-items-sidebar #cart-sidebar .cart-items-container .footer-container .footer-btns-group > ul > li > a {
      height: 40px;
      font-size: 14px;
      line-height: 40px;
      padding: 0px 30px;
      text-align: center;
      border-radius: 3px;
      color: #222222;
      background-color: #f7f7f7; }
      .cart-items-sidebar #cart-sidebar .cart-items-container .footer-container .footer-btns-group > ul > li > a:hover {
        color: #ffffff;
        background-color: #666666; }

#cart-sidebar::-webkit-scrollbar {
  width: 0px; }

#wishlist-sidebar::-webkit-scrollbar {
  width: 0px; }
.product-details-section .product-details .product-details-carousel .slider-for {
  margin-bottom: 15px; }
  .product-details-section .product-details .product-details-carousel .slider-for .item {
    height: 760px;
    overflow: hidden; }
    .product-details-section .product-details .product-details-carousel .slider-for .item:focus {
      outline: none; }
    .product-details-section .product-details .product-details-carousel .slider-for .item img {
      width: 100%;
      height: 100%;
      display: block; }

.product-details-section .product-details .product-details-carousel .slider-nav .item {
  width: 140px;
  height: 180px;
  overflow: hidden;
  margin-right: 15px;
  border: 1px solid #f0f0f0; }
  .product-details-section .product-details .product-details-carousel .slider-nav .item:focus {
    outline: none; }
  .product-details-section .product-details .product-details-carousel .slider-nav .item img {
    width: 100%;
    height: 100%;
    display: block; }

.product-details-section .product-details .product-details-carousel .slider-nav .item.slick-current {
  border-color: #666666; }

.product-details-section .product-details .product-details-carousel .slick-prev,
.product-details-section .product-details .product-details-carousel .slick-next {
  bottom: 0;
  top: unset;
  left: unset;
  width: 40px;
  height: 40px;
  overflow: hidden;
  color: transparent;
  border-radius: 3px;
  background-color: transparent; }
  .product-details-section .product-details .product-details-carousel .slick-prev:before,
  .product-details-section .product-details .product-details-carousel .slick-next:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    font-size: 36px;
    font-weight: 900;
    line-height: 40px;
    text-align: center;
    position: absolute;
    color: #222222;
    font-family: 'Font Awesome 5 Free'; }

.product-details-section .product-details .product-details-carousel .slick-prev {
  right: 50px; }
  .product-details-section .product-details .product-details-carousel .slick-prev:before {
    content: '\f104'; }

.product-details-section .product-details .product-details-carousel .slick-next {
  right: 5px; }
  .product-details-section .product-details .product-details-carousel .slick-next:before {
    content: '\f105'; }

.product-details-section .product-details .product-details-content .product-code ul li {
  font-size: 18px;
  font-weight: 500;
  margin-right: 30px; }
  .product-details-section .product-details .product-details-content .product-code ul li:last-child {
    margin-right: 0px; }

.product-details-section .product-details .product-details-content .product-title .rateing-star {
  margin-bottom: 5px; }
  .product-details-section .product-details .product-details-content .product-title .rateing-star ul {
    float: left;
    margin: 0px;
    padding: 0px; }
    .product-details-section .product-details .product-details-content .product-title .rateing-star ul li {
      float: left;
      color: #f3cd1e;
      list-style: none;
      margin-right: 5px;
      display: inline-block; }

.product-details-section .product-details .product-details-content .product-title h2 {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase; }

.product-details-section .product-details .product-details-content .product-title h3 {
  font-size: 30px;
  font-weight: 800; }

.product-details-section .product-details .product-details-content .list-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase; }

.product-details-section .product-details .product-details-content .product-size ul li {
  width: auto;
  height: 40px;
  text-align: center;
  margin-right: 10px; }
  .product-details-section .product-details .product-details-content .product-size ul li:last-child {
    margin-right: 0px; }
  .product-details-section .product-details .product-details-content .product-size ul li a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 0px 15px;
    line-height: 38px;
    border-radius: 3px;
    background-color: #ffffff;
    border: 2px solid #f0f0f0; }
    .product-details-section .product-details .product-details-content .product-size ul li a:hover {
      color: #ffffff;
      border-color: #666666;
      background-color: #666666; }
  .product-details-section .product-details .product-details-content .product-size ul li .active {
    color: #ffffff;
    border-color: #666666;
    background-color: #666666; }

.product-details-section .product-details .product-details-content .product-color ul {
  padding-left: 8px; }
  .product-details-section .product-details .product-details-content .product-color ul li {
    width: 30px;
    height: 30px;
    margin-right: 10px; }
    .product-details-section .product-details .product-details-content .product-color ul li:last-child {
      margin-right: 0px; }
    .product-details-section .product-details .product-details-content .product-color ul li a {
      width: 100%;
      height: 100%;
      display: block;
      position: relative;
      border-radius: 100%;
      border: 2px solid #f0f0f0; }
      .product-details-section .product-details .product-details-content .product-color ul li a:before {
        top: 50%;
        left: 50%;
        opacity: 0;
        font-size: 14px;
        content: '\f00c';
        font-weight: 900;
        position: absolute;
        color: #ffffff;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        font-family: 'Font Awesome 5 Free'; }
      .product-details-section .product-details .product-details-content .product-color ul li a:hover:before {
        opacity: 1; }
    .product-details-section .product-details .product-details-content .product-color ul li .active:before {
      opacity: 1; }
    .product-details-section .product-details .product-details-content .product-color ul li .color-1 {
      background-color: #ffffff; }
      .product-details-section .product-details .product-details-content .product-color ul li .color-1:before {
        color: #000000; }
    .product-details-section .product-details .product-details-content .product-color ul li .color-2 {
      border-color: #000000;
      background-color: #000000; }
    .product-details-section .product-details .product-details-content .product-color ul li .color-3 {
      border-color: #837f7b;
      background-color: #837f7b; }
    .product-details-section .product-details .product-details-content .product-color ul li .color-4 {
      border-color: #84664d;
      background-color: #84664d; }

.product-details-section .product-details .product-details-content .product-quantity {
  padding: 15px 0px; }
  .product-details-section .product-details .product-details-content .product-quantity .list-title {
    float: left;
    margin-right: 15px; }
  .product-details-section .product-details .product-details-content .product-quantity form {
    width: 200px;
    height: 50px;
    margin: -15px 0px;
    display: inline-block; }
    .product-details-section .product-details .product-details-content .product-quantity form input[type=number] {
      width: 100%;
      height: 50px;
      padding: 0px 30px;
      border-radius: 30px;
      border: 2px solid #f0f0f0; }
      .product-details-section .product-details .product-details-content .product-quantity form input[type=number]:focus {
        outline: none; }

.product-details-section .product-details .product-details-content .item-btns-group ul li {
  height: 45px;
  min-width: 45px;
  margin-right: 15px; }
  .product-details-section .product-details .product-details-content .item-btns-group ul li:last-child {
    margin-right: 0px; }
  .product-details-section .product-details .product-details-content .item-btns-group ul li a {
    width: 100%;
    height: 100%;
    display: block;
    line-height: 43px;
    text-align: center;
    border-radius: 100%;
    border: 2px solid #f0f0f0; }
    .product-details-section .product-details .product-details-content .item-btns-group ul li a:hover {
      color: #ffffff;
      border-color: #666666;
      background-color: #666666; }
  .product-details-section .product-details .product-details-content .item-btns-group ul li .add-to-cart {
    padding: 0px 30px;
    color: #ffffff;
    border-radius: 30px;
    border-color: #666666;
    background-color: #666666; }

.product-details-section .product-details .product-details-content .product-share-links ul li {
  margin-right: 20px; }
  .product-details-section .product-details .product-details-content .product-share-links ul li:last-child {
    margin-right: 0px; }
  .product-details-section .product-details .product-details-content .product-share-links ul li a {
    color: #aaaaaa;
    font-size: 18px;
    font-weight: 400; }
    .product-details-section .product-details .product-details-content .product-share-links ul li a:hover {
      color: #666666; }

.product-details-section .product-details-tab .tab-menu {
  border-bottom: 2px solid #f0f0f0; }
  .product-details-section .product-details-tab .tab-menu .nav li {
    margin-right: 15px;
    padding-bottom: 10px; }
    .product-details-section .product-details-tab .tab-menu .nav li:last-child {
      margin-right: 0px; }
    .product-details-section .product-details-tab .tab-menu .nav li a {
      font-size: 18px;
      padding: 0px 15px;
      position: relative;
      color: #666666; }
      .product-details-section .product-details-tab .tab-menu .nav li a:hover {
        color: #222222; }
      .product-details-section .product-details-tab .tab-menu .nav li a:before {
        left: 0;
        right: 0;
        opacity: 0;
        width: 100%;
        height: 2px;
        content: '';
        bottom: -12px;
        position: absolute;
        -webkit-transform: scale(0.6);
        -ms-transform: scale(0.6);
        transform: scale(0.6);
        background-color: #666666;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
    .product-details-section .product-details-tab .tab-menu .nav li .active {
      color: #222222; }
      .product-details-section .product-details-tab .tab-menu .nav li .active:before {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1); }

.product-details-section .product-details-tab .tab-content .tab-pane .review-item {
  margin-bottom: 30px; }
  .product-details-section .product-details-tab .tab-content .tab-pane .review-item:last-child {
    margin-bottom: 0px; }
  .product-details-section .product-details-tab .tab-content .tab-pane .review-item .reviewer-img {
    float: left;
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin-right: 15px;
    text-align: center;
    position: relative;
    border-radius: 100%;
    color: #f0f0f0;
    background-color: #f7f7f7; }
    .product-details-section .product-details-tab .tab-content .tab-pane .review-item .reviewer-img:before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      font-size: 42px;
      content: '\f007';
      font-weight: 900;
      line-height: 100px;
      position: absolute;
      color: #ffffff;
      font-family: 'Font Awesome 5 Free'; }
  .product-details-section .product-details-tab .tab-content .tab-pane .review-item .review-content {
    display: table;
    padding: 23px 0px; }
    .product-details-section .product-details-tab .tab-content .tab-pane .review-item .review-content .post-meta {
      margin-bottom: 5px; }
      .product-details-section .product-details-tab .tab-content .tab-pane .review-item .review-content .post-meta ul li {
        font-size: 14px;
        font-weight: 500; }
        .product-details-section .product-details-tab .tab-content .tab-pane .review-item .review-content .post-meta ul li a {
          font-size: 16px;
          font-weight: 600; }

.shopping-cart-section .shopping-cart-table .table-bordered thead td,
.shopping-cart-section .shopping-cart-table .table-bordered thead th {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #222222;
  border-bottom-width: 0px;
  text-transform: uppercase; }

.shopping-cart-section .shopping-cart-table table tbody tr td {
  padding: 30px 15px; }
  .shopping-cart-section .shopping-cart-table table tbody tr td .image-container {
    width: 25%;
    margin: -15px 0px;
    margin-right: 30px; }
  .shopping-cart-section .shopping-cart-table table tbody tr td .item-title {
    width: 70%;
    display: table;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222222;
    text-transform: uppercase; }
  .shopping-cart-section .shopping-cart-table table tbody tr td ul {
    width: 70%;
    display: table; }
    .shopping-cart-section .shopping-cart-table table tbody tr td ul li {
      float: left;
      list-style: none;
      margin-right: 20px;
      display: inline-block; }
      .shopping-cart-section .shopping-cart-table table tbody tr td ul li:last-child {
        margin-right: 0px; }
      .shopping-cart-section .shopping-cart-table table tbody tr td ul li a {
        font-size: 500;
        font-size: 16px;
        color: #222222; }
        .shopping-cart-section .shopping-cart-table table tbody tr td ul li a:hover {
          color: #666666; }

.shopping-cart-section .shopping-cart-table table tbody tr .item-price,
.shopping-cart-section .shopping-cart-table table tbody tr .total-price {
  font-size: 24px;
  font-weight: 600;
  color: #222222; }

.shopping-cart-section .shopping-cart-table table tbody tr .item-quantity input {
  width: 150px;
  height: 50px;
  padding: 0px 30px;
  text-align: center;
  border-radius: 30px;
  border: 2px solid #f0f0f0; }
  .shopping-cart-section .shopping-cart-table table tbody tr .item-quantity input:focus {
    outline: none;
    border-color: #666666; }

.shopping-cart-section .shopping-cart-table .continue-btn {
  font-size: 14px;
  text-align: center;
  padding: 10px 30px;
  color: #ffffff;
  border-radius: 30px;
  border: 2px solid #666666;
  background-color: #666666; }
  .shopping-cart-section .shopping-cart-table .continue-btn:hover {
    color: #222222;
    background-color: #f7f7f7;
    border-color: #f0f0f0; }

.shopping-cart-section .shopping-cart-table .clear-btn,
.shopping-cart-section .shopping-cart-table .update-btn {
  font-size: 14px;
  text-align: center;
  padding: 10px 30px;
  border-radius: 30px;
  color: #222222;
  background-color: #f7f7f7;
  border: 2px solid #f0f0f0; }
  .shopping-cart-section .shopping-cart-table .clear-btn:hover,
  .shopping-cart-section .shopping-cart-table .update-btn:hover {
    color: #ffffff;
    border: 2px solid #666666;
    background-color: #666666; }

.shopping-cart-section .shipping-estimate {
  padding: 30px;
  border-radius: 3px;
  border: 1px solid #f0f0f0; }
  .shopping-cart-section .shipping-estimate .estimate-form-item .title-text {
    width: 100%;
    display: table;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #222222;
    text-transform: capitalize; }
  .shopping-cart-section .shipping-estimate .estimate-form-item select {
    width: 100%;
    height: 50px;
    display: block;
    padding: 0px 20px;
    border-radius: 3px;
    border: 1px solid #f0f0f0; }
  .shopping-cart-section .shipping-estimate .calculate-btn {
    font-size: 14px;
    padding: 10px 30px;
    text-align: center;
    border-radius: 30px;
    background-color: #f7f7f7;
    border: 2px solid #f0f0f0; }
    .shopping-cart-section .shipping-estimate .calculate-btn:hover {
      color: #ffffff;
      border-color: #666666;
      background-color: #666666; }

.shopping-cart-section .grand-total-price {
  padding: 30px;
  border-radius: 3px;
  border: 1px solid #f0f0f0; }
  .shopping-cart-section .grand-total-price .money-list {
    margin: 0px -30px;
    padding: 0px 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0; }
    .shopping-cart-section .grand-total-price .money-list ul li {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 5px;
      color: #222222;
      text-transform: uppercase; }
      .shopping-cart-section .grand-total-price .money-list ul li:last-child {
        margin-bottom: 0px; }
  .shopping-cart-section .grand-total-price .total-price {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase; }
    .shopping-cart-section .grand-total-price .total-price strong {
      float: right;
      font-size: 24px;
      font-weight: 600; }
  .shopping-cart-section .grand-total-price .proceed-btn {
    font-size: 14px;
    padding: 10px 30px;
    text-align: center;
    border-radius: 30px;
    color: #ffffff;
    background-color: #666666;
    border: 2px solid #666666; }
    .shopping-cart-section .grand-total-price .proceed-btn:hover {
      color: #222222;
      background-color: #f7f7f7;
      border: 2px solid #f0f0f0; }

.login-reg-section .form-title {
  margin: 0px;
  padding: 30px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid #f0f0f0; }

.login-reg-section .login-container {
  border-radius: 3px;
  border: 1px solid #f0f0f0; }
  .login-reg-section .login-container .social-accounts {
    padding: 30px;
    padding-bottom: 0px; }
    .login-reg-section .login-container .social-accounts span {
      width: 100%;
      display: block;
      margin-bottom: 15px; }
    .login-reg-section .login-container .social-accounts ul {
      width: 100%;
      margin: 0px;
      padding: 0px;
      display: table; }
      .login-reg-section .login-container .social-accounts ul li {
        float: left;
        list-style: none;
        margin-right: 30px;
        display: inline-block; }
        .login-reg-section .login-container .social-accounts ul li:last-child {
          margin-right: 0px; }
        .login-reg-section .login-container .social-accounts ul li a {
          font-size: 14px;
          font-weight: 600;
          color: #222222;
          text-transform: uppercase; }
          .login-reg-section .login-container .social-accounts ul li a i {
            font-size: 16px; }
          .login-reg-section .login-container .social-accounts ul li a:hover {
            color: #666666; }
  .login-reg-section .login-container .login-form {
    padding: 30px; }
    .login-reg-section .login-container .login-form .forgetpass-btn {
      font-weight: 500;
      color: #222222; }
    .login-reg-section .login-container .login-form .custom-btn {
      width: 100%;
      display: block;
      border-radius: 30px; }

.login-reg-section .register-container {
  border-radius: 3px;
  border: 1px solid #f0f0f0; }
  .login-reg-section .register-container .register-form {
    padding: 30px; }
    .login-reg-section .register-container .register-form .register-btn {
      width: 100%;
      height: 50px;
      display: block;
      font-weight: 600;
      line-height: 46px;
      text-align: center;
      color: #666666;
      border-radius: 30px;
      text-transform: uppercase;
      border: 2px solid #f0f0f0; }
      .login-reg-section .register-container .register-form .register-btn:hover {
        color: #ffffff;
        border-color: #666666;
        background-color: #666666;
        -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
        box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3); }

.contact-section {
  width: 100%;
  display: table; }
  .contact-section #google-map,
  .contact-section .store-image {
    width: 50%;
    height: 500px;
    border-radius: 0px; }
  .contact-section .store-info,
  .contact-section .contact-info {
    width: 50%;
    height: 500px;
    padding: 200px 30px; }
    .contact-section .store-info .title-text span,
    .contact-section .contact-info .title-text span {
      font-size: 18px;
      font-weight: 600;
      position: relative;
      padding-bottom: 15px;
      color: #222222;
      text-transform: uppercase; }
      .contact-section .store-info .title-text span:before,
      .contact-section .contact-info .title-text span:before {
        left: 0px;
        bottom: 0px;
        width: 100%;
        height: 3px;
        content: '';
        position: absolute;
        background-color: #666666; }
  .contact-section .contact-form .section-title {
    border: none; }


@media screen and (max-width: 1903px) {
 

  .main-menu .main-menu-list .menu-item-has-children > .sub-menu {
    left: -25px;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset; }
    .main-menu .main-menu-list .menu-item-has-children > .sub-menu .menu-item-has-children > .sub-menu {
      left: 280px; }
  .main-menu .all-departments-menu .categories-dropdown > .menu-item-has-children.has-mega-menu > .mega-menu {
    width: 950px; }
  .fashion2-left-body .main-menu .main-menu-list > ul > .menu-item-has-children > .sub-menu {
    left: 270px; }
  .fashion2-left-body .main-menu .main-menu-list > ul > .menu-item-has-children > .sub-menu > .menu-item-has-children > .sub-menu {
    left: 280px; }
  .fashion2-left-body .main-menu .main-menu-list > ul > .menu-item-has-children.has-mega-menu > .mega-menu,
  .fashion2-left-body .main-menu .main-menu-list > ul > .menu-item-has-children.has-mega-menu > .demo-list {
    left: 270px; }
  .jewellry-slider-section .jewellry-category-menu > ul .menu-item-has-children.has-mega-menu > .mega-menu {
    width: 950px; }
  
@media screen and (max-width: 1199px) {
  body {
    padding-top: 110px; }
  .header-section {
    display: none; }
  .mobile-menu {
    display: block; }
  .count-down ul li {
    margin-right: 5px; }
  .count-down ul li:after {
    right: -6px; }

  .promotion-banner-section .digital-banner-content {
    padding: 35px 15px; }
  .promotion-banner-section .digital-banner-content {
    width: 100%; }
  .promotion-banner-section .digital-banner-content .item-details,
  .promotion-banner-section .digital-banner-content .item-details-2 {
    display: none; }
  .trending-section .products-tab .products-tab-nav .nav li a {
    padding: 0px 10px; }
  .brand-logo-section .digital-brandlogo .owl-theme .owl-nav .owl-prev {
    left: 0; }
  .brand-logo-section .digital-brandlogo .owl-theme .owl-nav .owl-next {
    right: 0; }
  .category-section .digital-category-post .post-item {
    height: auto; }
  .footer-section .default-footer .footer-top .footer-menu ul li {
    margin-right: 15px;
    padding-right: 15px; }

  .home-digital-2 .slider-section .slider-item h1 {
    font-size: 36px; }
  .home-digital-2 .slider-section .slider-item h2 {
    font-size: 22px; }
  .home-digital-2 .slider-section .slider-item h3 {
    font-size: 18px; }
  .blog-section .blog-grid-item .blog-content {
    padding: 15px 0px; }
  .blog-section .blog-grid-item .blog-content .blog-title {
    font-size: 16px; }

  .about-section {
    padding: 30px 0px; }
  .about-section .about-image {
    float: none;
    margin: 0 auto 30px; }
  .about-section .about-content {
    padding: 0px;
    display: table;
    margin: 0 auto; }

  .sidebar-section .recent-post ul li .image-container {
    width: 100px; }
  .sidebar-section .recent-post ul li .content .item-title {
    font-size: 14px; }

  .contact-section #google-map,
  .contact-section .store-image {
    width: 100%;
    height: auto; }
  .contact-section .store-image img {
    width: 100%;
    display: block; }
  .contact-section #google-map {
    height: 400px; }
  .contact-section .store-info,
  .contact-section .contact-info {
    width: 100%;
    height: auto;
    padding: 30px;
    display: table;
    margin-bottom: 30px;
    float: none !important; }

  .product-section .product-grid-section .filter-content .filter-select {
    width: 100%; }
  .product-section .product-grid-section .filter-content .filter-nav {
    padding: 0px 15px; }

  .shopping-cart-section .shopping-cart-table .clear-btn,
  .shopping-cart-section .shopping-cart-table .update-btn {
    padding: 10px 20px; }
  .shopping-cart-section .shopping-cart-table table tbody tr td .image-container {
    margin-right: 15px; }
  .shopping-cart-section .shopping-cart-table table tbody tr td .item-title {
    font-size: 14px; }
  .shopping-cart-section .shopping-cart-table {
    overflow-x: scroll; }
    .shopping-cart-section .shopping-cart-table .table {
      width: 994px; }
  

	@media screen and (max-width: 991px) {
  .breadcrumb-section .breadcrumb-big-title .title-text strong {
    width: 100%;
    display: table; }
  .breadcrumb-section .breadcrumb-list ul li,
  .breadcrumb-section .breadcrumb-list ul li a {
    font-size: 16px; }
  .product-item .image-container img {
    width: 100%;
    display: block; }

  .home-digital-1 .slider-section .slider-item .slider-content h1 {
    font-size: 54px; }
  .home-digital-1 .slider-section .slider-item .slider-content h3 {
    font-size: 24px; }
  .police-section .police-service-list {
    padding: 15px; }
  .police-section .police-service-list ul li {
    width: 50%;
    padding: 15px; }
  .police-section .police-service-list ul li .content h3 {
    font-size: 16px; }
  .police-section .police-service-list ul li .content p {
    font-size: 14px; }
  .home-digital-1 .featured-section .promotion-banner .promotion-item {
    max-width: 370px;
    text-align: center;
    margin: 0 auto 30px; }
  .home-digital-1 .featured-section .promotion-banner .deal-item {
    max-width: 370px;
    margin: 0 auto 30px; }
  .promotion-banner-section .digital-banner-content {
    width: 100%;
    display: table;
    position: static;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset; }
  .promotion-banner-section .digital-banner-content .main-content {
    max-width: 100%; }
  .home-digital-1 .trending-section .onsale-product {
    margin-bottom: 60px; }
  .trending-section .products-tab .products-tab-nav {
    width: 100%;
    display: table; }
  .trending-section .products-tab .products-tab-nav .nav {
    width: 100%;
    display: table;
    position: static;
    margin-bottom: 60px;
    border-bottom: 1px solid #f0f0f0; }
  .trending-section .products-tab .products-tab-nav .nav li {
    z-index: 1;
    margin-bottom: -1px; }
  .footer-section .default-footer .footer-top .footer-logo {
    text-align: center; }
  .footer-section .default-footer .footer-top .footer-social-links ul {
    float: none;
    margin: 0 auto; }
  .footer-section .default-footer .footer-middle .useful-links,
  .footer-section .default-footer .footer-middle .footer-contact {
    margin-bottom: 30px; }
 
  .home-digital-2 .slider-section .slider-item {
    padding: 100px 0px; }
  .home-digital-2 .slider-section .slider-item .slider-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.6); }
  .promotion-item {
    margin-bottom: 30px; }
  .promotion-section .digital2-promotion-masonry {
    margin: 0 auto;
    max-width: 600px; }
  .electronics-device-section .electronics-featured-item {
    margin-bottom: 60px; }
  .electronics-device-section .electronics-device .electronics-device-nav {
    width: 100%;
    display: table;
    position: static;
    border-bottom: 1px solid #f0f0f0; }
  .electronics-device-section .electronics-device .electronics-device-nav li {
    float: left;
    display: inline-block; }
 
  .footer-section .default-footer .footer-middle .footer-newsletter .newsletter-content {
    margin-bottom: 15px; }
 
  
  .login-reg-section .login-container {
    margin-bottom: 60px; }

  .product-details-section .product-details .product-details-carousel {
    margin-bottom: 60px; }
  .product-details-section .product-details .product-details-carousel .slider-for .item {
    height: auto; }
  .product-details-section .product-details .product-details-carousel .slider-nav .item {
    height: auto; }
  
  .product-section .product-grid-section .filter-content .filter-select {
    width: 100%;
    margin-bottom: 15px; }
  .product-list-item .item-content .item-size-color ul {
    width: 100%;
    display: table;
    margin-right: 0px;
    padding-right: 0px;
    margin-bottom: 15px; }
    .product-list-item .item-content .item-size-color ul:last-child {
      margin-bottom: 0px; }
    .product-list-item .item-content .item-size-color ul:before {
      display: none; }
  .product-section .product-grid-section {
    margin-bottom: 60px; }
  .product-section .product-grid-section .filter-content .filter-nav {
    padding: 0px 30px; }
 
 }

@media screen and (max-width: 480px) {
  body {
    padding-top: 90px; }
  .sec-ptb-100 {
    padding: 60px 0px; }
  .section-title h2 {
    font-size: 18px; }
  
  .featured-section .featured-container .digital-featured-nav li {
    width: 100%;
    margin-bottom: 5px;
    text-align: center; }
    .featured-section .featured-container .digital-featured-nav li a {
      width: 100%;
      border: none;
      display: block;
      border-radius: 3px; }
    .featured-section .featured-container .digital-featured-nav li .active {
      background-color: #f7f7f7; }
  .promotion-banner-section .bicycle-banner .promotion-content h2 {
    font-size: 30px; }
  .product-item .item-content .item-title {
    font-size: 14px; }
  .hot-product-section .hottest-bicycles .featured-container .nav li {
    width: 100%;
    margin-bottom: 5px;
    text-align: center; }
    .hot-product-section .hottest-bicycles .featured-container .nav li a {
      width: 100%;
      border: none;
      display: block;
      border-radius: 3px; }
    .hot-product-section .hottest-bicycles .featured-container .nav li .active {
      background-color: #f7f7f7; }
  .brand-logo-section .bicycle-brandlogo ul li {
    width: 100%; }
  .footer-section .bicycle-footer .footer-middle .useful-link-list ul li {
    width: 50%;
    margin: 0px;
    padding: 0px;
    text-align: left;
    margin-bottom: 10px; }
    .footer-section .bicycle-footer .footer-middle .useful-link-list ul li:after {
      display: none; }
  .footer-section .bicycle-footer .footer-middle .useful-link-list {
    text-align: left !important; }

  .home-bicycle-2 .slider-section .slider-item .slider-content {
    text-align: center; }
  .home-bicycle-2 .slider-section .slider-item .slider-content h2 {
    font-size: 24px; }
  .home-bicycle-2 .slider-section .slider-item .slider-content h1 {
    font-size: 30px; }
  .home-bicycle-2 .slider-section .slider-item .slider-content .color-list ul {
    margin: 0 auto; }
  .promotion-section .bicycle2-promotion-masonry {
    width: 100%; }
  .promotion-section .bicycle2-promotion-masonry .grid-item .promotion-content {
    padding: 15px; }
  .promotion-section .bicycle2-promotion-masonry .promotion-big .promotion-content h3 {
    font-size: 18px; }
  .promotion-section .bicycle2-promotion-masonry .promotion-big .promotion-content h2 {
    font-size: 24px; }
  .promotion-section .bicycle2-promotion-masonry .grid-item .promotion-content h2 {
    font-size: 18px;
    margin-bottom: 0px; }
  .promotion-section .bicycle2-promotion-masonry .grid-item .promotion-content h3 {
    font-size: 14px;
    margin-bottom: 0px; }
  .promotion-section .bicycle2-promotion-masonry .grid-item .promotion-content h4 {
    font-size: 14px;
    margin-bottom: 0px; }

  .home-digital-1 .slider-section .slider-item .slider-content {
    text-align: center;
    margin-bottom: 30px; }
  .home-digital-1 .slider-section .slider-item .slider-content h1 {
    font-size: 36px; }
  .home-digital-1 .slider-section .slider-item .slider-content h3 {
    font-size: 18px; }
  .home-digital-1 .slider-section .slider-item .slider-content h4 {
    font-size: 16px; }
  .home-digital-1 .slider-section .slider-item .slider-content h4 strong {
    font-size: 18px; }
  .home-digital-1 .slider-section .slider-item .slider-content h2 {
    font-size: 24px; }
  .police-section .police-service-list ul li {
    width: 100%;
    padding: 10px; }
  .police-section .police-service-list {
    padding: 10px; }
  .home-digital-1 .promotion-section .promotion-item {
    margin-bottom: 30px; }
  .promotion-banner-section .digital-banner-content .main-content span {
    font-size: 18px; }
  .promotion-banner-section .digital-banner-content .main-content h2 {
    font-size: 24px; }
  .trending-section .products-tab .products-tab-nav .nav li {
    margin: 0px;
    width: 100%;
    margin-bottom: 5px;
    text-align: center; }
    .trending-section .products-tab .products-tab-nav .nav li a {
      width: 100%;
      border: none;
      display: block;
      border-radius: 3px; }
    .trending-section .products-tab .products-tab-nav .nav li .active {
      background-color: #f7f7f7; }
  .home-digital-1 .promotion-section.sec-ptb-60 {
    padding: 0px; }
  .category-section .digital-category-post .post-item {
    max-width: 270px;
    margin: 0 auto 30px; }
  .footer-section .default-footer .footer-middle .footer-newsletter .newsletter-content {
    margin-bottom: 15px; }
 


  .breadcrumb-section .breadcrumb-big-title .title-text {
    margin: 0px;
    font-size: 24px; }
  .breadcrumb-section .breadcrumb-list ul {
    display: table;
    margin: 0 auto; }
  .error-section .error-content .icon {
    font-size: 150px; }
  .error-section .error-content h2 {
    font-size: 24px; }

  .about-section .about-image,
  .about-section .about-content {
    margin: 0px;
    width: 100%;
    padding: 15px; }
  .about-section .about-content h2 {
    font-size: 24px;
    margin-bottom: 15px; }

  .form-textarea .textarea-footer ul {
    width: 100%;
    display: table;
    float: none !important; }
  .form-textarea .textarea-footer ul li .submit-btn {
    padding: 10px 30px; }

  .contact-section .store-info .info-item,
  .contact-section .contact-info .info-item {
    margin-bottom: 30px; }

  .product-details-section .product-details-tab .tab-menu .nav li {
    width: 100%;
    display: block;
    margin-right: 0px;
    text-align: center;
    margin-bottom: 10px; }

  .product-list-item .image-container {
    width: 100%;
    margin-bottom: 30px;
    float: none !important; }
    .product-list-item .image-container img {
      width: 100%;
      display: block; }
  .product-list-item .item-content {
    width: 100%;
    padding: 0px;
    display: table;
    margin-bottom: 60px; }

  .shopping-cart-section .shopping-cart-table .clear-btn,
  .shopping-cart-section .shopping-cart-table .update-btn,
  .shopping-cart-section .shopping-cart-table .continue-btn {
    width: 100%;
    display: table;
    margin: 0 auto 15px; }
  .shopping-cart-section .shipping-estimate .section-title h2 {
    font-size: 16px;
    margin-bottom: 15px; }

 
 
 @media screen and (max-width: 320px) {
  .count-down ul li {
    margin-right: 5px; }
  .sec-ptb-60,
  .sec-ptb-100 {
    padding: 40px 0px; }
  

  .promotion-banner-section .digital-banner-content .main-content h2 {
    font-size: 18px; }
 

 .product-details-section .product-details .product-details-content .product-title h2 {
    font-size: 18px; }
  .product-details-section .product-details .product-details-content .product-title h3 {
    font-size: 24px; }
  .product-details-section .product-details .product-details-content .item-btns-group ul li .add-to-cart {
    padding: 0px 20px; }
  .product-details-section .product-details .product-details-content .item-btns-group ul li {
    margin-right: 5px; }

	
  .product-list-item .item-content .item-title {
    font-size: 16px; }
  .product-list-item .item-content .item-btns-group ul li {
    margin-right: 5px; }
  .product-list-item .item-content .item-btns-group ul li .add-to-cart {
    padding: 0px 15px;
    font-size: 14px; }
  .shopping-cart-section .grand-total-price .proceed-btn {
    padding: 10px 20px; }

 
 
.stext
{
	font-size:14px !important;
	font-style:italic !important;
}	

#Cart
{
	letter-spacing:20px !important;
}


.slick-prev,
.slick-next {
    z-index: 1;
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: red;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {left: 0px;}
[dir='rtl'] .slick-prev {
    right: 0px;
    left: auto;
}
.slick-prev:before {content: '←';}
[dir='rtl'] .slick-prev:before {content: '→';}

.slick-next {right: 0px;}
[dir='rtl'] .slick-next {
    right: auto;
    left: 0px;
}
.slick-next:before {content: '→';}
[dir='rtl'] .slick-next:before {content: '←';}


.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: 0px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li {
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;
    background: red;

    content: '';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}
.text-logo
{
	font-size:28px !important;
	margin-top:10px;
}


.uppercase
{
	text-transform:uppercase !important;
}

.main-container *
{
	text-align:right;
}

 