@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
@font-face {

  font-family: 'Mitr';
  src: url('../fonts/Mitr/Mitr-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;

}

body,
p,
div,
li,
a {
  font-family: Mitr !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Mitr !important;
}

.product-removal .remove-product {
  height: 30px;
}



.category-v4.feature-product-v4 .xs-product-wraper {
  /* background: #204397!important; */
  background: #0f233c !important;
}

.feature-product-v4 .xs-product-wraper .shop-product-image-area h5 {
  color: #fff !important;
}

.category-v4.feature-product-v4 .xs-product-wraper-old {
  background: #fff !important;
}

.feature-product-v4 .xs-product-wraper-old .shop-product-image-area h5 {
  /* color: #fff!important; */
}


.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}

.label-primary {
  background-color: #337ab7;
}

.label-success {
  background-color: #5cb85c;
}

.label-info {
  background-color: #5bc0de;
}

.label-warning {
  background-color: #f0ad4e;
}

.label-danger {
  background-color: #d9534f;
}

.label-default {
  background-color: #777;
}

.borderless td,
.borderless th {
  border: none !important;
}

.sidebar-single {
  margin-bottom: 30px;
}

.sidebar-single .sidebar-title {
  margin-bottom: 5px;
}

.sidebar-single .sidebar-title h3 {
  color: #333c4a;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  margin-top: -3px;
  text-transform: uppercase;
}

.price-container li {
  padding: 15px 0 12px;
  border-bottom: 1px solid #ededed;
}

.price-container li a,
.price-container li a {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 15px;
  color: #333c4a;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  text-transform: capitalize;
}

.price-container li a:before {
  content: "";
  display: inline-block;
  height: 17px;
  width: 17px;
  border-radius: 3px;
  border: 1px solid #ebebeb;
  margin-right: 10px;
  vertical-align: middle;
}

.price-container li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-single ul.price-container li.active a:before {
  background: #62d2a2;
}

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

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

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

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {

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

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

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

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

@keyframes bounce {

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

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

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

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

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

@-webkit-keyframes flash {

  from,
  50%,
  to {
    opacity: 1;
  }

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

@keyframes flash {

  from,
  50%,
  to {
    opacity: 1;
  }

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

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

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

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

  50% {
    -webkit-transform: scale3d(1.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: none;
    transform: none;
  }

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes jello {

  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }

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

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

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

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

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.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: none;
    transform: none;
  }

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

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

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

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

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.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-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInLeft {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInRight {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInUp {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

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

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

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

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

@keyframes bounceInUp {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

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

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

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

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

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

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

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

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-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: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

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

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

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

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

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

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

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

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

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

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

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

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

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

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

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

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

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

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

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

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
    visibility: visible;
  }

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

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 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;
}

/*!
 * Bootstrap v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
::after,
::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

@-ms-viewport {
  width: device-width;
}

article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: .5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[data-original-title],
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

code,
kbd,
pre,
samp {
  /* font-family: monospace, monospace;
  font-size: 1em; */
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: .75rem;
  padding-bottom: .75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: .5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=datetime-local],
input[type=month],
input[type=time] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: .5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

.h1,
h1 {
  font-size: 2.5rem;
}

.h2,
h2 {
  font-size: 2rem;
}

.h3,
h3 {
  font-size: 1.75rem;
}

.h4,
h4 {
  font-size: 1.5rem;
}

.h5,
h5 {
  font-size: 1.25rem;
}

.h6,
h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.small,
small {
  font-size: 80%;
  font-weight: 400;
}

.mark,
mark {
  padding: .2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: .5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "\2014   \A0";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: .25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: .25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: .5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code,
kbd,
pre,
samp {
  /* font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; */
}

code {
  /* font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word; */
}

a>code {
  color: inherit;
}

kbd {
  /* padding: .2rem .4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: .2rem; */
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

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

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

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

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.333333%;
  }

  .offset-sm-2 {
    margin-left: 16.666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.333333%;
  }

  .offset-sm-5 {
    margin-left: 41.666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.333333%;
  }

  .offset-sm-8 {
    margin-left: 66.666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.333333%;
  }

  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.333333%;
  }

  .offset-md-2 {
    margin-left: 16.666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.333333%;
  }

  .offset-md-5 {
    margin-left: 41.666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.333333%;
  }

  .offset-md-8 {
    margin-left: 66.666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.333333%;
  }

  .offset-md-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.333333%;
  }

  .offset-lg-2 {
    margin-left: 16.666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.333333%;
  }

  .offset-lg-5 {
    margin-left: 41.666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.333333%;
  }

  .offset-lg-8 {
    margin-left: 66.666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.333333%;
  }

  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 1400px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.333333%;
  }

  .offset-xl-2 {
    margin-left: 16.666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.333333%;
  }

  .offset-xl-5 {
    margin-left: 41.666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.333333%;
  }

  .offset-xl-8 {
    margin-left: 66.666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.333333%;
  }

  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}

.table td,
.table th {
  padding: .75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody+tbody {
  border-top: 2px solid #dee2e6;
}

.table .table {
  background-color: #fff;
}

.table-sm td,
.table-sm th {
  padding: .3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered td,
.table-bordered th {
  border: 1px solid #dee2e6;
}

.table-bordered thead td,
.table-bordered thead th {
  border-bottom-width: 2px;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary>td,
.table-primary>th {
  background-color: #b8daff;
}

.table-hover .table-primary:hover {
  background-color: #9fcdff;
}

.table-hover .table-primary:hover>td,
.table-hover .table-primary:hover>th {
  background-color: #9fcdff;
}

.table-secondary,
.table-secondary>td,
.table-secondary>th {
  background-color: #d6d8db;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}

.table-hover .table-secondary:hover>td,
.table-hover .table-secondary:hover>th {
  background-color: #c8cbcf;
}

.table-success,
.table-success>td,
.table-success>th {
  background-color: #c3e6cb;
}

.table-hover .table-success:hover {
  background-color: #b1dfbb;
}

.table-hover .table-success:hover>td,
.table-hover .table-success:hover>th {
  background-color: #b1dfbb;
}

.table-info,
.table-info>td,
.table-info>th {
  background-color: #bee5eb;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}

.table-hover .table-info:hover>td,
.table-hover .table-info:hover>th {
  background-color: #abdde5;
}

.table-warning,
.table-warning>td,
.table-warning>th {
  background-color: #ffeeba;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

.table-hover .table-warning:hover>td,
.table-hover .table-warning:hover>th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger>td,
.table-danger>th {
  background-color: #f5c6cb;
}

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}

.table-hover .table-danger:hover>td,
.table-hover .table-danger:hover>th {
  background-color: #f1b0b7;
}

.table-light,
.table-light>td,
.table-light>th {
  background-color: #fdfdfe;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}

.table-hover .table-light:hover>td,
.table-hover .table-light:hover>th {
  background-color: #ececf6;
}

.table-dark,
.table-dark>td,
.table-dark>th {
  background-color: #c6c8ca;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

.table-hover .table-dark:hover>td,
.table-hover .table-dark:hover>th {
  background-color: #b9bbbe;
}

.table-active,
.table-active>td,
.table-active>th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover>td,
.table-hover .table-active:hover>th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #212529;
  border-color: #32383e;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #212529;
}

.table-dark td,
.table-dark th,
.table-dark thead th {
  border-color: #32383e;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-sm>.table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-md>.table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-lg>.table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-xl>.table-bordered {
    border: 0;
  }
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive>.table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  -webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

select.form-control:not([size]):not([multiple]) {
  height: calc(2.25rem + 2px);
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(.375rem + 1px);
  padding-bottom: calc(.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(.5rem + 1px);
  padding-bottom: calc(.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(.25rem + 1px);
  padding-bottom: calc(.25rem + 1px);
  font-size: .875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: .375rem;
  padding-bottom: .375rem;
  margin-bottom: 0;
  line-height: 1.5;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm,
.input-group-lg>.form-control-plaintext.form-control,
.input-group-lg>.input-group-append>.form-control-plaintext.btn,
.input-group-lg>.input-group-append>.form-control-plaintext.input-group-text,
.input-group-lg>.input-group-prepend>.form-control-plaintext.btn,
.input-group-lg>.input-group-prepend>.form-control-plaintext.input-group-text,
.input-group-sm>.form-control-plaintext.form-control,
.input-group-sm>.input-group-append>.form-control-plaintext.btn,
.input-group-sm>.input-group-append>.form-control-plaintext.input-group-text,
.input-group-sm>.input-group-prepend>.form-control-plaintext.btn,
.input-group-sm>.input-group-prepend>.form-control-plaintext.input-group-text {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm,
.input-group-sm>.form-control,
.input-group-sm>.input-group-append>.btn,
.input-group-sm>.input-group-append>.input-group-text,
.input-group-sm>.input-group-prepend>.btn,
.input-group-sm>.input-group-prepend>.input-group-text {
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
}

.input-group-sm>.input-group-append>select.btn:not([size]):not([multiple]),
.input-group-sm>.input-group-append>select.input-group-text:not([size]):not([multiple]),
.input-group-sm>.input-group-prepend>select.btn:not([size]):not([multiple]),
.input-group-sm>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),
.input-group-sm>select.form-control:not([size]):not([multiple]),
select.form-control-sm:not([size]):not([multiple]) {
  height: calc(1.8125rem + 2px);
}

.form-control-lg,
.input-group-lg>.form-control,
.input-group-lg>.input-group-append>.btn,
.input-group-lg>.input-group-append>.input-group-text,
.input-group-lg>.input-group-prepend>.btn,
.input-group-lg>.input-group-prepend>.input-group-text {
  padding: .5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: .3rem;
}

.input-group-lg>.input-group-append>select.btn:not([size]):not([multiple]),
.input-group-lg>.input-group-append>select.input-group-text:not([size]):not([multiple]),
.input-group-lg>.input-group-prepend>select.btn:not([size]):not([multiple]),
.input-group-lg>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),
.input-group-lg>select.form-control:not([size]):not([multiple]),
select.form-control-lg:not([size]):not([multiple]) {
  height: calc(2.875rem + 2px);
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: .25rem;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row>.col,
.form-row>[class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: .3rem;
  margin-left: -1.25rem;
}

.form-check-input:disabled~.form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  margin-right: .75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: .3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: 80%;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.8);
  border-radius: .2rem;
}

.custom-select.is-valid,
.form-control.is-valid,
.was-validated .custom-select:valid,
.was-validated .form-control:valid {
  border-color: #28a745;
}

.custom-select.is-valid:focus,
.form-control.is-valid:focus,
.was-validated .custom-select:valid:focus,
.was-validated .form-control:valid:focus {
  border-color: #28a745;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.custom-select.is-valid~.valid-feedback,
.custom-select.is-valid~.valid-tooltip,
.form-control.is-valid~.valid-feedback,
.form-control.is-valid~.valid-tooltip,
.was-validated .custom-select:valid~.valid-feedback,
.was-validated .custom-select:valid~.valid-tooltip,
.was-validated .form-control:valid~.valid-feedback,
.was-validated .form-control:valid~.valid-tooltip {
  display: block;
}

.form-check-input.is-valid~.form-check-label,
.was-validated .form-check-input:valid~.form-check-label {
  color: #28a745;
}

.form-check-input.is-valid~.valid-feedback,
.form-check-input.is-valid~.valid-tooltip,
.was-validated .form-check-input:valid~.valid-feedback,
.was-validated .form-check-input:valid~.valid-tooltip {
  display: block;
}

.custom-control-input.is-valid~.custom-control-label,
.was-validated .custom-control-input:valid~.custom-control-label {
  color: #28a745;
}

.custom-control-input.is-valid~.custom-control-label::before,
.was-validated .custom-control-input:valid~.custom-control-label::before {
  background-color: #71dd8a;
}

.custom-control-input.is-valid~.valid-feedback,
.custom-control-input.is-valid~.valid-tooltip,
.was-validated .custom-control-input:valid~.valid-feedback,
.was-validated .custom-control-input:valid~.valid-tooltip {
  display: block;
}

.custom-control-input.is-valid:checked~.custom-control-label::before,
.was-validated .custom-control-input:valid:checked~.custom-control-label::before {
  background-color: #34ce57;
}

.custom-control-input.is-valid:focus~.custom-control-label::before,
.was-validated .custom-control-input:valid:focus~.custom-control-label::before {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.custom-file-input.is-valid~.custom-file-label,
.was-validated .custom-file-input:valid~.custom-file-label {
  border-color: #28a745;
}

.custom-file-input.is-valid~.custom-file-label::before,
.was-validated .custom-file-input:valid~.custom-file-label::before {
  border-color: inherit;
}

.custom-file-input.is-valid~.valid-feedback,
.custom-file-input.is-valid~.valid-tooltip,
.was-validated .custom-file-input:valid~.valid-feedback,
.was-validated .custom-file-input:valid~.valid-tooltip {
  display: block;
}

.custom-file-input.is-valid:focus~.custom-file-label,
.was-validated .custom-file-input:valid:focus~.custom-file-label {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: 80%;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.8);
  border-radius: .2rem;
}

.custom-select.is-invalid,
.form-control.is-invalid,
.was-validated .custom-select:invalid,
.was-validated .form-control:invalid {
  border-color: #dc3545;
}

.custom-select.is-invalid:focus,
.form-control.is-invalid:focus,
.was-validated .custom-select:invalid:focus,
.was-validated .form-control:invalid:focus {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.custom-select.is-invalid~.invalid-feedback,
.custom-select.is-invalid~.invalid-tooltip,
.form-control.is-invalid~.invalid-feedback,
.form-control.is-invalid~.invalid-tooltip,
.was-validated .custom-select:invalid~.invalid-feedback,
.was-validated .custom-select:invalid~.invalid-tooltip,
.was-validated .form-control:invalid~.invalid-feedback,
.was-validated .form-control:invalid~.invalid-tooltip {
  display: block;
}

.form-check-input.is-invalid~.form-check-label,
.was-validated .form-check-input:invalid~.form-check-label {
  color: #dc3545;
}

.form-check-input.is-invalid~.invalid-feedback,
.form-check-input.is-invalid~.invalid-tooltip,
.was-validated .form-check-input:invalid~.invalid-feedback,
.was-validated .form-check-input:invalid~.invalid-tooltip {
  display: block;
}

.custom-control-input.is-invalid~.custom-control-label,
.was-validated .custom-control-input:invalid~.custom-control-label {
  color: #dc3545;
}

.custom-control-input.is-invalid~.custom-control-label::before,
.was-validated .custom-control-input:invalid~.custom-control-label::before {
  background-color: #efa2a9;
}

.custom-control-input.is-invalid~.invalid-feedback,
.custom-control-input.is-invalid~.invalid-tooltip,
.was-validated .custom-control-input:invalid~.invalid-feedback,
.was-validated .custom-control-input:invalid~.invalid-tooltip {
  display: block;
}

.custom-control-input.is-invalid:checked~.custom-control-label::before,
.was-validated .custom-control-input:invalid:checked~.custom-control-label::before {
  background-color: #e4606d;
}

.custom-control-input.is-invalid:focus~.custom-control-label::before,
.was-validated .custom-control-input:invalid:focus~.custom-control-label::before {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.custom-file-input.is-invalid~.custom-file-label,
.was-validated .custom-file-input:invalid~.custom-file-label {
  border-color: #dc3545;
}

.custom-file-input.is-invalid~.custom-file-label::before,
.was-validated .custom-file-input:invalid~.custom-file-label::before {
  border-color: inherit;
}

.custom-file-input.is-invalid~.invalid-feedback,
.custom-file-input.is-invalid~.invalid-tooltip,
.was-validated .custom-file-input:invalid~.invalid-feedback,
.was-validated .custom-file-input:invalid~.invalid-tooltip {
  display: block;
}

.custom-file-input.is-invalid:focus~.custom-file-label,
.was-validated .custom-file-input:invalid:focus~.custom-file-label {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .form-inline label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0;
  }

  .form-inline .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
  }

  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .form-control-plaintext {
    display: inline-block;
  }

  .form-inline .input-group {
    width: auto;
  }

  .form-inline .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }

  .form-inline .form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: .25rem;
    margin-left: 0;
  }

  .form-inline .custom-control {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}

.btn:focus,
.btn:hover {
  text-decoration: none;
}

.btn.focus,
.btn:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled,
.btn:disabled {
  opacity: .65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  background-image: none;
}

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.btn-primary.focus,
.btn-primary:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-secondary.focus,
.btn-secondary:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-success.focus,
.btn-success:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show>.btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus,
.show>.btn-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

.btn-info.focus,
.btn-info:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active,
.show>.btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus,
.show>.btn-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

.btn-warning.focus,
.btn-warning:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show>.btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus,
.show>.btn-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

.btn-danger.focus,
.btn-danger:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active,
.show>.btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show>.btn-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.btn-light.focus,
.btn-light:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show>.btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus,
.show>.btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark.focus,
.btn-dark:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show>.btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus,
.show>.btn-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  background-color: transparent;
  background-image: none;
  border-color: #007bff;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary.focus,
.btn-outline-primary:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show>.btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  background-color: transparent;
  background-image: none;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary.focus,
.btn-outline-secondary:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show>.btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #28a745;
  background-color: transparent;
  background-image: none;
  border-color: #28a745;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success.focus,
.btn-outline-success:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show>.btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info.focus,
.btn-outline-info:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.show>.btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  background-color: transparent;
  background-image: none;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning.focus,
.btn-outline-warning:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.show>.btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  background-color: transparent;
  background-image: none;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger.focus,
.btn-outline-danger:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.show>.btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light.focus,
.btn-outline-light:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show>.btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark.focus,
.btn-outline-dark:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show>.btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  background-color: transparent;
}

.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}

.btn-link.focus,
.btn-link:focus {
  text-decoration: underline;
  border-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-link.disabled,
.btn-link:disabled {
  color: #6c757d;
}

.btn-group-lg>.btn,
.btn-lg {
  padding: .5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: .3rem;
}

.btn-group-sm>.btn,
.btn-sm {
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block+.btn-block {
  margin-top: .5rem;
}

input[type=button].btn-block,
input[type=reset].btn-block,
input[type=submit].btn-block {
  width: 100%;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
  transition: opacity .15s linear;
}

.fade.show {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.show {
  display: block;
}

tr.collapse.show {
  display: table-row;
}

tbody.collapse.show {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height .35s ease;
  transition: height .35s ease;
}

.dropdown,
.dropup {
  position: relative;
}

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: .5rem 0;
  margin: .125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: .25rem;
}

.dropup .dropdown-menu {
  margin-top: 0;
  margin-bottom: .125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: 0;
  border-right: .3em solid transparent;
  border-bottom: .3em solid;
  border-left: .3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  margin-top: 0;
  margin-left: .125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid transparent;
  border-bottom: .3em solid transparent;
  border-left: .3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  margin-top: 0;
  margin-right: .125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid transparent;
  border-right: .3em solid;
  border-bottom: .3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: .5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: .25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #6c757d;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: .5rem 1.5rem;
  margin-bottom: 0;
  font-size: .875rem;
  color: #6c757d;
  white-space: nowrap;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group-vertical>.btn,
.btn-group>.btn {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.btn-group-vertical>.btn:hover,
.btn-group>.btn:hover {
  z-index: 1;
}

.btn-group-vertical>.btn.active,
.btn-group-vertical>.btn:active,
.btn-group-vertical>.btn:focus,
.btn-group>.btn.active,
.btn-group>.btn:active,
.btn-group>.btn:focus {
  z-index: 1;
}

.btn-group .btn+.btn,
.btn-group .btn+.btn-group,
.btn-group .btn-group+.btn,
.btn-group .btn-group+.btn-group,
.btn-group-vertical .btn+.btn,
.btn-group-vertical .btn+.btn-group,
.btn-group-vertical .btn-group+.btn,
.btn-group-vertical .btn-group+.btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group>.btn:first-child {
  margin-left: 0;
}

.btn-group>.btn-group:not(:last-child)>.btn,
.btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group>.btn-group:not(:first-child)>.btn,
.btn-group>.btn:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: .5625rem;
  padding-left: .5625rem;
}

.dropdown-toggle-split::after {
  margin-left: 0;
}

.btn-group-sm>.btn+.dropdown-toggle-split,
.btn-sm+.dropdown-toggle-split {
  padding-right: .375rem;
  padding-left: .375rem;
}

.btn-group-lg>.btn+.dropdown-toggle-split,
.btn-lg+.dropdown-toggle-split {
  padding-right: .75rem;
  padding-left: .75rem;
}

.btn-group-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-group-vertical .btn,
.btn-group-vertical .btn-group {
  width: 100%;
}

.btn-group-vertical>.btn+.btn,
.btn-group-vertical>.btn+.btn-group,
.btn-group-vertical>.btn-group+.btn,
.btn-group-vertical>.btn-group+.btn-group {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-vertical>.btn-group:not(:last-child)>.btn,
.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical>.btn-group:not(:first-child)>.btn,
.btn-group-vertical>.btn:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle>.btn,
.btn-group-toggle>.btn-group>.btn {
  margin-bottom: 0;
}

.btn-group-toggle>.btn input[type=checkbox],
.btn-group-toggle>.btn input[type=radio],
.btn-group-toggle>.btn-group>.btn input[type=checkbox],
.btn-group-toggle>.btn-group>.btn input[type=radio] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.input-group>.custom-file,
.input-group>.custom-select,
.input-group>.form-control {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

.input-group>.custom-file:focus,
.input-group>.custom-select:focus,
.input-group>.form-control:focus {
  z-index: 3;
}

.input-group>.custom-file+.custom-file,
.input-group>.custom-file+.custom-select,
.input-group>.custom-file+.form-control,
.input-group>.custom-select+.custom-file,
.input-group>.custom-select+.custom-select,
.input-group>.custom-select+.form-control,
.input-group>.form-control+.custom-file,
.input-group>.form-control+.custom-select,
.input-group>.form-control+.form-control {
  margin-left: -1px;
}

.input-group>.custom-select:not(:last-child),
.input-group>.form-control:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group>.custom-select:not(:first-child),
.input-group>.form-control:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group>.custom-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.input-group>.custom-file:not(:last-child) .custom-file-label,
.input-group>.custom-file:not(:last-child) .custom-file-label::before {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group>.custom-file:not(:first-child) .custom-file-label,
.input-group>.custom-file:not(:first-child) .custom-file-label::before {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-append,
.input-group-prepend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.input-group-append .btn,
.input-group-prepend .btn {
  position: relative;
  z-index: 2;
}

.input-group-append .btn+.btn,
.input-group-append .btn+.input-group-text,
.input-group-append .input-group-text+.btn,
.input-group-append .input-group-text+.input-group-text,
.input-group-prepend .btn+.btn,
.input-group-prepend .btn+.input-group-text,
.input-group-prepend .input-group-text+.btn,
.input-group-prepend .input-group-text+.input-group-text {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: .375rem .75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: .25rem;
}

.input-group-text input[type=checkbox],
.input-group-text input[type=radio] {
  margin-top: 0;
}

.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),
.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),
.input-group>.input-group-append:not(:last-child)>.btn,
.input-group>.input-group-append:not(:last-child)>.input-group-text,
.input-group>.input-group-prepend>.btn,
.input-group>.input-group-prepend>.input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group>.input-group-append>.btn,
.input-group>.input-group-append>.input-group-text,
.input-group>.input-group-prepend:first-child>.btn:not(:first-child),
.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),
.input-group>.input-group-prepend:not(:first-child)>.btn,
.input-group>.input-group-prepend:not(:first-child)>.input-group-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

.custom-control-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-control-input:checked~.custom-control-label::before {
  color: #fff;
  background-color: #007bff;
}

.custom-control-input:focus~.custom-control-label::before {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-control-input:active~.custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
}

.custom-control-input:disabled~.custom-control-label {
  color: #6c757d;
}

.custom-control-input:disabled~.custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  margin-bottom: 0;
}

.custom-control-label::before {
  position: absolute;
  top: .25rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #dee2e6;
}

.custom-control-label::after {
  position: absolute;
  top: .25rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: .25rem;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
  background-color: #007bff;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before {
  background-color: #007bff;
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked~.custom-control-label::before {
  background-color: #007bff;
}

.custom-radio .custom-control-input:checked~.custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}

.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: .375rem 1.75rem .375rem .75rem;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5);
}

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: .75rem;
  background-image: none;
}

.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

.custom-select::-ms-expand {
  opacity: 0;
}

.custom-select-sm {
  height: calc(1.8125rem + 2px);
  padding-top: .375rem;
  padding-bottom: .375rem;
  font-size: 75%;
}

.custom-select-lg {
  height: calc(2.875rem + 2px);
  padding-top: .375rem;
  padding-bottom: .375rem;
  font-size: 125%;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin: 0;
  opacity: 0;
}

.custom-file-input:focus~.custom-file-control {
  border-color: #80bdff;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-file-input:focus~.custom-file-control::before {
  border-color: #80bdff;
}

.custom-file-input:lang(en)~.custom-file-label::after {
  content: "Browse";
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(2.25rem + 2px);
  padding: .375rem .75rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: .25rem;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(calc(2.25rem + 2px) - 1px * 2);
  padding: .375rem .75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: 1px solid #ced4da;
  border-radius: 0 .25rem .25rem 0;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: .5rem 1rem;
}

.nav-link:focus,
.nav-link:hover {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: .25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: #007bff;
}

.nav-fill .nav-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

.tab-content>.tab-pane {
  display: none;
}

.tab-content>.active {
  display: block;
}

.navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: .5rem 1rem;
}

.navbar>.container,
.navbar>.container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: .3125rem;
  padding-bottom: .3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:focus,
.navbar-brand:hover {
  text-decoration: none;
}

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-toggler {
  padding: .25rem .75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: .25rem;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
  text-decoration: none;
}

.navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 575.98px) {

  .navbar-expand-sm>.container,
  .navbar-expand-sm>.container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .navbar-expand-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-sm .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto;
  }

  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }

  .navbar-expand-sm>.container,
  .navbar-expand-sm>.container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .navbar-expand-sm .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .navbar-expand-sm .navbar-toggler {
    display: none;
  }

  .navbar-expand-sm .dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
  }
}

@media (max-width: 767.98px) {

  .navbar-expand-md>.container,
  .navbar-expand-md>.container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .navbar-expand-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-md .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }

  .navbar-expand-md>.container,
  .navbar-expand-md>.container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .navbar-expand-md .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .navbar-expand-md .navbar-toggler {
    display: none;
  }

  .navbar-expand-md .dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
  }
}

@media (max-width: 991.98px) {

  .navbar-expand-lg>.container,
  .navbar-expand-lg>.container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }

  .navbar-expand-lg>.container,
  .navbar-expand-lg>.container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .navbar-expand-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }

  .navbar-expand-lg .dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
  }
}

@media (max-width: 1199.98px) {

  .navbar-expand-xl>.container,
  .navbar-expand-xl>.container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .navbar-expand-xl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-xl .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto;
  }

  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }

  .navbar-expand-xl>.container,
  .navbar-expand-xl>.container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .navbar-expand-xl .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .navbar-expand-xl .navbar-toggler {
    display: none;
  }

  .navbar-expand-xl .dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
  }
}

.navbar-expand {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.navbar-expand>.container,
.navbar-expand>.container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .dropdown-menu-right {
  right: 0;
  left: auto;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: .5rem;
  padding-left: .5rem;
}

.navbar-expand>.container,
.navbar-expand>.container-fluid {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-expand .dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:focus,
.navbar-light .navbar-text a:hover {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .active>.nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show>.nav-link {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:focus,
.navbar-dark .navbar-text a:hover {
  color: #fff;
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: .25rem;
}

.card>hr {
  margin-right: 0;
  margin-left: 0;
}

.card>.list-group:first-child .list-group-item:first-child {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
}

.card>.list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: .25rem;
  border-bottom-left-radius: .25rem;
}

.card-body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: .75rem;
}

.card-subtitle {
  margin-top: -.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link+.card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: .75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
}

.card-header+.list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: .75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px);
}

.card-header-tabs {
  margin-right: -.625rem;
  margin-bottom: -.75rem;
  margin-left: -.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -.625rem;
  margin-left: -.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
  border-radius: calc(.25rem - 1px);
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(.25rem - 1px);
  border-top-right-radius: calc(.25rem - 1px);
}

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(.25rem - 1px);
  border-bottom-left-radius: calc(.25rem - 1px);
}

.card-deck {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }

  .card-deck .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-group>.card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }

  .card-group>.card {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-bottom: 0;
  }

  .card-group>.card+.card {
    margin-left: 0;
    border-left: 0;
  }

  .card-group>.card:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .card-group>.card:first-child .card-header,
  .card-group>.card:first-child .card-img-top {
    border-top-right-radius: 0;
  }

  .card-group>.card:first-child .card-footer,
  .card-group>.card:first-child .card-img-bottom {
    border-bottom-right-radius: 0;
  }

  .card-group>.card:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .card-group>.card:last-child .card-header,
  .card-group>.card:last-child .card-img-top {
    border-top-left-radius: 0;
  }

  .card-group>.card:last-child .card-footer,
  .card-group>.card:last-child .card-img-bottom {
    border-bottom-left-radius: 0;
  }

  .card-group>.card:only-child {
    border-radius: .25rem;
  }

  .card-group>.card:only-child .card-header,
  .card-group>.card:only-child .card-img-top {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
  }

  .card-group>.card:only-child .card-footer,
  .card-group>.card:only-child .card-img-bottom {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .card-group>.card:not(:first-child):not(:last-child):not(:only-child) {
    border-radius: 0;
  }

  .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer,
  .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header,
  .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
  .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top {
    border-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: .75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    column-gap: 1.25rem;
  }

  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: .25rem;
}

.breadcrumb-item+.breadcrumb-item::before {
  display: inline-block;
  padding-right: .5rem;
  padding-left: .5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item+.breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item+.breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: .25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: .5rem .75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 2;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: .25rem;
  border-bottom-left-radius: .25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: .75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: .3rem;
  border-bottom-left-radius: .3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: .3rem;
  border-bottom-right-radius: .3rem;
}

.pagination-sm .page-link {
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: .2rem;
  border-bottom-left-radius: .2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: .2rem;
  border-bottom-right-radius: .2rem;
}

.badge {
  display: inline-block;
  padding: .25em .4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25rem;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: .6em;
  padding-left: .6em;
  /* border-radius: 10rem; */
  border-radius: 0;
}

.badge-primary {
  color: #fff;
  background-color: #007bff;
}

.badge-primary[href]:focus,
.badge-primary[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #0062cc;
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}

.badge-secondary[href]:focus,
.badge-secondary[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #545b62;
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}

.badge-success[href]:focus,
.badge-success[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #1e7e34;
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}

.badge-info[href]:focus,
.badge-info[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #117a8b;
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}

.badge-warning[href]:focus,
.badge-warning[href]:hover {
  color: #212529;
  text-decoration: none;
  background-color: #d39e00;
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

.badge-danger[href]:focus,
.badge-danger[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #bd2130;
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

.badge-light[href]:focus,
.badge-light[href]:hover {
  color: #212529;
  text-decoration: none;
  background-color: #dae0e5;
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

.badge-dark[href]:focus,
.badge-dark[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #1d2124;
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: .3rem;
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: .75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.alert-primary hr {
  border-top-color: #9fcdff;
}

.alert-primary .alert-link {
  color: #002752;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.alert-secondary hr {
  border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-success hr {
  border-top-color: #b1dfbb;
}

.alert-success .alert-link {
  color: #0b2e13;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-info hr {
  border-top-color: #abdde5;
}

.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-warning hr {
  border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-danger hr {
  border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
  color: #491217;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light hr {
  border-top-color: #ececf6;
}

.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.alert-dark hr {
  border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
  color: #040505;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

.progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: .75rem;
  background-color: #e9ecef;
  border-radius: .25rem;
}

.progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background-color: #007bff;
  -webkit-transition: width .6s ease;
  transition: width .6s ease;
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
  animation: progress-bar-stripes 1s linear infinite;
}

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.media-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:focus,
.list-group-item-action:hover {
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: .75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: .25rem;
  border-bottom-left-radius: .25rem;
}

.list-group-item:focus,
.list-group-item:hover {
  z-index: 1;
  text-decoration: none;
}

.list-group-item.disabled,
.list-group-item:disabled {
  color: #6c757d;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}

.list-group-flush:last-child .list-group-item:last-child {
  border-bottom: 0;
}

.list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}

.list-group-item-primary.list-group-item-action:focus,
.list-group-item-primary.list-group-item-action:hover {
  color: #004085;
  background-color: #9fcdff;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:focus,
.list-group-item-secondary.list-group-item-action:hover {
  color: #383d41;
  background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}

.list-group-item-success.list-group-item-action:focus,
.list-group-item-success.list-group-item-action:hover {
  color: #155724;
  background-color: #b1dfbb;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:focus,
.list-group-item-info.list-group-item-action:hover {
  color: #0c5460;
  background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:focus,
.list-group-item-warning.list-group-item-action:hover {
  color: #856404;
  background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}

.list-group-item-danger.list-group-item-action:focus,
.list-group-item-danger.list-group-item-action:hover {
  color: #721c24;
  background-color: #f1b0b7;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:focus,
.list-group-item-light.list-group-item-action:hover {
  color: #818182;
  background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:focus,
.list-group-item-dark.list-group-item-action:hover {
  color: #1b1e21;
  background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.close:focus,
.close:hover {
  color: #000;
  text-decoration: none;
  opacity: .75;
}

.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: -webkit-transform .3s ease-out;
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%);
}

.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: .3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: .5;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: .3rem;
  border-top-right-radius: .3rem;
}

.modal_choose .modal-header {
  padding: 10px;
}

.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
}

.modal-footer> :not(:first-child) {
  margin-left: .25rem;
}

.modal-footer> :not(:last-child) {
  margin-right: .25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (max-width: 498px) {
  .xs-single-wishList {
    font-size: 2em !important;
  }

  .dv_sch_car .search-result-page img {
    max-width: 70% !important;
  }

  #map {
    height: 500px !important;
  }

  .xs-blog-post-details .entry-content p span {
    font-size: 16px !important;
  }
}

@media (min-width: 576px) {

  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg {
    max-width: 970px;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: .875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: .9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: .8rem;
  height: .4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-auto[x-placement^=top],
.bs-tooltip-top {
  padding: .4rem 0;
}

.bs-tooltip-auto[x-placement^=top] .arrow,
.bs-tooltip-top .arrow {
  bottom: 0;
}

.bs-tooltip-auto[x-placement^=top] .arrow::before,
.bs-tooltip-top .arrow::before {
  top: 0;
  border-width: .4rem .4rem 0;
  border-top-color: #000;
}

.bs-tooltip-auto[x-placement^=right],
.bs-tooltip-right {
  padding: 0 .4rem;
}

.bs-tooltip-auto[x-placement^=right] .arrow,
.bs-tooltip-right .arrow {
  left: 0;
  width: .4rem;
  height: .8rem;
}

.bs-tooltip-auto[x-placement^=right] .arrow::before,
.bs-tooltip-right .arrow::before {
  right: 0;
  border-width: .4rem .4rem .4rem 0;
  border-right-color: #000;
}

.bs-tooltip-auto[x-placement^=bottom],
.bs-tooltip-bottom {
  padding: .4rem 0;
}

.bs-tooltip-auto[x-placement^=bottom] .arrow,
.bs-tooltip-bottom .arrow {
  top: 0;
}

.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.bs-tooltip-bottom .arrow::before {
  bottom: 0;
  border-width: 0 .4rem .4rem;
  border-bottom-color: #000;
}

.bs-tooltip-auto[x-placement^=left],
.bs-tooltip-left {
  padding: 0 .4rem;
}

.bs-tooltip-auto[x-placement^=left] .arrow,
.bs-tooltip-left .arrow {
  right: 0;
  width: .4rem;
  height: .8rem;
}

.bs-tooltip-auto[x-placement^=left] .arrow::before,
.bs-tooltip-left .arrow::before {
  left: 0;
  border-width: .4rem 0 .4rem .4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: .25rem .5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: .25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: .875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: .3rem;
}

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: .5rem;
  margin: 0 .3rem;
}

.popover .arrow::after,
.popover .arrow::before {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-auto[x-placement^=top],
.bs-popover-top {
  margin-bottom: .5rem;
}

.bs-popover-auto[x-placement^=top] .arrow,
.bs-popover-top .arrow {
  bottom: calc((.5rem + 1px) * -1);
}

.bs-popover-auto[x-placement^=top] .arrow::after,
.bs-popover-auto[x-placement^=top] .arrow::before,
.bs-popover-top .arrow::after,
.bs-popover-top .arrow::before {
  border-width: .5rem .5rem 0;
}

.bs-popover-auto[x-placement^=top] .arrow::before,
.bs-popover-top .arrow::before {
  bottom: 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[x-placement^=top] .arrow::after,
.bs-popover-top .arrow::after {
  bottom: 1px;
  border-top-color: #fff;
}

.bs-popover-auto[x-placement^=right],
.bs-popover-right {
  margin-left: .5rem;
}

.bs-popover-auto[x-placement^=right] .arrow,
.bs-popover-right .arrow {
  left: calc((.5rem + 1px) * -1);
  width: .5rem;
  height: 1rem;
  margin: .3rem 0;
}

.bs-popover-auto[x-placement^=right] .arrow::after,
.bs-popover-auto[x-placement^=right] .arrow::before,
.bs-popover-right .arrow::after,
.bs-popover-right .arrow::before {
  border-width: .5rem .5rem .5rem 0;
}

.bs-popover-auto[x-placement^=right] .arrow::before,
.bs-popover-right .arrow::before {
  left: 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[x-placement^=right] .arrow::after,
.bs-popover-right .arrow::after {
  left: 1px;
  border-right-color: #fff;
}

.bs-popover-auto[x-placement^=bottom],
.bs-popover-bottom {
  margin-top: .5rem;
}

.bs-popover-auto[x-placement^=bottom] .arrow,
.bs-popover-bottom .arrow {
  top: calc((.5rem + 1px) * -1);
}

.bs-popover-auto[x-placement^=bottom] .arrow::after,
.bs-popover-auto[x-placement^=bottom] .arrow::before,
.bs-popover-bottom .arrow::after,
.bs-popover-bottom .arrow::before {
  border-width: 0 .5rem .5rem .5rem;
}

.bs-popover-auto[x-placement^=bottom] .arrow::before,
.bs-popover-bottom .arrow::before {
  top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[x-placement^=bottom] .arrow::after,
.bs-popover-bottom .arrow::after {
  top: 1px;
  border-bottom-color: #fff;
}

.bs-popover-auto[x-placement^=bottom] .popover-header::before,
.bs-popover-bottom .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-auto[x-placement^=left],
.bs-popover-left {
  margin-right: .5rem;
}

.bs-popover-auto[x-placement^=left] .arrow,
.bs-popover-left .arrow {
  right: calc((.5rem + 1px) * -1);
  width: .5rem;
  height: 1rem;
  margin: .3rem 0;
}

.bs-popover-auto[x-placement^=left] .arrow::after,
.bs-popover-auto[x-placement^=left] .arrow::before,
.bs-popover-left .arrow::after,
.bs-popover-left .arrow::before {
  border-width: .5rem 0 .5rem .5rem;
}

.bs-popover-auto[x-placement^=left] .arrow::before,
.bs-popover-left .arrow::before {
  right: 0;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[x-placement^=left] .arrow::after,
.bs-popover-left .arrow::after {
  right: 1px;
  border-left-color: #fff;
}

.popover-header {
  padding: .5rem .75rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: inherit;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(.3rem - 1px);
  border-top-right-radius: calc(.3rem - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: .5rem .75rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  transition: -webkit-transform .6s ease;
  -webkit-transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  display: block;
}

.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0;
}

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {

  .carousel-item-next.carousel-item-left,
  .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.active.carousel-item-right,
.carousel-item-next {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {

  .active.carousel-item-right,
  .carousel-item-next {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.active.carousel-item-left,
.carousel-item-prev {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {

  .active.carousel-item-left,
  .carousel-item-prev {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: .5;
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: .9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators .active {
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
  background-color: #0062cc !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:focus,
a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:focus,
a.bg-success:hover,
button.bg-success:focus,
button.bg-success:hover {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:focus,
a.bg-info:hover,
button.bg-info:focus,
button.bg-info:hover {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:focus,
a.bg-warning:hover,
button.bg-warning:focus,
button.bg-warning:hover {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:focus,
a.bg-danger:hover,
button.bg-danger:focus,
button.bg-danger:hover {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:focus,
a.bg-light:hover,
button.bg-light:focus,
button.bg-light:hover {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:focus,
a.bg-dark:hover,
button.bg-dark:focus,
button.bg-dark:hover {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.857143%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  -webkit-clip-path: none;
  clip-path: none;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:focus,
a.text-primary:hover {
  color: #0062cc !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:focus,
a.text-secondary:hover {
  color: #545b62 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:focus,
a.text-success:hover {
  color: #1e7e34 !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:focus,
a.text-info:hover {
  color: #117a8b !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:focus,
a.text-warning:hover {
  color: #d39e00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:focus,
a.text-danger:hover {
  color: #bd2130 !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:focus,
a.text-light:hover {
  color: #dae0e5 !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:focus,
a.text-dark:hover {
  color: #1d2124 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {

  *,
  ::after,
  ::before {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " ("attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  blockquote,
  pre {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  img,
  tr {
    page-break-inside: avoid;
  }

  h2,
  h3,
  p {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  @page {
    size: a3;
  }

  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered td,
  .table-bordered th {
    border: 1px solid #ddd !important;
  }
}

:focus {
  outline: 0;
}

/* Magnific Popup CSS */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

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

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */

.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {
  /**
         * Remove all paddings around the image on small screen
         */

  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/**
 * Simple fade transition,
 */

.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/*

====== Zoom effect ======

*/

.mfp-zoom-in {
  /* start state */
  /* animate in */
  /* animate out */
}

.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.nav-brand,
.nav-brand:focus,
.nav-brand:hover,
.nav-menu>li>a {
  color: #70798b;
}

.xs_nav {
  width: 100%;
  height: 70px;
  display: table;
  position: relative;
  font-family: inherit;
  background-color: #fff;
}

.xs_nav * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.xs_nav-portrait {
  height: 48px;
}

.xs_nav-fixed-wrapper {
  width: 100%;
  left: 0;
  z-index: 19998;
  will-change: opacity;
}

.xs_nav-fixed-wrapper.fixed {
  position: fixed !important;
  -webkit-animation: fade .5s;
  animation: fade .5s;
}

@-webkit-keyframes fade {
  from {
    opacity: .999;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: .999;
  }

  to {
    opacity: 1;
  }
}

.xs_nav-fixed-wrapper .xs_nav {
  margin-right: auto;
  margin-left: auto;
}

.xs_nav-fixed-placeholder {
  width: 100%;
  display: none;
}

.xs_nav-fixed-placeholder.xs_nav-fixed-placeholder.visible {
  display: block;
}

.nav-toggle,
.xs_nav-hidden .nav-header {
  display: none;
}

.xs_nav-hidden {
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute;
  top: -9999px;
}

.align-to-right {
  float: right;
}

.nav-header {
  float: left;
}

.nav-brand {
  line-height: 70px;
  padding: 0 15px;
  font-size: 24px;
  text-decoration: none !important;
}

.xs_nav-portrait .nav-brand {
  font-size: 18px;
  line-height: 48px;
}

.nav-logo>img {
  height: 48px;
  margin: 11px auto;
  padding: 0 15px;
  float: left;
}

.nav-logo:focus>img {
  outline: initial;
}

.xs_nav-portrait .nav-logo>img {
  height: 36px;
  margin: 6px auto 6px 15px;
  padding: 0;
}

.nav-toggle {
  width: 30px;
  height: 30px;
  padding: 6px 2px 0;
  position: absolute;
  top: 50%;
  margin-top: -14px;
  right: 15px;
  cursor: pointer;
}

.nav-toggle:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #70798b;
  border-radius: 10px;
  -webkit-box-shadow: 0 .5em 0 0 #70798b, 0 1em 0 0 #70798b;
  box-shadow: 0 .5em 0 0 #70798b, 0 1em 0 0 #70798b;
}

.xs_nav-portrait .nav-toggle {
  display: block;
}

.xs_nav-portrait .nav-menus-wrapper {
  width: 320px;
  height: 100%;
  top: 0;
  left: -400px;
  position: fixed;
  background-color: #fff;
  z-index: 20000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition-duration: .8s;
  transition-duration: .8s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.xs_nav-portrait .nav-menus-wrapper.nav-menus-wrapper-right {
  left: auto;
  right: -400px;
}

.xs_nav-portrait .nav-menus-wrapper.nav-menus-wrapper-open {
  left: 0;
}

.xs_nav-portrait .nav-menus-wrapper.nav-menus-wrapper-right.nav-menus-wrapper-open {
  left: auto;
  right: 0;
}

.nav-menus-wrapper-close-button {
  width: 30px;
  height: 40px;
  margin: 10px 7px;
  display: none;
  float: right;
  color: #70798b;
  font-size: 26px;
  cursor: pointer;
}

.xs_nav-portrait .nav-menus-wrapper-close-button {
  display: block;
}

.nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: normal;
  font-size: 0;
}

.xs_nav-portrait .nav-menu {
  width: 100%;
}

.nav-menu.nav-menu-centered {
  text-align: center;
}

.nav-menu.nav-menu-centered>li {
  float: none;
}

.nav-menu>li {
  display: inline-block;
  float: none;
  text-align: left;
}

.xs_nav-portrait .nav-menu>li {
  width: 100%;
  position: relative;
  border-top: solid 1px #f0f0f0;
}

.xs_nav-portrait .nav-menu>li:last-child {
  border-bottom: solid 1px #f0f0f0;
}

.nav-menu+.nav-menu>li:first-child {
  border-top: none;
}

.nav-menu>li>a {
  height: 100%;
  padding: 26px 15px;
  display: inline-block;
  position: relative;
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: color .3s, background .3s;
  transition: color .3s, background .3s;
}

.xs_nav-portrait .nav-menu>li>a {
  width: 100%;
  height: auto;
  padding: 12px 15px 12px 26px;
}

.nav-menu>li.active>a,
.nav-menu>li.focus>a,
.nav-menu>li:hover>a {
  color: #967ADC;
}

.nav-menu>li>a>[class*=ion-],
.nav-menu>li>a>i {
  width: 18px;
  height: 16px;
  line-height: 16px;
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
}

.nav-menu>li>a>[class*=ion-] {
  width: 16px;
  display: inline-block;
  -webkit-transform: scale(1.8);
  transform: scale(1.8);
}

.xs_nav-portrait .nav-menu.nav-menu-social {
  width: 100%;
  text-align: center;
}

.nav-menu.nav-menu-social>li {
  text-align: center;
  float: none;
  border: none !important;
}

.xs_nav-portrait .nav-menu.nav-menu-social>li {
  width: auto;
}

.nav-menu.nav-menu-social>li>a>[class*=ion-] {
  font-size: 12px;
}

.nav-menu.nav-menu-social>li>a>.fa {
  font-size: 14px;
}

.xs_nav-portrait .nav-menu.nav-menu-social>li>a {
  padding: 15px;
}

.submenu-indicator {
  margin-left: 6px;
  margin-top: 6px;
  float: right;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.xs_nav-portrait .submenu-indicator {
  width: 54px;
  height: 44px;
  margin-top: 0;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  z-index: 20000;
}

.submenu-indicator-chevron {
  height: 6px;
  width: 6px;
  display: block;
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: transparent #70798b #70798b transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: border .3s;
  transition: border .3s;
}

.xs_nav-portrait .submenu-indicator-chevron {
  position: absolute;
  top: 18px;
  left: 24px;
}

.nav-menu>.active>a .submenu-indicator-chevron,
.nav-menu>.focus>a .submenu-indicator-chevron,
.nav-menu>li:hover>a .submenu-indicator-chevron {
  border-color: transparent #967ADC #967ADC transparent;
}

.xs_nav-portrait .submenu-indicator.submenu-indicator-up {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.nav-overlay-panel {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: none;
  z-index: 19999;
}

.no-scroll {
  -ms-touch-action: none;
  touch-action: none;
  overflow-x: hidden;
}

.nav-search {
  height: 70px;
  float: right;
  z-index: 19998;
}

.xs_nav-portrait .nav-search {
  height: 48px;
  padding: 0 10px;
  margin-right: 52px;
}

.xs_nav-hidden .nav-search {
  display: none;
}

.nav-search-button {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  cursor: pointer;
  background-color: #fbfcfd;
}

.xs_nav-portrait .nav-search-button {
  width: 50px;
  height: 48px;
  line-height: 46px;
  font-size: 22px;
}

.nav-search-icon {
  width: 14px;
  height: 14px;
  margin: 2px 8px 8px 4px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  color: #70798b;
  text-align: left;
  text-indent: -9999px;
  border: 2px solid;
  border-radius: 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: color .3s;
  transition: color .3s;
}

.nav-search-icon:after,
.nav-search-icon:before {
  content: '';
  pointer-events: none;
}

.nav-search-icon:before {
  width: 2px;
  height: 11px;
  top: 11px;
  position: absolute;
  left: 50%;
  border-radius: 0 0 1px 1px;
  -webkit-box-shadow: inset 0 0 0 32px;
  box-shadow: inset 0 0 0 32px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.nav-search-button:hover .nav-search-icon {
  color: #967ADC;
}

.nav-search>form {
  width: 100%;
  height: 100%;
  padding: 0 auto;
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 99;
}

.nav-search-inner {
  width: 70%;
  height: 70px;
  margin: auto;
  display: table;
}

.xs_nav-portrait .nav-search-inner {
  height: 48px;
}

.nav-search-inner input[type=search],
.nav-search-inner input[type=text] {
  height: 70px;
  width: 100%;
  margin: 0;
  padding: 0 12px;
  font-size: 26px;
  text-align: center;
  color: #70798b;
  outline: 0;
  line-height: 70px;
  border: none;
  background-color: transparent;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.xs_nav-portrait .nav-search-inner input[type=search],
.xs_nav-portrait .nav-search-inner input[type=text] {
  height: 48px;
  font-size: 18px;
  line-height: 48px;
}

.nav-search-close-button {
  width: 28px;
  height: 28px;
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  line-height: normal;
  color: #70798b;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
}

.nav-button,
.nav-text {
  display: inline-block;
  font-size: 14px;
}

.xs_nav-portrait .nav-search-close-button {
  top: 10px;
  right: 14px;
}

.nav-button {
  margin: 18px 15px 0;
  padding: 8px 14px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  background-color: #967ADC;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.nav-button:focus,
.nav-button:hover {
  color: #fff;
  text-decoration: none;
  opacity: .85;
}

.xs_nav-portrait .nav-button {
  width: calc(100% - 52px);
  margin: 17px 26px;
}

.nav-text {
  margin: 25px 15px;
  color: #70798b;
}

.xs_nav-portrait .nav-text {
  width: calc(100% - 52px);
  margin: 12px 26px 0;
}

.xs_nav-portrait .nav-text+ul {
  margin-top: 15px;
}

.nav-dropdown {
  min-width: 200px;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  list-style: none;
  z-index: 98;
  white-space: nowrap;
}

.xs_nav-portrait .nav-dropdown {
  width: 100%;
  position: static;
  left: 0;
}

.nav-dropdown .nav-dropdown {
  left: 100%;
}

.nav-menu>li>.nav-dropdown {
  border-top: solid 1px #f0f0f0;
}

.nav-dropdown>li {
  width: 100%;
  float: left;
  clear: both;
  position: relative;
  text-align: left;
}

.nav-dropdown>li>a {
  width: 100%;
  padding: 16px 20px;
  display: inline-block;
  text-decoration: none;
  float: left;
  font-size: 13px;
  color: #70798b;
  background-color: #fdfdfd;
  -webkit-transition: color .3s, background .3s;
  transition: color .3s, background .3s;
}

.nav-dropdown>li.focus>a,
.nav-dropdown>li:hover>a {
  color: #967ADC;
}

.nav-dropdown.nav-dropdown-left {
  right: 0;
}

.nav-dropdown>li>.nav-dropdown-left {
  left: auto;
  right: 100%;
}

.xs_nav-landscape .nav-dropdown.nav-dropdown-left>li>a {
  text-align: right;
}

.xs_nav-portrait .nav-dropdown>li>a {
  padding: 12px 20px 12px 30px;
}

.xs_nav-portrait .nav-dropdown>li>ul>li>a {
  padding-left: 50px;
}

.xs_nav-portrait .nav-dropdown>li>ul>li>ul>li>a {
  padding-left: 70px;
}

.xs_nav-portrait .nav-dropdown>li>ul>li>ul>li>ul>li>a {
  padding-left: 90px;
}

.xs_nav-portrait .nav-dropdown>li>ul>li>ul>li>ul>li>ul>li>a {
  padding-left: 110px;
}

.nav-dropdown .submenu-indicator {
  right: 15px;
  top: 16px;
  position: absolute;
}

.xs_nav-portrait .nav-dropdown .submenu-indicator {
  right: 0;
  top: 0;
}

.nav-dropdown .submenu-indicator .submenu-indicator-chevron {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.xs_nav-portrait .nav-dropdown .submenu-indicator .submenu-indicator-chevron {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-dropdown>.focus>a .submenu-indicator-chevron,
.nav-dropdown>li:hover>a .submenu-indicator-chevron {
  border-color: transparent #967ADC #967ADC transparent;
}

.xs_nav-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator {
  left: 10px;
}

.xs_nav-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator .submenu-indicator-chevron {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.nav-dropdown-horizontal {
  width: 100%;
  left: 0;
  background-color: #fdfdfd;
  border-top: solid 1px #f0f0f0;
}

.nav-dropdown-horizontal .nav-dropdown-horizontal {
  width: 100%;
  top: 100%;
  left: 0;
}

.xs_nav-portrait .nav-dropdown-horizontal .nav-dropdown-horizontal {
  border-top: none;
}

.nav-dropdown-horizontal>li {
  width: auto;
  clear: none;
  position: static;
}

.megamenu-panel [class*=container],
.xs_nav-portrait .nav-dropdown-horizontal>li {
  width: 100%;
}

.nav-dropdown-horizontal>li>a {
  position: relative;
}

.nav-dropdown-horizontal .submenu-indicator {
  height: 18px;
  top: 11px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.xs_nav-portrait .nav-dropdown-horizontal .submenu-indicator {
  height: 42px;
  top: 0;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.xs_nav-portrait .nav-dropdown-horizontal .submenu-indicator.submenu-indicator-up {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.megamenu-panel {
  width: 100%;
  padding: 15px;
  display: none;
  position: absolute;
  font-size: 14px;
  z-index: 98;
  text-align: left;
  color: inherit;
  border-top: solid 1px #f0f0f0;
  background-color: #fdfdfd;
}

.megamenu-tabs-nav>li>a,
.megamenu-tabs-pane {
  border: 1px solid #eff0f2;
  color: #70798b;
  font-size: 13px;
}

.xs_nav-portrait .megamenu-panel {
  padding: 25px;
  position: static;
  display: block;
}

.megamenu-panel [class*=container] [class*=col-] {
  padding: 0;
}

.megamenu-panel-half {
  width: 50%;
}

.megamenu-panel-quarter {
  width: 25%;
}

.megamenu-panel-row,
.xs_nav-portrait .megamenu-panel-half,
.xs_nav-portrait .megamenu-panel-quarter {
  width: 100%;
}

.megamenu-panel-row:after,
.megamenu-panel-row:before {
  display: table;
  content: "";
  line-height: 0;
}

.megamenu-panel-row:after {
  clear: both;
}

.megamenu-panel-row [class*=col-] {
  display: block;
  min-height: 20px;
  float: left;
  margin-left: 3%;
}

.megamenu-panel-row [class*=col-]:first-child {
  margin-left: 0;
}

.xs_nav-portrait .megamenu-panel-row [class*=col-] {
  float: none;
  display: block;
  width: 100% !important;
  margin-left: 0;
  margin-top: 15px;
}

.xs_nav-portrait .megamenu-panel-row:first-child [class*=col-]:first-child {
  margin-top: 0;
}

.megamenu-panel-row .col-1 {
  width: 5.583333333333%;
}

.megamenu-panel-row .col-2 {
  width: 14.166666666666%;
}

.megamenu-panel-row .col-3 {
  width: 22.75%;
}

.megamenu-panel-row .col-4 {
  width: 31.333333333333%;
}

.megamenu-panel-row .col-5 {
  width: 39.916666666667%;
}

.megamenu-panel-row .col-6 {
  width: 48.5%;
}

.megamenu-panel-row .col-7 {
  width: 57.083333333333%;
}

.megamenu-panel-row .col-8 {
  width: 65.666666666667%;
}

.megamenu-panel-row .col-9 {
  width: 74.25%;
}

.megamenu-panel-row .col-10 {
  width: 82.833333333334%;
}

.megamenu-panel-row .col-11 {
  width: 91.416666666667%;
}

.megamenu-panel-row .col-12 {
  width: 100%;
}

.megamenu-tabs {
  width: 100%;
  float: left;
  display: block;
}

.megamenu-tabs-nav {
  width: 20%;
  margin: 0;
  padding: 0;
  float: left;
  list-style: none;
}

.xs_nav-portrait .megamenu-tabs-nav {
  width: 100%;
}

.megamenu-tabs-nav>li>a {
  width: 100%;
  padding: 10px 16px;
  float: left;
  text-decoration: none;
  outline: 0;
  background-color: #fff;
  -webkit-transition: background .3s;
  transition: background .3s;
}

.megamenu-tabs-nav>li.active a,
.megamenu-tabs-nav>li:hover a {
  background-color: #f5f5f5;
}

.megamenu-tabs-pane {
  width: 80%;
  min-height: 30px;
  padding: 20px;
  float: right;
  display: none;
  opacity: 0;
  background-color: #fff;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.megamenu-tabs-pane.active {
  display: block;
  opacity: 1;
}

.xs_nav-portrait .megamenu-tabs-pane {
  width: 100%;
}

.megamenu-lists {
  width: 100%;
  display: table;
}

.megamenu-list {
  width: 100%;
  margin: 0 0 15px;
  padding: 0;
  display: inline-block;
  float: left;
  list-style: none;
}

.megamenu-list:last-child {
  margin: 0;
  border: none;
}

.xs_nav-landscape .megamenu-list {
  margin: -15px 0;
  padding: 20px 0;
  border-right: solid 1px #f0f0f0;
}

.xs_nav-landscape .megamenu-list:last-child {
  border: none;
}

.megamenu-list>li>a {
  width: 100%;
  padding: 10px 15px;
  display: inline-block;
  color: #70798b;
  text-decoration: none;
  font-size: 13px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.megamenu-list>li>a:hover {
  color: #fff;
  background-color: #967ADC;
}

.megamenu-list>li.megamenu-list-title>a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: .8;
  color: #70798b;
}

.megamenu-list>li.megamenu-list-title>a:hover {
  opacity: 1;
  background-color: transparent;
}

.xs_nav-landscape .list-col-2 {
  width: 50%;
}

.xs_nav-landscape .list-col-3 {
  width: 33%;
}

.xs_nav-landscape .list-col-4 {
  width: 25%;
}

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */

.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

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

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

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

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.owl-height {
  -webkit-transition: height .5s ease-in-out;
  transition: height .5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(/images/owl.video.play.png?4cbde124d6cd8122c801118696c16f07) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform .1s ease;
  transition: -webkit-transform .1s ease;
  transition: transform .1s ease;
  transition: transform .1s ease, -webkit-transform .1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */

.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav {
  margin-top: 10px;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: .5;
  cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@font-face {
  font-family: star;
  src: url(/fonts/star.eot?5aba6f67f5a8e7baf9bc5a569824e2ba);
  src: url(/fonts/star.eot?5aba6f67f5a8e7baf9bc5a569824e2ba) format("embedded-opentype"), url(/fonts/star.woff?335cbf607c55aa32fd06809d1f9eb127) format("woff"), url(/fonts/star.ttf?6b78a34cea321205e5ee8a1b44b41a5e) format("truetype"), url(/fonts/star.svg?5e73470010dd7998b280b4066e39e9ec) format("svg");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: WooCommerce;
  src: url(/fonts/WooCommerce.eot?37499c01879113d013b3f6179700ce69);
  src: url(/fonts/WooCommerce.eot?37499c01879113d013b3f6179700ce69) format("embedded-opentype"), url(/fonts/WooCommerce.woff?a675793d69f4eec5a3825bfc2da67287) format("woff"), url(/fonts/WooCommerce.ttf?88d94391c7d0b11d54a46fbff449b98f) format("truetype"), url(/fonts/WooCommerce.svg?d9b7a6d9164deb672b462edc5e90621e) format("svg");
  font-weight: 400;
  font-style: normal;
}

.woocommerce-store-notice,
p.demo_store {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  width: 100%;
  font-size: 1em;
  padding: 1em 0;
  text-align: center;
  background-color: #a46497;
  color: #fff;
  z-index: 99998;
  -webkit-box-shadow: 0 1px 1em rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 1em rgba(0, 0, 0, 0.2);
  display: none;
}

.woocommerce-store-notice a,
p.demo_store a {
  color: #fff;
  text-decoration: underline;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.admin-bar p.demo_store {
  top: 32px;
}

.clear {
  clear: both;
}

.woocommerce .blockUI.blockOverlay {
  position: relative;
}

.woocommerce .blockUI.blockOverlay::before {
  height: 1em;
  width: 1em;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -.5em;
  margin-top: -.5em;
  content: '';
  -webkit-animation: spin 1s ease-in-out infinite;
  animation: spin 1s ease-in-out infinite;
  background: url(/fonts/loader.svg?72376329015bc6d0d20c77b4f10c5ed1) center center;
  background-size: cover;
  line-height: 1;
  text-align: center;
  font-size: 2em;
  color: rgba(0, 0, 0, 0.75);
}

.woocommerce .loader::before {
  height: 1em;
  width: 1em;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -.5em;
  margin-top: -.5em;
  content: '';
  -webkit-animation: spin 1s ease-in-out infinite;
  animation: spin 1s ease-in-out infinite;
  background: url(/fonts/loader.svg?72376329015bc6d0d20c77b4f10c5ed1) center center;
  background-size: cover;
  line-height: 1;
  text-align: center;
  font-size: 2em;
  color: rgba(0, 0, 0, 0.75);
}

.woocommerce a.remove {
  display: block;
  font-size: 1.5em;
  height: 1em;
  width: 1em;
  text-align: center;
  line-height: 1;
  border-radius: 100%;
  color: red !important;
  text-decoration: none;
  font-weight: 700;
  border: 0;
}

.woocommerce a.remove:hover {
  color: #fff !important;
  background: red;
}

.woocommerce small.note {
  display: block;
  color: #777;
  font-size: .857em;
  margin-top: 10px;
}

.woocommerce .woocommerce-breadcrumb {
  margin: 0 0 1em;
  padding: 0;
  font-size: .92em;
  color: #777;
}

.woocommerce .woocommerce-breadcrumb::after,
.woocommerce .woocommerce-breadcrumb::before {
  content: ' ';
  display: table;
}

.woocommerce .woocommerce-breadcrumb::after {
  clear: both;
}

.woocommerce .woocommerce-breadcrumb a {
  color: #777;
}

.woocommerce .quantity .qty {
  width: 3.631em;
  text-align: center;
}

.woocommerce div.product {
  margin-bottom: 0;
  position: relative;
}

.woocommerce div.product .product_title {
  clear: none;
  margin-top: 0;
  padding: 0;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: #77a464;
  font-size: 1.25em;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
  background: inherit;
  font-weight: 700;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
  opacity: .5;
}

.woocommerce div.product p.stock {
  font-size: .92em;
}

.woocommerce div.product .stock {
  color: #77a464;
}

.woocommerce div.product .out-of-stock {
  color: red;
}

.woocommerce div.product .woocommerce-product-rating {
  margin-bottom: 1.618em;
}

.woocommerce div.product div.images {
  margin-bottom: 2em;
}

.woocommerce div.product div.images img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.woocommerce div.product div.images div.thumbnails {
  padding-top: 1em;
}

.woocommerce div.product div.images.woocommerce-product-gallery {
  position: relative;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  -webkit-transition: all cubic-bezier(0.795, -0.035, 0, 1) 0.5s;
  transition: all cubic-bezier(0.795, -0.035, 0, 1) 0.5s;
  margin: 0;
  padding: 0;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .zoomImg {
  background-color: #fff;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
  width: 25%;
  display: inline-block;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
  position: absolute;
  top: .5em;
  right: .5em;
  font-size: 2em;
  z-index: 9;
  width: 36px;
  height: 36px;
  background: #fff;
  text-indent: -9999px;
  border-radius: 100%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid #000;
  border-radius: 100%;
  position: absolute;
  top: 9px;
  left: 9px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger:after {
  content: "";
  display: block;
  width: 2px;
  height: 8px;
  background: #000;
  border-radius: 6px;
  position: absolute;
  top: 19px;
  left: 22px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.woocommerce div.product div.images .flex-control-thumbs {
  overflow: hidden;
  zoom: 1;
  margin: 0;
  padding: 0;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
  list-style: none;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
  cursor: pointer;
  opacity: .5;
  margin: 0;
}

.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs li img:hover {
  opacity: 1;
}

.woocommerce div.product .woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1) {
  clear: left;
}

.woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
  clear: left;
}

.woocommerce div.product .woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1) {
  clear: left;
}

.woocommerce div.product div.summary {
  margin-bottom: 2em;
}

.woocommerce div.product div.social {
  text-align: right;
  margin: 0 0 1em;
}

.woocommerce div.product div.social span {
  margin: 0 0 0 2px;
}

.woocommerce div.product div.social span span {
  margin: 0;
}

.woocommerce div.product div.social span .stButton .chicklets {
  padding-left: 16px;
  width: 0;
}

.woocommerce div.product div.social iframe {
  float: left;
  margin-top: 3px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  list-style: none;
  padding: 0 0 0 1em;
  margin: 0 0 1.618em;
  overflow: hidden;
  position: relative;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 1px solid #d3ced2;
  background-color: #ebe9eb;
  display: inline-block;
  position: relative;
  z-index: 0;
  border-radius: 4px 4px 0 0;
  margin: 0 -5px;
  padding: 0 1em;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: inline-block;
  padding: .5em 0;
  font-weight: 700;
  color: #515151;
  text-decoration: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  text-decoration: none;
  color: #6b6a6b;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: #fff;
  z-index: 2;
  border-bottom-color: #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: inherit;
  text-shadow: inherit;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before {
  -webkit-box-shadow: 2px 2px 0 #fff;
  box-shadow: 2px 2px 0 #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
  -webkit-box-shadow: -2px 2px 0 #fff;
  box-shadow: -2px 2px 0 #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  border: 1px solid #d3ced2;
  position: absolute;
  bottom: -1px;
  width: 5px;
  height: 5px;
  content: ' ';
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  left: -6px;
  border-bottom-right-radius: 4px;
  border-width: 0 1px 1px 0;
  -webkit-box-shadow: 2px 2px 0 #ebe9eb;
  box-shadow: 2px 2px 0 #ebe9eb;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  right: -6px;
  border-bottom-left-radius: 4px;
  border-width: 0 0 1px 1px;
  -webkit-box-shadow: -2px 2px 0 #ebe9eb;
  box-shadow: -2px 2px 0 #ebe9eb;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  position: absolute;
  content: ' ';
  width: 100%;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #d3ced2;
  z-index: 1;
}

.woocommerce div.product .woocommerce-tabs .panel {
  margin: 0 0 2em;
  padding: 0;
}

.woocommerce div.product p.cart {
  margin-bottom: 2em;
}

.woocommerce div.product p.cart::after,
.woocommerce div.product p.cart::before {
  content: ' ';
  display: table;
}

.woocommerce div.product p.cart::after {
  clear: both;
}

.woocommerce div.product form.cart {
  margin-bottom: 2em;
}

.woocommerce div.product form.cart::after,
.woocommerce div.product form.cart::before {
  content: ' ';
  display: table;
}

.woocommerce div.product form.cart::after {
  clear: both;
}

.woocommerce div.product form.cart div.quantity {
  float: left;
  margin: 0 4px 0 0;
}

.woocommerce div.product form.cart table {
  border-width: 0 0 1px;
}

.woocommerce div.product form.cart table td {
  padding-left: 0;
}

.woocommerce div.product form.cart table div.quantity {
  float: none;
  margin: 0;
}

.woocommerce div.product form.cart table small.stock {
  display: block;
  float: none;
}

.woocommerce div.product form.cart .variations {
  margin-bottom: 1em;
  border: 0;
  width: 100%;
}

.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
  border: 0;
  vertical-align: top;
  line-height: 2em;
}

.woocommerce div.product form.cart .variations label {
  font-weight: 700;
}

.woocommerce div.product form.cart .variations select {
  max-width: 100%;
  min-width: 75%;
  display: inline-block;
  margin-right: 1em;
}

.woocommerce div.product form.cart .variations td.label {
  padding-right: 1em;
}

.woocommerce div.product form.cart .woocommerce-variation-description p {
  margin-bottom: 1em;
}

.woocommerce div.product form.cart .reset_variations {
  visibility: hidden;
  font-size: .83em;
}

.woocommerce div.product form.cart .wc-no-matching-variations {
  display: none;
}

.woocommerce div.product form.cart .button {
  vertical-align: middle;
  float: left;
}

.woocommerce div.product form.cart .group_table td.label {
  padding-right: 1em;
  padding-left: 1em;
}

.woocommerce div.product form.cart .group_table td {
  vertical-align: top;
  padding-bottom: .5em;
  border: 0;
}

.woocommerce div.product form.cart .group_table td:first-child {
  width: 4em;
  text-align: center;
}

.woocommerce div.product form.cart .group_table .wc-grouped-product-add-to-cart-checkbox {
  display: inline-block;
  width: auto;
  margin: 0 auto;
  -webkit-transform: scale(1.5, 1.5);
  transform: scale(1.5, 1.5);
}

.woocommerce span.onsale {
  min-height: 3.236em;
  min-width: 3.236em;
  padding: .202em;
  font-size: 1em;
  font-weight: 700;
  position: absolute;
  text-align: center;
  line-height: 3.236;
  top: -.5em;
  left: -.5em;
  margin: 0;
  border-radius: 100%;
  background-color: #77a464;
  color: #fff;
  font-size: .857em;
  -webkit-font-smoothing: antialiased;
  z-index: 9;
}

.woocommerce .products ul,
.woocommerce ul.products {
  margin: 0 0 1em;
  padding: 0;
  list-style: none outside;
  clear: both;
}

.woocommerce .products ul::after,
.woocommerce .products ul::before,
.woocommerce ul.products::after,
.woocommerce ul.products::before {
  content: ' ';
  display: table;
}

.woocommerce .products ul::after,
.woocommerce ul.products::after {
  clear: both;
}

.woocommerce .products ul li,
.woocommerce ul.products li {
  list-style: none outside;
}

.woocommerce ul.products li.product .onsale {
  top: 0;
  right: 0;
  left: auto;
  margin: -.5em -.5em 0 0;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
  padding: .5em 0;
  margin: 0;
  font-size: 1em;
}

.woocommerce ul.products li.product a {
  text-decoration: none;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 0 1em;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.woocommerce ul.products li.product strong {
  display: block;
}

.woocommerce ul.products li.product .star-rating {
  font-size: .857em;
}

.woocommerce ul.products li.product .button {
  margin-top: 1em;
}

.woocommerce ul.products li.product .price {
  color: #77a464;
  display: block;
  font-weight: 400;
  margin-bottom: .5em;
  font-size: .857em;
}

.woocommerce ul.products li.product .price del {
  color: inherit;
  opacity: .5;
  display: block;
}

.woocommerce ul.products li.product .price ins {
  background: 0 0;
  font-weight: 700;
}

.woocommerce ul.products li.product .price .from {
  font-size: .67em;
  margin: -2px 0 0 0;
  text-transform: uppercase;
  color: rgba(132, 132, 132, 0.5);
}

.woocommerce .woocommerce-result-count {
  margin: 0 0 1em;
}

.woocommerce .woocommerce-ordering {
  margin: 0 0 1em;
}

.woocommerce .woocommerce-ordering select {
  vertical-align: top;
}

.woocommerce nav.woocommerce-pagination {
  text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
  display: inline-block;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border: 1px solid #d3ced2;
  border-right: 0;
  margin: 1px;
}

.woocommerce nav.woocommerce-pagination ul li {
  border-right: 1px solid #d3ced2;
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1;
  font-size: 1em;
  font-weight: 400;
  padding: .5em;
  min-width: 1em;
  display: block;
}

.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: #ebe9eb;
  color: #8a7e88;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  font-size: 100%;
  margin: 0;
  line-height: 1;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  overflow: visible;
  padding: .618em 1em;
  font-weight: 700;
  border-radius: 3px;
  left: auto;
  color: #515151;
  background-color: #ebe9eb;
  border: 0;
  white-space: nowrap;
  display: inline-block;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
}

.woocommerce #respond input#submit.loading,
.woocommerce a.button.loading,
.woocommerce button.button.loading,
.woocommerce input.button.loading {
  opacity: .25;
  padding-right: 2.618em;
}

.woocommerce #respond input#submit.loading::after,
.woocommerce a.button.loading::after,
.woocommerce button.button.loading::after,
.woocommerce input.button.loading::after {
  font-family: WooCommerce;
  content: '\E01C';
  vertical-align: top;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  position: absolute;
  top: .618em;
  right: 1em;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.woocommerce #respond input#submit.added::after,
.woocommerce a.button.added::after,
.woocommerce button.button.added::after,
.woocommerce input.button.added::after {
  font-family: WooCommerce;
  content: '\E017';
  margin-left: .53em;
  vertical-align: bottom;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background-color: #dad8da00;
  text-decoration: none;
  background-image: none;
  color: #515151;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background-color: #a46497;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background-color: #935386;
  color: #fff;
}

.woocommerce #respond input#submit.alt.disabled,
.woocommerce #respond input#submit.alt.disabled:hover,
.woocommerce #respond input#submit.alt:disabled,
.woocommerce #respond input#submit.alt:disabled:hover,
.woocommerce #respond input#submit.alt:disabled[disabled],
.woocommerce #respond input#submit.alt:disabled[disabled]:hover,
.woocommerce a.button.alt.disabled,
.woocommerce a.button.alt.disabled:hover,
.woocommerce a.button.alt:disabled,
.woocommerce a.button.alt:disabled:hover,
.woocommerce a.button.alt:disabled[disabled],
.woocommerce a.button.alt:disabled[disabled]:hover,
.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt.disabled:hover,
.woocommerce button.button.alt:disabled,
.woocommerce button.button.alt:disabled:hover,
.woocommerce button.button.alt:disabled[disabled],
.woocommerce button.button.alt:disabled[disabled]:hover,
.woocommerce input.button.alt.disabled,
.woocommerce input.button.alt.disabled:hover,
.woocommerce input.button.alt:disabled,
.woocommerce input.button.alt:disabled:hover,
.woocommerce input.button.alt:disabled[disabled],
.woocommerce input.button.alt:disabled[disabled]:hover {
  background-color: #a46497;
  color: #fff;
}

.woocommerce #respond input#submit.disabled,
.woocommerce #respond input#submit:disabled,
.woocommerce #respond input#submit:disabled[disabled],
.woocommerce a.button.disabled,
.woocommerce a.button:disabled,
.woocommerce a.button:disabled[disabled],
.woocommerce button.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button.disabled,
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled] {
  color: inherit;
  cursor: not-allowed;
  opacity: .5;
  padding: .618em 1em;
}

.woocommerce #respond input#submit.disabled:hover,
.woocommerce #respond input#submit:disabled:hover,
.woocommerce #respond input#submit:disabled[disabled]:hover,
.woocommerce a.button.disabled:hover,
.woocommerce a.button:disabled:hover,
.woocommerce a.button:disabled[disabled]:hover,
.woocommerce button.button.disabled:hover,
.woocommerce button.button:disabled:hover,
.woocommerce button.button:disabled[disabled]:hover,
.woocommerce input.button.disabled:hover,
.woocommerce input.button:disabled:hover,
.woocommerce input.button:disabled[disabled]:hover {
  color: inherit;
  background-color: #ebe9eb;
}

.woocommerce .cart .button,
.woocommerce .cart input.button {
  float: none;
}

.woocommerce a.added_to_cart {
  padding-top: .5em;
  white-space: nowrap;
  display: inline-block;
}

.woocommerce #reviews h2 small {
  float: right;
  color: #777;
  font-size: 15px;
  margin: 10px 0 0;
}

.woocommerce #reviews h2 small a {
  text-decoration: none;
  color: #777;
}

.woocommerce #reviews h3 {
  margin: 0;
}

.woocommerce #reviews #respond {
  margin: 0;
  border: 0;
  padding: 0;
}

.woocommerce #reviews #comment {
  height: 75px;
}

.woocommerce #reviews #comments .add_review::after,
.woocommerce #reviews #comments .add_review::before {
  content: ' ';
  display: table;
}

.woocommerce #reviews #comments .add_review::after {
  clear: both;
}

.woocommerce #reviews #comments h2 {
  clear: none;
}

.woocommerce #reviews #comments ol.commentlist {
  margin: 0;
  width: 100%;
  background: 0 0;
  list-style: none;
}

.woocommerce #reviews #comments ol.commentlist::after,
.woocommerce #reviews #comments ol.commentlist::before {
  content: ' ';
  display: table;
}

.woocommerce #reviews #comments ol.commentlist::after {
  clear: both;
}

.woocommerce #reviews #comments ol.commentlist li {
  padding: 0;
  margin: 0 0 20px;
  border: 0;
  position: relative;
  background: 0;
  border: 0;
}

.woocommerce #reviews #comments ol.commentlist li .meta {
  color: #777;
  font-size: .75em;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
  float: left;
  position: absolute;
  top: 0;
  left: 0;
  padding: 3px;
  width: 32px;
  height: auto;
  background: #ebe9eb;
  border: 1px solid #e4e1e3;
  margin: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
  margin: 0 0 0 50px;
  border: 1px solid #e4e1e3;
  border-radius: 4px;
  padding: 1em 1em 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text::after,
.woocommerce #reviews #comments ol.commentlist li .comment-text::before {
  content: ' ';
  display: table;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text::after {
  clear: both;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p {
  margin: 0 0 1em;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
  font-size: .83em;
}

.woocommerce #reviews #comments ol.commentlist ul.children {
  list-style: none outside;
  margin: 20px 0 0 50px;
}

.woocommerce #reviews #comments ol.commentlist ul.children .star-rating {
  display: none;
}

.woocommerce #reviews #comments ol.commentlist #respond {
  border: 1px solid #e4e1e3;
  border-radius: 4px;
  padding: 1em 1em 0;
  margin: 20px 0 0 50px;
}

.woocommerce #reviews #comments .commentlist>li::before {
  content: '';
}

.woocommerce .star-rating {
  float: right;
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1;
  font-size: 1em;
  width: 5.4em;
  font-family: star;
}

.woocommerce .star-rating::before {
  content: 'sssss';
  color: #d3ced2;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}

.woocommerce .star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}

.woocommerce .star-rating span::before {
  content: 'SSSSS';
  top: 0;
  position: absolute;
  left: 0;
}

.woocommerce .woocommerce-product-rating {
  line-height: 2;
  display: block;
}

.woocommerce .woocommerce-product-rating::after,
.woocommerce .woocommerce-product-rating::before {
  content: ' ';
  display: table;
}

.woocommerce .woocommerce-product-rating::after {
  clear: both;
}

.woocommerce .woocommerce-product-rating .star-rating {
  margin: .5em 4px 0 0;
  float: left;
}

.woocommerce .products .star-rating {
  display: block;
  margin: 0 0 .5em;
  float: none;
}

.woocommerce .hreview-aggregate .star-rating {
  margin: 10px 0 0;
}

.woocommerce #review_form #respond {
  position: static;
  margin: 0;
  width: auto;
  padding: 0;
  background: transparent none;
  border: 0;
}

.woocommerce #review_form #respond::after,
.woocommerce #review_form #respond::before {
  content: ' ';
  display: table;
}

.woocommerce #review_form #respond::after {
  clear: both;
}

.woocommerce #review_form #respond p {
  margin: 0 0 10px;
}

.woocommerce #review_form #respond .form-submit input {
  left: auto;
}

.woocommerce #review_form #respond textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.woocommerce p.stars a {
  position: relative;
  height: 1em;
  width: 1em;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
}

.woocommerce p.stars a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-family: WooCommerce;
  content: '\E021';
  text-indent: 0;
}

.woocommerce p.stars a:hover~a::before {
  content: '\E021';
}

.woocommerce p.stars:hover a::before {
  content: '\E020';
}

.woocommerce p.stars.selected a.active::before {
  content: '\E020';
}

.woocommerce p.stars.selected a.active~a::before {
  content: '\E021';
}

.woocommerce p.stars.selected a:not(.active)::before {
  content: '\E020';
}

.woocommerce table.shop_attributes {
  border: 0;
  border-top: 1px dotted rgba(0, 0, 0, 0.1);
  margin-bottom: 1.618em;
  width: 100%;
}

.woocommerce table.shop_attributes th {
  width: 150px;
  font-weight: 700;
  padding: 8px;
  border-top: 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
  margin: 0;
  line-height: 1.5;
}

.woocommerce table.shop_attributes td {
  font-style: italic;
  padding: 0;
  border-top: 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
  margin: 0;
  line-height: 1.5;
}

.woocommerce table.shop_attributes td p {
  margin: 0;
  padding: 8px 0;
}

.woocommerce table.shop_attributes tr:nth-child(even) td,
.woocommerce table.shop_attributes tr:nth-child(even) th {
  background: rgba(0, 0, 0, 0.025);
}

.woocommerce table.shop_table {
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 -1px 24px 0;
  text-align: left;
  width: 100%;
  border-collapse: separate;
  border-radius: 5px;
}

.woocommerce table.shop_table th {
  font-weight: 700;
  padding: 13px 12px;
}

.woocommerce table.shop_table td {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 6px 12px;
  vertical-align: middle;
}

.woocommerce table.shop_table td small {
  font-weight: 400;
}

.woocommerce table.shop_table tbody:first-child tr:first-child td,
.woocommerce table.shop_table tbody:first-child tr:first-child th {
  border-top: 0;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
  font-weight: 700;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.woocommerce table.my_account_orders {
  font-size: .85em;
}

.woocommerce table.my_account_orders td,
.woocommerce table.my_account_orders th {
  padding: 4px 8px;
  vertical-align: middle;
}

.woocommerce table.my_account_orders .button {
  white-space: nowrap;
}

.woocommerce table.my_account_orders .order-actions {
  text-align: right;
}

.woocommerce table.my_account_orders .order-actions .button {
  margin: .125em 0 .125em .25em;
}

.woocommerce table.woocommerce-MyAccount-downloads td,
.woocommerce table.woocommerce-MyAccount-downloads th {
  vertical-align: top;
  text-align: center;
}

.woocommerce table.woocommerce-MyAccount-downloads td:first-child,
.woocommerce table.woocommerce-MyAccount-downloads th:first-child {
  text-align: left;
}

.woocommerce table.woocommerce-MyAccount-downloads td:last-child,
.woocommerce table.woocommerce-MyAccount-downloads th:last-child {
  text-align: left;
}

.woocommerce table.woocommerce-MyAccount-downloads td .woocommerce-MyAccount-downloads-file::before,
.woocommerce table.woocommerce-MyAccount-downloads th .woocommerce-MyAccount-downloads-file::before {
  content: '\2193';
  display: inline-block;
}

.woocommerce td.product-name .wc-item-meta,
.woocommerce td.product-name dl.variation {
  list-style: none outside;
}

.woocommerce td.product-name .wc-item-meta .wc-item-meta-label,
.woocommerce td.product-name .wc-item-meta dt,
.woocommerce td.product-name dl.variation .wc-item-meta-label,
.woocommerce td.product-name dl.variation dt {
  float: left;
  clear: both;
  margin-right: .25em;
  display: inline-block;
  list-style: none outside;
}

.woocommerce td.product-name .wc-item-meta dd,
.woocommerce td.product-name dl.variation dd {
  margin: 0;
}

.woocommerce td.product-name .wc-item-meta p,
.woocommerce td.product-name .wc-item-meta:last-child,
.woocommerce td.product-name dl.variation p,
.woocommerce td.product-name dl.variation:last-child {
  margin-bottom: 0;
}

.woocommerce td.product-name p.backorder_notification {
  font-size: .83em;
}

.woocommerce td.product-quantity {
  min-width: 80px;
}

.woocommerce ul.cart_list,
.woocommerce ul.product_list_widget {
  list-style: none outside;
  padding: 0;
  margin: 0;
}

.woocommerce ul.cart_list li,
.woocommerce ul.product_list_widget li {
  padding: 4px 0;
  margin: 0;
  list-style: none;
}

.woocommerce ul.cart_list li::after,
.woocommerce ul.cart_list li::before,
.woocommerce ul.product_list_widget li::after,
.woocommerce ul.product_list_widget li::before {
  content: ' ';
  display: table;
}

.woocommerce ul.cart_list li::after,
.woocommerce ul.product_list_widget li::after {
  clear: both;
}

.woocommerce ul.cart_list li a,
.woocommerce ul.product_list_widget li a {
  display: block;
  font-weight: 700;
}

.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
  float: right;
  margin-left: 4px;
  width: 32px;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.woocommerce ul.cart_list li dl,
.woocommerce ul.product_list_widget li dl {
  margin: 0;
  padding-left: 1em;
  border-left: 2px solid rgba(0, 0, 0, 0.1);
}

.woocommerce ul.cart_list li dl::after,
.woocommerce ul.cart_list li dl::before,
.woocommerce ul.product_list_widget li dl::after,
.woocommerce ul.product_list_widget li dl::before {
  content: ' ';
  display: table;
}

.woocommerce ul.cart_list li dl::after,
.woocommerce ul.product_list_widget li dl::after {
  clear: both;
}

.woocommerce ul.cart_list li dl dd,
.woocommerce ul.cart_list li dl dt,
.woocommerce ul.product_list_widget li dl dd,
.woocommerce ul.product_list_widget li dl dt {
  display: inline-block;
  float: left;
  margin-bottom: 1em;
}

.woocommerce ul.cart_list li dl dt,
.woocommerce ul.product_list_widget li dl dt {
  font-weight: 700;
  padding: 0 0 .25em;
  margin: 0 4px 0 0;
  clear: left;
}

.woocommerce ul.cart_list li dl dd,
.woocommerce ul.product_list_widget li dl dd {
  padding: 0 0 .25em;
}

.woocommerce ul.cart_list li dl dd p:last-child,
.woocommerce ul.product_list_widget li dl dd p:last-child {
  margin-bottom: 0;
}

.woocommerce ul.cart_list li .star-rating,
.woocommerce ul.product_list_widget li .star-rating {
  float: none;
}

.woocommerce .widget_shopping_cart .total,
.woocommerce.widget_shopping_cart .woocommerce .widget_shopping_cart .total strong,
.woocommerce.widget_shopping_cart .total strong {
  min-width: 40px;
  display: inline-block;
}

.woocommerce .widget_shopping_cart .cart_list li,
.woocommerce.widget_shopping_cart .cart_list li {
  padding-left: 2em;
  position: relative;
  padding-top: 0;
}

.woocommerce .widget_shopping_cart .cart_list li a.remove,
.woocommerce.widget_shopping_cart .cart_list li a.remove {
  position: absolute;
  top: 0;
  left: 0;
}

.woocommerce .widget_shopping_cart .buttons::after,
.woocommerce .widget_shopping_cart .buttons::before,
.woocommerce.widget_shopping_cart .buttons::after,
.woocommerce.widget_shopping_cart .buttons::before {
  content: ' ';
  display: table;
}

.woocommerce .widget_shopping_cart .buttons::after,
.woocommerce.widget_shopping_cart .buttons::after {
  clear: both;
}

.woocommerce .widget_shopping_cart .buttons a,
.woocommerce.widget_shopping_cart .buttons a {
  margin-right: 5px;
  margin-bottom: 5px;
}

.woocommerce form .form-row {
  padding: 3px;
  margin: 0 0 6px;
}

.woocommerce form .form-row [placeholder]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity .5s .5s ease;
  transition: opacity .5s .5s ease;
  opacity: 0;
}

.woocommerce form .form-row label {
  line-height: 2;
}

.woocommerce form .form-row label.hidden {
  visibility: hidden;
}

.woocommerce form .form-row label.inline {
  display: inline;
}

.woocommerce form .form-row select {
  cursor: pointer;
  margin: 0;
}

.woocommerce form .form-row .required {
  color: red;
  font-weight: 700;
  border: 0;
}

.woocommerce form .form-row .input-checkbox {
  display: inline;
  margin: -2px 8px 0 0;
  text-align: center;
  vertical-align: middle;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  outline: 0;
  line-height: 1;
}

.woocommerce form .form-row textarea {
  height: 4em;
  line-height: 1.5;
  display: block;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.woocommerce form .form-row .select2-container {
  width: 100%;
  line-height: 2em;
}

.woocommerce form .form-row.woocommerce-invalid label {
  color: #a00;
}

.woocommerce form .form-row.woocommerce-invalid .select2-container,
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
  border-color: #a00;
}

.woocommerce form .form-row.woocommerce-validated .select2-container,
.woocommerce form .form-row.woocommerce-validated input.input-text,
.woocommerce form .form-row.woocommerce-validated select {
  border-color: #69bf29;
}

.woocommerce form .form-row ::-webkit-input-placeholder {
  line-height: normal;
}

.woocommerce form .form-row :-moz-placeholder {
  line-height: normal;
}

.woocommerce form .form-row :-ms-input-placeholder {
  line-height: normal;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border: 1px solid #d3ced2;
  padding: 20px;
  margin: 2em 0;
  text-align: left;
  border-radius: 5px;
}

.woocommerce ul#shipping_method {
  list-style: none outside;
  margin: 0;
  padding: 0;
}

.woocommerce ul#shipping_method li {
  margin: 0;
  padding: .25em 0 .25em 22px;
  text-indent: -22px;
  list-style: none outside;
}

.woocommerce ul#shipping_method li input {
  margin: 3px .5ex;
}

.woocommerce ul#shipping_method li label {
  display: inline;
}

.woocommerce ul#shipping_method .amount {
  font-weight: 700;
}

.woocommerce p.woocommerce-shipping-contents {
  margin: 0;
}

.woocommerce ul.order_details {
  margin: 0 0 3em;
  list-style: none;
}

.woocommerce ul.order_details::after,
.woocommerce ul.order_details::before {
  content: ' ';
  display: table;
}

.woocommerce ul.order_details::after {
  clear: both;
}

.woocommerce ul.order_details li {
  float: left;
  margin-right: 2em;
  text-transform: uppercase;
  font-size: .715em;
  line-height: 1;
  border-right: 1px dashed #d3ced2;
  padding-right: 2em;
  margin-left: 0;
  padding-left: 0;
  list-style-type: none;
}

.woocommerce ul.order_details li strong {
  display: block;
  font-size: 1.4em;
  text-transform: none;
  line-height: 1.5;
}

.woocommerce ul.order_details li:last-of-type {
  border: none;
}

.woocommerce .wc-bacs-bank-details-account-name {
  font-weight: 700;
}

.woocommerce .woocommerce-customer-details,
.woocommerce .woocommerce-order-details,
.woocommerce .woocommerce-order-downloads {
  margin-bottom: 2em;
}

.woocommerce .woocommerce-customer-details :last-child,
.woocommerce .woocommerce-order-details :last-child,
.woocommerce .woocommerce-order-downloads :last-child {
  margin-bottom: 0;
}

.woocommerce .woocommerce-customer-details address {
  font-style: normal;
  margin-bottom: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom-width: 2px;
  border-right-width: 2px;
  text-align: left;
  width: 100%;
  border-radius: 5px;
  padding: 6px 12px;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email,
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone {
  margin-bottom: 0;
  padding-left: 1.5em;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before {
  font-family: WooCommerce;
  speak: none;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: .618em;
  content: "\E037";
  text-decoration: none;
  margin-left: -1.5em;
  line-height: 1.75;
  position: absolute;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before {
  font-family: WooCommerce;
  speak: none;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: .618em;
  content: "\E02D";
  text-decoration: none;
  margin-left: -1.5em;
  line-height: 1.75;
  position: absolute;
}

.woocommerce .woocommerce-widget-layered-nav-list {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none outside;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item {
  padding: 0 0 1px;
  list-style: none;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after,
.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::before {
  content: ' ';
  display: table;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after {
  clear: both;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a,
.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item span {
  padding: 1px 0;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item--chosen a::before {
  font-family: WooCommerce;
  speak: none;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: .618em;
  content: "\E013";
  text-decoration: none;
  color: #a00;
}

.woocommerce .woocommerce-widget-layered-nav-dropdown__submit {
  margin-top: 1em;
}

.woocommerce .widget_layered_nav_filters ul {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none outside;
  overflow: hidden;
  zoom: 1;
}

.woocommerce .widget_layered_nav_filters ul li {
  float: left;
  padding: 0 1px 1px 0;
  list-style: none;
}

.woocommerce .widget_layered_nav_filters ul li a {
  text-decoration: none;
}

.woocommerce .widget_layered_nav_filters ul li a::before {
  font-family: WooCommerce;
  speak: none;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: .618em;
  content: "\E013";
  text-decoration: none;
  color: #a00;
}

.woocommerce .widget_price_filter .price_slider {
  margin-bottom: 1em;
}

.woocommerce .widget_price_filter .price_slider_amount {
  text-align: right;
  line-height: 2.4;
  font-size: .8751em;
}

.woocommerce .widget_price_filter .price_slider_amount .button {
  font-size: 1.15em;
  float: left;
}

.woocommerce .widget_price_filter .ui-slider {
  position: relative;
  text-align: left;
  margin-left: .5em;
  margin-right: .5em;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1em;
  height: 1em;
  background-color: #a46497;
  border-radius: 1em;
  cursor: ew-resize;
  outline: 0;
  top: -.3em;
  margin-left: -.5em;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  border-radius: 1em;
  background-color: #a46497;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  border-radius: 1em;
  background-color: #602053;
  border: 0;
}

.woocommerce .widget_price_filter .ui-slider-horizontal {
  height: .5em;
}

.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-min {
  left: -1px;
}

.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-max {
  right: -1px;
}

.woocommerce .widget_rating_filter ul {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none outside;
}

.woocommerce .widget_rating_filter ul li {
  padding: 0 0 1px;
  list-style: none;
}

.woocommerce .widget_rating_filter ul li::after,
.woocommerce .widget_rating_filter ul li::before {
  content: ' ';
  display: table;
}

.woocommerce .widget_rating_filter ul li::after {
  clear: both;
}

.woocommerce .widget_rating_filter ul li a {
  padding: 1px 0;
  text-decoration: none;
}

.woocommerce .widget_rating_filter ul li .star-rating {
  float: none;
  display: inline-block;
}

.woocommerce .widget_rating_filter ul li.chosen a::before {
  font-family: WooCommerce;
  speak: none;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: .618em;
  content: "\E013";
  text-decoration: none;
  color: #a00;
}

.pswp {
  z-index: 999999;
}

.woocommerce img.pswp__img,
.woocommerce-page img.pswp__img {
  max-width: none;
}

button.pswp__button {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background-image: url(/images/default-skin.png?e3f799c6dec9af194c86decdf7392405) !important;
}

button.pswp__button,
button.pswp__button--arrow--left::before,
button.pswp__button--arrow--right::before,
button.pswp__button:hover {
  background-color: transparent !important;
}

button.pswp__button--arrow--left,
button.pswp__button--arrow--left:hover,
button.pswp__button--arrow--right,
button.pswp__button--arrow--right:hover {
  background-image: none !important;
}

button.pswp__button--close:hover {
  background-position: 0 -44px;
}

button.pswp__button--zoom:hover {
  background-position: -88px 0;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  padding: 1em 2em 1em 3.5em;
  margin: 0 0 2em;
  position: relative;
  background-color: #f7f6f7;
  color: #515151;
  border-top: 3px solid #a46497;
  list-style: none outside;
  width: auto;
  word-wrap: break-word;
}

.woocommerce-error::after,
.woocommerce-error::before,
.woocommerce-info::after,
.woocommerce-info::before,
.woocommerce-message::after,
.woocommerce-message::before {
  content: ' ';
  display: table;
}

.woocommerce-error::after,
.woocommerce-info::after,
.woocommerce-message::after {
  clear: both;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
  font-family: WooCommerce;
  content: '\E028';
  display: inline-block;
  position: absolute;
  top: 1em;
  left: 1.5em;
}

.woocommerce-error .button,
.woocommerce-info .button,
.woocommerce-message .button {
  float: right;
}

.woocommerce-error li,
.woocommerce-info li,
.woocommerce-message li {
  list-style: none outside !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.rtl.woocommerce div.product div.images .flex-control-thumbs li {
  float: right;
}

.woocommerce-message {
  border-top-color: #8fae1b;
}

.woocommerce-message::before {
  content: '\E015';
  color: #8fae1b;
}

.woocommerce-info {
  border-top-color: #1e85be;
}

.woocommerce-info::before {
  color: #1e85be;
}

.woocommerce-error {
  border-top-color: #b81c23;
}

.woocommerce-error::before {
  content: '\E016';
  color: #b81c23;
}

.woocommerce-account .woocommerce::after,
.woocommerce-account .woocommerce::before {
  content: ' ';
  display: table;
}

.woocommerce-account .woocommerce::after {
  clear: both;
}

.woocommerce-account .addresses .title::after,
.woocommerce-account .addresses .title::before {
  content: ' ';
  display: table;
}

.woocommerce-account .addresses .title::after {
  clear: both;
}

.woocommerce-account .addresses .title h3 {
  float: left;
}

.woocommerce-account .addresses .title .edit {
  float: right;
}

.woocommerce-account ol.commentlist.notes li.note p.meta {
  font-weight: 700;
  margin-bottom: 0;
}

.woocommerce-account ol.commentlist.notes li.note .description p:last-child {
  margin-bottom: 0;
}

.woocommerce-account ul.digital-downloads {
  margin-left: 0;
  padding-left: 0;
}

.woocommerce-account ul.digital-downloads li {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.woocommerce-account ul.digital-downloads li::before {
  font-family: WooCommerce;
  speak: none;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: .618em;
  content: "\E00A";
  text-decoration: none;
}

.woocommerce-account ul.digital-downloads li .count {
  float: right;
}

#add_payment_method table.cart .product-thumbnail,
.woocommerce-cart table.cart .product-thumbnail,
.woocommerce-checkout table.cart .product-thumbnail {
  min-width: 32px;
}

#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
  width: 32px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#add_payment_method table.cart td,
#add_payment_method table.cart th,
.woocommerce-cart table.cart td,
.woocommerce-cart table.cart th,
.woocommerce-checkout table.cart td,
.woocommerce-checkout table.cart th {
  vertical-align: middle;
}

#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text {
  float: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #d3ced2;
  padding: 6px 6px 5px;
  margin: 0 4px 0 0;
  outline: 0;
  line-height: 1;
}

#add_payment_method table.cart input,
.woocommerce-cart table.cart input,
.woocommerce-checkout table.cart input {
  margin: 0;
  vertical-align: middle;
  line-height: 1;
}

#add_payment_method .wc-proceed-to-checkout,
.woocommerce-cart .wc-proceed-to-checkout,
.woocommerce-checkout .wc-proceed-to-checkout {
  padding: 1em 0;
}

#add_payment_method .wc-proceed-to-checkout::after,
#add_payment_method .wc-proceed-to-checkout::before,
.woocommerce-cart .wc-proceed-to-checkout::after,
.woocommerce-cart .wc-proceed-to-checkout::before,
.woocommerce-checkout .wc-proceed-to-checkout::after,
.woocommerce-checkout .wc-proceed-to-checkout::before {
  content: ' ';
  display: table;
}

#add_payment_method .wc-proceed-to-checkout::after,
.woocommerce-cart .wc-proceed-to-checkout::after,
.woocommerce-checkout .wc-proceed-to-checkout::after {
  clear: both;
}

#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
  display: block;
  text-align: center;
  margin-bottom: 1em;
  font-size: 1.25em;
  padding: 1em;
}

#add_payment_method .cart-collaterals .shipping_calculator .button,
.woocommerce-cart .cart-collaterals .shipping_calculator .button,
.woocommerce-checkout .cart-collaterals .shipping_calculator .button {
  width: 100%;
  float: none;
  display: block;
}

#add_payment_method .cart-collaterals .shipping_calculator .shipping-calculator-button::after,
.woocommerce-cart .cart-collaterals .shipping_calculator .shipping-calculator-button::after,
.woocommerce-checkout .cart-collaterals .shipping_calculator .shipping-calculator-button::after {
  font-family: WooCommerce;
  speak: none;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-left: .618em;
  content: "\E019";
  text-decoration: none;
}

#add_payment_method .cart-collaterals .cart_totals p small,
.woocommerce-cart .cart-collaterals .cart_totals p small,
.woocommerce-checkout .cart-collaterals .cart_totals p small {
  color: #777;
  font-size: .83em;
}

#add_payment_method .cart-collaterals .cart_totals table,
.woocommerce-cart .cart-collaterals .cart_totals table,
.woocommerce-checkout .cart-collaterals .cart_totals table {
  border-collapse: separate;
  margin: 0 0 6px;
  padding: 0;
}

#add_payment_method .cart-collaterals .cart_totals table tr:first-child td,
#add_payment_method .cart-collaterals .cart_totals table tr:first-child th,
.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child td,
.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child th,
.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child td,
.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child th {
  border-top: 0;
}

#add_payment_method .cart-collaterals .cart_totals table th,
.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-checkout .cart-collaterals .cart_totals table th {
  width: 40%;
}

#add_payment_method .cart-collaterals .cart_totals table td,
#add_payment_method .cart-collaterals .cart_totals table th,
.woocommerce-cart .cart-collaterals .cart_totals table td,
.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-checkout .cart-collaterals .cart_totals table td,
.woocommerce-checkout .cart-collaterals .cart_totals table th {
  vertical-align: top;
  border-left: 0;
  border-right: 0;
  line-height: 1.5em;
}

#add_payment_method .cart-collaterals .cart_totals table small,
.woocommerce-cart .cart-collaterals .cart_totals table small,
.woocommerce-checkout .cart-collaterals .cart_totals table small {
  color: #777;
}

#add_payment_method .cart-collaterals .cart_totals table select,
.woocommerce-cart .cart-collaterals .cart_totals table select,
.woocommerce-checkout .cart-collaterals .cart_totals table select {
  width: 100%;
}

#add_payment_method .cart-collaterals .cart_totals .discount td,
.woocommerce-cart .cart-collaterals .cart_totals .discount td,
.woocommerce-checkout .cart-collaterals .cart_totals .discount td {
  color: #77a464;
}

#add_payment_method .cart-collaterals .cart_totals tr td,
#add_payment_method .cart-collaterals .cart_totals tr th,
.woocommerce-cart .cart-collaterals .cart_totals tr td,
.woocommerce-cart .cart-collaterals .cart_totals tr th,
.woocommerce-checkout .cart-collaterals .cart_totals tr td,
.woocommerce-checkout .cart-collaterals .cart_totals tr th {
  border-top: 1px solid #ebe9eb;
}

#add_payment_method .cart-collaterals .cross-sells ul.products li.product,
.woocommerce-cart .cart-collaterals .cross-sells ul.products li.product,
.woocommerce-checkout .cart-collaterals .cross-sells ul.products li.product {
  margin-top: 0;
}

#add_payment_method .checkout .col-2 h3#ship-to-different-address,
.woocommerce-cart .checkout .col-2 h3#ship-to-different-address,
.woocommerce-checkout .checkout .col-2 h3#ship-to-different-address {
  float: left;
  clear: none;
}

#add_payment_method .checkout .col-2 .notes,
.woocommerce-cart .checkout .col-2 .notes,
.woocommerce-checkout .checkout .col-2 .notes {
  clear: left;
}

#add_payment_method .checkout .col-2 .form-row-first,
.woocommerce-cart .checkout .col-2 .form-row-first,
.woocommerce-checkout .checkout .col-2 .form-row-first {
  clear: left;
}

#add_payment_method .checkout .create-account small,
.woocommerce-cart .checkout .create-account small,
.woocommerce-checkout .checkout .create-account small {
  font-size: 11px;
  color: #777;
  font-weight: 400;
}

#add_payment_method .checkout div.shipping-address,
.woocommerce-cart .checkout div.shipping-address,
.woocommerce-checkout .checkout div.shipping-address {
  padding: 0;
  clear: left;
  width: 100%;
}

#add_payment_method .checkout .shipping_address,
.woocommerce-cart .checkout .shipping_address,
.woocommerce-checkout .checkout .shipping_address {
  clear: both;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background: #ebe9eb;
  border-radius: 5px;
}

#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
  text-align: left;
  padding: 1em;
  border-bottom: 1px solid #d3ced2;
  margin: 0;
  list-style: none outside;
}

#add_payment_method #payment ul.payment_methods::after,
#add_payment_method #payment ul.payment_methods::before,
.woocommerce-cart #payment ul.payment_methods::after,
.woocommerce-cart #payment ul.payment_methods::before,
.woocommerce-checkout #payment ul.payment_methods::after,
.woocommerce-checkout #payment ul.payment_methods::before {
  content: ' ';
  display: table;
}

#add_payment_method #payment ul.payment_methods::after,
.woocommerce-cart #payment ul.payment_methods::after,
.woocommerce-checkout #payment ul.payment_methods::after {
  clear: both;
}

#add_payment_method #payment ul.payment_methods li,
.woocommerce-cart #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li {
  line-height: 2;
  text-align: left;
  margin: 0;
  font-weight: 400;
}

#add_payment_method #payment ul.payment_methods li input,
.woocommerce-cart #payment ul.payment_methods li input,
.woocommerce-checkout #payment ul.payment_methods li input {
  margin: 0 1em 0 0;
}

#add_payment_method #payment ul.payment_methods li img,
.woocommerce-cart #payment ul.payment_methods li img,
.woocommerce-checkout #payment ul.payment_methods li img {
  vertical-align: middle;
  margin: -2px 0 0 .5em;
  padding: 0;
  position: relative;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#add_payment_method #payment ul.payment_methods li img+img,
.woocommerce-cart #payment ul.payment_methods li img+img,
.woocommerce-checkout #payment ul.payment_methods li img+img {
  margin-left: 2px;
}

#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after,
#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::before,
.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,
.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::before,
.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after,
.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::before {
  content: ' ';
  display: table;
}

#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after,
.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,
.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after {
  clear: both;
}

#add_payment_method #payment div.form-row,
.woocommerce-cart #payment div.form-row,
.woocommerce-checkout #payment div.form-row {
  padding: 1em;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 1em;
  margin: 1em 0;
  font-size: .92em;
  border-radius: 2px;
  line-height: 1.5;
  background-color: #dfdcde;
  color: #515151;
}

#add_payment_method #payment div.payment_box input.input-text,
#add_payment_method #payment div.payment_box textarea,
.woocommerce-cart #payment div.payment_box input.input-text,
.woocommerce-cart #payment div.payment_box textarea,
.woocommerce-checkout #payment div.payment_box input.input-text,
.woocommerce-checkout #payment div.payment_box textarea {
  border-color: #c7c1c6;
  border-top-color: #bbb3b9;
}

#add_payment_method #payment div.payment_box ::-webkit-input-placeholder,
.woocommerce-cart #payment div.payment_box ::-webkit-input-placeholder,
.woocommerce-checkout #payment div.payment_box ::-webkit-input-placeholder {
  color: #bbb3b9;
}

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

#add_payment_method #payment div.payment_box :-ms-input-placeholder,
.woocommerce-cart #payment div.payment_box :-ms-input-placeholder,
.woocommerce-checkout #payment div.payment_box :-ms-input-placeholder {
  color: #bbb3b9;
}

#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods {
  list-style: none outside;
  margin: 0;
}

#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,
#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token {
  margin: 0 0 .5em;
}

#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,
#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label {
  cursor: pointer;
}

#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput {
  vertical-align: middle;
  margin: -3px 1em 0 0;
  position: relative;
}

#add_payment_method #payment div.payment_box .wc-credit-card-form,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form {
  border: 0;
  padding: 0;
  margin: 1em 0 0;
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number {
  font-size: 1.5em;
  padding: 8px;
  background-repeat: no-repeat;
  background-position: right .618em center;
  background-size: 32px 20px;
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.visa,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.visa,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.visa,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.visa,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.visa,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.visa,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.visa,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.visa,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.visa {
  background-image: url(/fonts/visa.svg?7983b6eb576bf04dbb018536bdcade7a);
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.mastercard,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.mastercard,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.mastercard {
  background-image: url(/fonts/mastercard.svg?33f312d516c9de63d7b4d195aa296487);
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.laser,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.laser,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.laser,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.laser,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.laser,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.laser,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.laser,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.laser,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.laser {
  background-image: url(/fonts/laser.svg?a4326608afec0f36e36799d512294281);
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.dinersclub {
  background-image: url(/fonts/diners.svg?736edd84b14487a1e8c71ea53f2ef5ff);
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.maestro,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.maestro,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.maestro {
  background-image: url(/fonts/maestro.svg?bd191a7de6d486982ce4593f6b3cf9af);
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.jcb,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.jcb,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.jcb {
  background-image: url(/fonts/jcb.svg?058ed89cb406417e68d1742247618082);
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.amex,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.amex,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.amex,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.amex,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.amex,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.amex,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.amex,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.amex,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.amex {
  background-image: url(/fonts/amex.svg?9819e0a13651d0d91ce093bd34e95672);
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.discover,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.discover,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.discover,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.discover,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.discover,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.discover,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.discover,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.discover,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.discover {
  background-image: url(/fonts/discover.svg?85c3dfdc5142c15870b8a31902553f7a);
}

#add_payment_method #payment div.payment_box span.help,
.woocommerce-cart #payment div.payment_box span.help,
.woocommerce-checkout #payment div.payment_box span.help {
  font-size: .857em;
  color: #777;
  font-weight: 400;
}

#add_payment_method #payment div.payment_box .form-row,
.woocommerce-cart #payment div.payment_box .form-row,
.woocommerce-checkout #payment div.payment_box .form-row {
  margin: 0 0 1em;
}

#add_payment_method #payment div.payment_box p:last-child,
.woocommerce-cart #payment div.payment_box p:last-child,
.woocommerce-checkout #payment div.payment_box p:last-child {
  margin-bottom: 0;
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
  content: '';
  display: block;
  border: 1em solid #dfdcde;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  position: absolute;
  top: -.75em;
  left: 0;
  margin: -1em 0 0 2em;
}

#add_payment_method #payment .payment_method_paypal .about_paypal,
.woocommerce-cart #payment .payment_method_paypal .about_paypal,
.woocommerce-checkout #payment .payment_method_paypal .about_paypal {
  float: right;
  line-height: 52px;
  font-size: .83em;
}

#add_payment_method #payment .payment_method_paypal img,
.woocommerce-cart #payment .payment_method_paypal img,
.woocommerce-checkout #payment .payment_method_paypal img {
  max-height: 52px;
  vertical-align: middle;
}

.woocommerce-terms-and-conditions {
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.05);
}

.woocommerce-password-strength {
  text-align: center;
  font-weight: 600;
  padding: 3px .5em;
  font-size: 1em;
}

.woocommerce-password-strength.strong {
  background-color: #c1e1b9;
  border-color: #83c373;
}

.woocommerce-password-strength.short {
  background-color: #f1adad;
  border-color: #e35b5b;
}

.woocommerce-password-strength.bad {
  background-color: #fbc5a9;
  border-color: #f78b53;
}

.woocommerce-password-strength.good {
  background-color: #ffe399;
  border-color: #ffc733;
}

.woocommerce-password-hint {
  margin: .5em 0 0;
  display: block;
}

#content.twentyeleven .woocommerce-pagination a {
  font-size: 1em;
  line-height: 1;
}

.single-product .twentythirteen #reply-title,
.single-product .twentythirteen #respond #commentform,
.single-product .twentythirteen .entry-summary {
  padding: 0;
}

.single-product .twentythirteen p.stars {
  clear: both;
}

.twentythirteen .woocommerce-breadcrumb {
  padding-top: 40px;
}

.twentyfourteen ul.products li.product {
  margin-top: 0 !important;
}

body:not(.search-results) .twentysixteen .entry-summary {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.twentysixteen .price ins {
  background: inherit;
  color: inherit;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */

/*@font-face {
  font-family: 'FontAwesome';
  src: url(/fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);
  src: url(/fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713) format("embedded-opentype"), url(/fonts/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"), url(/fonts/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"), url(/fonts/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"), url(/fonts/fontawesome-webfont.svg?acf3dcb7ff752b5296ca23ba2c7c2606) format("svg");
  font-weight: normal;
  font-style: normal;
}
*/
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-lg {
  font-size: 1.33333333em;
  line-height: .75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul>li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: .14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: .2em .25em .15em;
  border: solid .08em #eee;
  border-radius: .1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: .3em;
}

.fa.fa-pull-right {
  margin-left: .3em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: .3em;
}

.fa.pull-right {
  margin-left: .3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-glass:before {
  content: "\F000";
}

.fa-music:before {
  content: "\F001";
}

.fa-search:before {
  content: "\F002";
}

.fa-envelope-o:before {
  content: "\F003";
}

.fa-heart:before {
  content: "\F004";
}

.fa-star:before {
  content: "\F005";
}

.fa-star-o:before {
  content: "\F006";
}

.fa-user:before {
  content: "\F007";
}

.fa-film:before {
  content: "\F008";
}

.fa-th-large:before {
  content: "\F009";
}

.fa-th:before {
  content: "\F00A";
}

.fa-th-list:before {
  content: "\F00B";
}

.fa-check:before {
  content: "\F00C";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\F00D";
}

.fa-search-plus:before {
  content: "\F00E";
}

.fa-search-minus:before {
  content: "\F010";
}

.fa-power-off:before {
  content: "\F011";
}

.fa-signal:before {
  content: "\F012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\F013";
}

.fa-trash-o:before {
  content: "\F014";
}

.fa-home:before {
  content: "\F015";
}

.fa-file-o:before {
  content: "\F016";
}

.fa-clock-o:before {
  content: "\F017";
}

.fa-road:before {
  content: "\F018";
}

.fa-download:before {
  content: "\F019";
}

.fa-arrow-circle-o-down:before {
  content: "\F01A";
}

.fa-arrow-circle-o-up:before {
  content: "\F01B";
}

.fa-inbox:before {
  content: "\F01C";
}

.fa-play-circle-o:before {
  content: "\F01D";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\F01E";
}

.fa-refresh:before {
  content: "\F021";
}

.fa-list-alt:before {
  content: "\F022";
}

.fa-lock:before {
  content: "\F023";
}

.fa-flag:before {
  content: "\F024";
}

.fa-headphones:before {
  content: "\F025";
}

.fa-volume-off:before {
  content: "\F026";
}

.fa-volume-down:before {
  content: "\F027";
}

.fa-volume-up:before {
  content: "\F028";
}

.fa-qrcode:before {
  content: "\F029";
}

.fa-barcode:before {
  content: "\F02A";
}

.fa-tag:before {
  content: "\F02B";
}

.fa-tags:before {
  content: "\F02C";
}

.fa-book:before {
  content: "\F02D";
}

.fa-bookmark:before {
  content: "\F02E";
}

.fa-print:before {
  content: "\F02F";
}

.fa-camera:before {
  content: "\F030";
}

.fa-font:before {
  content: "\F031";
}

.fa-bold:before {
  content: "\F032";
}

.fa-italic:before {
  content: "\F033";
}

.fa-text-height:before {
  content: "\F034";
}

.fa-text-width:before {
  content: "\F035";
}

.fa-align-left:before {
  content: "\F036";
}

.fa-align-center:before {
  content: "\F037";
}

.fa-align-right:before {
  content: "\F038";
}

.fa-align-justify:before {
  content: "\F039";
}

.fa-list:before {
  content: "\F03A";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\F03B";
}

.fa-indent:before {
  content: "\F03C";
}

.fa-video-camera:before {
  content: "\F03D";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\F03E";
}

.fa-pencil:before {
  content: "\F040";
}

.fa-map-marker:before {
  content: "\F041";
}

.fa-adjust:before {
  content: "\F042";
}

.fa-tint:before {
  content: "\F043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\F044";
}

.fa-share-square-o:before {
  content: "\F045";
}

.fa-check-square-o:before {
  content: "\F046";
}

.fa-arrows:before {
  content: "\F047";
}

.fa-step-backward:before {
  content: "\F048";
}

.fa-fast-backward:before {
  content: "\F049";
}

.fa-backward:before {
  content: "\F04A";
}

.fa-play:before {
  content: "\F04B";
}

.fa-pause:before {
  content: "\F04C";
}

.fa-stop:before {
  content: "\F04D";
}

.fa-forward:before {
  content: "\F04E";
}

.fa-fast-forward:before {
  content: "\F050";
}

.fa-step-forward:before {
  content: "\F051";
}

.fa-eject:before {
  content: "\F052";
}

.fa-chevron-left:before {
  content: "\F053";
}

.fa-chevron-right:before {
  content: "\F054";
}

.fa-plus-circle:before {
  content: "\F055";
}

.fa-minus-circle:before {
  content: "\F056";
}

.fa-times-circle:before {
  content: "\F057";
}

.fa-check-circle:before {
  content: "\F058";
}

.fa-question-circle:before {
  content: "\F059";
}

.fa-info-circle:before {
  content: "\F05A";
}

.fa-crosshairs:before {
  content: "\F05B";
}

.fa-times-circle-o:before {
  content: "\F05C";
}

.fa-check-circle-o:before {
  content: "\F05D";
}

.fa-ban:before {
  content: "\F05E";
}

.fa-arrow-left:before {
  content: "\F060";
}

.fa-arrow-right:before {
  content: "\F061";
}

.fa-arrow-up:before {
  content: "\F062";
}

.fa-arrow-down:before {
  content: "\F063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\F064";
}

.fa-expand:before {
  content: "\F065";
}

.fa-compress:before {
  content: "\F066";
}

.fa-plus:before {
  content: "\F067";
}

.fa-minus:before {
  content: "\F068";
}

.fa-asterisk:before {
  content: "\F069";
}

.fa-exclamation-circle:before {
  content: "\F06A";
}

.fa-gift:before {
  content: "\F06B";
}

.fa-leaf:before {
  content: "\F06C";
}

.fa-fire:before {
  content: "\F06D";
}

.fa-eye:before {
  content: "\F06E";
}

.fa-eye-slash:before {
  content: "\F070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\F071";
}

.fa-plane:before {
  content: "\F072";
}

.fa-calendar:before {
  content: "\F073";
}

.fa-random:before {
  content: "\F074";
}

.fa-comment:before {
  content: "\F075";
}

.fa-magnet:before {
  content: "\F076";
}

.fa-chevron-up:before {
  content: "\F077";
}

.fa-chevron-down:before {
  content: "\F078";
}

.fa-retweet:before {
  content: "\F079";
}

.fa-shopping-cart:before {
  content: "\F07A";
}

.fa-folder:before {
  content: "\F07B";
}

.fa-folder-open:before {
  content: "\F07C";
}

.fa-arrows-v:before {
  content: "\F07D";
}

.fa-arrows-h:before {
  content: "\F07E";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\F080";
}

.fa-twitter-square:before {
  content: "\F081";
}

.fa-facebook-square:before {
  content: "\F082";
}

.fa-camera-retro:before {
  content: "\F083";
}

.fa-key:before {
  content: "\F084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\F085";
}

.fa-comments:before {
  content: "\F086";
}

.fa-thumbs-o-up:before {
  content: "\F087";
}

.fa-thumbs-o-down:before {
  content: "\F088";
}

.fa-star-half:before {
  content: "\F089";
}

.fa-heart-o:before {
  content: "\F08A";
}

.fa-sign-out:before {
  content: "\F08B";
}

.fa-linkedin-square:before {
  content: "\F08C";
}

.fa-thumb-tack:before {
  content: "\F08D";
}

.fa-external-link:before {
  content: "\F08E";
}

.fa-sign-in:before {
  content: "\F090";
}

.fa-trophy:before {
  content: "\F091";
}

.fa-github-square:before {
  content: "\F092";
}

.fa-upload:before {
  content: "\F093";
}

.fa-lemon-o:before {
  content: "\F094";
}

.fa-phone:before {
  content: "\F095";
}

.fa-square-o:before {
  content: "\F096";
}

.fa-bookmark-o:before {
  content: "\F097";
}

.fa-phone-square:before {
  content: "\F098";
}

.fa-twitter:before {
  content: "\F099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\F09A";
}

.fa-github:before {
  content: "\F09B";
}

.fa-unlock:before {
  content: "\F09C";
}

.fa-credit-card:before {
  content: "\F09D";
}

.fa-feed:before,
.fa-rss:before {
  content: "\F09E";
}

.fa-hdd-o:before {
  content: "\F0A0";
}

.fa-bullhorn:before {
  content: "\F0A1";
}

.fa-bell:before {
  content: "\F0F3";
}

.fa-certificate:before {
  content: "\F0A3";
}

.fa-hand-o-right:before {
  content: "\F0A4";
}

.fa-hand-o-left:before {
  content: "\F0A5";
}

.fa-hand-o-up:before {
  content: "\F0A6";
}

.fa-hand-o-down:before {
  content: "\F0A7";
}

.fa-arrow-circle-left:before {
  content: "\F0A8";
}

.fa-arrow-circle-right:before {
  content: "\F0A9";
}

.fa-arrow-circle-up:before {
  content: "\F0AA";
}

.fa-arrow-circle-down:before {
  content: "\F0AB";
}

.fa-globe:before {
  content: "\F0AC";
}

.fa-wrench:before {
  content: "\F0AD";
}

.fa-tasks:before {
  content: "\F0AE";
}

.fa-filter:before {
  content: "\F0B0";
}

.fa-briefcase:before {
  content: "\F0B1";
}

.fa-arrows-alt:before {
  content: "\F0B2";
}

.fa-group:before,
.fa-users:before {
  content: "\F0C0";
}

.fa-chain:before,
.fa-link:before {
  content: "\F0C1";
}

.fa-cloud:before {
  content: "\F0C2";
}

.fa-flask:before {
  content: "\F0C3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\F0C4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\F0C5";
}

.fa-paperclip:before {
  content: "\F0C6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\F0C7";
}

.fa-square:before {
  content: "\F0C8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\F0C9";
}

.fa-list-ul:before {
  content: "\F0CA";
}

.fa-list-ol:before {
  content: "\F0CB";
}

.fa-strikethrough:before {
  content: "\F0CC";
}

.fa-underline:before {
  content: "\F0CD";
}

.fa-table:before {
  content: "\F0CE";
}

.fa-magic:before {
  content: "\F0D0";
}

.fa-truck:before {
  content: "\F0D1";
}

.fa-pinterest:before {
  content: "\F0D2";
}

.fa-pinterest-square:before {
  content: "\F0D3";
}

.fa-google-plus-square:before {
  content: "\F0D4";
}

.fa-google-plus:before {
  content: "\F0D5";
}

.fa-money:before {
  content: "\F0D6";
}

.fa-caret-down:before {
  content: "\F0D7";
}

.fa-caret-up:before {
  content: "\F0D8";
}

.fa-caret-left:before {
  content: "\F0D9";
}

.fa-caret-right:before {
  content: "\F0DA";
}

.fa-columns:before {
  content: "\F0DB";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\F0DC";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\F0DD";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\F0DE";
}

.fa-envelope:before {
  content: "\F0E0";
}

.fa-linkedin:before {
  content: "\F0E1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\F0E2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\F0E3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\F0E4";
}

.fa-comment-o:before {
  content: "\F0E5";
}

.fa-comments-o:before {
  content: "\F0E6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\F0E7";
}

.fa-sitemap:before {
  content: "\F0E8";
}

.fa-umbrella:before {
  content: "\F0E9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\F0EA";
}

.fa-lightbulb-o:before {
  content: "\F0EB";
}

.fa-exchange:before {
  content: "\F0EC";
}

.fa-cloud-download:before {
  content: "\F0ED";
}

.fa-cloud-upload:before {
  content: "\F0EE";
}

.fa-user-md:before {
  content: "\F0F0";
}

.fa-stethoscope:before {
  content: "\F0F1";
}

.fa-suitcase:before {
  content: "\F0F2";
}

.fa-bell-o:before {
  content: "\F0A2";
}

.fa-coffee:before {
  content: "\F0F4";
}

.fa-cutlery:before {
  content: "\F0F5";
}

.fa-file-text-o:before {
  content: "\F0F6";
}

.fa-building-o:before {
  content: "\F0F7";
}

.fa-hospital-o:before {
  content: "\F0F8";
}

.fa-ambulance:before {
  content: "\F0F9";
}

.fa-medkit:before {
  content: "\F0FA";
}

.fa-fighter-jet:before {
  content: "\F0FB";
}

.fa-beer:before {
  content: "\F0FC";
}

.fa-h-square:before {
  content: "\F0FD";
}

.fa-plus-square:before {
  content: "\F0FE";
}

.fa-angle-double-left:before {
  content: "\F100";
}

.fa-angle-double-right:before {
  content: "\F101";
}

.fa-angle-double-up:before {
  content: "\F102";
}

.fa-angle-double-down:before {
  content: "\F103";
}

.fa-angle-left:before {
  content: "\F104";
}

.fa-angle-right:before {
  content: "\F105";
}

.fa-angle-up:before {
  content: "\F106";
}

.fa-angle-down:before {
  content: "\F107";
}

.fa-desktop:before {
  content: "\F108";
}

.fa-laptop:before {
  content: "\F109";
}

.fa-tablet:before {
  content: "\F10A";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\F10B";
}

.fa-circle-o:before {
  content: "\F10C";
}

.fa-quote-left:before {
  content: "\F10D";
}

.fa-quote-right:before {
  content: "\F10E";
}

.fa-spinner:before {
  content: "\F110";
}

.fa-circle:before {
  content: "\F111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\F112";
}

.fa-github-alt:before {
  content: "\F113";
}

.fa-folder-o:before {
  content: "\F114";
}

.fa-folder-open-o:before {
  content: "\F115";
}

.fa-smile-o:before {
  content: "\F118";
}

.fa-frown-o:before {
  content: "\F119";
}

.fa-meh-o:before {
  content: "\F11A";
}

.fa-gamepad:before {
  content: "\F11B";
}

.fa-keyboard-o:before {
  content: "\F11C";
}

.fa-flag-o:before {
  content: "\F11D";
}

.fa-flag-checkered:before {
  content: "\F11E";
}

.fa-terminal:before {
  content: "\F120";
}

.fa-code:before {
  content: "\F121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\F122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\F123";
}

.fa-location-arrow:before {
  content: "\F124";
}

.fa-crop:before {
  content: "\F125";
}

.fa-code-fork:before {
  content: "\F126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\F127";
}

.fa-question:before {
  content: "\F128";
}

.fa-info:before {
  content: "\F129";
}

.fa-exclamation:before {
  content: "\F12A";
}

.fa-superscript:before {
  content: "\F12B";
}

.fa-subscript:before {
  content: "\F12C";
}

.fa-eraser:before {
  content: "\F12D";
}

.fa-puzzle-piece:before {
  content: "\F12E";
}

.fa-microphone:before {
  content: "\F130";
}

.fa-microphone-slash:before {
  content: "\F131";
}

.fa-shield:before {
  content: "\F132";
}

.fa-calendar-o:before {
  content: "\F133";
}

.fa-fire-extinguisher:before {
  content: "\F134";
}

.fa-rocket:before {
  content: "\F135";
}

.fa-maxcdn:before {
  content: "\F136";
}

.fa-chevron-circle-left:before {
  content: "\F137";
}

.fa-chevron-circle-right:before {
  content: "\F138";
}

.fa-chevron-circle-up:before {
  content: "\F139";
}

.fa-chevron-circle-down:before {
  content: "\F13A";
}

.fa-html5:before {
  content: "\F13B";
}

.fa-css3:before {
  content: "\F13C";
}

.fa-anchor:before {
  content: "\F13D";
}

.fa-unlock-alt:before {
  content: "\F13E";
}

.fa-bullseye:before {
  content: "\F140";
}

.fa-ellipsis-h:before {
  content: "\F141";
}

.fa-ellipsis-v:before {
  content: "\F142";
}

.fa-rss-square:before {
  content: "\F143";
}

.fa-play-circle:before {
  content: "\F144";
}

.fa-ticket:before {
  content: "\F145";
}

.fa-minus-square:before {
  content: "\F146";
}

.fa-minus-square-o:before {
  content: "\F147";
}

.fa-level-up:before {
  content: "\F148";
}

.fa-level-down:before {
  content: "\F149";
}

.fa-check-square:before {
  content: "\F14A";
}

.fa-pencil-square:before {
  content: "\F14B";
}

.fa-external-link-square:before {
  content: "\F14C";
}

.fa-share-square:before {
  content: "\F14D";
}

.fa-compass:before {
  content: "\F14E";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\F150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\F151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\F152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\F153";
}

.fa-gbp:before {
  content: "\F154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\F155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\F156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\F157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\F158";
}

.fa-won:before,
.fa-krw:before {
  content: "\F159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\F15A";
}

.fa-file:before {
  content: "\F15B";
}

.fa-file-text:before {
  content: "\F15C";
}

.fa-sort-alpha-asc:before {
  content: "\F15D";
}

.fa-sort-alpha-desc:before {
  content: "\F15E";
}

.fa-sort-amount-asc:before {
  content: "\F160";
}

.fa-sort-amount-desc:before {
  content: "\F161";
}

.fa-sort-numeric-asc:before {
  content: "\F162";
}

.fa-sort-numeric-desc:before {
  content: "\F163";
}

.fa-thumbs-up:before {
  content: "\F164";
}

.fa-thumbs-down:before {
  content: "\F165";
}

.fa-youtube-square:before {
  content: "\F166";
}

.fa-youtube:before {
  content: "\F167";
}

.fa-xing:before {
  content: "\F168";
}

.fa-xing-square:before {
  content: "\F169";
}

.fa-youtube-play:before {
  content: "\F16A";
}

.fa-dropbox:before {
  content: "\F16B";
}

.fa-stack-overflow:before {
  content: "\F16C";
}

.fa-instagram:before {
  content: "\F16D";
}

.fa-flickr:before {
  content: "\F16E";
}

.fa-adn:before {
  content: "\F170";
}

.fa-bitbucket:before {
  content: "\F171";
}

.fa-bitbucket-square:before {
  content: "\F172";
}

.fa-tumblr:before {
  content: "\F173";
}

.fa-tumblr-square:before {
  content: "\F174";
}

.fa-long-arrow-down:before {
  content: "\F175";
}

.fa-long-arrow-up:before {
  content: "\F176";
}

.fa-long-arrow-left:before {
  content: "\F177";
}

.fa-long-arrow-right:before {
  content: "\F178";
}

.fa-apple:before {
  content: "\F179";
}

.fa-windows:before {
  content: "\F17A";
}

.fa-android:before {
  content: "\F17B";
}

.fa-linux:before {
  content: "\F17C";
}

.fa-dribbble:before {
  content: "\F17D";
}

.fa-skype:before {
  content: "\F17E";
}

.fa-foursquare:before {
  content: "\F180";
}

.fa-trello:before {
  content: "\F181";
}

.fa-female:before {
  content: "\F182";
}

.fa-male:before {
  content: "\F183";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "\F184";
}

.fa-sun-o:before {
  content: "\F185";
}

.fa-moon-o:before {
  content: "\F186";
}

.fa-archive:before {
  content: "\F187";
}

.fa-bug:before {
  content: "\F188";
}

.fa-vk:before {
  content: "\F189";
}

.fa-weibo:before {
  content: "\F18A";
}

.fa-renren:before {
  content: "\F18B";
}

.fa-pagelines:before {
  content: "\F18C";
}

.fa-stack-exchange:before {
  content: "\F18D";
}

.fa-arrow-circle-o-right:before {
  content: "\F18E";
}

.fa-arrow-circle-o-left:before {
  content: "\F190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\F191";
}

.fa-dot-circle-o:before {
  content: "\F192";
}

.fa-wheelchair:before {
  content: "\F193";
}

.fa-vimeo-square:before {
  content: "\F194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\F195";
}

.fa-plus-square-o:before {
  content: "\F196";
}

.fa-space-shuttle:before {
  content: "\F197";
}

.fa-slack:before {
  content: "\F198";
}

.fa-envelope-square:before {
  content: "\F199";
}

.fa-wordpress:before {
  content: "\F19A";
}

.fa-openid:before {
  content: "\F19B";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\F19C";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\F19D";
}

.fa-yahoo:before {
  content: "\F19E";
}

.fa-google:before {
  content: "\F1A0";
}

.fa-reddit:before {
  content: "\F1A1";
}

.fa-reddit-square:before {
  content: "\F1A2";
}

.fa-stumbleupon-circle:before {
  content: "\F1A3";
}

.fa-stumbleupon:before {
  content: "\F1A4";
}

.fa-delicious:before {
  content: "\F1A5";
}

.fa-digg:before {
  content: "\F1A6";
}

.fa-pied-piper-pp:before {
  content: "\F1A7";
}

.fa-pied-piper-alt:before {
  content: "\F1A8";
}

.fa-drupal:before {
  content: "\F1A9";
}

.fa-joomla:before {
  content: "\F1AA";
}

.fa-language:before {
  content: "\F1AB";
}

.fa-fax:before {
  content: "\F1AC";
}

.fa-building:before {
  content: "\F1AD";
}

.fa-child:before {
  content: "\F1AE";
}

.fa-paw:before {
  content: "\F1B0";
}

.fa-spoon:before {
  content: "\F1B1";
}

.fa-cube:before {
  content: "\F1B2";
}

.fa-cubes:before {
  content: "\F1B3";
}

.fa-behance:before {
  content: "\F1B4";
}

.fa-behance-square:before {
  content: "\F1B5";
}

.fa-steam:before {
  content: "\F1B6";
}

.fa-steam-square:before {
  content: "\F1B7";
}

.fa-recycle:before {
  content: "\F1B8";
}

.fa-automobile:before,
.fa-car:before {
  content: "\F1B9";
}

.fa-cab:before,
.fa-taxi:before {
  content: "\F1BA";
}

.fa-tree:before {
  content: "\F1BB";
}

.fa-spotify:before {
  content: "\F1BC";
}

.fa-deviantart:before {
  content: "\F1BD";
}

.fa-soundcloud:before {
  content: "\F1BE";
}

.fa-database:before {
  content: "\F1C0";
}

.fa-file-pdf-o:before {
  content: "\F1C1";
}

.fa-file-word-o:before {
  content: "\F1C2";
}

.fa-file-excel-o:before {
  content: "\F1C3";
}

.fa-file-powerpoint-o:before {
  content: "\F1C4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\F1C5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\F1C6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\F1C7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\F1C8";
}

.fa-file-code-o:before {
  content: "\F1C9";
}

.fa-vine:before {
  content: "\F1CA";
}

.fa-codepen:before {
  content: "\F1CB";
}

.fa-jsfiddle:before {
  content: "\F1CC";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\F1CD";
}

.fa-circle-o-notch:before {
  content: "\F1CE";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\F1D0";
}

.fa-ge:before,
.fa-empire:before {
  content: "\F1D1";
}

.fa-git-square:before {
  content: "\F1D2";
}

.fa-git:before {
  content: "\F1D3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\F1D4";
}

.fa-tencent-weibo:before {
  content: "\F1D5";
}

.fa-qq:before {
  content: "\F1D6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\F1D7";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "\F1D8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\F1D9";
}

.fa-history:before {
  content: "\F1DA";
}

.fa-circle-thin:before {
  content: "\F1DB";
}

.fa-header:before {
  content: "\F1DC";
}

.fa-paragraph:before {
  content: "\F1DD";
}

.fa-sliders:before {
  content: "\F1DE";
}

.fa-share-alt:before {
  content: "\F1E0";
}

.fa-share-alt-square:before {
  content: "\F1E1";
}

.fa-bomb:before {
  content: "\F1E2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\F1E3";
}

.fa-tty:before {
  content: "\F1E4";
}

.fa-binoculars:before {
  content: "\F1E5";
}

.fa-plug:before {
  content: "\F1E6";
}

.fa-slideshare:before {
  content: "\F1E7";
}

.fa-twitch:before {
  content: "\F1E8";
}

.fa-yelp:before {
  content: "\F1E9";
}

.fa-newspaper-o:before {
  content: "\F1EA";
}

.fa-wifi:before {
  content: "\F1EB";
}

.fa-calculator:before {
  content: "\F1EC";
}

.fa-paypal:before {
  content: "\F1ED";
}

.fa-google-wallet:before {
  content: "\F1EE";
}

.fa-cc-visa:before {
  content: "\F1F0";
}

.fa-cc-mastercard:before {
  content: "\F1F1";
}

.fa-cc-discover:before {
  content: "\F1F2";
}

.fa-cc-amex:before {
  content: "\F1F3";
}

.fa-cc-paypal:before {
  content: "\F1F4";
}

.fa-cc-stripe:before {
  content: "\F1F5";
}

.fa-bell-slash:before {
  content: "\F1F6";
}

.fa-bell-slash-o:before {
  content: "\F1F7";
}

.fa-trash:before {
  content: "\F1F8";
}

.fa-copyright:before {
  content: "\F1F9";
}

.fa-at:before {
  content: "\F1FA";
}

.fa-eyedropper:before {
  content: "\F1FB";
}

.fa-paint-brush:before {
  content: "\F1FC";
}

.fa-birthday-cake:before {
  content: "\F1FD";
}

.fa-area-chart:before {
  content: "\F1FE";
}

.fa-pie-chart:before {
  content: "\F200";
}

.fa-line-chart:before {
  content: "\F201";
}

.fa-lastfm:before {
  content: "\F202";
}

.fa-lastfm-square:before {
  content: "\F203";
}

.fa-toggle-off:before {
  content: "\F204";
}

.fa-toggle-on:before {
  content: "\F205";
}

.fa-bicycle:before {
  content: "\F206";
}

.fa-bus:before {
  content: "\F207";
}

.fa-ioxhost:before {
  content: "\F208";
}

.fa-angellist:before {
  content: "\F209";
}

.fa-cc:before {
  content: "\F20A";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\F20B";
}

.fa-meanpath:before {
  content: "\F20C";
}

.fa-buysellads:before {
  content: "\F20D";
}

.fa-connectdevelop:before {
  content: "\F20E";
}

.fa-dashcube:before {
  content: "\F210";
}

.fa-forumbee:before {
  content: "\F211";
}

.fa-leanpub:before {
  content: "\F212";
}

.fa-sellsy:before {
  content: "\F213";
}

.fa-shirtsinbulk:before {
  content: "\F214";
}

.fa-simplybuilt:before {
  content: "\F215";
}

.fa-skyatlas:before {
  content: "\F216";
}

.fa-cart-plus:before {
  content: "\F217";
}

.fa-cart-arrow-down:before {
  content: "\F218";
}

.fa-diamond:before {
  content: "\F219";
}

.fa-ship:before {
  content: "\F21A";
}

.fa-user-secret:before {
  content: "\F21B";
}

.fa-motorcycle:before {
  content: "\F21C";
}

.fa-street-view:before {
  content: "\F21D";
}

.fa-heartbeat:before {
  content: "\F21E";
}

.fa-venus:before {
  content: "\F221";
}

.fa-mars:before {
  content: "\F222";
}

.fa-mercury:before {
  content: "\F223";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "\F224";
}

.fa-transgender-alt:before {
  content: "\F225";
}

.fa-venus-double:before {
  content: "\F226";
}

.fa-mars-double:before {
  content: "\F227";
}

.fa-venus-mars:before {
  content: "\F228";
}

.fa-mars-stroke:before {
  content: "\F229";
}

.fa-mars-stroke-v:before {
  content: "\F22A";
}

.fa-mars-stroke-h:before {
  content: "\F22B";
}

.fa-neuter:before {
  content: "\F22C";
}

.fa-genderless:before {
  content: "\F22D";
}

.fa-facebook-official:before {
  content: "\F230";
}

.fa-pinterest-p:before {
  content: "\F231";
}

.fa-whatsapp:before {
  content: "\F232";
}

.fa-server:before {
  content: "\F233";
}

.fa-user-plus:before {
  content: "\F234";
}

.fa-user-times:before {
  content: "\F235";
}

.fa-hotel:before,
.fa-bed:before {
  content: "\F236";
}

.fa-viacoin:before {
  content: "\F237";
}

.fa-train:before {
  content: "\F238";
}

.fa-subway:before {
  content: "\F239";
}

.fa-medium:before {
  content: "\F23A";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "\F23B";
}

.fa-optin-monster:before {
  content: "\F23C";
}

.fa-opencart:before {
  content: "\F23D";
}

.fa-expeditedssl:before {
  content: "\F23E";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\F240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\F241";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\F242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\F243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\F244";
}

.fa-mouse-pointer:before {
  content: "\F245";
}

.fa-i-cursor:before {
  content: "\F246";
}

.fa-object-group:before {
  content: "\F247";
}

.fa-object-ungroup:before {
  content: "\F248";
}

.fa-sticky-note:before {
  content: "\F249";
}

.fa-sticky-note-o:before {
  content: "\F24A";
}

.fa-cc-jcb:before {
  content: "\F24B";
}

.fa-cc-diners-club:before {
  content: "\F24C";
}

.fa-clone:before {
  content: "\F24D";
}

.fa-balance-scale:before {
  content: "\F24E";
}

.fa-hourglass-o:before {
  content: "\F250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\F251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\F252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\F253";
}

.fa-hourglass:before {
  content: "\F254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\F255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\F256";
}

.fa-hand-scissors-o:before {
  content: "\F257";
}

.fa-hand-lizard-o:before {
  content: "\F258";
}

.fa-hand-spock-o:before {
  content: "\F259";
}

.fa-hand-pointer-o:before {
  content: "\F25A";
}

.fa-hand-peace-o:before {
  content: "\F25B";
}

.fa-trademark:before {
  content: "\F25C";
}

.fa-registered:before {
  content: "\F25D";
}

.fa-creative-commons:before {
  content: "\F25E";
}

.fa-gg:before {
  content: "\F260";
}

.fa-gg-circle:before {
  content: "\F261";
}

.fa-tripadvisor:before {
  content: "\F262";
}

.fa-odnoklassniki:before {
  content: "\F263";
}

.fa-odnoklassniki-square:before {
  content: "\F264";
}

.fa-get-pocket:before {
  content: "\F265";
}

.fa-wikipedia-w:before {
  content: "\F266";
}

.fa-safari:before {
  content: "\F267";
}

.fa-chrome:before {
  content: "\F268";
}

.fa-firefox:before {
  content: "\F269";
}

.fa-opera:before {
  content: "\F26A";
}

.fa-internet-explorer:before {
  content: "\F26B";
}

.fa-tv:before,
.fa-television:before {
  content: "\F26C";
}

.fa-contao:before {
  content: "\F26D";
}

.fa-500px:before {
  content: "\F26E";
}

.fa-amazon:before {
  content: "\F270";
}

.fa-calendar-plus-o:before {
  content: "\F271";
}

.fa-calendar-minus-o:before {
  content: "\F272";
}

.fa-calendar-times-o:before {
  content: "\F273";
}

.fa-calendar-check-o:before {
  content: "\F274";
}

.fa-industry:before {
  content: "\F275";
}

.fa-map-pin:before {
  content: "\F276";
}

.fa-map-signs:before {
  content: "\F277";
}

.fa-map-o:before {
  content: "\F278";
}

.fa-map:before {
  content: "\F279";
}

.fa-commenting:before {
  content: "\F27A";
}

.fa-commenting-o:before {
  content: "\F27B";
}

.fa-houzz:before {
  content: "\F27C";
}

.fa-vimeo:before {
  content: "\F27D";
}

.fa-black-tie:before {
  content: "\F27E";
}

.fa-fonticons:before {
  content: "\F280";
}

.fa-reddit-alien:before {
  content: "\F281";
}

.fa-edge:before {
  content: "\F282";
}

.fa-credit-card-alt:before {
  content: "\F283";
}

.fa-codiepie:before {
  content: "\F284";
}

.fa-modx:before {
  content: "\F285";
}

.fa-fort-awesome:before {
  content: "\F286";
}

.fa-usb:before {
  content: "\F287";
}

.fa-product-hunt:before {
  content: "\F288";
}

.fa-mixcloud:before {
  content: "\F289";
}

.fa-scribd:before {
  content: "\F28A";
}

.fa-pause-circle:before {
  content: "\F28B";
}

.fa-pause-circle-o:before {
  content: "\F28C";
}

.fa-stop-circle:before {
  content: "\F28D";
}

.fa-stop-circle-o:before {
  content: "\F28E";
}

.fa-shopping-bag:before {
  content: "\F290";
}

.fa-shopping-basket:before {
  content: "\F291";
}

.fa-hashtag:before {
  content: "\F292";
}

.fa-bluetooth:before {
  content: "\F293";
}

.fa-bluetooth-b:before {
  content: "\F294";
}

.fa-percent:before {
  content: "\F295";
}

.fa-gitlab:before {
  content: "\F296";
}

.fa-wpbeginner:before {
  content: "\F297";
}

.fa-wpforms:before {
  content: "\F298";
}

.fa-envira:before {
  content: "\F299";
}

.fa-universal-access:before {
  content: "\F29A";
}

.fa-wheelchair-alt:before {
  content: "\F29B";
}

.fa-question-circle-o:before {
  content: "\F29C";
}

.fa-blind:before {
  content: "\F29D";
}

.fa-audio-description:before {
  content: "\F29E";
}

.fa-volume-control-phone:before {
  content: "\F2A0";
}

.fa-braille:before {
  content: "\F2A1";
}

.fa-assistive-listening-systems:before {
  content: "\F2A2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\F2A3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\F2A4";
}

.fa-glide:before {
  content: "\F2A5";
}

.fa-glide-g:before {
  content: "\F2A6";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "\F2A7";
}

.fa-low-vision:before {
  content: "\F2A8";
}

.fa-viadeo:before {
  content: "\F2A9";
}

.fa-viadeo-square:before {
  content: "\F2AA";
}

.fa-snapchat:before {
  content: "\F2AB";
}

.fa-snapchat-ghost:before {
  content: "\F2AC";
}

.fa-snapchat-square:before {
  content: "\F2AD";
}

.fa-pied-piper:before {
  content: "\F2AE";
}

.fa-first-order:before {
  content: "\F2B0";
}

.fa-yoast:before {
  content: "\F2B1";
}

.fa-themeisle:before {
  content: "\F2B2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\F2B3";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "\F2B4";
}

.fa-handshake-o:before {
  content: "\F2B5";
}

.fa-envelope-open:before {
  content: "\F2B6";
}

.fa-envelope-open-o:before {
  content: "\F2B7";
}

.fa-linode:before {
  content: "\F2B8";
}

.fa-address-book:before {
  content: "\F2B9";
}

.fa-address-book-o:before {
  content: "\F2BA";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "\F2BB";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\F2BC";
}

.fa-user-circle:before {
  content: "\F2BD";
}

.fa-user-circle-o:before {
  content: "\F2BE";
}

.fa-user-o:before {
  content: "\F2C0";
}

.fa-id-badge:before {
  content: "\F2C1";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\F2C2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\F2C3";
}

.fa-quora:before {
  content: "\F2C4";
}

.fa-free-code-camp:before {
  content: "\F2C5";
}

.fa-telegram:before {
  content: "\F2C6";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\F2C7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\F2C8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\F2C9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\F2CA";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\F2CB";
}

.fa-shower:before {
  content: "\F2CC";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\F2CD";
}

.fa-podcast:before {
  content: "\F2CE";
}

.fa-window-maximize:before {
  content: "\F2D0";
}

.fa-window-minimize:before {
  content: "\F2D1";
}

.fa-window-restore:before {
  content: "\F2D2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\F2D3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\F2D4";
}

.fa-bandcamp:before {
  content: "\F2D5";
}

.fa-grav:before {
  content: "\F2D6";
}

.fa-etsy:before {
  content: "\F2D7";
}

.fa-imdb:before {
  content: "\F2D8";
}

.fa-ravelry:before {
  content: "\F2D9";
}

.fa-eercast:before {
  content: "\F2DA";
}

.fa-microchip:before {
  content: "\F2DB";
}

.fa-snowflake-o:before {
  content: "\F2DC";
}

.fa-superpowers:before {
  content: "\F2DD";
}

.fa-wpexplorer:before {
  content: "\F2DE";
}

.fa-meetup:before {
  content: "\F2E0";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/*! jQuery UI - v1.12.1 - 2016-09-14
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px
* Copyright jQuery Foundation and other contributors; Licensed MIT */

.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
}

.ui-front {
  z-index: 100;
}

.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}

.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: .5em .5em .5em .7em;
  font-size: 100%;
}

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}

.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0;
}

.ui-menu .ui-menu {
  position: absolute;
}

.ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding: 3px 1em 3px .4em;
}

.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: -1px;
}

.ui-menu-icons {
  position: relative;
}

.ui-menu-icons .ui-menu-item-wrapper {
  padding-left: 2em;
}

.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: .2em;
  margin: auto 0;
}

.ui-menu .ui-menu-icon {
  left: auto;
  right: 0;
}

.ui-button {
  padding: .4em 1em;
  display: inline-block;
  position: relative;
  line-height: normal;
  margin-right: .1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: visible;
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none;
}

.ui-button-icon-only {
  width: 2em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-indent: -9999px;
  white-space: nowrap;
}

input.ui-button.ui-button-icon-only {
  text-indent: 0;
}

.ui-button-icon-only .ui-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
  padding: 0;
  width: 2.1em;
  height: 2.1em;
  text-indent: -9999px;
  white-space: nowrap;
}

input.ui-button.ui-icon-notext .ui-icon {
  width: auto;
  height: auto;
  text-indent: 0;
  white-space: normal;
  padding: .4em 1em;
}

input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.ui-controlgroup {
  vertical-align: middle;
  display: inline-block;
}

.ui-controlgroup>.ui-controlgroup-item {
  float: left;
  margin-left: 0;
  margin-right: 0;
}

.ui-controlgroup>.ui-controlgroup-item:focus,
.ui-controlgroup>.ui-controlgroup-item.ui-visual-focus {
  z-index: 9999;
}

.ui-controlgroup-vertical>.ui-controlgroup-item {
  display: block;
  float: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
}

.ui-controlgroup-vertical .ui-controlgroup-item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.ui-controlgroup .ui-controlgroup-label {
  padding: .4em 1em;
}

.ui-controlgroup .ui-controlgroup-label span {
  font-size: 80%;
}

.ui-controlgroup-horizontal .ui-controlgroup-label+.ui-controlgroup-item {
  border-left: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label+.ui-controlgroup-item {
  border-top: none;
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
  border-right: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
  border-bottom: none;
}

.ui-controlgroup-vertical .ui-spinner-input {
  width: 75%;
  width: calc(100% - 2.4em);
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
  border-top-style: solid;
}

.ui-checkboxradio-label .ui-icon-background {
  -webkit-box-shadow: inset 1px 1px 1px #ccc;
  box-shadow: inset 1px 1px 1px #ccc;
  border-radius: .12em;
  border: none;
}

.ui-checkboxradio-radio-label .ui-icon-background {
  width: 16px;
  height: 16px;
  border-radius: 1em;
  overflow: visible;
  border: none;
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
  background-image: none;
  width: 8px;
  height: 8px;
  border-width: 4px;
  border-style: solid;
}

.ui-checkboxradio-disabled {
  pointer-events: none;
}

.ui-datepicker {
  width: 17em;
  padding: .2em .2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em;
}

.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

.ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: .5em;
  top: .3em;
}

.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: .2em;
  outline: 0;
}

.ui-dialog .ui-dialog-titlebar {
  padding: .4em 1em;
  position: relative;
}

.ui-dialog .ui-dialog-title {
  float: left;
  margin: .1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: .3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: .5em 1em;
  background: none;
  overflow: auto;
}

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: .5em;
  padding: .3em 1em .5em .4em;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
  margin: .5em .4em .5em 0;
  cursor: pointer;
}

.ui-dialog .ui-resizable-n {
  height: 2px;
  top: 0;
}

.ui-dialog .ui-resizable-e {
  width: 2px;
  right: 0;
}

.ui-dialog .ui-resizable-s {
  height: 2px;
  bottom: 0;
}

.ui-dialog .ui-resizable-w {
  width: 2px;
  left: 0;
}

.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
  width: 7px;
  height: 7px;
}

.ui-dialog .ui-resizable-se {
  right: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-sw {
  left: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-ne {
  right: 0;
  top: 0;
}

.ui-dialog .ui-resizable-nw {
  left: 0;
  top: 0;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

.ui-draggable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-resizable {
  position: relative;
}

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none;
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}

.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  filter: alpha(opacity=25);
  opacity: 0.25;
}

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}

.ui-selectable {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 1px;
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0;
}

.ui-selectmenu-open {
  display: block;
}

.ui-selectmenu-text {
  display: block;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-selectmenu-button.ui-button {
  text-align: left;
  white-space: nowrap;
  width: 14em;
}

.ui-selectmenu-icon.ui-icon {
  float: right;
  margin-top: 0;
}

.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  -webkit-filter: inherit;
  filter: inherit;
}

.ui-slider-horizontal {
  height: .8em;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -.3em;
  margin-left: -.6em;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  width: .8em;
  height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -.3em;
  margin-left: 0;
  margin-bottom: -.6em;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

.ui-sortable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}

.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: .222em 0;
  margin: .2em 0;
  vertical-align: middle;
  margin-left: .4em;
  margin-right: 2em;
}

.ui-spinner-button {
  width: 1.6em;
  height: 50%;
  font-size: .5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}

.ui-spinner a.ui-spinner-button {
  border-top-style: none;
  border-bottom-style: none;
  border-right-style: none;
}

.ui-spinner-up {
  top: 0;
}

.ui-spinner-down {
  bottom: 0;
}

.ui-tabs {
  position: relative;
  padding: .2em;
}

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: .2em .2em 0;
}

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px .2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: .5em 1em;
  text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
}

body .ui-tooltip {
  border-width: 2px;
}

.ui-widget {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
}

.ui-widget-content a {
  color: #333333;
}

.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}

.ui-widget-header a {
  color: #333333;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #cccccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}

.ui-visual-focus {
  -webkit-box-shadow: 0 0 3px 1px #5e9ed6;
  box-shadow: 0 0 3px 1px #5e9ed6;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #ffffff;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #ffffff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}

.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: .7;
  filter: Alpha(Opacity=70);
  font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: .35;
  filter: Alpha(Opacity=35);
  background-image: none;
}

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
}

.ui-icon {
  width: 16px;
  height: 16px;
}

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url(/images/ui-icons_444444_256x240.png?b0df04f42ac40db2923473652182eee0);
}

.ui-widget-header .ui-icon {
  background-image: url(/images/ui-icons_444444_256x240.png?b0df04f42ac40db2923473652182eee0);
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background-image: url(/images/ui-icons_555555_256x240.png?b0df04f42ac40db2923473652182eee0);
}

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url(/images/ui-icons_ffffff_256x240.png?b0df04f42ac40db2923473652182eee0);
}

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url(/images/ui-icons_777620_256x240.png?b0df04f42ac40db2923473652182eee0);
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url(/images/ui-icons_cc0000_256x240.png?b0df04f42ac40db2923473652182eee0);
}

.ui-button .ui-icon {
  background-image: url(/images/ui-icons_777777_256x240.png?b0df04f42ac40db2923473652182eee0);
}

.ui-icon-blank {
  background-position: 16px 16px;
}

.ui-icon-caret-1-n {
  background-position: 0 0;
}

.ui-icon-caret-1-ne {
  background-position: -16px 0;
}

.ui-icon-caret-1-e {
  background-position: -32px 0;
}

.ui-icon-caret-1-se {
  background-position: -48px 0;
}

.ui-icon-caret-1-s {
  background-position: -65px 0;
}

.ui-icon-caret-1-sw {
  background-position: -80px 0;
}

.ui-icon-caret-1-w {
  background-position: -96px 0;
}

.ui-icon-caret-1-nw {
  background-position: -112px 0;
}

.ui-icon-caret-2-n-s {
  background-position: -128px 0;
}

.ui-icon-caret-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -65px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-start {
  background-position: -80px -160px;
}

.ui-icon-seek-first {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px;
}

.ui-widget-overlay {
  background: #aaaaaa;
  opacity: .3;
  filter: Alpha(Opacity=30);
}

.ui-widget-shadow {
  -webkit-box-shadow: 0px 0px 5px #666666;
  box-shadow: 0px 0px 5px #666666;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

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

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

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

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

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

@keyframes flash {

  from,
  50%,
  to {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@keyframes jello {

  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }

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

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

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

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

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

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

@keyframes bounceIn {

  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

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

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

@keyframes bounceInDown {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@keyframes bounceInLeft {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@keyframes bounceInRight {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

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

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

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

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

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

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
    visibility: visible;
  }

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

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

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

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

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

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

@font-face {
  font-family: 'iconfont';
  src: url(../assets/app/fonts/iconfont.ttf) format("truetype"),
    url(../assets/app/fonts/iconfont.woff) format("woff"),
    url(//cdn.shopify.com/s/files/1/0069/4524/3200/t/14/assets/iconfont.svg?3m11x9%23iconfont&6851121517266890162) format("svg");
  font-weight: normal;
  font-style: normal;
}

.icon {
  font-family: 'iconfont' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-search-minus:before {
  content: "\E98D";
}

.icon-search:before {
  content: "\E98E";
}

.icon-down-arrow:before {
  content: "\E98F";
}

.icon-up-arrow:before {
  content: "\E990";
}

.icon-right-arrow:before {
  content: "\E991";
}

.icon-left-arrows:before {
  content: "\E992";
}

.icon-heart:before {
  content: "\E987";
}

.icon-medical2:before {
  content: "\E954";
}

.icon-eye2:before {
  content: "\E955";
}

.icon-full-screen:before {
  content: "\E956";
}

.icon-shuffle-arrow:before {
  content: "\E976";
}

.icon-online-shopping-cart:before {
  content: "\E988";
}

.icon-shopping-cart2:before {
  content: "\E989";
}

.icon-apple-1:before {
  content: "\E981";
}

.icon-apple:before {
  content: "\E982";
}

.icon-watch:before {
  content: "\E983";
}

.icon-cogwheel:before {
  content: "\E984";
}

.icon-light-bulb:before {
  content: "\E985";
}

.icon-light-bulb-1:before {
  content: "\E986";
}

.icon-u-turn:before {
  content: "\E96B";
}

.icon-medal:before {
  content: "\E97E";
}

.icon-team-1:before {
  content: "\E97F";
}

.icon-team2:before {
  content: "\E980";
}

.icon-team:before {
  content: "\E95C";
}

.icon-tshirt:before {
  content: "\E95D";
}

.icon-cancel:before {
  content: "\E95E";
}

.icon-drink:before {
  content: "\E95F";
}

.icon-home2:before {
  content: "\E960";
}

.icon-music:before {
  content: "\E961";
}

.icon-rich:before {
  content: "\E962";
}

.icon-brush:before {
  content: "\E963";
}

.icon-opposite-way:before {
  content: "\E964";
}

.icon-cloud-computing:before {
  content: "\E965";
}

.icon-technology-1:before {
  content: "\E966";
}

.icon-rotate:before {
  content: "\E967";
}

.icon-medical:before {
  content: "\E968";
}

.icon-flash-1:before {
  content: "\E969";
}

.icon-flash:before {
  content: "\E96A";
}

.icon-hours-support:before {
  content: "\E96D";
}

.icon-bag:before {
  content: "\E96E";
}

.icon-photo-camera:before {
  content: "\E96F";
}

.icon-school:before {
  content: "\E970";
}

.icon-settings:before {
  content: "\E971";
}

.icon-smartphone2:before {
  content: "\E972";
}

.icon-technology-12:before {
  content: "\E973";
}

.icon-tool:before {
  content: "\E974";
}

.icon-business2:before {
  content: "\E975";
}

.icon-star:before {
  content: "\E98A";
}

.icon-star-1:before {
  content: "\E98B";
}

.icon-favorite:before {
  content: "\E98C";
}

.icon-valentines-heart:before {
  content: "\E95A";
}

.icon-van-1:before {
  content: "\E977";
}

.icon-van:before {
  content: "\E978";
}

.icon-vegetables:before {
  content: "\E979";
}

.icon-women:before {
  content: "\E97A";
}

.icon-left-arrow:before {
  content: "\E919";
}

.icon-vintage:before {
  content: "\E97B";
}

.icon-up-arrow2:before {
  content: "\E97C";
}

.icon-arrows:before {
  content: "\E97D";
}

.icon-download-arrow:before {
  content: "\E940";
}

.icon-facebook:before {
  content: "\E905";
}

.icon-twitter:before {
  content: "\E90A";
}

.icon-dribbble:before {
  content: "\E90B";
}

.icon-linkedin:before {
  content: "\E90F";
}

.icon-youtube:before {
  content: "\E912";
}

.icon-twitter3:before {
  content: "\E914";
}

.icon-pinterest:before {
  content: "\E915";
}

.icon-vimeo:before {
  content: "\E918";
}

.icon-soundcloud:before {
  content: "\E91C";
}

.icon-youtube-v:before {
  content: "\E925";
}

.icon-behance:before {
  content: "\E927";
}

.icon-google-plus:before {
  content: "\E92D";
}

.icon-instagram:before {
  content: "\E936";
}

.icon-double-left-chevron:before {
  content: "\E939";
}

.icon-double-angle-pointing-to-right:before {
  content: "\E93A";
}

.icon-down-arrow2:before {
  content: "\E96C";
}

.icon-arrow-point-to-down:before {
  content: "\E93B";
}

.icon-play-button:before {
  content: "\E93C";
}

.icon-minus:before {
  content: "\E93D";
}

.icon-plus:before {
  content: "\E93E";
}

.icon-tick:before {
  content: "\E93F";
}

.icon-edit:before {
  content: "\E941";
}

.icon-reply:before {
  content: "\E942";
}

.icon-cogwheel-outline:before {
  content: "\E943";
}

.icon-symbol:before {
  content: "\E944";
}

.icon-calendar:before {
  content: "\E945";
}

.icon-shopping-cart:before {
  content: "\E946";
}

.icon-shopping-basket:before {
  content: "\E947";
}

.icon-users2:before {
  content: "\E948";
}

.icon-man:before {
  content: "\E949";
}

.icon-support:before {
  content: "\E94A";
}

.icon-favorites:before {
  content: "\E94B";
}

.icon-calendar3:before {
  content: "\E94C";
}

.icon-paper-plane:before {
  content: "\E94D";
}

.icon-placeholder:before {
  content: "\E94E";
}

.icon-phone-call:before {
  content: "\E94F";
}

.icon-newsletter:before {
  content: "\E901";
}

.icon-contact:before {
  content: "\E950";
}

.icon-email:before {
  content: "\E951";
}

.icon-envelope:before {
  content: "\E926";
}

.icon-internet:before {
  content: "\E952";
}

.icon-quote2:before {
  content: "\E953";
}

.icon-tools2:before {
  content: "\E957";
}

.icon-pie-chart2:before {
  content: "\E958";
}

.icon-diamond:before {
  content: "\E959";
}

.icon-like:before {
  content: "\E95B";
}

.icon-deal:before {
  content: "\E924";
}

.icon-left-arrow2:before {
  content: "\E931";
}

.icon-quote22:before {
  content: "\E937";
}

.icon-right-arrow2:before {
  content: "\E938";
}

.icon-coins-2:before {
  content: "\E902";
}

.icon-commerce-2:before {
  content: "\E903";
}

.icon-monitor:before {
  content: "\E904";
}

.icon-business:before {
  content: "\E906";
}

.icon-graphic-2:before {
  content: "\E907";
}

.icon-commerce-1:before {
  content: "\E908";
}

.icon-hammer:before {
  content: "\E909";
}

.icon-justice-1:before {
  content: "\E90C";
}

.icon-line:before {
  content: "\E90D";
}

.icon-money-3:before {
  content: "\E90E";
}

.icon-commerce:before {
  content: "\E910";
}

.icon-agenda:before {
  content: "\E911";
}

.icon-justice:before {
  content: "\E913";
}

.icon-technology:before {
  content: "\E916";
}

.icon-coins-1:before {
  content: "\E917";
}

.icon-bank:before {
  content: "\E91A";
}

.icon-calculator:before {
  content: "\E91B";
}

.icon-chart22:before {
  content: "\E91D";
}

.icon-checked:before {
  content: "\E91E";
}

.icon-clock3:before {
  content: "\E91F";
}

.icon-comment:before {
  content: "\E920";
}

.icon-comments:before {
  content: "\E921";
}

.icon-consult:before {
  content: "\E922";
}

.icon-consut2:before {
  content: "\E923";
}

.icon-folder:before {
  content: "\E928";
}

.icon-invest:before {
  content: "\E929";
}

.icon-loan:before {
  content: "\E92A";
}

.icon-map-marker2:before {
  content: "\E92B";
}

.icon-mutual-fund:before {
  content: "\E92C";
}

.icon-phone3:before {
  content: "\E92E";
}

.icon-pie-chart22:before {
  content: "\E92F";
}

.icon-play:before {
  content: "\E930";
}

.icon-savings:before {
  content: "\E932";
}

.icon-search3:before {
  content: "\E933";
}

.icon-tag:before {
  content: "\E934";
}

.icon-tags:before {
  content: "\E935";
}

.icon-vplay:before {
  content: "\E900";
}

.icon-mobile2:before {
  content: "\E000";
}

.icon-laptop2:before {
  content: "\E001";
}

.icon-desktop2:before {
  content: "\E002";
}

.icon-tablet2:before {
  content: "\E003";
}

.icon-phone2:before {
  content: "\E004";
}

.icon-document:before {
  content: "\E005";
}

.icon-documents:before {
  content: "\E006";
}

.icon-search2:before {
  content: "\E007";
}

.icon-clipboard2:before {
  content: "\E008";
}

.icon-newspaper:before {
  content: "\E009";
}

.icon-notebook:before {
  content: "\E00A";
}

.icon-book-open:before {
  content: "\E00B";
}

.icon-browser:before {
  content: "\E00C";
}

.icon-calendar2:before {
  content: "\E00D";
}

.icon-presentation:before {
  content: "\E00E";
}

.icon-picture:before {
  content: "\E00F";
}

.icon-pictures:before {
  content: "\E010";
}

.icon-video:before {
  content: "\E011";
}

.icon-camera2:before {
  content: "\E012";
}

.icon-printer:before {
  content: "\E013";
}

.icon-toolbox:before {
  content: "\E014";
}

.icon-briefcase2:before {
  content: "\E015";
}

.icon-wallet:before {
  content: "\E016";
}

.icon-gift2:before {
  content: "\E017";
}

.icon-bargraph:before {
  content: "\E018";
}

.icon-grid:before {
  content: "\E019";
}

.icon-expand2:before {
  content: "\E01A";
}

.icon-focus:before {
  content: "\E01B";
}

.icon-edit2:before {
  content: "\E01C";
}

.icon-adjustments:before {
  content: "\E01D";
}

.icon-ribbon:before {
  content: "\E01E";
}

.icon-hourglass2:before {
  content: "\E01F";
}

.icon-lock2:before {
  content: "\E020";
}

.icon-megaphone:before {
  content: "\E021";
}

.icon-shield2:before {
  content: "\E022";
}

.icon-trophy2:before {
  content: "\E023";
}

.icon-flag2:before {
  content: "\E024";
}

.icon-map2:before {
  content: "\E025";
}

.icon-puzzle:before {
  content: "\E026";
}

.icon-basket:before {
  content: "\E027";
}

.icon-envelope2:before {
  content: "\E028";
}

.icon-streetsign:before {
  content: "\E029";
}

.icon-telescope:before {
  content: "\E02A";
}

.icon-gears2:before {
  content: "\E02B";
}

.icon-key2:before {
  content: "\E02C";
}

.icon-paperclip2:before {
  content: "\E02D";
}

.icon-attachment:before {
  content: "\E02E";
}

.icon-pricetags:before {
  content: "\E02F";
}

.icon-lightbulb:before {
  content: "\E030";
}

.icon-layers:before {
  content: "\E031";
}

.icon-pencil2:before {
  content: "\E032";
}

.icon-tools:before {
  content: "\E033";
}

.icon-tools-2:before {
  content: "\E034";
}

.icon-scissors2:before {
  content: "\E035";
}

.icon-paintbrush:before {
  content: "\E036";
}

.icon-magnifying-glass:before {
  content: "\E037";
}

.icon-circle-compass:before {
  content: "\E038";
}

.icon-linegraph:before {
  content: "\E039";
}

.icon-mic:before {
  content: "\E03A";
}

.icon-strategy:before {
  content: "\E03B";
}

.icon-beaker:before {
  content: "\E03C";
}

.icon-caution:before {
  content: "\E03D";
}

.icon-recycle2:before {
  content: "\E03E";
}

.icon-anchor2:before {
  content: "\E03F";
}

.icon-profile-male:before {
  content: "\E040";
}

.icon-profile-female:before {
  content: "\E041";
}

.icon-bike:before {
  content: "\E042";
}

.icon-wine:before {
  content: "\E043";
}

.icon-hotairballoon:before {
  content: "\E044";
}

.icon-globe2:before {
  content: "\E045";
}

.icon-genius:before {
  content: "\E046";
}

.icon-map-pin2:before {
  content: "\E047";
}

.icon-dial:before {
  content: "\E048";
}

.icon-chat:before {
  content: "\E049";
}

.icon-heart2:before {
  content: "\E04A";
}

.icon-cloud2:before {
  content: "\E04B";
}

.icon-upload2:before {
  content: "\E04C";
}

.icon-download2:before {
  content: "\E04D";
}

.icon-target:before {
  content: "\E04E";
}

.icon-hazardous:before {
  content: "\E04F";
}

.icon-piechart:before {
  content: "\E050";
}

.icon-speedometer:before {
  content: "\E051";
}

.icon-global:before {
  content: "\E052";
}

.icon-compass2:before {
  content: "\E053";
}

.icon-lifesaver:before {
  content: "\E054";
}

.icon-clock:before {
  content: "\E055";
}

.icon-aperture:before {
  content: "\E056";
}

.icon-quote:before {
  content: "\E057";
}

.icon-scope:before {
  content: "\E058";
}

.icon-alarmclock:before {
  content: "\E059";
}

.icon-refresh2:before {
  content: "\E05A";
}

.icon-happy:before {
  content: "\E05B";
}

.icon-sad:before {
  content: "\E05C";
}

.icon-facebook2:before {
  content: "\E05D";
}

.icon-twitter2:before {
  content: "\E05E";
}

.icon-googleplus:before {
  content: "\E05F";
}

.icon-rss2:before {
  content: "\E060";
}

.icon-tumblr2:before {
  content: "\E061";
}

.icon-linkedin2:before {
  content: "\E062";
}

.icon-dribbble2:before {
  content: "\E063";
}

.icon-home:before {
  content: "\E800";
}

.icon-apartment:before {
  content: "\E801";
}

.icon-pencil:before {
  content: "\E802";
}

.icon-magic-wand:before {
  content: "\E803";
}

.icon-drop:before {
  content: "\E804";
}

.icon-lighter:before {
  content: "\E805";
}

.icon-poop:before {
  content: "\E806";
}

.icon-sun:before {
  content: "\E807";
}

.icon-moon:before {
  content: "\E808";
}

.icon-cloud:before {
  content: "\E809";
}

.icon-cloud-upload:before {
  content: "\E80A";
}

.icon-cloud-download:before {
  content: "\E80B";
}

.icon-cloud-sync:before {
  content: "\E80C";
}

.icon-cloud-check:before {
  content: "\E80D";
}

.icon-database:before {
  content: "\E80E";
}

.icon-lock3:before {
  content: "\E80F";
}

.icon-cog2:before {
  content: "\E810";
}

.icon-trash2:before {
  content: "\E811";
}

.icon-dice:before {
  content: "\E812";
}

.icon-heart3:before {
  content: "\E813";
}

.icon-star2:before {
  content: "\E814";
}

.icon-star-half2:before {
  content: "\E815";
}

.icon-star-empty:before {
  content: "\E816";
}

.icon-flag3:before {
  content: "\E817";
}

.icon-envelope3:before {
  content: "\E818";
}

.icon-paperclip:before {
  content: "\E819";
}

.icon-inbox:before {
  content: "\E81A";
}

.icon-eye:before {
  content: "\E81B";
}

.icon-printer2:before {
  content: "\E81C";
}

.icon-file-empty:before {
  content: "\E81D";
}

.icon-file-add:before {
  content: "\E81E";
}

.icon-enter:before {
  content: "\E81F";
}

.icon-exit:before {
  content: "\E820";
}

.icon-graduation-hat:before {
  content: "\E821";
}

.icon-license:before {
  content: "\E822";
}

.icon-music-note:before {
  content: "\E823";
}

.icon-film-play:before {
  content: "\E824";
}

.icon-camera-video:before {
  content: "\E825";
}

.icon-camera:before {
  content: "\E826";
}

.icon-picture2:before {
  content: "\E827";
}

.icon-book:before {
  content: "\E828";
}

.icon-bookmark:before {
  content: "\E829";
}

.icon-user2:before {
  content: "\E82A";
}

.icon-users:before {
  content: "\E82B";
}

.icon-shirt:before {
  content: "\E82C";
}

.icon-store:before {
  content: "\E82D";
}

.icon-cart:before {
  content: "\E82E";
}

.icon-tag2:before {
  content: "\E82F";
}

.icon-phone-handset:before {
  content: "\E830";
}

.icon-phone:before {
  content: "\E831";
}

.icon-pushpin:before {
  content: "\E832";
}

.icon-map-marker:before {
  content: "\E833";
}

.icon-map:before {
  content: "\E834";
}

.icon-location:before {
  content: "\E835";
}

.icon-calendar-full:before {
  content: "\E836";
}

.icon-keyboard:before {
  content: "\E837";
}

.icon-spell-check:before {
  content: "\E838";
}

.icon-screen:before {
  content: "\E839";
}

.icon-smartphone:before {
  content: "\E83A";
}

.icon-tablet:before {
  content: "\E83B";
}

.icon-laptop:before {
  content: "\E83C";
}

.icon-laptop-phone:before {
  content: "\E83D";
}

.icon-power-switch:before {
  content: "\E83E";
}

.icon-bubble:before {
  content: "\E83F";
}

.icon-heart-pulse:before {
  content: "\E840";
}

.icon-construction:before {
  content: "\E841";
}

.icon-pie-chart:before {
  content: "\E842";
}

.icon-chart-bars:before {
  content: "\E843";
}

.icon-gift:before {
  content: "\E844";
}

.icon-diamond2:before {
  content: "\E845";
}

.icon-dinner:before {
  content: "\E847";
}

.icon-coffee-cup:before {
  content: "\E848";
}

.icon-leaf:before {
  content: "\E849";
}

.icon-paw:before {
  content: "\E84A";
}

.icon-rocket:before {
  content: "\E84B";
}

.icon-briefcase:before {
  content: "\E84C";
}

.icon-bus2:before {
  content: "\E84D";
}

.icon-car2:before {
  content: "\E84E";
}

.icon-train:before {
  content: "\E84F";
}

.icon-bicycle2:before {
  content: "\E850";
}

.icon-wheelchair:before {
  content: "\E851";
}

.icon-select:before {
  content: "\E852";
}

.icon-earth:before {
  content: "\E853";
}

.icon-smile:before {
  content: "\E854";
}

.icon-sad2:before {
  content: "\E855";
}

.icon-neutral:before {
  content: "\E856";
}

.icon-mustache:before {
  content: "\E857";
}

.icon-alarm:before {
  content: "\E858";
}

.icon-bullhorn:before {
  content: "\E859";
}

.icon-volume-high:before {
  content: "\E85A";
}

.icon-volume-medium:before {
  content: "\E85B";
}

.icon-volume-low:before {
  content: "\E85C";
}

.icon-volume:before {
  content: "\E85D";
}

.icon-mic2:before {
  content: "\E85E";
}

.icon-hourglass:before {
  content: "\E85F";
}

.icon-undo:before {
  content: "\E860";
}

.icon-redo:before {
  content: "\E861";
}

.icon-sync:before {
  content: "\E862";
}

.icon-history:before {
  content: "\E863";
}

.icon-clock2:before {
  content: "\E864";
}

.icon-download3:before {
  content: "\E865";
}

.icon-upload:before {
  content: "\E866";
}

.icon-enter-down:before {
  content: "\E867";
}

.icon-exit-up:before {
  content: "\E868";
}

.icon-bug:before {
  content: "\E869";
}

.icon-code2:before {
  content: "\E86A";
}

.icon-link:before {
  content: "\E86B";
}

.icon-unlink:before {
  content: "\E86C";
}

.icon-thumbs-up:before {
  content: "\E86D";
}

.icon-thumbs-down:before {
  content: "\E86E";
}

.icon-magnifier:before {
  content: "\E86F";
}

.icon-cross:before {
  content: "\E870";
}

.icon-menu:before {
  content: "\E871";
}

.icon-list:before {
  content: "\E872";
}

.icon-chevron-up:before {
  content: "\E873";
}

.icon-chevron-down:before {
  content: "\E874";
}

.icon-chevron-left:before {
  content: "\E875";
}

.icon-chevron-right:before {
  content: "\E876";
}

.icon-arrow-up:before {
  content: "\E877";
}

.icon-arrow-down:before {
  content: "\E878";
}

.icon-arrow-left:before {
  content: "\E879";
}

.icon-arrow-right:before {
  content: "\E87A";
}

.icon-move:before {
  content: "\E87B";
}

.icon-warning:before {
  content: "\E87C";
}

.icon-question-circle:before {
  content: "\E87D";
}

.icon-menu-circle:before {
  content: "\E87E";
}

.icon-checkmark-circle:before {
  content: "\E87F";
}

.icon-cross-circle:before {
  content: "\E880";
}

.icon-plus-circle:before {
  content: "\E881";
}

.icon-circle-minus:before {
  content: "\E882";
}

.icon-arrow-up-circle:before {
  content: "\E883";
}

.icon-arrow-down-circle:before {
  content: "\E884";
}

.icon-arrow-left-circle:before {
  content: "\E885";
}

.icon-arrow-right-circle:before {
  content: "\E886";
}

.icon-chevron-up-circle:before {
  content: "\E887";
}

.icon-chevron-down-circle:before {
  content: "\E888";
}

.icon-chevron-left-circle:before {
  content: "\E889";
}

.icon-chevron-right-circle:before {
  content: "\E88A";
}

.icon-crop:before {
  content: "\E88B";
}

.icon-frame-expand:before {
  content: "\E88C";
}

.icon-frame-contract:before {
  content: "\E88D";
}

.icon-layers2:before {
  content: "\E88E";
}

.icon-funnel:before {
  content: "\E88F";
}

.icon-text-format:before {
  content: "\E890";
}

.icon-text-size:before {
  content: "\E892";
}

.icon-bold:before {
  content: "\E893";
}

.icon-italic:before {
  content: "\E894";
}

.icon-underline:before {
  content: "\E895";
}

.icon-strikethrough:before {
  content: "\E896";
}

.icon-highlight:before {
  content: "\E897";
}

.icon-text-align-left:before {
  content: "\E898";
}

.icon-text-align-center:before {
  content: "\E899";
}

.icon-text-align-right:before {
  content: "\E89A";
}

.icon-text-align-justify:before {
  content: "\E89B";
}

.icon-line-spacing:before {
  content: "\E89C";
}

.icon-indent-increase:before {
  content: "\E89D";
}

.icon-indent-decrease:before {
  content: "\E89E";
}

.icon-page-break:before {
  content: "\E8A2";
}

.icon-hand:before {
  content: "\E8A5";
}

.icon-pointer-up:before {
  content: "\E8A6";
}

.icon-pointer-right:before {
  content: "\E8A7";
}

.icon-pointer-down:before {
  content: "\E8A8";
}

.icon-pointer-left:before {
  content: "\E8A9";
}

.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
  transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

.isotope.infinite-scrolling {
  -webkit-transition: none;
  transition: none;
}

#container {
  padding: 20px 0px;
}

.height-01 {
  height: 250px;
  width: 28%;
}

.height-02 {
  height: 250px;
  width: 25%;
}

.height-03 {
  width: 180px;
  height: 180px;
}

.element {
  margin: 1px;
  float: left;
  overflow: hidden;
  position: relative;
  color: #222;
}

.element * {
  position: absolute;
  margin: 0;
}

.element .symbol {
  left: 0.2em;
  top: 0.4em;
  font-size: 3.8em;
  line-height: 1.0em;
  color: #FFF;
}

.element.large .symbol {
  font-size: 4.5em;
}

.element.fake .symbol {
  color: #000;
}

.element .name {
  left: 0.5em;
  bottom: 1.6em;
  font-size: 1.05em;
}

.element .weight {
  font-size: 0.9em;
  left: 0.5em;
  bottom: 0.5em;
}

.element .number {
  font-size: 1.25em;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.5);
  right: 0.5em;
  top: 0.5em;
}

.variable-sizes .element.width2 {
  width: 230px;
}

.variable-sizes .element.height2 {
  height: 230px;
}

.variable-sizes .element.width2.height2 {
  font-size: 2.0em;
}

.element.large,
.variable-sizes .element.large,
.variable-sizes .element.large.width2.height2 {
  font-size: 3.0em;
  width: 350px;
  height: 350px;
  z-index: 100;
}

.clickable .element:hover {
  cursor: pointer;
}

.clickable .element:hover h3 {
  text-shadow: 0 0 10px #fff, 0 0 10px #fff;
}

.clickable .element:hover h2 {
  color: white;
}

#filters {
  margin: 5px 0px;
  padding: 0px;
  list-style: none;
}

#filters li {
  display: inline-block;
  margin-right: -1px;
}

:focus {
  outline: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

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

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

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

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

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

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.owl-height {
  -webkit-transition: height .5s ease-in-out;
  transition: height .5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(/images/owl.video.play.png?4cbde124d6cd8122c801118696c16f07) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform .1s ease;
  transition: -webkit-transform .1s ease;
  transition: transform .1s ease;
  transition: transform .1s ease, -webkit-transform .1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav {
  margin-top: 10px;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: .5;
  cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

.cd-dropdown-wrapper {
  display: inline-block;
  position: relative;
  height: 40px;
  margin: 30px 0 0 5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cd-dropdown-trigger {
  display: block;
  position: relative;
  padding: 0 36px 0 20px;
  line-height: 40px;
  background-color: #111433;
  color: #ffffff;
  border-radius: 3px;
}

.no-touch .cd-dropdown-trigger:hover {
  background-color: #171b46;
}

.cd-dropdown-trigger::before,
.cd-dropdown-trigger::after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -1px;
  height: 2px;
  width: 9px;
  background: #ffffff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: width 0.3s, -webkit-transform 0.3s;
  transition: width 0.3s, -webkit-transform 0.3s;
  transition: width 0.3s, transform 0.3s;
  transition: width 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.cd-dropdown-trigger::before {
  right: 22px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cd-dropdown-trigger::after {
  right: 17px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media only screen and (min-width: 1024px) {
  .cd-dropdown-trigger {
    font-size: 1.5rem;
  }

  .cd-dropdown-trigger.dropdown-is-active {
    background-color: #3f8654;
  }

  .no-touch .cd-dropdown-trigger.dropdown-is-active:hover {
    background-color: #47975f;
  }

  .cd-dropdown-trigger.dropdown-is-active::before,
  .cd-dropdown-trigger.dropdown-is-active::after {
    width: 14px;
  }

  .cd-dropdown-trigger.dropdown-is-active::before {
    -webkit-transform: translateX(5px) rotate(-45deg);
    transform: translateX(5px) rotate(-45deg);
  }

  .cd-dropdown-trigger.dropdown-is-active::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.cd-dropdown h2,
.cd-dropdown-content a,
.cd-dropdown-content ul a {
  height: 50px;
  line-height: 50px;
}

@media only screen and (min-width: 768px) {

  .cd-dropdown h2,
  .cd-dropdown-content a,
  .cd-dropdown-content ul a {
    height: 60px;
    line-height: 60px;
  }
}

@media only screen and (min-width: 1024px) {

  .cd-dropdown h2,
  .cd-dropdown-content a,
  .cd-dropdown-content ul a {
    height: 50px;
    line-height: 50px;
  }
}

.cd-dropdown h2,
.cd-dropdown-content a,
.cd-dropdown-content ul a,
.cd-dropdown-content .cd-divider {
  padding: 0 20px;
}

.cd-dropdown {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111433;
  color: #ffffff;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.5s 0s, visibility 0s 0.5s;
  -webkit-transition: visibility 0s 0.5s, -webkit-transform 0.5s 0s;
  transition: visibility 0s 0.5s, -webkit-transform 0.5s 0s;
  transition: transform 0.5s 0s, visibility 0s 0.5s;
  transition: transform 0.5s 0s, visibility 0s 0.5s, -webkit-transform 0.5s 0s;
}

.cd-dropdown h2 {
  position: relative;
  z-index: 1;
  color: #585a70;
  background-color: #111433;
  border-bottom: 1px solid #242643;
}

.cd-dropdown .cd-close {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  height: 50px;
  width: 50px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
}

.cd-dropdown .cd-close::after,
.cd-dropdown .cd-close::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  height: 20px;
  width: 2px;
  background-color: #ffffff;
}

.cd-dropdown .cd-close::after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.cd-dropdown .cd-close::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.cd-dropdown.dropdown-is-active {
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 0.5s 0s, visibility 0s 0s;
  -webkit-transition: visibility 0s 0s, -webkit-transform 0.5s 0s;
  transition: visibility 0s 0s, -webkit-transform 0.5s 0s;
  transition: transform 0.5s 0s, visibility 0s 0s;
  transition: transform 0.5s 0s, visibility 0s 0s, -webkit-transform 0.5s 0s;
}

@media only screen and (min-width: 768px) {
  .cd-dropdown .cd-close {
    top: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .cd-dropdown {
    position: absolute;
    top: calc(100% - 2px);
    height: auto;
    width: auto;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    background-color: #ffffff;
    color: #111433;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s, -webkit-transform 0.3s 0s;
  }

  .open-to-left .cd-dropdown {
    right: 0;
    left: auto;
  }

  .cd-dropdown h2,
  .cd-dropdown .cd-close {
    display: none;
  }

  .cd-dropdown.dropdown-is-active {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: opacity 0.3s 0s, visibility 0.3s 0s, -webkit-transform 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0.3s 0s, -webkit-transform 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0.3s 0s, transform 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0.3s 0s, transform 0.3s 0s, -webkit-transform 0.3s 0s;
  }
}

.cd-dropdown-content,
.cd-dropdown-content ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  padding-top: 50px;
}

.cd-dropdown-content a,
.cd-dropdown-content ul a {
  display: block;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-top-width: 1px;
  border-color: #242643;
  border-style: solid;
}

.cd-dropdown-content li:first-of-type>a,
.cd-dropdown-content ul li:first-of-type>a {
  border-top-width: 0;
}

.cd-dropdown-content li:last-of-type>a,
.cd-dropdown-content ul li:last-of-type>a {
  border-bottom-width: 1px;
}

.cd-dropdown-content .cd-divider,
.cd-dropdown-content ul .cd-divider {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #0b0e23;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #585a70;
  text-transform: uppercase;
}

.cd-dropdown-content .cd-divider+li>a,
.cd-dropdown-content ul .cd-divider+li>a {
  border-top-width: 0;
}

.cd-dropdown-content a,
.cd-dropdown-content .cd-search,
.cd-dropdown-content .cd-divider,
.cd-dropdown-content ul a,
.cd-dropdown-content ul .cd-search,
.cd-dropdown-content ul .cd-divider {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.cd-dropdown-content.is-hidden,
.cd-dropdown-content ul.is-hidden {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.cd-dropdown-content.is-hidden>li>a,
.cd-dropdown-content.is-hidden>li>.cd-search,
.cd-dropdown-content.is-hidden>.cd-divider,
.cd-dropdown-content.move-out>li>a,
.cd-dropdown-content.move-out>li>.cd-search,
.cd-dropdown-content.move-out>.cd-divider,
.cd-dropdown-content ul.is-hidden>li>a,
.cd-dropdown-content ul.is-hidden>li>.cd-search,
.cd-dropdown-content ul.is-hidden>.cd-divider,
.cd-dropdown-content ul.move-out>li>a,
.cd-dropdown-content ul.move-out>li>.cd-search,
.cd-dropdown-content ul.move-out>.cd-divider {
  opacity: 0;
}

.cd-dropdown-content.move-out>li>a,
.cd-dropdown-content.move-out>li>.cd-search,
.cd-dropdown-content.move-out>.cd-divider,
.cd-dropdown-content ul.move-out>li>a,
.cd-dropdown-content ul.move-out>li>.cd-search,
.cd-dropdown-content ul.move-out>.cd-divider {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.dropdown-is-active .cd-dropdown-content,
.dropdown-is-active .cd-dropdown-content ul {
  -webkit-overflow-scrolling: touch;
}

@media only screen and (min-width: 768px) {

  .cd-dropdown-content,
  .cd-dropdown-content ul {
    padding-top: 60px;
  }

  .cd-dropdown-content a,
  .cd-dropdown-content ul a {
    font-size: 1.8rem;
  }
}

@media only screen and (min-width: 1024px) {

  .cd-dropdown-content,
  .cd-dropdown-content ul {
    padding-top: 0;
    overflow: visible;
  }

  .cd-dropdown-content a,
  .cd-dropdown-content ul a {
    color: #111433;
    height: 50px;
    line-height: 50px;
    font-size: 1.5rem;
    border-color: #ebebeb;
  }

  .cd-dropdown-content .cd-divider,
  .cd-dropdown-content ul .cd-divider {
    background-color: transparent;
    color: #b3b3b3;
    border-top: 1px solid #ebebeb;
  }

  .cd-dropdown-content .cd-divider+li>a,
  .cd-dropdown-content ul .cd-divider+li>a {
    border-top-width: 1px;
  }

  .cd-dropdown-content.is-hidden>li>a,
  .cd-dropdown-content.is-hidden>li>.cd-search,
  .cd-dropdown-content.is-hidden>.cd-divider,
  .cd-dropdown-content.move-out>li>a,
  .cd-dropdown-content.move-out>li>.cd-search,
  .cd-dropdown-content.move-out>.cd-divider,
  .cd-dropdown-content ul.is-hidden>li>a,
  .cd-dropdown-content ul.is-hidden>li>.cd-search,
  .cd-dropdown-content ul.is-hidden>.cd-divider,
  .cd-dropdown-content ul.move-out>li>a,
  .cd-dropdown-content ul.move-out>li>.cd-search,
  .cd-dropdown-content ul.move-out>.cd-divider {
    opacity: 1;
  }
}

.cd-dropdown-content .see-all a {
  color: #3f8654;
}

.cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item,
.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item {
  height: 80px;
  line-height: 80px;
}

.cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item h3,
.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item {
  padding-left: 90px;
}

.cd-dropdown-content .cd-dropdown-gallery img {
  position: absolute;
  display: block;
  height: 40px;
  width: auto;
  left: 20px;
  top: 50%;
  margin-top: -20px;
}

.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item {
  padding-left: 75px;
  position: relative;
}

.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item p {
  color: #111433;
  font-size: 1.3rem;
}

.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item::before {
  content: '';
  display: block;
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40px 40px;
}

.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-1::before {
  background-image: url(/fonts/nucleo-icon-1.svg?b0df04f42ac40db2923473652182eee0);
}

.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-2::before {
  background-image: url(/fonts/nucleo-icon-2.svg?b0df04f42ac40db2923473652182eee0);
}

.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-3::before {
  background-image: url(/fonts/nucleo-icon-3.svg?b0df04f42ac40db2923473652182eee0);
}

.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-4::before {
  background-image: url(/fonts/nucleo-icon-4.svg?b0df04f42ac40db2923473652182eee0);
}

.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-5::before {
  background-image: url(/fonts/nucleo-icon-5.svg?b0df04f42ac40db2923473652182eee0);
}

.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-6::before {
  background-image: url(/fonts/nucleo-icon-6.svg?b0df04f42ac40db2923473652182eee0);
}

.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-7::before {
  background-image: url(/fonts/nucleo-icon-7.svg?b0df04f42ac40db2923473652182eee0);
}

.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-8::before {
  background-image: url(/fonts/nucleo-icon-8.svg?b0df04f42ac40db2923473652182eee0);
}

.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-9::before {
  background-image: url(/fonts/nucleo-icon-9.svg?b0df04f42ac40db2923473652182eee0);
}

.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-10::before {
  background-image: url(/fonts/nucleo-icon-10.svg?b0df04f42ac40db2923473652182eee0);
}

.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-11::before {
  background-image: url(/fonts/nucleo-icon-11.svg?b0df04f42ac40db2923473652182eee0);
}

.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-12::before {
  background-image: url(/fonts/nucleo-icon-12.svg?b0df04f42ac40db2923473652182eee0);
}

@media only screen and (min-width: 1024px) {
  .cd-dropdown-content {
    position: static;
    height: auto;
    width: 280px;
  }

  .cd-dropdown-content>li:last-of-type a {
    border-bottom: none;
  }

  .no-touch .cd-dropdown-content>li:not(.has-children) a:hover {
    color: #3f8654;
  }

  .cd-dropdown-content.move-out>li>a,
  .cd-dropdown-content.move-out>li>.cd-search,
  .cd-dropdown-content.move-out>.cd-divider {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }

  .cd-dropdown-content .cd-secondary-dropdown,
  .cd-dropdown-content .cd-dropdown-gallery,
  .cd-dropdown-content .cd-dropdown-icons {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    left: 100%;
    height: auto;
    background-color: #ffffff;
    -webkit-box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
  }

  .cd-dropdown-content .cd-secondary-dropdown::after,
  .cd-dropdown-content .cd-dropdown-gallery::after,
  .cd-dropdown-content .cd-dropdown-icons::after {
    clear: both;
    content: "";
    display: table;
  }

  .open-to-left .cd-dropdown-content .cd-secondary-dropdown,
  .open-to-left .cd-dropdown-content .cd-dropdown-gallery,
  .open-to-left .cd-dropdown-content .cd-dropdown-icons {
    left: auto;
    right: 100%;
  }

  .cd-dropdown-content .cd-secondary-dropdown.is-hidden,
  .cd-dropdown-content .cd-dropdown-gallery.is-hidden,
  .cd-dropdown-content .cd-dropdown-icons.is-hidden {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: hidden;
    opacity: 0;
  }

  .cd-dropdown-content .cd-secondary-dropdown.is-active,
  .cd-dropdown-content .cd-dropdown-gallery.is-active,
  .cd-dropdown-content .cd-dropdown-icons.is-active {
    -webkit-animation: cd-fade-in 0.5s;
    animation: cd-fade-in 0.5s;
  }

  .cd-dropdown-content .cd-secondary-dropdown>.go-back,
  .cd-dropdown-content .cd-dropdown-gallery>.go-back,
  .cd-dropdown-content .cd-dropdown-icons>.go-back {
    display: none;
  }

  .cd-dropdown-content .cd-secondary-dropdown>.see-all,
  .cd-dropdown-content .cd-dropdown-gallery>.see-all,
  .cd-dropdown-content .cd-dropdown-icons>.see-all {
    position: absolute;
    bottom: 20px;
    height: 45px;
    text-align: center;
  }

  .cd-dropdown-content .cd-secondary-dropdown>.see-all a,
  .cd-dropdown-content .cd-dropdown-gallery>.see-all a,
  .cd-dropdown-content .cd-dropdown-icons>.see-all a {
    margin: 0;
    height: 100%;
    line-height: 45px;
    background: #ebebeb;
    pointer-events: auto;
    -webkit-transition: color 0.2s, background-color 0.2s;
    transition: color 0.2s, background-color 0.2s;
  }

  .no-touch .cd-dropdown-content .cd-secondary-dropdown>.see-all a:hover,
  .no-touch .cd-dropdown-content .cd-dropdown-gallery>.see-all a:hover,
  .no-touch .cd-dropdown-content .cd-dropdown-icons>.see-all a:hover {
    color: #ffffff;
    background-color: #111433;
  }

  .cd-dropdown-content .cd-secondary-dropdown .cd-dropdown-item,
  .cd-dropdown-content .cd-secondary-dropdown a,
  .cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item,
  .cd-dropdown-content .cd-dropdown-gallery a,
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item,
  .cd-dropdown-content .cd-dropdown-icons a {
    border: none;
  }

  .cd-dropdown-content .cd-dropdown-gallery,
  .cd-dropdown-content .cd-dropdown-icons {
    padding: 20px 30px 100px;
  }

  .cd-dropdown-content .cd-dropdown-gallery>.see-all,
  .cd-dropdown-content .cd-dropdown-icons>.see-all {
    width: calc(100% - 60px);
  }

  .cd-dropdown-content .cd-dropdown-icons>li,
  .cd-dropdown-content .cd-secondary-dropdown>li {
    width: 50%;
    float: left;
  }

  .cd-dropdown-content .cd-secondary-dropdown {
    overflow: hidden;
    width: 550px;
    padding-bottom: 65px;
  }

  .cd-dropdown-content .cd-secondary-dropdown::before {
    position: absolute;
    content: '';
    top: 290px;
    left: 15px;
    height: 1px;
    width: 520px;
    background-color: #ebebeb;
  }

  .cd-dropdown-content .cd-secondary-dropdown>li>a {
    color: #3f8654;
    font-size: 1.6rem;
    margin-bottom: 10px;
    line-height: 30px;
    height: 30px;
    pointer-events: none;
  }

  .cd-dropdown-content .cd-secondary-dropdown>li>a::after,
  .cd-dropdown-content .cd-secondary-dropdown>li>a::before {
    display: none;
  }

  .cd-dropdown-content .cd-secondary-dropdown.move-out>li>a {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .cd-dropdown-content .cd-secondary-dropdown>li {
    margin: 20px 0;
    border-right-width: 1px;
    border-color: #ebebeb;
    border-style: solid;
    padding: 0 30px;
    height: 250px;
  }

  .cd-dropdown-content .cd-secondary-dropdown>li:nth-of-type(2n) {
    border-right-width: 0;
  }

  .cd-dropdown-content .cd-secondary-dropdown>li>ul {
    -webkit-transform: translate(0);
    transform: translate(0);
    position: relative;
    height: auto;
  }

  .cd-dropdown-content .cd-secondary-dropdown>li>ul>.go-back {
    display: none;
  }

  .cd-dropdown-content .cd-secondary-dropdown a {
    line-height: 25px;
    height: 25px;
    font-size: 1.3rem;
    padding-left: 0;
  }

  .no-touch .cd-dropdown-content .cd-secondary-dropdown a:hover {
    color: #3f8654;
  }

  .cd-dropdown-content .cd-secondary-dropdown ul {
    padding-bottom: 25px;
    overflow: hidden;
    height: auto;
  }

  .cd-dropdown-content .cd-secondary-dropdown .go-back a {
    padding-left: 20px;
    color: transparent;
  }

  .no-touch .cd-dropdown-content .cd-secondary-dropdown .go-back a:hover {
    color: transparent;
  }

  .cd-dropdown-content .cd-secondary-dropdown .go-back a::before,
  .cd-dropdown-content .cd-secondary-dropdown .go-back a::after {
    left: 0;
  }

  .cd-dropdown-content .cd-secondary-dropdown .see-all {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .cd-dropdown-content .cd-dropdown-gallery {
    width: 600px;
    padding-bottom: 100px;
  }

  .cd-dropdown-content .cd-dropdown-gallery>li {
    width: 48%;
    float: left;
    margin-right: 4%;
  }

  .cd-dropdown-content .cd-dropdown-gallery>li:nth-of-type(2n) {
    margin-right: 0;
  }

  .cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item {
    padding: 0;
    height: auto;
    line-height: normal;
    color: #3f8654;
    margin-bottom: 2em;
  }

  .cd-dropdown-content .cd-dropdown-gallery>li:nth-last-of-type(2) a,
  .cd-dropdown-content .cd-dropdown-gallery>li:last-of-type a {
    margin-bottom: 0;
  }

  .cd-dropdown-content .cd-dropdown-gallery img {
    position: static;
    height: auto;
    width: 100%;
    margin: 0 0 0.6em;
  }

  .cd-dropdown-content .cd-dropdown-icons {
    width: 600px;
  }

  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item {
    height: 80px;
    line-height: 1.2;
    padding: 24px 0 0 85px;
  }

  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item:hover {
    background: #ebebeb;
  }

  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item h3 {
    color: #3f8654;
    font-weight: bold;
  }

  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item p {
    display: block;
    font-size: 1.2rem;
  }

  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item::before {
    left: 25px;
  }

  .cd-dropdown-content>.has-children>ul {
    visibility: hidden;
  }

  .cd-dropdown-content>.has-children>ul.is-active {
    visibility: visible;
    opacity: 1;
  }

  .cd-dropdown-content>.has-children>.cd-secondary-dropdown.is-active>li>ul {
    visibility: visible;
  }

  .cd-dropdown-content>.has-children>a.is-active {
    -webkit-box-shadow: inset 2px 0 0 #3f8654;
    box-shadow: inset 2px 0 0 #3f8654;
    color: #3f8654;
  }

  .cd-dropdown-content>.has-children>a.is-active::before,
  .cd-dropdown-content>.has-children>a.is-active::after {
    background: #3f8654;
  }

  .open-to-left .cd-dropdown-content>.has-children>a.is-active {
    -webkit-box-shadow: inset -2px 0 0 #3f8654;
    box-shadow: inset -2px 0 0 #3f8654;
  }
}

@-webkit-keyframes cd-fade-in {
  0% {
    opacity: 0;
    visibility: visible;
  }

  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes cd-fade-in {
  0% {
    opacity: 0;
    visibility: visible;
  }

  100% {
    opacity: 1;
    visibility: visible;
  }
}

@-webkit-keyframes cd-fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: visible;
  }
}

@keyframes cd-fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: visible;
  }
}

.cd-search input[type="search"] {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background-color: #242643;
  color: #ffffff;
  border: none;
  border-radius: 0;
}

.cd-search input[type="search"]::-webkit-input-placeholder {
  color: #ffffff;
}

.cd-search input[type="search"]::-moz-placeholder {
  color: #ffffff;
}

.cd-search input[type="search"]:-moz-placeholder {
  color: #ffffff;
}

.cd-search input[type="search"]:-ms-input-placeholder {
  color: #ffffff;
}

.cd-search input[type="search"]:focus {
  background: #ffffff;
  color: #111433;
  outline: none;
}

.cd-search input[type="search"]:focus::-webkit-input-placeholder {
  color: rgba(17, 20, 51, 0.4);
}

.cd-search input[type="search"]:focus::-moz-placeholder {
  color: rgba(17, 20, 51, 0.4);
}

.cd-search input[type="search"]:focus:-moz-placeholder {
  color: rgba(17, 20, 51, 0.4);
}

.cd-search input[type="search"]:focus:-ms-input-placeholder {
  color: rgba(17, 20, 51, 0.4);
}

@media only screen and (min-width: 1024px) {
  .cd-search input[type="search"] {
    background-color: #ebebeb;
  }

  .cd-search input[type="search"]::-webkit-input-placeholder {
    color: #b3b3b3;
  }

  .cd-search input[type="search"]::-moz-placeholder {
    color: #b3b3b3;
  }

  .cd-search input[type="search"]:-moz-placeholder {
    color: #b3b3b3;
  }

  .cd-search input[type="search"]:-ms-input-placeholder {
    color: #b3b3b3;
  }
}

.has-children>a,
.go-back a {
  position: relative;
}

.has-children>a::before,
.has-children>a::after,
.go-back a::before,
.go-back a::after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -1px;
  display: inline-block;
  height: 2px;
  width: 10px;
  background: #ffffff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.has-children>a::before,
.go-back a::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.has-children>a::after,
.go-back a::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media only screen and (min-width: 1024px) {

  .has-children>a::before,
  .has-children>a::after,
  .go-back a::before,
  .go-back a::after {
    background: #b3b3b3;
  }
}

.has-children>a {
  padding-right: 40px;
}

.has-children>a::before,
.has-children>a::after {
  right: 20px;
  -webkit-transform-origin: 9px 50%;
  transform-origin: 9px 50%;
}

@media only screen and (min-width: 1024px) {
  .open-to-left .cd-dropdown-content>.has-children>a {
    padding-left: 40px;
    padding-right: 20px;
  }

  .open-to-left .cd-dropdown-content>.has-children>a::before,
  .open-to-left .cd-dropdown-content>.has-children>a::after {
    right: auto;
    left: 20px;
    -webkit-transform-origin: 1px 50%;
    transform-origin: 1px 50%;
  }
}

.cd-dropdown-content .go-back a {
  padding-left: 40px;
}

.cd-dropdown-content .go-back a::before,
.cd-dropdown-content .go-back a::after {
  left: 20px;
  -webkit-transform-origin: 1px 50%;
  transform-origin: 1px 50%;
}

.cd-main-content {
  background-color: #e6e6e6;
  min-height: calc(100vh - 100px);
  padding: 2em 5%;
  line-height: 2;
}

.no-js .cd-dropdown-wrapper:hover .cd-dropdown {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.no-js .cd-dropdown-wrapper .cd-close {
  display: none;
}

.nav-brand,
.nav-brand:focus,
.nav-brand:hover,
.nav-menu>li>a {
  color: #70798b;
}

.xs_nav {
  width: 100%;
  height: 70px;
  display: table;
  position: relative;
  font-family: inherit;
  background-color: #fff;
}

.xs_nav * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.xs_nav-portrait {
  height: 48px;
}

.xs_nav-fixed-wrapper {
  width: 100%;
  left: 0;
  z-index: 19998;
  will-change: opacity;
}

.xs_nav-fixed-wrapper.fixed {
  position: fixed !important;
  -webkit-animation: fade .5s;
  animation: fade .5s;
}

@keyframes fade {
  from {
    opacity: .999;
  }

  to {
    opacity: 1;
  }
}

.xs_nav-fixed-wrapper .xs_nav {
  margin-right: auto;
  margin-left: auto;
}

.xs_nav-fixed-placeholder {
  width: 100%;
  display: none;
}

.xs_nav-fixed-placeholder.xs_nav-fixed-placeholder.visible {
  display: block;
}

.nav-toggle,
.xs_nav-hidden .nav-header {
  display: none;
}

.xs_nav-hidden {
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute;
  top: -9999px;
}

.align-to-right {
  float: right;
}

.nav-header {
  float: left;
}

.nav-brand {
  line-height: 70px;
  padding: 0 15px;
  font-size: 24px;
  text-decoration: none !important;
}

.xs_nav-portrait .nav-brand {
  font-size: 18px;
  line-height: 48px;
}

.nav-logo>img {
  height: 48px;
  margin: 11px auto;
  padding: 0 15px;
  float: left;
}

.nav-logo:focus>img {
  outline: initial;
}

.xs_nav-portrait .nav-logo>img {
  height: 36px;
  margin: 6px auto 6px 15px;
  padding: 0;
}

.nav-toggle {
  width: 30px;
  height: 30px;
  padding: 6px 2px 0;
  position: absolute;
  top: 50%;
  margin-top: -14px;
  right: 15px;
  cursor: pointer;
}

.nav-toggle:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #70798b;
  border-radius: 10px;
  -webkit-box-shadow: 0 .5em 0 0 #70798b, 0 1em 0 0 #70798b;
  box-shadow: 0 .5em 0 0 #70798b, 0 1em 0 0 #70798b;
}

.xs_nav-portrait .nav-toggle {
  display: block;
}

.xs_nav-portrait .nav-menus-wrapper {
  width: 320px;
  height: 100%;
  top: 0;
  left: -400px;
  position: fixed;
  background-color: #fff;
  z-index: 20000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition-duration: .8s;
  transition-duration: .8s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.xs_nav-portrait .nav-menus-wrapper.nav-menus-wrapper-right {
  left: auto;
  right: -400px;
}

.xs_nav-portrait .nav-menus-wrapper.nav-menus-wrapper-open {
  left: 0;
}

.xs_nav-portrait .nav-menus-wrapper.nav-menus-wrapper-right.nav-menus-wrapper-open {
  left: auto;
  right: 0;
}

.nav-menus-wrapper-close-button {
  width: 30px;
  height: 40px;
  margin: 10px 7px;
  display: none;
  float: right;
  color: #70798b;
  font-size: 26px;
  cursor: pointer;
}

.xs_nav-portrait .nav-menus-wrapper-close-button {
  display: block;
}

.nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: normal;
  font-size: 0;
}

.xs_nav-portrait .nav-menu {
  width: 100%;
}

.nav-menu.nav-menu-centered {
  text-align: center;
}

.nav-menu.nav-menu-centered>li {
  float: none;
}

.nav-menu>li {
  display: inline-block;
  float: none;
  text-align: left;
}

.xs_nav-portrait .nav-menu>li {
  width: 100%;
  position: relative;
  border-top: solid 1px #f0f0f0;
}

.xs_nav-portrait .nav-menu>li:last-child {
  border-bottom: solid 1px #f0f0f0;
}

.nav-menu+.nav-menu>li:first-child {
  border-top: none;
}

.nav-menu>li>a {
  height: 100%;
  padding: 26px 15px;
  display: inline-block;
  position: relative;
  text-decoration: none;
  font-size: 16px;
  -webkit-transition: color .3s, background .3s;
  transition: color .3s, background .3s;
}

.xs_nav-portrait .nav-menu>li>a {
  width: 100%;
  height: auto;
  padding: 12px 15px 12px 26px;
}

.nav-menu>li.active>a,
.nav-menu>li.focus>a,
.nav-menu>li:hover>a {
  color: #967ADC;
}

.nav-menu>li>a>[class*=ion-],
.nav-menu>li>a>i {
  width: 18px;
  height: 16px;
  line-height: 16px;
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
}

.nav-menu>li>a>[class*=ion-] {
  width: 16px;
  display: inline-block;
  -webkit-transform: scale(1.8);
  transform: scale(1.8);
}

.xs_nav-portrait .nav-menu.nav-menu-social {
  width: 100%;
  text-align: center;
}

.nav-menu.nav-menu-social>li {
  text-align: center;
  float: none;
  border: none !important;
}

.xs_nav-portrait .nav-menu.nav-menu-social>li {
  width: auto;
}

.nav-menu.nav-menu-social>li>a>[class*=ion-] {
  font-size: 12px;
}

.nav-menu.nav-menu-social>li>a>.fa {
  font-size: 14px;
}

.xs_nav-portrait .nav-menu.nav-menu-social>li>a {
  padding: 15px;
}

.submenu-indicator {
  margin-left: 6px;
  margin-top: 6px;
  float: right;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.xs_nav-portrait .submenu-indicator {
  width: 54px;
  height: 44px;
  margin-top: 0;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  z-index: 20000;
}

.submenu-indicator-chevron {
  height: 6px;
  width: 6px;
  display: block;
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: transparent #70798b #70798b transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: border .3s;
  transition: border .3s;
}

.xs_nav-portrait .submenu-indicator-chevron {
  position: absolute;
  top: 18px;
  left: 24px;
}

.nav-menu>.active>a .submenu-indicator-chevron,
.nav-menu>.focus>a .submenu-indicator-chevron,
.nav-menu>li:hover>a .submenu-indicator-chevron {
  border-color: transparent #967ADC #967ADC transparent;
}

.xs_nav-portrait .submenu-indicator.submenu-indicator-up {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.nav-overlay-panel {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: none;
  z-index: 19999;
}

.no-scroll {
  -ms-touch-action: none;
  touch-action: none;
  overflow-x: hidden;
}

.nav-search {
  height: 70px;
  float: right;
  z-index: 19998;
}

.xs_nav-portrait .nav-search {
  height: 48px;
  padding: 0 10px;
  margin-right: 52px;
}

.xs_nav-hidden .nav-search {
  display: none;
}

.nav-search-button {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  cursor: pointer;
  background-color: #fbfcfd;
}

.xs_nav-portrait .nav-search-button {
  width: 50px;
  height: 48px;
  line-height: 46px;
  font-size: 22px;
}

.nav-search-icon {
  width: 14px;
  height: 14px;
  margin: 2px 8px 8px 4px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  color: #70798b;
  text-align: left;
  text-indent: -9999px;
  border: 2px solid;
  border-radius: 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: color .3s;
  transition: color .3s;
}

.nav-search-icon:after,
.nav-search-icon:before {
  content: '';
  pointer-events: none;
}

.nav-search-icon:before {
  width: 2px;
  height: 11px;
  top: 11px;
  position: absolute;
  left: 50%;
  border-radius: 0 0 1px 1px;
  -webkit-box-shadow: inset 0 0 0 32px;
  box-shadow: inset 0 0 0 32px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.nav-search-button:hover .nav-search-icon {
  color: #967ADC;
}

.nav-search>form {
  width: 100%;
  height: 100%;
  padding: 0 auto;
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 99;
}

.nav-search-inner {
  width: 70%;
  height: 70px;
  margin: auto;
  display: table;
}

.xs_nav-portrait .nav-search-inner {
  height: 48px;
}

.nav-search-inner input[type=search],
.nav-search-inner input[type=text] {
  height: 70px;
  width: 100%;
  margin: 0;
  padding: 0 12px;
  font-size: 26px;
  text-align: center;
  color: #70798b;
  outline: 0;
  line-height: 70px;
  border: none;
  background-color: transparent;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.xs_nav-portrait .nav-search-inner input[type=search],
.xs_nav-portrait .nav-search-inner input[type=text] {
  height: 48px;
  font-size: 18px;
  line-height: 48px;
}

.nav-search-close-button {
  width: 28px;
  height: 28px;
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  line-height: normal;
  color: #70798b;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
}

.nav-button,
.nav-text {
  display: inline-block;
  font-size: 14px;
}

.xs_nav-portrait .nav-search-close-button {
  top: 10px;
  right: 14px;
}

.nav-button {
  margin: 18px 15px 0;
  padding: 8px 14px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  background-color: #967ADC;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.nav-button:focus,
.nav-button:hover {
  color: #fff;
  text-decoration: none;
  opacity: .85;
}

.xs_nav-portrait .nav-button {
  width: calc(100% - 52px);
  margin: 17px 26px;
}

.nav-text {
  margin: 25px 15px;
  color: #70798b;
}

.xs_nav-portrait .nav-text {
  width: calc(100% - 52px);
  margin: 12px 26px 0;
}

.xs_nav-portrait .nav-text+ul {
  margin-top: 15px;
}

.nav-dropdown {
  min-width: 200px;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  list-style: none;
  z-index: 98;
  white-space: nowrap;
}

.xs_nav-portrait .nav-dropdown {
  width: 100%;
  position: static;
  left: 0;
}

.nav-dropdown .nav-dropdown {
  left: 100%;
}

.nav-menu>li>.nav-dropdown {
  border-top: solid 1px #f0f0f0;
}

.nav-dropdown>li {
  width: 100%;
  float: left;
  clear: both;
  position: relative;
  text-align: left;
}

.nav-dropdown>li>a {
  width: 100%;
  padding: 16px 20px;
  display: inline-block;
  text-decoration: none;
  float: left;
  font-size: 13px;
  color: #70798b;
  background-color: #fdfdfd;
  -webkit-transition: color .3s, background .3s;
  transition: color .3s, background .3s;
}

.nav-dropdown>li.focus>a,
.nav-dropdown>li:hover>a {
  color: #967ADC;
}

.nav-dropdown.nav-dropdown-left {
  right: 0;
}

.nav-dropdown>li>.nav-dropdown-left {
  left: auto;
  right: 100%;
}

.xs_nav-landscape .nav-dropdown.nav-dropdown-left>li>a {
  text-align: right;
}

.xs_nav-portrait .nav-dropdown>li>a {
  padding: 12px 20px 12px 30px;
}

.xs_nav-portrait .nav-dropdown>li>ul>li>a {
  padding-left: 50px;
}

.xs_nav-portrait .nav-dropdown>li>ul>li>ul>li>a {
  padding-left: 70px;
}

.xs_nav-portrait .nav-dropdown>li>ul>li>ul>li>ul>li>a {
  padding-left: 90px;
}

.xs_nav-portrait .nav-dropdown>li>ul>li>ul>li>ul>li>ul>li>a {
  padding-left: 110px;
}

.nav-dropdown .submenu-indicator {
  right: 15px;
  top: 16px;
  position: absolute;
}

.xs_nav-portrait .nav-dropdown .submenu-indicator {
  right: 0;
  top: 0;
}

.nav-dropdown .submenu-indicator .submenu-indicator-chevron {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.xs_nav-portrait .nav-dropdown .submenu-indicator .submenu-indicator-chevron {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-dropdown>.focus>a .submenu-indicator-chevron,
.nav-dropdown>li:hover>a .submenu-indicator-chevron {
  border-color: transparent #967ADC #967ADC transparent;
}

.xs_nav-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator {
  left: 10px;
}

.xs_nav-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator .submenu-indicator-chevron {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.nav-dropdown-horizontal {
  width: 100%;
  left: 0;
  background-color: #fdfdfd;
  border-top: solid 1px #f0f0f0;
}

.nav-dropdown-horizontal .nav-dropdown-horizontal {
  width: 100%;
  top: 100%;
  left: 0;
}

.xs_nav-portrait .nav-dropdown-horizontal .nav-dropdown-horizontal {
  border-top: none;
}

.nav-dropdown-horizontal>li {
  width: auto;
  clear: none;
  position: static;
}

.megamenu-panel [class*=container],
.xs_nav-portrait .nav-dropdown-horizontal>li {
  width: 100%;
}

.nav-dropdown-horizontal>li>a {
  position: relative;
}

.nav-dropdown-horizontal .submenu-indicator {
  height: 18px;
  top: 11px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.xs_nav-portrait .nav-dropdown-horizontal .submenu-indicator {
  height: 42px;
  top: 0;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.xs_nav-portrait .nav-dropdown-horizontal .submenu-indicator.submenu-indicator-up {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.megamenu-panel {
  width: 100%;
  padding: 15px;
  display: none;
  position: absolute;
  font-size: 14px;
  z-index: 98;
  text-align: left;
  color: inherit;
  border-top: solid 1px #f0f0f0;
  background-color: #fdfdfd;
}

.megamenu-tabs-nav>li>a,
.megamenu-tabs-pane {
  border: 1px solid #eff0f2;
  color: #70798b;
  font-size: 13px;
}

.xs_nav-portrait .megamenu-panel {
  padding: 25px;
  position: static;
  display: block;
}

.megamenu-panel [class*=container] [class*=col-] {
  padding: 0;
}

.megamenu-panel-half {
  width: 50%;
}

.megamenu-panel-quarter {
  width: 25%;
}

.megamenu-panel-row,
.xs_nav-portrait .megamenu-panel-half,
.xs_nav-portrait .megamenu-panel-quarter {
  width: 100%;
}

.megamenu-panel-row:after,
.megamenu-panel-row:before {
  display: table;
  content: "";
  line-height: 0;
}

.megamenu-panel-row:after {
  clear: both;
}

.megamenu-panel-row [class*=col-] {
  display: block;
  min-height: 20px;
  float: left;
  margin-left: 3%;
}

.megamenu-panel-row [class*=col-]:first-child {
  margin-left: 0;
}

.xs_nav-portrait .megamenu-panel-row [class*=col-] {
  float: none;
  display: block;
  width: 100% !important;
  margin-left: 0;
  margin-top: 15px;
}

.xs_nav-portrait .megamenu-panel-row:first-child [class*=col-]:first-child {
  margin-top: 0;
}

.megamenu-panel-row .col-1 {
  width: 5.583333333333%;
}

.megamenu-panel-row .col-2 {
  width: 14.166666666666%;
}

.megamenu-panel-row .col-3 {
  width: 22.75%;
}

.megamenu-panel-row .col-4 {
  width: 31.333333333333%;
}

.megamenu-panel-row .col-5 {
  width: 39.916666666667%;
}

.megamenu-panel-row .col-6 {
  width: 48.5%;
}

.megamenu-panel-row .col-7 {
  width: 57.083333333333%;
}

.megamenu-panel-row .col-8 {
  width: 65.666666666667%;
}

.megamenu-panel-row .col-9 {
  width: 74.25%;
}

.megamenu-panel-row .col-10 {
  width: 82.833333333334%;
}

.megamenu-panel-row .col-11 {
  width: 91.416666666667%;
}

.megamenu-panel-row .col-12 {
  width: 100%;
}

.megamenu-tabs {
  width: 100%;
  float: left;
  display: block;
}

.megamenu-tabs-nav {
  width: 20%;
  margin: 0;
  padding: 0;
  float: left;
  list-style: none;
}

.xs_nav-portrait .megamenu-tabs-nav {
  width: 100%;
}

.megamenu-tabs-nav>li>a {
  width: 100%;
  padding: 10px 16px;
  float: left;
  text-decoration: none;
  outline: 0;
  background-color: #fff;
  -webkit-transition: background .3s;
  transition: background .3s;
}

.megamenu-tabs-nav>li.active a,
.megamenu-tabs-nav>li:hover a {
  background-color: #f5f5f5;
}

.megamenu-tabs-pane {
  width: 80%;
  min-height: 30px;
  padding: 20px;
  float: right;
  display: none;
  opacity: 0;
  background-color: #fff;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.megamenu-tabs-pane.active {
  display: block;
  opacity: 1;
}

.xs_nav-portrait .megamenu-tabs-pane {
  width: 100%;
}

.megamenu-lists {
  width: 100%;
  display: table;
}

.megamenu-list {
  width: 100%;
  margin: 0 0 15px;
  padding: 0;
  display: inline-block;
  float: left;
  list-style: none;
}

.megamenu-list:last-child {
  margin: 0;
  border: none;
}

.xs_nav-landscape .megamenu-list {
  margin: -15px 0;
  padding: 20px 0;
  border-right: solid 1px #f0f0f0;
}

.xs_nav-landscape .megamenu-list:last-child {
  border: none;
}

.megamenu-list>li>a {
  width: 100%;
  padding: 10px 15px;
  display: inline-block;
  color: #70798b;
  text-decoration: none;
  font-size: 13px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.megamenu-list>li>a:hover {
  color: #fff;
  background-color: #967ADC;
}

.megamenu-list>li.megamenu-list-title>a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: .8;
  color: #70798b;
}

.megamenu-list>li.megamenu-list-title>a:hover {
  opacity: 1;
  background-color: transparent;
}

.xs_nav-landscape .list-col-2 {
  width: 50%;
}

.xs_nav-landscape .list-col-3 {
  width: 33%;
}

.xs_nav-landscape .list-col-4 {
  width: 25%;
}

/*!
/*================ Topbar Variables ================*/

html {
  overflow-x: hidden;
}

body {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #222;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-item.active .page-link {
  background-color: #ea1a25;
  border-color: #ea1a25;
}

iframe {
  border: none;
}

a:hover {
  color: #ea1a25;
}

.badge-primary {
  background-color: #ea1a25 !important;
}

.wishlist-btn.is-active {
  color: #ea1a25;
}

a {
  color: #222;
}

a,
b,
div,
ul,
li {
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
  -moz-outline-: none;
}

a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  -moz-outline: none;
  outline: none;
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  outline: 0;
}

a:active,
a:focus,
a:hover,
a:visited {
  text-decoration: none;
  outline: 0;
}

img {
  border: none;
  max-width: 100%;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clear-both:before,
.clear-both:after {
  display: table;
  content: "";
  clear: both;
}

.xs-top-bar {
  background-color: #fafafa;
  padding: 10px 0;
  border-bottom: 1px solid #d7d7d7;
}

.xs-top-bar .xs-social-list {
  color: #222;
  margin-left: 6px;
}

.xs-top-bar.color-white .xs-top-bar-info li a,
.xs-top-bar.color-white .xs-social-list li a,
.xs-top-bar.color-white .xs-top-bar-info .xs-select {
  color: #FFFFFF;
}

.xs-top-bar.color-white .xs-top-bar-info .xs-select {
  background-image: url(/images/arrow-gray.png?29021961afc6c6a7a1defe551696b5c8);
}

.xs-top-bar.color-white .xs-top-bar-info .xs-select option {
  color: #ea1a25;
}

.xs-top-bar.v-border {
  border-bottom: 1px solid #006feb;
}

.xs-top-bar.version-gray {
  background-color: #f1f1f1;
  color: #aaaaaa;
}

.xs-top-bar.version-gray .xs-top-bar-info li a,
.xs-top-bar.version-gray .xs-social-list li a,
.xs-top-bar.version-gray .xs-top-bar-info .xs-select {
  color: #aaaaaa;
}

.xs-top-bar.version-gray .xs-top-bar-info .xs-select option {
  color: #222;
}

.xs-top-bar.version-gray .xs-top-bar-info li {
  border-right-color: #aaaaaa;
}

.xs-top-bar.version-gray .xs-top-bar-info .xs-select {
  background-image: url(/images/arrow-gray.png?29021961afc6c6a7a1defe551696b5c8);
}

.xs-top-bar-info li {
  display: inline-block;
  border-right: 1px solid #d7d7d7;
  margin-right: 14px;
  padding-right: 20px;
}

.xs-top-bar-info li:last-child {
  margin-right: 0px;
}

.xs-top-bar-info li a {
  color: #222;
  font-size: 0.92857em;
}

.xs-top-bar-info li a i {
  padding-right: 13px;
  font-size: 1.2em;
  position: relative;
  top: 2px;
}

.xs-top-bar-info.right-content {
  text-align: right;
}

.xs-top-bar-info.right-content li:last-child {
  border-right: 1px solid transparent;
  margin-right: 0px;
  padding-right: 0px;
}

.xs-top-bar-info .xs-select {
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none;
  padding-right: 0px;
  background-repeat: no-repeat;
  background-position: center right;
  cursor: pointer;
  color: #222;
}

.xs-header {
  padding-bottom: 0px;
  position: relative;
  z-index: 9999;
}

.xs-header.v-yellow .menu-label {
  background-color: #fed700;
  color: #333e48;
}

.xs-header.v-yellow .menu-label::before {
  border-left-color: #fed700;
  border-top-color: #fed700;
}

.xs-header.v-yellow .xs-single-wishList .xs-item-count.highlight {
  background-color: #fed700;
  color: #333e48;
}

.xs-header.v-yellow .xs-vartical-menu .cd-dropdown-trigger {
  background-color: #fed700;
  color: #333e48;
}

.xs-header.v-yellow .xs-vartical-menu .cd-dropdown-trigger::before,
.xs-header.v-yellow .xs-vartical-menu .cd-dropdown-trigger::after {
  background: #333e48;
}

.xs-header.v-yellow .xs-navbar-search .btn[type="submit"] {
  background-color: #fed700;
  color: #333e48;
  border-color: #fed700;
}

.xs-header.v-yellow .xs-navDown .btn:not([type="submit"]) {
  background-color: #fed700;
  border-color: transparent;
  color: #575353;
}

.xs-header.v-yellow .xs-navDown .btn:not([type="submit"]) strong {
  color: #333e48;
}

.xs-header.v-yellow .xs-navDown .btn:not([type="submit"]):hover {
  border-color: #222;
  color: #FFFFFF;
}

.xs-header.v-yellow .xs-navDown .btn:not([type="submit"]):hover strong {
  color: #FFFFFF;
}

.xs-header.v-yellow .mini_cart_item .mini-cart-title a {
  color: #fed700;
}

.xs-header.v-yellow .mini-cart-btn .badge {
  background-color: #fed700;
}

.xs-header.v-yellow .xs-single-wishList,
.xs-header.v-yellow .xs-menus .nav-menu li a {
  color: #333e48;
}

.xs-header.version-fullwidth .cd-dropdown-trigger::after {
  right: 42px;
}

.xs-header.version-fullwidth .cd-dropdown-trigger::before {
  right: 48px;
}

.xs-header.version-fullwidth .xs-wish-list-item .xs-header-info {
  margin-right: 30px;
}

.xs-header.version-fullwidth .container-fullwidth>.row {
  position: relative;
}

.xs-header.header-transparent {
  padding-bottom: 0;
  background-color: transparent;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

body .xs-promotion~.header-transparent {
  top: 41px;
}

.xs_nav-landscape .nav-logo {
  display: none;
}

.xs-logo-wraper {
  padding: 32px 0;
}

.xs-logo-wraper a {
  display: inline-block;
}

.xs-menus .nav-menu> {
  text-align: center;
}

.xs-menus .nav-menu>li .nav-dropdown {
  right: auto !important;
}

.xs-menus .nav-menu>li:last-child {
  margin-right: 0;
}

.xs-menus .nav-menu>li:last-child a {
  padding-right: 0;
}

.xs-menus .nav-menu>li>a {
  font-weight: 500;
  display: block;
  padding: 40px 20px;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-menus .nav-menu>li>a .submenu-indicator-chevron {
  border-color: transparent #333333 #333333 transparent;
}

.xs-menus .nav-menu>.focus>a .submenu-indicator-chevron,
.xs-menus .nav-menu>li:hover>a .submenu-indicator-chevron,
.xs-menus .nav-menu>.active>a .submenu-indicator-chevron {
  border-color: transparent #ea1a25 #ea1a25 transparent;
}

.xs-menus .nav-menu li>.nav-dropdown {
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.16);
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.16);
  background-color: #FFFFFF;
  border-top: 0px;
}

.xs-menus .nav-menu li>.nav-dropdown li a {
  background-color: transparent;
  border-bottom: 1px solid #F1F1F1;
  color: #222;
  font-size: 14px;
}

.xs-menus .nav-menu li>.nav-dropdown li a:hover {
  color: #ea1a25;
}

.xs-menus .nav-menu li.focus .nav-submenu {
  z-index: 999999;
}

.xs-menus .nav-menu .nav-dropdown li:last-child a {
  border-bottom: 0px;
}

.xs-menus .home-menu-panel {
  border-radius: 0 0 5px 5px;
  background-color: #FFFFFF;
  border-top: 0px;
}

.xs-menus .home-menu-panel a {
  text-align: center;
  display: block;
  position: relative;
  overflow: hidden;
}

.xs-menus .home-menu-panel a h4 {
  color: #222;
  font-size: 1.14286em;
  font-weight: 400;
  margin-bottom: 20px;
}

.xs-menus .home-menu-panel a img {
  border: 1px solid #eaeaea;
  border-radius: 4px;
  margin-bottom: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-menus .home-menu-panel a:hover img {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.xs-menus .home-menu-panel>.row {
  margin-bottom: 30px;
}

.xs-menus .home-menu-panel>.row:last-child {
  margin-bottom: 0px;
}

.xs-menus.xs_nav-landscape .megamenu-panel {
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.175);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.175);
  width: calc(100% - 15px);
}

.xs-menus .megamenu-title {
  margin-bottom: 25px;
}

.xs-menus .megamenu-title h5 {
  font-size: 1.28571em;
  font-weight: 700;
  margin-bottom: 8px;
}

.xs-menus .megamenu-title p {
  font-size: 0.85714em;
  color: #999999;
  margin-bottom: 0;
}

.xs-menus .megamenu-content p {
  margin-bottom: 0;
  font-size: 0.85714em;
  color: #b4b4b4;
  line-height: 2;
}

.xs-menus .megamenu-v2 .megamenu-list>li {
  border-left: 2px solid #f5f5f5;
}

.xs-menus .megamenu-v2 .megamenu-list>li>a {
  padding: 12px 20px;
  color: #b4b4b4;
  font-size: 12px;
  -webkit-transition: all .4s;
  transition: all .4s;
  position: relative;
}

.xs-menus .megamenu-v2 .megamenu-list>li>a>.badge {
  border-radius: 2px;
  color: #f5f5f5;
  font-weight: 700;
  font-size: 8px;
  padding: 6px 8px 4px;
  line-height: 1;
  margin-left: 5px;
  vertical-align: middle;
}

.xs-menus .megamenu-v2 .megamenu-list>li>a>.badge.badge-primary {
  background-color: #ea1a25;
}

.xs-menus .megamenu-v2 .megamenu-list>li>a>.badge.badge-secondary {
  background-color: #e70067;
}

.xs-menus .megamenu-v2 .megamenu-list>li>a::before {
  position: absolute;
  left: -2px;
  top: 0;
  content: "";
  height: 100%;
  width: 2px;
  background-color: #ea1a25;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-menus .megamenu-v2 .megamenu-list>li>a:hover::before {
  opacity: 1;
}

.xs-menus .megamenu-v2 .megamenu-list li:not(.megamenu-list-title) a:hover {
  color: #626262;
}

.xs-menus .version-black {
  background-color: #1e212a;
}

.xs-menus .version-black .megamenu-title h5 {
  color: #ffffff;
}

.xs-menus .version-black .megamenu-list>li {
  border-left-color: #3d404a;
}

.xs-menus.xs_nav-landscape .megamenu-v2 {
  padding: 50px;
  border-radius: 0px 0px 10px 10px;
  -webkit-box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #ea1a25;
  overflow: hidden;
}

.xs-menus.xs_nav-landscape .version-black.megamenu-v2 {
  border-top: 0px;
}

.xs-menus .megamenu-bg {
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
  z-index: -1;
}

.xs-menus .megamenu-bg.bg-2 {
  right: -23px;
  top: 82px;
}

.xs-menus .megamenu-bg.bg-1 {
  top: 100px;
  right: -5px;
}

.xs-menus .megamenu-lists .megamenu-list:first-child {
  margin-left: -15px;
}

.menu-label {
  display: block;
  position: absolute;
  top: 8px;
  left: 50%;
  background-color: #ea1a25;
  color: #FFFFFF;
  font-size: 0.786em;
  padding: 5px 8px;
}

.menu-label::before {
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
  height: 5px;
  width: 5px;
  background-color: transparent;
  border-right: 2.5px solid transparent;
  border-left: 2.5px solid #ea1a25;
  border-top: 2.5px solid #ea1a25;
  border-bottom: 2.5px solid transparent;
}

.menu-label.highlight {
  background-color: #ea1a25;
}

.menu-label.highlight::before {
  border-left: 2.5px solid #ea1a25;
  border-top: 2.5px solid #ea1a25;
}

.xs-wish-list-item {
  padding: 26px 0;
  text-align: right;
}

.xs-wish-list-item .xs-miniCart-dropdown {
  display: inline-block;
}

.xs-wish-list-item .xs-header-info {
  display: inline-block;
  position: relative;
  top: -5px;
  margin-right: 40px;
}

.xs-wish-list {
  margin-right: 30px;
  display: inline-block;
}

.xs-single-wishList {
  font-size: 2.8em;
  position: relative;
}

.xs-single-wishList .xs-item-count {
  font-size: 0.350em;
  font-weight: 500;
  position: absolute;
  top: -5px;
  right: -5px;
  display: inline-block;
  width: 21px;
  height: 21px;
  line-height: 18px;
  text-align: center;
  border-radius: 100%;
}

.fadeIns.show {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.mini_cart_item {
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 10px;
  padding-bottom: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mini_cart_item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.mini_cart_item .slide-cart-img {
  width: 75px;
  height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

.mini_cart_item .mini-cart-title {
  font-weight: 500;
  font-size: 0.85714em;
}

.mini_cart_item .mini-cart-title a {
  color: #ea1a25;
}

.mini_cart_item .btn-cancel {
  background-color: transparent;
  color: #dc3545;
  border-color: transparent;
  padding: 0;
  margin-right: 5px;
  cursor: pointer;
}

.mini-cart-btn {
  display: block;
  margin-top: 15px;
}

.mini-cart-btn .badge {
  display: block;
  padding: 12px 0;
}

.xs-miniCart-menu.show {
  width: 300px;
  padding: 15px;
  margin: 0;
  top: 50px !important;
}

.xs-miniCart-dropdown .dropdown-toggle::after {
  display: none;
}

.xs-header-info li {
  display: inline-block;
  color: #999999;
  margin-right: 30px;
}

.xs-header-info li:last-child {
  margin-right: 0;
}

.xs-header-info li i {
  font-size: 1.42857em;
  padding-right: 10px;
  top: 2px;
  position: relative;
}

.xs-header-info.green-version li {
  color: #7fbb00;
}

.xs-navBar>.container {
  position: relative;
}

.xs-navBar .navbar-border {
  border-style: solid;
  border-width: 1px 0px 1px 0px;
  border-color: #d2ebdb;
  margin-left: 0;
  margin-right: 0;
}

.xs-navBar .navbar-border .xs-menus .nav-menu {
  text-align: left;
}

.xs-navBar .navbar-border .xs-menus .nav-menu>li {
  margin-right: 24px;
}

.xs-navBar .navbar-border .xs-menus .nav-menu>li:last-child {
  margin-right: 0;
}

.xs-navBar .navbar-border .xs-menus .nav-menu>li>a {
  color: #515151;
  padding: 24px 15px;
}

.xs-navBar .navbar-border .xs-menus .nav-menu>li>a::before {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #7fbb00;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-navBar .navbar-border .xs-menus .nav-menu>li>a:hover::before {
  width: 100%;
}

.xs-navBar .navbar-border .xs-menus .nav-menu>li>.nav-dropdown li a:hover,
.xs-navBar .navbar-border .xs-menus .nav-menu>li>a:hover,
.xs-navBar .navbar-border .nav-menu>li:hover>a {
  color: #7fbb00;
}

.xs-navBar .navbar-border .xs-single-wishList {
  color: #7fbb00;
}

.xs-navBar .navbar-border .xs-single-wishList .xs-item-count {
  background-color: #7fbb00;
  color: #FFFFFF;
}

.xs-navBar .navbar-border .xs-wish-list-item {
  padding: 10px 0;
  text-align: right;
}

.xs-navBar .navbar-border .nav-menu>.active>a .submenu-indicator-chevron {
  border-color: transparent #515151 #515151 transparent;
}

.xs-navBar .navbar-border .nav-menu>.focus>a .submenu-indicator-chevron,
.xs-navBar .navbar-border .nav-menu>li:hover>a .submenu-indicator-chevron {
  border-color: transparent #7fbb00 #7fbb00 transparent;
}

.xs-navBar .xs-menus-group {
  position: static;
}

.xs-navBar.v-yellow .xs-menus .nav-menu>li>a {
  color: #333e48;
}

.xs-navBar.v-yellow .xs-menus .nav-menu li.active>a,
.xs-navBar.v-yellow .xs-menus .nav-menu>li>a:hover {
  color: #fed700;
}

.xs-navBar.v-yellow .menu-label,
.xs-navBar.v-yellow .xs-single-wishList .xs-item-count.highlight {
  background-color: #fed700;
  color: #333e48;
}

.xs-navBar.v-yellow .menu-label::before {
  border-left-color: #fed700;
  border-top-color: #fed700;
}

.xs-navBar.v-yellow .xs-menus .nav-menu>.focus>a .submenu-indicator-chevron,
.xs-navBar.v-yellow .xs-menus .nav-menu>li:hover>a .submenu-indicator-chevron,
.xs-navBar.v-yellow .xs-menus .nav-menu>.active>a .submenu-indicator-chevron {
  border-color: transparent #fed700 #fed700 transparent;
}

.xs-navBar.navBar-v5 .xs-navbar-search {
  margin-top: 25px;
  height: 40px;
}

.xs-navBar.navBar-v5 .xs-navbar-search .form-control {
  background-color: transparent;
}

.xs-navBar.navBar-v5 .xs-navbar-search .btn[type="submit"] i {
  margin-top: -3px;
}

.xs-navBar.navBar-v5 .xs-navbar-search .xs-category-select option {
  color: #ea1a25;
}

.xs-navBar.color-white .xs-navbar-search .form-control {
  color: #FFFFFF;
}

.xs-newsletter.newsLetter-v2 input:not([type="submit"])::-webkit-input-placeholder {
  color: #333e48;
}

.xs-newsletter.newsLetter-v2 input:not([type="submit"])::-moz-placeholder {
  color: #333e48;
}

.xs-newsletter.newsLetter-v2 input:not([type="submit"]):-ms-input-placeholder {
  color: #333e48;
}

.xs-newsletter.newsLetter-v2 input:not([type="submit"]):-moz-placeholder {
  color: #333e48;
}

.xs-navBar.color-white .xs-navbar-search input:not([type="submit"])::-webkit-input-placeholder {
  color: #FFFFFF;
}

.xs-navBar.color-white .xs-navbar-search input:not([type="submit"])::-moz-placeholder {
  color: #FFFFFF;
}

.xs-navBar.color-white .xs-navbar-search input:not([type="submit"]):-ms-input-placeholder {
  color: #FFFFFF;
}

.xs-navBar.color-white .xs-navbar-search input:not([type="submit"]):-moz-placeholder {
  color: #FFFFFF;
}

.xs-navBar.color-white .xs-navbar-search .xs-category-select {
  background-image: url(/images/arrow-white.png?977fe077aabf310258a95b00ff5f315b);
  color: #FFFFFF;
}

.xs-menus.xs_nav-landscape .megamenu-list.xs-cate-brand {
  padding-left: 20px;
}

.xs-menus .megamenu-tabs-pane.xs-cate-campaigns a>img {
  width: 100%;
}

.xs-cate-brand li:not(.megamenu-list-title) {
  width: 49%;
  min-height: 50px;
  border: 1px solid #e9e9e9;
  float: left;
  line-height: 50px;
  text-align: center;
  margin: 2px 1px 0;
}

.xs-cate-brand li:not(.megamenu-list-title) img {
  max-width: 80px;
  max-height: 40px;
}

.xs-navBar .megamenu-list li:not(.megamenu-list-title) a:hover {
  background-color: transparent;
  color: #222;
}

.xs-navBar .megamenu-tabs-nav li a {
  padding: 15px;
}

.xs-single-phone-cate {
  border: 1px solid #e9e9e9;
  padding: 15px;
  margin-bottom: 30px;
}

.xs-single-phone-cate a {
  display: block;
}

.xs-single-phone-cate h4 {
  margin-bottom: 0;
  text-align: center;
  font-size: 1.14286em;
}

.xs-cate-campaigns a {
  display: block;
  margin-bottom: 30px;
}

.xs-navDown.navDown-v5 .xs-vartical-menu .cd-dropdown-trigger:focus {
  background: #ea1a25;
}

.xs-vartical-menu {
  margin: 0;
  height: auto;
  width: 100%;
  max-width: 270px;
}

.xs-vartical-menu .cd-dropdown-trigger {
  border-radius: 0px;
  line-height: 1;
  padding: 23px 42px;
  font-size: 1.14286em;
  font-weight: 500;
  text-align: left;
  max-height: 60px;
}

.xs-vartical-menu .cd-dropdown-trigger i {
  margin-right: 24px;
}

.xs-vartical-menu .cd-dropdown-content {
  border: 2px solid;
  padding: 30px;
  width: 100%;
}

.xs-vartical-menu .cd-dropdown-content li a {
  font-size: 1.14286em;
  font-weight: 400;
  color: #222;
  text-transform: capitalize;
  height: auto;
  line-height: unset;
  padding: 12px 0;
  margin: 0;
  border: 0;
  border-bottom: 1px solid #ebebeb;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}

.xs-vartical-menu .cd-dropdown-content li a i {
  margin-right: 18px;
  font-size: 1.250em;
}

.xs-vartical-menu .cd-dropdown-content li .no-border {
  border-bottom: 0px solid #ebebeb;
  padding-bottom: 0;
}

.xs-vartical-menu .cd-dropdown-content li .no-padding {
  padding-top: 0;
}

.xs-vartical-menu .cd-dropdown-content .cd-secondary-dropdown>li {
  height: auto;
  margin: 0;
  float: none;
  border: 0;
}

.xs-vartical-menu .cd-dropdown-content .cd-secondary-dropdown::before {
  height: 0px;
}

.xs-vartical-menu .cd-dropdown-content .cd-secondary-dropdown ul {
  padding-bottom: 25px;
}

.xs-vartical-menu .cd-dropdown-content .cd-secondary-dropdown {
  padding: 30px 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.xs-vartical-menu .cd-dropdown-content .cd-secondary-dropdown .see-all {
  position: static;
}

.xs-vartical-menu .cd-dropdown-content .has-children>a::before,
.xs-vartical-menu .cd-dropdown-content .has-children>a::after {
  display: none;
}

.xs-vartical-menu .cd-secondary-dropdown .has-children .is-hidden .has-children a {
  font-weight: inherit;
}

.xs-vartical-menu .cd-dropdown {
  top: calc(100% + 22px);
  -webkit-box-shadow: none;
  box-shadow: none;
  width: 100%;
  z-index: 9999;
}

.xs-vartical-menu .cd-dropdown::before {
  position: absolute;
  content: "";
  top: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  width: 24px;
  height: 24px;
  background-color: #FFFFFF;
  border-left: 2px solid;
  border-top: 2px solid;
}

.xs-vartical-menu .cd-dropdown-content>.has-children>a.is-active,
.xs-vartical-menu .cd-dropdown-content .cd-secondary-dropdown a:hover,
.xs-vartical-menu .cd-dropdown-content>li:not(.has-children) a:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.xs-vartical-menu .cd-dropdown-content>.has-children>a.is-active::before,
.xs-vartical-menu .cd-dropdown-content>.has-children>a.is-active::after {
  background: #ea1a25;
}

.xs-vartical-menu .submenu-icon {
  margin-right: 0 !important;
  position: absolute;
  right: 0;
}

.xs-vartical-menu .cd-secondary-dropdown {
  min-width: 850px;
  width: 100%;
}

.xs-vartical-menu .cd-secondary-dropdown .has-children {
  width: 33.3333%;
}

.xs-vartical-menu .cd-secondary-dropdown .has-children a {
  font-weight: 500;
  padding-top: 0;
  margin-bottom: 15px;
}

.xs-vartical-menu .cd-secondary-dropdown .has-children .is-hidden a {
  font-weight: 400;
  font-size: 0.92857em;
  border-bottom: 0;
  padding: 3px 0;
  margin-bottom: 0;
}

.xs-vartical-menu .cd-dropdown-gallery {
  padding: 15px 15px 30px;
}

.xs-vartical-menu .cd-dropdown-gallery li {
  width: 50%;
  margin-right: 0;
}

.xs-vartical-menu .cd-dropdown-gallery .cd-dropdown-item {
  margin: 15px;
  display: block;
  border: 1px solid #eaeaea;
  padding: 15px;
}

.xs-vartical-menu .cd-dropdown-gallery .cd-dropdown-item h3 {
  color: #ea1a25;
  font-size: 1em;
  font-weight: 400;
  margin: 0;
  text-align: center;
}

.xs-vartical-menu .cd-dropdown-icons {
  padding: 30px;
}

.xs-vartical-menu .cd-dropdown-icons .media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.xs-vartical-menu .cd-dropdown-icons li .cd-dropdown-item {
  height: 100%;
  padding: 10px;
  text-overflow: unset;
  white-space: unset;
}

.xs-vartical-menu .cd-dropdown-icons li .cd-dropdown-item img {
  padding-right: 8px;
}

.xs-vartical-menu .cd-dropdown-icons li .cd-dropdown-item::before {
  display: none;
}

.xs-vartical-menu .cd-dropdown-icons li .media-body h3 {
  font-size: 1.14286em;
  color: #ea1a25;
  font-weight: 400;
}

.xs-vartical-menu .cd-dropdown-icons li .media-body p {
  margin-bottom: 0;
  font-size: 0.85714em;
}

.xs-vartical-menu .cd-dropdown-trigger::after {
  right: 44px;
}

.xs-vartical-menu .cd-dropdown-trigger::before {
  right: 50px;
}

.xs-vartical-menu.v-gray .cd-dropdown-trigger,
.xs-vartical-menu.v-gray .cd-dropdown-trigger:hover,
.xs-vartical-menu.v-gray .cd-dropdown-trigger.dropdown-is-active:hover {
  background-color: #f7f7f7;
  color: #ea1a25;
}

.xs-vartical-menu.v-gray .cd-dropdown-trigger:hover::before,
.xs-vartical-menu.v-gray .cd-dropdown-trigger:hover::after,
.xs-vartical-menu.v-gray .cd-dropdown-trigger.dropdown-is-active::before,
.xs-vartical-menu.v-gray .cd-dropdown-trigger.dropdown-is-active::after {
  background-color: #ea1a25;
}

.xs-vartical-menu.v-gray .cd-dropdown-trigger::before,
.xs-vartical-menu.v-gray .cd-dropdown-trigger::after {
  background: #ea1a25;
}

.xs-vartical-menu.v-gray .cd-dropdown-content,
.xs-vartical-menu.v-gray .cd-dropdown:before {
  border-color: #e7e7e7;
}

.xs-vartical-menu .cd-dropdown-content>.has-children>.is-active {
  z-index: 99999;
}

@media (min-width: 992px) and (max-width: 1023px) {
  .xs-vartical-menu {
    margin-bottom: 30px;
  }

  .xs-vartical-menu .cd-dropdown {
    top: 0;
  }

  .xs-vartical-menu .cd-dropdown-content {
    top: 0px;
    border: 0;
  }

  .xs-vartical-menu .cd-dropdown-content li a {
    color: #FFFFFF;
  }

  .xs-vartical-menu .cd-dropdown-content .cd-secondary-dropdown {
    display: block;
  }

  .xs-vartical-menu .cd-dropdown-content .cd-secondary-dropdown .has-children {
    width: 100%;
  }

  .xs-vartical-menu .cd-dropdown-content .cd-secondary-dropdown a {
    padding: 12px 30px;
    margin-bottom: 0;
  }

  .xs-vartical-menu .cd-dropdown-content .go-back a::before,
  .xs-vartical-menu .cd-dropdown-content .go-back a::after {
    left: 10px;
  }

  .xs-vartical-menu .cd-dropdown-gallery li {
    width: 100%;
  }

  .xs-vartical-menu .cd-dropdown-gallery li a {
    padding: 12px 30px;
  }

  .xs-vartical-menu .cd-dropdown-gallery .cd-dropdown-item h3 {
    color: #FFFFFF;
  }

  .xs-vartical-menu .cd-dropdown-icons li a {
    padding: 12px 30px;
  }

  .xs-vartical-menu .cd-dropdown-icons .media {
    line-height: unset;
  }

  .xs-vartical-menu .cd-dropdown-icons li .media-body p,
  .xs-vartical-menu .cd-dropdown-icons li .media-body h3 {
    color: #FFFFFF;
  }
}

.cd-dropdown ul.cd-dropdown-content {
  max-height: 385px;
  overflow-y: scroll;
}

.header-cus-class-2 .btn:not([data-toggle="popover"]) {
  padding: 20px 29px;
}

.header-cus-class-2 .btn:not([data-toggle="popover"]) {
  padding: 20px 29px;
}

.header-cus-class-2 .search-box {
  margin-top: -2px;
}

.header-cus-class-2 .xs-logo-wraper {
  padding: 31px 0;
}

.header-cus-class-2 .xs-wish-list {
  margin-right: 26px;
  display: inline-block;
}

.isOverlayActive .xs-vartical-menu .cd-dropdown-trigger,
.isOverlayActive .xs-vartical-menu .cd-dropdown {
  z-index: 10001;
}

@media only screen and (min-width: 1024px) {
  .cd-dropdown-content .cd-dropdown-icons {
    width: 760px;
  }
}

.xs-vartical-menu.v-menu-is-active>.cd-dropdown-trigger {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.xs-vartical-menu.v-menu-is-active .cd-dropdown-trigger.dropdown-is-active::before,
.xs-vartical-menu.v-menu-is-active .cd-dropdown-trigger.dropdown-is-active::after {
  display: none;
}

.xs-navbar-search {
  height: 60px;
  border-radius: 4px;
}

.xs-navbar-search .input-group {
  height: 100%;
}

.xs-navbar-search input:not([type="submit"]) {
  border: 0px;
  border-radius: 0;
  padding-left: 28px;
  font-size: 1em;
  width: 100%;
}

.xs-navbar-search .xs-category-select {
  border: 0px;
  padding-left: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #555;
  min-width: 160px;
  max-width: 170px;
  cursor: pointer;
  background-image: url(/images/arrow-2.png?bc575ecf4ebc4cd68a0b8c205f4efd1d);
  background-repeat: no-repeat;
  background-position: center right 19px;
  padding-right: 40px;
  white-space: nowrap;
  background-color: transparent;
}

.xs-navbar-search .xs-category-select li {
  padding-left: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #555;
  cursor: pointer;
  padding-right: 40px;
  background-color: transparent;
  font-size: .8rem;
}

.xs-category-select li:not(.init) {
  display: none;
}

.xs-category-select li:not(.init):hover,
.xs-category-select li.selected:not(.init) {
  background: #09f;
}

.xs-category-select .init {
  background: transparent !important;
}

.header-one button.btn.btn-primary {
  padding: 16px 28px;
}

.xs-navbar-search .xs-category-select-wraper {
  position: relative;
  line-height: 56px;
}

.xs-navbar-search .xs-category-select-wraper::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background-color: #e7e7e7;
}

.xs-navbar-search .btn[type="submit"] {
  height: 60px;
  font-size: 1em;
  border-radius: 0 4px 4px 0;
  margin-right: -3px;
  margin-top: -2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.xs-navDown .btn:not([type="submit"]) {
  width: 100%;
  font-size: 0.85714em;
  letter-spacing: .2px;
  -webkit-transition: all .6s;
  transition: all .6s;
}

.xs-navDown .btn:not([type="submit"]) strong {
  display: block;
  font-size: 1.286em;
  text-transform: uppercase;
  color: #ea1a25;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-navDown.transparent-header-info .row {
  margin-right: 0;
}

.xs-navDown.transparent-header-info .xs-logo-wraper {
  padding: 25px 0;
}

.xs-navDown.transparent-header-info .xs-header-info {
  text-align: right;
  padding: 38px 0;
}

.xs-navDown.v-yellow .xs-vartical-menu .cd-dropdown-trigger,
.xs-navDown.v-yellow .xs-vartical-menu .cd-dropdown-trigger:hover,
.xs-navDown.v-yellow .xs-vartical-menu .cd-dropdown-trigger.dropdown-is-active:hover {
  background-color: #f7f7f7;
  color: #333e48;
}

.xs-navDown.v-yellow .xs-vartical-menu.v-gray .cd-dropdown-trigger::before,
.xs-navDown.v-yellow .xs-vartical-menu.v-gray .cd-dropdown-trigger::after {
  background: #333e48;
}

.xs-navDown.v-yellow .xs-navbar-search .btn[type="submit"] {
  background-color: #fed700;
}

.xs-navDown.v-yellow .btn:not([type="submit"]) strong {
  color: #333e48;
}

.xs-navDown.navDown-v5>.container {
  position: relative;
}

.xs-navDown.navDown-v5 .xs-menus-group {
  position: static;
}

.xs-navDown.navDown-v5 .xs-vartical-menu .cd-dropdown-trigger {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  max-height: 61px;
}

.xs-navDown.navDown-v5 .menu-label {
  background-color: #ffd200;
  top: 0;
}

.xs-navDown.navDown-v5 .menu-label::before {
  border-left-color: #ffd200;
  border-top-color: #ffd200;
}

.xs-navDown.navDown-v5 .menu-label.highlight {
  background-color: #e53935;
}

.xs-navDown.navDown-v5 .menu-label.highlight::before {
  border-left-color: #e53935;
  border-top-color: #e53935;
}

.xs-navDown.navDown-v5 .xs-menus .nav-menu {
  text-align: left;
}

.xs-navDown.navDown-v5 .xs-menus .nav-menu>li>a {
  padding: 35px 29px 21px;
}

.xs-navDown.navDown-v5 .xs-single-wishList {
  font-size: 1.78571em;
}

.xs-navDown.navDown-v5 .xs-wish-list-item {
  padding: 23px 0 0;
}

.xs-navDown.navDown-v5 .xs-miniCart-dropdown .xs-item-count {
  top: -9px;
}

.xs-navDown.color-white .xs-menus .nav-menu>li>a .submenu-indicator-chevron {
  border-color: transparent #FFFFFF #FFFFFF transparent;
}

.xs-navDown.color-white .xs-menus .nav-menu>li>a,
.xs-navDown.color-white .xs-single-wishList {
  color: #FFFFFF;
}

.xs-navDown.secondary-color-v .xs-single-wishList {
  color: #ea1a25;
}

.xs-navDown.secondary-color-v .xs-single-wishList .xs-item-count.highlight {
  background-color: #ea1a25;
}

.xs-navDown.secondary-color-v>.container>.row {
  position: relative;
}

.xs-navDown.secondary-color-v>.container>.row::before {
  content: "";
  width: calc(100% - 30px);
  height: 1px;
  background-color: #ea1a25;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
}

.megamenu-list>li>a:hover {
  background-color: transparent;
  color: #222;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.megamenu-list-title>a {
  pointer-events: none;
}

.xs-customer-form .input-group {
  background-color: #FAFAFC;
  border: 1px solid #eaeaea;
  height: 42px;
  margin-bottom: 20px;
}

.xs-customer-form input:not([type="submit"]) {
  border: 0;
  padding: 0 20px;
  border-radius: 0;
  font-style: italic;
  background-color: transparent;
  font-size: 1em;
  font-style: normal;
}

.xs-customer-form i {
  font-size: 1.28571em;
  color: #ea1a25;
  padding: 0 20px;
}

.xs-customer-form ::-webkit-input-placeholder {
  color: #555;
  font-style: italic;
  font-size: 0.85714em;
}

.xs-customer-form ::-moz-placeholder {
  color: #555;
  font-style: italic;
  font-size: 0.85714em;
}

.xs-customer-form :-ms-input-placeholder {
  color: #555;
  font-style: italic;
  font-size: 0.85714em;
}

.xs-customer-form :-moz-placeholder {
  color: #555;
  font-style: italic;
  font-size: 0.85714em;
}

.xs-customer-form .input-group-text {
  background-color: transparent;
  border: 0px solid #ced4da;
  border-radius: 0;
}

.xs-customer-form .btn-info {
  background-color: #3b5999;
}

.xs-customer-form .btn-danger {
  background-color: #dd4b39;
}

.xs-customer-form .btn {
  border: 0;
  cursor: pointer;
}

.xs-customer-form p {
  margin: 20px 0;
  color: #cccccc;
  font-size: 0.85714em;
  font-weight: 500;
  text-align: center;
}

.xs-customer-form .btn-block+.btn-block {
  margin-top: 10px;
}

.xs-modal {
  z-index: 99999;
}

.xs-modal .modal-content {
  background-color: #FFFFFF;
  border-radius: 10px;
  -webkit-box-shadow: 0px 6px 23px 0px rgba(135, 135, 135, 0.118);
  box-shadow: 0px 6px 23px 0px rgba(135, 135, 135, 0.118);
  max-width: 100%;
  padding: 60px;
}

.xs-modal~.modal-backdrop:before {
  display: none;
}

.xs-modal .modal-dialog {
  position: absolute;
  top: -100%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: .55s;
  transition: .55s;
  background-color: transparent;
  opacity: 0;
  margin: 0;
  z-index: 9999;
}

.xs-modal.show .modal-dialog {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: top .53s ease-out, opacity .35s ease-out;
  transition: top .53s ease-out, opacity .35s ease-out;
  -webkit-transition-delay: .7s;
  transition-delay: .7s;
  opacity: 1;
  top: 50%;
  left: 50%;
}

.xs-tab-nav {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-color: #F1F1F1;
  margin-bottom: 20px;
}

.xs-tab-nav .nav-link {
  border: 0;
  border-radius: 0;
  padding: 0;
  padding-bottom: 10px;
  position: relative;
  color: #D1D1D1;
  font-weight: 600;
  font-size: 1.28571em;
}

.xs-tab-nav .nav-link:hover:before,
.xs-tab-nav .nav-link.active:before {
  width: calc(100% + 18px);
}

.xs-tab-nav .nav-link:hover,
.xs-tab-nav .nav-link:hover:before,
.xs-tab-nav .nav-link.active:before,
.xs-tab-nav .nav-link.active {
  color: #ea1a25;
}

.xs-tab-nav .nav-link:before {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 50%;
  height: 2px;
  width: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #ea1a25;
}

.xs-tab-nav .nav-item {
  margin-bottom: 0;
  margin-right: 35px;
}

.xs-tab-nav .nav-item:last-child {
  margin-right: 0;
}

@-webkit-keyframes menu-animation {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.04) translateY(300%);
    transform: scale(0.04) translateY(300%);
  }

  40% {
    -webkit-transform: scale(0.04) translateY(0);
    transform: scale(0.04) translateY(0);
    -webkit-transition: ease-out;
    transition: ease-out;
  }

  40% {
    -webkit-transform: scale(0.04) translateY(0);
    transform: scale(0.04) translateY(0);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(0.02) translateY(0px);
    transform: scale(0.02) translateY(0px);
  }

  61% {
    opacity: 1;
    -webkit-transform: scale(0.04) translateY(0px);
    transform: scale(0.04) translateY(0px);
  }

  99.9% {
    opacity: 1;
    height: 0;
    padding-bottom: 100%;
    border-radius: 100%;
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(2) translateY(0px);
    transform: scale(2) translateY(0px);
    height: 100%;
    padding-bottom: 0;
    border-radius: 0;
  }
}

.modal button.close {
  position: absolute;
  right: 20px;
  top: 20px;
  outline: none;
  z-index: 99;
}

.xs-quick-view-modal .modal-dialog {
  max-width: 1170px;
  width: 100%;
}

.xs-quick-view-modal .modal-content {
  padding: 30px;
}

.xs-promotion {
  border: 0;
  border-radius: 0;
  margin-bottom: 0;
  padding: 12px 0;
}

.xs-promotion.alert-info {
  background-color: #ff6251;
}

.xs-promotion.alert-info strong {
  background-color: #e15546;
}

.xs-promotion p {
  margin-bottom: 0;
  color: #FFFFFF;
  font-size: 0.85714em;
}

.xs-promotion strong {
  font-weight: 500;
  border-radius: 4px;
  padding: 7px 15px;
  margin-right: 16px;
}

.xs-promotion .close {
  opacity: 1;
  color: #FFF;
  text-shadow: none;
  font-size: 1em;
}

.xs-promotion .close:focus {
  outline: none;
}

.xs-promotion.alert-success {
  background-color: #ea1a25;
}

.xs-promotion.promotion-v2 {
  padding: 12px 0;
}

.xs-promotion.promotion-v2 p {
  text-align: center;
}

.xs-promotion.promotion-v2 .close {
  font-size: 1em;
}

.xs-banner-item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 660px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.xs-banner-item .xs-watermark-text {
  z-index: 2;
}

.xs-banner-item .large-version {
  opacity: .05;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.xs-banner-slider {
  position: relative;
}

.xs-banner-slider.owl-carousel .owl-item img {
  width: auto;
}

.xs-banner-slider .owl-next,
.xs-banner-slider .owl-prev,
.xs-banner-slider .owl-dots {
  margin: 0;
  position: absolute;
  bottom: 39px;
  line-height: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.xs-banner-slider .owl-dots {
  left: calc(50% - 40px);
  bottom: 47px;
}

.xs-banner-slider .owl-prev {
  left: calc(50% - 110px);
}

.xs-banner-slider .owl-next {
  left: calc(50% + 30px);
}

.xs-banner-slider .owl-prev.disabled,
.xs-banner-slider .owl-next.disabled {
  opacity: 0;
}

.xs-simple-arrow {
  color: #ea1a25;
  font-size: 2.14286em;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-banner-image {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.xs-banner-content {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  text-align: center;
}

.xs-banner-content .xs-banner-sub-title {
  font-weight: 300;
  color: #ea1a25;
  font-size: 2em;
  letter-spacing: -.3px;
  margin-bottom: 20px;
}

.xs-banner-content .xs-banner-title {
  font-size: 3.5em;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 50px;
}

.xs-banner-content .btn-outline-primary {
  border-width: 2px;
  border-color: #ea1a25;
  padding: 15px 61px;
}

.xs-banner-content .btn {
  font-size: 0.85714em;
  font-weight: 700;
}

.xs-banner-content .btn-primary {
  background-color: #ea1a25;
}

.xs-banner-content .xs-btn-wraper {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.xs-banner .xs-banner-content .btn-primary {
  padding: 18px 41px;
}

.xs-banner-slider-2 .xs-banner-item {
  margin-left: 0;
  margin-right: 0;
  min-height: 550px;
}

.xs-banner-slider-2 .xs-banner-content .xs-banner-sub-title {
  font-size: 1.57143em;
}

.xs-banner-slider-2 .xs-banner-content .xs-banner-title {
  font-size: 2.71429em;
  margin-bottom: 30px;
}

.xs-banner-slider-2 .xs-banner-content .xs-btn-wraper {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.xs-banner-slider-2 .owl-dots {
  margin-top: 0;
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.xs-banner .xs-feature-product:last-child {
  margin-bottom: 0;
}

.xs-banner .xs-feature-product,
.xs-banner .xs-feature-product img {
  min-height: 260px;
  background: #F7F7F7;
}

.xs-banner-slider-3 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #f7f7f7;
}

.xs-banner-slider-3 .xs-banner-content {
  padding-left: 80px;
}

.xs-banner-slider-3 .xs-banner-content .xs-banner-sub-title {
  font-size: 1.85714em;
  font-weight: 400;
}

.xs-banner-slider-3 .xs-banner-content .xs-banner-title {
  font-size: 3.71429em;
  font-weight: 500;
  margin-bottom: 30px;
}

.xs-banner-slider-3 .xs-banner-content .xs-btn-wraper {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.xs-banner-slider-3 .xs-banner-item {
  min-height: 550px;
}

.xs-banner-slider-3 .xs-banner-image {
  padding-right: 50px;
}

.xs-banner-slider-3 .owl-dots {
  margin-top: 0;
  position: absolute;
  bottom: calc(80px - 20px);
  left: 80px;
}

.xs-banner.xs-banner-v4 .xs-banner-item {
  min-height: 600px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.xs-banner-slider-4 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.xs-banner-slider-4 .xs-banner-content {
  text-align: left;
}

.xs-banner-slider-4 .xs-btn-wraper {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.xs-banner-slider-4 .xs-banner-sub-title {
  font-size: 1.85714em;
}

.xs-banner-slider-4 .xs-banner-title {
  font-size: 2.3em;
  margin-bottom: 30px;
}

.xs-banner-slider-4 .owl-dots {
  text-align: center;
  margin-top: 0;
  width: calc(520px + .2em);
  margin: 0 auto;
  position: relative;
  bottom: 39px;
}

.xs-banner-v5 .xs-banner-item {
  min-height: 980px;
  overflow: hidden;
}

.xs-banner-v5 .xs-banner-item::before {
  position: absolute;
  content: "";
  bottom: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: url(/images/curve.png?02599980d79c1e32f2679fe76582512a);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100px;
  width: 370px;
  z-index: 2;
}

.xs-banner-v5 [class^="col"] {
  z-index: 9;
}

.xs-banner-v5 .xs-banner-content {
  text-align: left;
}

.xs-banner-v5 .xs-banner-content .xs-banner-sub-title {
  color: #ea1a25;
  font-family: 'Pacifico', cursive;
  margin-bottom: 0;
}

.xs-banner-v5 .xs-banner-content .xs-banner-title {
  font-size: 5.85714em;
  margin-bottom: 0;
}

.xs-banner-v5 .xs-banner-content p {
  font-size: 1.28571em;
  color: #666666;
}

.xs-banner-v5 .xs-banner-content .btn:not(.btn-outline-success) {
  padding: 18px 60px;
}

.xs-banner-v5 .xs-banner-content .btn-outline-success {
  padding: 16px 49px;
}

.container-fullwidth .xs-banner-content .xs-banner-title {
  font-size: 2.85714em;
}

.container-fullwidth .xs-banner-content .xs-banner-sub-title {
  font-size: 1.78571em;
}

.container-fullwidth .xs-banner-content .btn-outline-primary {
  border-color: #ea1a25;
}

.xs-banner-slider-5 {
  position: relative;
}

.xs-banner-slider-5 .owl-dots {
  margin-top: -46px;
  bottom: 0;
}

.xs-banner.vendor-welcome {
  padding-bottom: 30px;
}

.xs-banner.v-yellow .btn:not([data-toggle="popover"]) {
  color: #333e48;
}

.xs-banner.v-yellow .btn:not([data-toggle="popover"]).btn-primary {
  background-color: #fed700;
}

.xs-banner-slider-6 .xs-banner-item {
  margin-left: -1px;
  margin-right: 0;
  min-height: 530px;
}

.xs-banner-slider-6~[class^=col-] .xs-banner-campaign img,
.xs-banner-slider-6 .xs-banner-item {
  border-radius: 6px;
}

.xs-banner-slider-6 .xs-banner-content {
  text-align: left;
  color: #FFFFFF;
  padding-left: 80px;
  width: 100%;
}

.xs-banner-slider-6 .xs-banner-content .xs-banner-sub-title {
  color: #FFFFFF;
  font-size: 1.78571em;
}

.xs-banner-slider-6 .xs-banner-content .xs-banner-title {
  font-size: 2.85714em;
  margin-bottom: 26px;
}

.xs-banner-slider-6 .xs-banner-content .btn {
  color: #333e48;
}

.xs-banner-slider-6 .xs-banner-content .btn:hover {
  color: #FFFFFF;
}

.xs-banner-slider-6 .xs-banner-content .btn.btn-outline-primary {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.xs-banner-slider-6 .xs-banner-content .btn:not([data-toggle="popover"]).btn-primary {
  background-color: #fed700;
}

.xs-banner-slider-6 .xs-btn-wraper {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.xs-banner-slider-6 .owl-dots {
  margin-top: 0;
  position: absolute;
  bottom: 46px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.xs-banner-slider-6 .owl-dots .owl-dot span {
  background-color: #e1e1e1;
}

.xs-banner-slider-6 .owl-dots .owl-dot.active span {
  background-color: #fed700;
}

.xs-banner-slider-6 .owl-stage-outer,
.xs-banner-slider-6 .owl-stage,
.xs-banner-slider-6 .owl-item,
.xs-banner-slider-6 .xs-banner-item {
  height: 100%;
}

.banner-fullwidth-version-2 {
  margin-bottom: 30px;
}

.banner-fullwidth-version-2 .xs-banner-campaign {
  margin-bottom: 30px;
}

.banner-fullwidth-version-2 .xs-banner-campaign:last-child {
  margin-bottom: 0;
}

.xs-feature-product {
  position: relative;
  margin-bottom: 30px;
  cursor: pointer;
  overflow: hidden;
}

.xs-feature-product.highlight {
  margin-bottom: 0;
}

.xs-feature-product.highlight .xs-feature-product-info {
  padding: 60px;
}

.xs-feature-product .xs-product-offer-label {
  position: absolute;
  bottom: 90px;
  left: 60px;
}

.xs-feature-product>img {
  background: #F7F7F7;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0, 0, 0.44, 1.18);
  transition: -webkit-transform 0.6s cubic-bezier(0, 0, 0.44, 1.18);
  transition: transform 0.6s cubic-bezier(0, 0, 0.44, 1.18);
  transition: transform 0.6s cubic-bezier(0, 0, 0.44, 1.18), -webkit-transform 0.6s cubic-bezier(0, 0, 0.44, 1.18);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.xs-feature-product:hover>img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.xs-feature-product-info {
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px;
  width: 100%;
  height: 100%;
}

.xs-feature-product-info .xs-cate-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 99, 209, 0.9);
  color: #f5f5f5;
  font-size: 1.28571em;
  font-weight: 500;
}

.product-title-v2 {
  font-size: 1em;
  font-weight: 400;
  margin-bottom: 30px;
}

.product-title-v2 a {
  color: #ea1a25;
  display: inline-block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.product-title-v2 a strong {
  color: #222;
  display: block;
  font-size: 1.714em;
  margin-top: 4px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.product-title-v2 a:hover {
  color: #222;
}

.product-title-v2 a:hover strong {
  color: #ea1a25;
}

.product-title-v2.large {
  font-size: 1.28571em;
}

.product-title-v2.large strong {
  font-size: 2em;
  margin-top: 0;
}

.feature-product-v4 .xs-product-wraper,
.feature-product-v4 .xs-list-group {
  padding: 20px;
  border: 0px;
  background-color: #FFFFFF;
}

.feature-product-v4 .product-item-meta {
  background-color: #FFFFFF;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: #f1f1f1;
}

@-webkit-keyframes show {
  0% {
    display: none;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}

@keyframes show {
  0% {
    display: none;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}

.xs-single-product {
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-single-product .xs-list-group {
  display: none;
  -webkit-animation: show .4s ease;
  animation: show .4s ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  position: absolute;
  z-index: 2;
  width: 100%;
}

.xs-single-product:hover {
  -webkit-box-shadow: 2px 11px 20px 0px rgba(144, 144, 144, 0.2);
  box-shadow: 2px 11px 20px 0px rgba(144, 144, 144, 0.2);
}

.xs-single-product:hover .xs-product-wraper {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.xs-single-product:hover .product-item-meta {
  opacity: 1;
  top: 0px;
}

.xs-single-product:hover .xs-list-group {
  -webkit-box-shadow: 2px 11px 20px 0px rgba(144, 144, 144, 0.2);
  box-shadow: 2px 11px 20px 0px rgba(144, 144, 144, 0.2);
  display: block;
  opacity: 1;
}

.xs-single-product:hover .product-title a {
  color: #ea1a25;
}

.xs-product-wraper {
  padding: 10px 30px 30px;
  background-color: #FFFFFF;
  border: 1px solid #efefef;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.xs-product-wraper img {
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-product-wraper .xs-product-header {
  opacity: 0;
  top: 0px;
}

.xs-product-wraper .xs-product-hover-area {
  position: absolute;
  bottom: -100px;
  opacity: 0;
  width: calc(100% + 2px);
  margin-left: -1px;
  border-top: 0px;
  left: 0;
  background-color: #FFFFFF;
}

.xs-product-wraper:hover {
  border-color: transparent;
  -webkit-box-shadow: 0px 2px 20px 0px rgba(144, 144, 144, 0.2);
  box-shadow: 0px 2px 20px 0px rgba(144, 144, 144, 0.2);
  z-index: 2;
}

.xs-product-wraper:hover .xs-product-header {
  top: 20px;
  opacity: 1;
}

.xs-product-wraper:hover .xs-product-hover-area {
  opacity: 1;
  bottom: -62px;
}

.xs-product-wraper:hover .product-item-meta {
  opacity: 1;
  top: 15px;
}

.xs-product-wraper:hover img {
  opacity: .7;
}

.xs-product-wraper img~.xs-product-content {
  margin-top: 0px;
}

.xs-product-wraper .xs-product-content {
  margin-top: 30px;
}

.xs-product-wraper.version-2 {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
  padding-top: 10px;
}

.xs-product-wraper.version-2 .xs-product-content,
.xs-product-wraper.version-2 img,
.xs-product-wraper.version-2 .xs-product-header {
  padding: 0 30px;
}

.xs-product-wraper.version-2 .xs-product-content {
  padding-bottom: 30px;
}

.xs-product-wraper.version-2:hover {
  border-color: #efefef;
}

.xs-product-wraper.version-3 {
  margin-bottom: 24px;
}

.xs-product-wraper.version-3:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #efefef;
}

.xs-product-wraper.highlight {
  padding: 50px;
}

.xs-product-wraper.highlight .xs-product-content {
  margin-top: 0;
  margin-bottom: 32px;
}

.xs-product-wraper.highlight img {
  margin-bottom: 23px;
}

.xs-product-wraper.highlight:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #efefef;
}

.xs-product-wraper.version-4 {
  text-align: center;
  border: 0;
}

.xs-product-wraper.version-4 img {
  margin-bottom: 43px;
}

.xs-product-wraper .product-item-meta {
  text-align: center;
  opacity: 1;
  position: relative;
  top: 0;
  margin-bottom: 10px;
}

.xs-product-wraper .xs-product-offer-label {
  margin: 0 0 0 auto;
}

.xs-product-main-wrapre .xs-product-wraper {
  margin-bottom: 20px;
}

.xs-product-main-wrapre .xs-product-wraper img {
  margin-bottom: 20px;
}

.xs-product-main-wrapre.no-gutters .xs-product-wraper {
  margin-bottom: 0;
}

.version-5 .xs-product-wraper,
.version-6 .xs-product-wraper {
  border: 0px;
  text-align: center;
  margin-bottom: 20px;
}

.version-5 .xs-product-wraper:hover,
.version-6 .xs-product-wraper:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.version-5 .xs-product-wraper.highlight,
.version-6 .xs-product-wraper.highlight {
  text-align: left;
}

.version-6 [class^="col"] {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.version-6 [class^="col"]:first-child {
  padding-left: 15px;
}

.version-6 [class^="col"]:last-child {
  padding-right: 15px;
}

.version-6 .xs-product-wraper {
  padding: 10px 20px 30px;
}

.xs-tab-content .row {
  margin-left: 0;
  margin-right: 0;
}

.xs-product-header {
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-bottom: 5px;
  z-index: 2;
}

.product-title {
  font-size: 1.14286em;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.625;
}

.product-title a {
  color: #222;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: inline-block;
}

.product-title a:hover {
  color: #ea1a25;
}

.product-title.highlight {
  font-size: 1em;
}

.product-title.highlight a {
  color: #ea1a25;
}

.product-title.highlight a strong {
  font-size: 1.857em;
  display: block;
  color: #222;
  line-height: 1;
}

.product-title.small {
  font-size: 1em;
}

.product-title.medium,
.xs-post-footer .post-author .product-title.xs-round-avatar,
.xs-author-block .post-author .product-title.xs-round-avatar {
  font-size: 1.28571em;
  margin-bottom: 8px;
}

.product-stock {
  color: #bbbbbb;
}

.product-stock span {
  padding-left: 5px;
}

.price {
  color: #ea1a25;
  font-size: 16px !important;
}

.price del {
  color: #d4d4d4;
  padding-left: 5px;
}

.price.highlight {
  display: block;
  font-weight: 500;
  font-size: 2.14286em;
  line-height: 1;
  text-align: left;
}

.price.highlight del {
  padding-left: 0;
  padding-bottom: 5px;
  display: block;
  font-size: 0.667em;
  font-weight: 400;
  margin-top: 3px;
}

.price.small {
  font-size: 1em;
}

.price small {
  font-size: 0.750em;
  color: #d4d4d4;
}

.price.version-3 {
  color: #ea1a25;
  font-weight: 300;
  font-size: 1.71429em;
  line-height: 1;
}

.price.version-3 del {
  font-size: 0.750em;
  display: block;
  margin-top: 5px;
}

.xs-content-header {
  border-bottom: 1px solid #efefef;
  margin-bottom: 30px;
}

.xs-content-header .xs-content-title {
  float: left;
  margin-top: -4px;
}

.xs-content-header .xs-content-title.version-2 {
  margin-top: 0;
}

.xs-content-header .xs-nav-tab {
  float: right;
}

.xs-content-header .customNavigation {
  float: right;
}

.xs-content-header.version-2 {
  border-bottom: 0px;
}

.xs-content-header.version-2 .xs-simple-btn {
  float: right;
}

.xs-content-header.version-2 .xs-content-title {
  margin-top: 0;
}

.xs-content-header.version-3 {
  padding-bottom: 8px;
}

.xs-content-header.content-header-v2 .xs-nav-tab {
  float: none;
  position: relative;
}

.xs-content-header.content-header-v2 .nav-item .xs-custom-nav {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 0;
  top: 0;
}

.xs-content-header.content-header-v2 .nav-item .nav-link.active~.xs-custom-nav {
  opacity: 1;
  visibility: visible;
}

.xs-content-title {
  font-size: 1.57143em;
  margin-bottom: 0;
  line-height: 1;
  position: relative;
}

.xs-content-title.version-2 {
  padding-bottom: 28px;
}

.xs-content-title.version-2::before {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 60px;
  background-color: #ea1a25;
}

.xs-content-title.version-2::after {
  position: absolute;
  content: "";
  left: 30px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -13px;
  border-top: 8px solid #ea1a25;
  border-bottom: 5px solid transparent;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

.xs-content-title.version-3 {
  font-size: 2em;
  font-weight: 700;
  margin-top: 0;
  padding-bottom: 24px;
}

.xs-content-title.version-3::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 80px;
  background-color: #ea1a25;
}

.xs-content-title.version-3 small {
  font-size: 0.643em;
  font-weight: 400;
  display: block;
  color: #999999;
  margin-bottom: 5px;
}

.xs-content-title.version-3~.xs-custom-nav {
  padding-top: 5px;
}

.xs-nav-tab {
  border-bottom: 0px solid #000;
}

.xs-nav-tab .nav-item {
  margin-right: 40px;
}

.xs-nav-tab .nav-item:last-child {
  margin-right: 0;
}

.xs-nav-tab .nav-link {
  padding: 0;
  line-height: 1;
  border: 0;
  font-size: 1.28571em;
  color: #969696;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  padding-bottom: 13px;
}

.xs-nav-tab .nav-link::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  height: 2px;
  width: 40px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #ea1a25;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-nav-tab .nav-link::after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -9px;
  border-top: 5px solid #ea1a25;
  border-bottom: 5px solid transparent;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
}

.xs-nav-tab .nav-link.active,
.xs-nav-tab .nav-link:hover {
  color: #ea1a25;
  background-color: transparent;
}

.xs-nav-tab .nav-link.active::before,
.xs-nav-tab .nav-link.active::after,
.xs-nav-tab .nav-link:hover::before,
.xs-nav-tab .nav-link:hover::after {
  opacity: 1;
}

.xs-nav-tab.version-2 .nav-item {
  margin-right: 20px;
}

.xs-nav-tab.version-2 .nav-item:last-child {
  margin-right: 0;
}

.xs-nav-tab.version-2 .nav-item .nav-link {
  font-size: 1.57143em;
  padding-bottom: 28px;
}

.xs-nav-tab.version-2 .nav-item .nav-link::before,
.xs-nav-tab.version-2 .nav-item .nav-link::after {
  left: 0;
  width: 60px;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.xs-nav-tab.version-2 .nav-item .nav-link::after {
  bottom: -13px;
  width: 10px;
  left: calc(60px / 2);
  margin-left: calc(-10px / 2);
}

.xs-nav-tab.version-red .nav-link::before {
  background-color: #ff6251;
}

.xs-nav-tab.version-red .nav-link::after {
  border-top-color: #ff6251;
}

.xs-nav-tab.version-3 .nav-item .nav-link {
  font-size: 2em;
  padding-bottom: 20px;
}

.xs-nav-tab.version-4 {
  margin-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}

.xs-nav-tab.version-4 .nav-item .nav-link {
  font-size: 1em;
  font-weight: 500;
  color: #222;
}

.xs-nav-tab.version-4 .nav-item .nav-link span {
  color: #ea1a25;
}

.xs-nav-tab.version-4 .nav-item .nav-link:hover,
.xs-nav-tab.version-4 .nav-item .nav-link.active {
  color: #ea1a25;
}

.xs-nav-tab.version-4 .nav-item .nav-link::before {
  width: 100%;
}

.xs-nav-tab.version-4 .nav-item .nav-link::after {
  display: none;
}

.product-categories {
  font-size: 0.85714em;
  margin-bottom: 4px;
  display: block;
}

.product-categories a {
  color: #999999;
  display: inline-block;
}

.xs-product-hover-area {
  padding: 20px 30px;
  border: 1px solid #efefef;
  color: #b7b7b7;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-product-hover-area a {
  color: #b7b7b7;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-product-hover-area a i {
  padding-right: 7px;
}

.xs-product-hover-area a:hover {
  color: #777777;
}

.xs-vertical-tab-nav li a {
  color: #777777;
  font-size: 1em;
  border-left: 1px solid #f7f7f7;
  padding-top: 11.25px;
  padding-bottom: 11.25px;
  padding-left: 35px;
  display: block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}

.xs-vertical-tab-nav li a::after {
  position: absolute;
  content: "\F105";
  font-family: "FontAwesome";
  color: #d3d3d3;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 60px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-vertical-tab-nav li a:hover,
.xs-vertical-tab-nav li a.active {
  border-left: 2px solid #ea1a25;
  color: #ea1a25;
}

.xs-vertical-tab-nav li a:hover::after,
.xs-vertical-tab-nav li a.active::after {
  color: #ea1a25;
}

.product-item-meta {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.product-item-meta li {
  display: inline-block;
}

.product-item-meta li a {
  display: block;
  color: #222;
  width: 30px;
  height: 30px;
  line-height: 34px;
  border-radius: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-align: center;
}

.product-item-meta li a:hover {
  color: #FFFFFF;
  background-color: #ea1a25;
}

.product-item-meta.meta-style-2 li a {
  background-color: #ea1a25;
  color: #FFFFFF;
}

.product-feature-ribbon {
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 80px;
  line-height: 60px;
  background-image: linear-gradient(45deg, #fff 0%, #fff 50%, #ea1a25 50%, #ea1a25 100%);
  text-align: right;
  z-index: 2;
}

.product-feature-ribbon i {
  font-size: 1.78571em;
  padding: 14px 8px;
  color: #FFF;
  display: inline-block;
}

.xs-custom-nav a {
  display: inline-block;
  cursor: pointer;
  color: #d5d5d5;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-custom-nav a:not([href]):hover {
  color: #ea1a25;
}

.xs-custom-nav a.nav-round {
  width: 40px;
  height: 40px;
  border: 2px solid #f1f1f1;
  border-radius: 100%;
  text-align: center;
  font-size: 1.28571em;
  line-height: 35px;
  color: #666666;
}

.xs-custom-nav a.nav-round:hover {
  background-color: #ea1a25;
  border-color: #ea1a25;
  color: #FFFFFF;
}

.xs-custom-nav .prev {
  margin-right: 14px;
}

.container-fullwidth .xs-nav-tab-v3 {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.xs-nav-tab-v3 {
  position: relative;
  margin-bottom: 30px;
  border-bottom: 0px;
}

.xs-nav-tab-v3::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #eaeaea;
  z-index: 1;
  pointer-events: none;
}

.xs-nav-tab-v3 .nav-item {
  width: 16.65%;
  margin-bottom: 0;
}

.xs-nav-tab-v3 .nav-item .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  text-align: center;
  color: #222;
  font-size: 1.14286em;
  font-weight: 500;
  min-height: 180px;
  padding: 34px 5px;
  position: relative;
  background-color: #FFFFFF;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-nav-tab-v3 .nav-item .nav-link::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 1px;
  height: 100px;
  border-right: 1px solid #ededed;
}

.xs-nav-tab-v3 .nav-item .nav-link::after {
  position: absolute;
  content: "";
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  height: 24px;
  width: 24px;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-nav-tab-v3 .nav-item .nav-link::after,
.xs-nav-tab-v3 .nav-item .nav-link.active {
  background-color: #ea1a25;
}

.xs-nav-tab-v3 .nav-item .nav-link.active {
  color: #FFFFFF;
}

.xs-nav-tab-v3 .nav-item .nav-link.active span,
.xs-nav-tab-v3 .nav-item .nav-link.active small {
  color: #FFFFFF;
}

.xs-nav-tab-v3 .nav-item .nav-link.active::after {
  opacity: 1;
}

.xs-nav-tab-v3 .nav-item .nav-link.active::before {
  display: none;
}

.xs-nav-tab-v3 .nav-item .nav-link span,
.xs-nav-tab-v3 .nav-item .nav-link small {
  display: block;
}

.xs-nav-tab-v3 .nav-item .nav-link small {
  color: #555;
  font-weight: 400;
  font-size: 0.750em;
  margin-top: 8px;
}

.xs-nav-tab-v3 .nav-item .nav-link span {
  color: #ea1a25;
  font-size: 2.500em;
  margin-bottom: 15px;
}

.xs-nav-tab-v3 .nav-item:first-child .nav-link:before {
  display: none;
}

.xs-banner-campaign {
  display: block;
  position: relative;
  overflow: hidden;
}

.xs-banner-campaign::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-transition: -webkit-transform 1.8s;
  transition: -webkit-transform 1.8s;
  transition: transform 1.8s;
  transition: transform 1.8s, -webkit-transform 1.8s;
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -200%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -200%, 0);
}

.xs-banner-campaign:hover::before {
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 200%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 200%, 0);
}

.xs-banner .xs-banner-campaign img {
  width: 100%;
  min-height: 250px;
}

.xs-banner-campaign-v2 {
  padding-top: 30px;
}

.xs-offerBanner-section.version-fullwidth {
  padding-bottom: 50px;
}

.xs-product-widget {
  margin-bottom: 30px;
  border: 1px solid #e3e3e3;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}

.xs-product-widget:hover {
  -webkit-box-shadow: 0px 2px 20px 0px rgba(144, 144, 144, 0.2);
  box-shadow: 0px 2px 20px 0px rgba(144, 144, 144, 0.2);
  border-color: transparent;
}

.xs-product-widget:hover:hover img {
  opacity: .7;
}

.xs-product-widget img {
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-product-widget:last-child {
  /*margin-bottom: 0;*/
}

.xs-product-widget img~.product-widget-content {
  padding: 0px 20px;
}

.xs-product-widget .product-widget-content {
  padding: 0px 20px;
}

h4.product-title-v2.xs-cat {
  margin-bottom: 5px;
}

.xs-product-widget.version-2 {
  border: 0;
}

.xs-product-widget.version-2:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.xs-product-widget.version-thumb:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.xs-product-widget.version-gradient {
  background: -webkit-gradient(linear, left top, right top, from(#f7f6f2), color-stop(20%, #f7f6f2), color-stop(20%, #fff), to(#fff));
  background: linear-gradient(to right, #f7f6f2 0%, #f7f6f2 20%, #fff 20%, #fff 100%);
  border: 2px solid #f7f6f2;
  border-radius: 4px;
  z-index: 1;
}

.xs-product-widget.version-gradient .xs-product-thumb {
  padding-left: 40px;
  min-width: 130px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.xs-product-widget.version-gradient .xs-product-thumb~.product-widget-content {
  padding: 20px 20px 20px 30px;
}

.xs-product-widget.version-gradient::before {
  position: absolute;
  content: "";
  left: 20%;
  top: 0;
  background-image: url(/images/curve-small.png?6066841c34b0dc03e61c7706b394ea54);
  height: 130px;
  width: 22px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}

.xs-product-widget.version-gradient:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #f7f6f2;
}

.xs-tab-slider .owl-stage {
  padding-top: 10px;
  padding-bottom: 10px;
}

.xs-product-slider-4 .xs-product-widget,
.xs-product-slider-5 .xs-product-widget,
.xs-product-slider-6 .xs-product-widget {
  margin-bottom: 12px;
}

.xs-product-slider-4 .xs-product-widget:last-child,
.xs-product-slider-5 .xs-product-widget:last-child,
.xs-product-slider-6 .xs-product-widget:last-child {
  margin-bottom: 0;
}

.version-thumb .xs-product-widget {
  border: 0px;
  background-color: #ffffff;
  margin-bottom: 20px;
}

.version-thumb .xs-product-widget:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.version-thumb .xs-product-widget .price del {
  display: block;
  padding-left: 0;
}

.version-border-right .xs-product-widget {
  border: 0px;
  border-right: 1px solid #f1f1f1;
}

.version-border-right .xs-product-widget:hover {
  border-color: transparent;
}

.version-border-right .owl-item.last-child .xs-product-widget {
  border-right-color: transparent;
}

.product-thumb-version .xs-product-widget {
  border: 0;
  border-right: 1px solid #ededed;
  margin-bottom: 30px;
}

.product-thumb-version .xs-product-widget:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.product-thumb-version .xs-product-widget img~.product-widget-content {
  padding: 0px 10px;
}

.product-thumb-version .xs-product-widget .price {
  color: #ea1a25;
}

.product-thumb-version .xs-product-widget img {
  padding-left: 6px;
}

.product-thumb-version [class^='col-']:last-child .xs-product-widget {
  border-right: 0px;
}

.xs-footer-section {
  padding-top: 40px;
  position: relative;
}

.xs-footer-main {
  padding-bottom: 80px;
}

.xs-footer-logo {
  padding-bottom: 60px;
  text-align: center;
}

.xs-footer-logo a {
  display: inline-block;
}

.footer-widget .widget-title {
  font-size: 1.28571em;
  font-weight: 500;
  margin-bottom: 25px;
}

.footer-widget.footer-content {
  padding-right: 120px;
}

.footer-widget .footer-banner {
  margin-top: -27px;
}

.xs-footer-description {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e8e8e8;
}

.xs-footer-description img {
  margin-right: 20px;
}

.xs-footer-description .media-body p {
  margin-bottom: 0;
  color: #777777;
}

.xs-footer-description .media-body p a {
  color: #62ab00;
}

.xs-copyright {
  background-color: #f8f8f8;
  padding: 30px 0;
}

.xs-copyright.copyright-gray .xs-copyright-text,
.xs-copyright.copyright-gray .xs-copyright-text a,
.xs-copyright.copyright-gray .xs-social-list li a {
  color: #222;
}

.xs-copyright.copyright-yellow .xs-copyright-text,
.xs-copyright.copyright-yellow .xs-copyright-text a,
.xs-copyright.copyright-yellow .xs-social-list li a {
  color: #333e48;
}

.xs-copyright .xs-payment-card {
  text-align: right;
}

.xs-copyright .xs-payment-card li a {
  opacity: .5;
}

.xs-copyright .xs-payment-card li a:hover {
  opacity: 1;
}

.xs-copyright .xs-social-list {
  text-align: right;
}

.xs-copyright .xs-social-list li a {
  color: #ffffff;
}

.xs-copyright-text {
  color: #9dcbff;
}

.xs-copyright-text a {
  color: #FFFFFF;
}

.xs-payment-card li {
  display: inline-block;
  margin-right: 20px;
}

.xs-payment-card li:last-child {
  margin-right: 0;
}

.xs-payment-card li a {
  display: inline-block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-payment-card .payment-title {
  color: #FFFFFF;
  margin-right: 30px;
}

.footer-logo-v2 {
  text-align: left;
}

.xs-footer-info-and-payment {
  margin: 0;
}

.xs-footer-info-and-payment span[class*="icon"] {
  color: #62ab00;
  font-size: 3.57143em;
  margin-right: 20px;
}

.xs-footer-info-and-payment .color-yellow[class*="icon"] {
  color: #fed700;
}

.xs-footer-info-and-payment h5 {
  font-size: 1.57143em;
  color: #999999;
  font-weight: 300;
  line-height: 1.454;
  margin-bottom: 12px;
}

.xs-footer-info-and-payment strong {
  display: block;
  color: #444444;
  font-weight: 500;
}

.xs-footer-info-and-payment address {
  color: #777777;
  margin-bottom: 12px;
}

.xs-footer-info-and-payment .xs-payment-card {
  margin-bottom: 22px;
}

.xs-footer-secure-info h6 {
  font-size: 1.14286em;
  font-weight: 400;
  margin-bottom: 7px;
}

.xs-footer-secure-info li {
  display: inline-block;
  margin-right: 14px;
}

.xs-footer-secure-info li:last-child {
  margin-right: 0;
}

.footer-banner {
  display: inline-block;
}

.xs-product-category {
  padding: 0 13px;
  border-right: 1px solid #ebebeb;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-product-category img {
  margin: 0 auto 20px auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 1;
}

.xs-product-category:hover {
  opacity: .7;
}

.xs-tab-slider-6-col .last-child .xs-product-category {
  border-right: 1px solid transparent;
}

.tab-slider-center .xs-product-category {
  text-align: center;
}

.product-category-version-2 .xs-product-category {
  padding: 0 10px;
  border-right: 0px;
  text-align: center;
  margin-bottom: 30px;
}

.xs-slider-7-col .last-child .xs-product-category {
  border-right: 1px solid transparent;
}

.xs-slider-7-col .first-child .xs-product-category {
  border-right: 1px solid transparent;
}

.xs-recently-added .xs-content-header {
  padding-bottom: 10px;
}

.xs-deal-of-the-day-section {
  position: relative;
  padding: 125px 0;
}

.xs-best-deal-slider-content {
  color: #FFFFFF;
}

.xs-best-deal-slider-content .price {
  margin-bottom: 40px;
  font-size: 2em !important;
  color: #FFFFFF;
  display: inline-block;
}

.xs-best-deal-slider-content .price del {
  color: #1f7ee8;
}

.xs-best-deal-slider-content .btn.btn-success::before {
  background-color: #222;
}

.best-deal-sub-title {
  color: #62acff;
  font-size: 1.57143em;
  font-weight: 400;
  margin-bottom: 10px;
}

.best-deal-title {
  font-size: 2.3em;
  font-weight: 700;
  letter-spacing: -.3px;
  margin-bottom: 25px;
}

.xs-slider-highlight {
  position: relative;
}

.xs-slider-highlight:hover .owl-prev,
.xs-slider-highlight:hover .owl-next {
  opacity: 1;
}

.xs-slider-highlight:hover .owl-prev {
  left: 40px;
}

.xs-slider-highlight:hover .owl-next {
  right: 40px;
}

.xs-slider-highlight .owl-prev,
.xs-slider-highlight .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
}

.xs-slider-highlight .owl-prev i,
.xs-slider-highlight .owl-next i {
  color: #b1d6ff;
}

.xs-slider-highlight .owl-prev i:hover,
.xs-slider-highlight .owl-next i:hover {
  color: #FFFFFF;
}

.xs-slider-highlight .owl-prev {
  left: 0px;
}

.xs-slider-highlight .owl-next {
  right: 0px;
}

.entry-summary {
  padding-top: 50px;
}

.summary-content .entry-title {
  font-size: 1em;
  font-weight: 400;
  color: #ea1a25;
  margin-bottom: 15px;
}

.summary-content .product-title {
  font-size: 1.57143em;
  margin-bottom: 10px;
}

.summary-content .star-rating {
  margin-bottom: 20px;
  line-height: 1;
}

.summary-content .star-rating .value {
  top: -2px;
}

.summary-content .price {
  margin-bottom: 20px;
}

.xs-add-to-chart-form {
  margin-bottom: 30px;
}

.xs-add-to-chart-form .xs_input_number {
  display: inline-block;
  float: left;
}

.xs-add-to-chart-form .w-quantity-btn {
  text-align: right;
}

.xs-wishlist-and-compare {
  width: 52px;
  height: 52px;
  line-height: 52px;
  display: inline-block;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  color: #999999;
  font-size: 1.14286em;
  text-align: center;
}

.xs-brand-section {
  padding: 80px 0;
}

.xs-brand-section.brand-bg-version {
  background-color: #ea1a25;
  border-top: 0px;
}

.xs-brand-content li {
  min-width: calc(100% / 5);
  float: left;
  text-align: center;
}

.xs-brand-content li a {
  display: inline-block;
  opacity: .5;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-brand-content li a:hover {
  opacity: 1;
}

.xs-brand-content.version-2 li {
  min-width: calc(100% / 6);
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.xs-brand-content.version-2 li a {
  opacity: 1;
}

.xs-brand-content.version-3 li {
  min-width: calc(100% / 6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 116px;
}

.xs-brand-content.version-3 li a {
  opacity: 1;
}

.xs-newsLetter-section {
  padding: 90px 0;
}

.xs-newsLetter-section.newsLetter-bg-image {
  color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.xs-newsLetter-section.version-gradient {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#effde9), to(#dffff6));
  background-image: linear-gradient(to top, #effde9 0%, #dffff6 100%);
}

.xs-newsLetter-section.version-gradient .newsletter-content i {
  color: #ea1a25;
}

.xs-newsLetter-section.version-gradient .xs-newsletter input:not([type="submit"]) {
  border-color: #ff6251;
  background-color: transparent;
}

.xs-newsLetter-section.version-gradient .xs-newsletter input:not([type="submit"])::-webkit-input-placeholder {
  color: #222;
  font-size: 1em;
}

.xs-newsLetter-section.version-gradient .xs-newsletter input:not([type="submit"])::-moz-placeholder {
  color: #222;
  font-size: 1em;
}

.xs-newsLetter-section.version-gradient .xs-newsletter input:not([type="submit"]):-ms-input-placeholder {
  color: #222;
  font-size: 1em;
}

.xs-newsLetter-section.version-gradient .xs-newsletter input:not([type="submit"]):-moz-placeholder {
  color: #222;
  font-size: 1em;
}

.xs-newsLetter-section.version-gradient .xs-newsletter input[type="submit"] {
  background-color: #ff6251;
}

.xs-newsletter-sub-title {
  font-size: 1.57143em;
  font-weight: 300;
  margin-bottom: 15px;
}

.xs-newsletter-title {
  font-size: 2.57143em;
  font-weight: 500;
  margin-bottom: 15px;
}

.xs-newsletter-content p {
  color: #84a6ff;
  margin-bottom: 25px;
}

.xs-newsletter-content .xs-newsletter {
  margin-right: 90px;
}

.xs-newsletter {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.xs-newsletter input:not([type="submit"]) {
  width: 100%;
  display: block;
  float: left;
  background-color: #ea1a25;
  border: 2px solid rgba(0, 0, 0, 0.1);
  padding-left: 30px;
}

.xs-newsletter input[type="submit"] {
  border: 0;
  background-color: #ea1a25;
  letter-spacing: .3px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.85714em;
  color: #FFFFFF;
  padding: 0 50px;
  display: inline-block;
  float: right;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-newsletter input:not([type="submit"]),
.xs-newsletter input[type="submit"] {
  height: 60px;
}

.xs-newsletter.round {
  height: 60px;
}

.xs-newsletter.round input:not([type="submit"]) {
  border-radius: 30px;
  width: 100%;
}

.xs-newsletter.round input[type="submit"] {
  height: calc(100% - 14px);
  border-radius: 25px;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 4.1;
}

.xs-newsletter.round input[type="submit"]:hover {
  background-color: #222;
}

.xs-newsletter ::-webkit-input-placeholder {
  color: #84acff;
  font-size: 1.14286em;
}

.xs-newsletter ::-moz-placeholder {
  color: #84acff;
  font-size: 1.14286em;
}

.xs-newsletter :-ms-input-placeholder {
  color: #84acff;
  font-size: 1.14286em;
}

.xs-newsletter :-moz-placeholder {
  color: #84acff;
  font-size: 1.14286em;
}

.xs-newsletter.newsLetter-v2 input:not([type="submit"]) {
  border-color: #e7e7e7;
  border-radius: 4px 0 0 4px;
  border-right: 0;
  background-color: #FFFFFF;
}

.xs-newsletter.newsLetter-v2 input[type="submit"] {
  background-color: #ea1a25;
  border-radius: 0 4px 4px 0;
}

.xs-newsletter.newsLetter-v2 input[type="submit"]:hover {
  background-color: #ea1a25;
}

.xs-newsletter.newsLetter-v2 input:not([type="submit"]),
.xs-newsletter.newsLetter-v2 input[type="submit"] {
  height: 52px !important;
}

.xs-newsletter.newsLetter-v2 ::-webkit-input-placeholder {
  color: #c9c9c9;
  font-size: 1em;
}

.xs-newsletter.newsLetter-v2 ::-moz-placeholder {
  color: #c9c9c9;
  font-size: 1em;
}

.xs-newsletter.newsLetter-v2 :-ms-input-placeholder {
  color: #c9c9c9;
  font-size: 1em;
}

.xs-newsletter.newsLetter-v2 :-moz-placeholder {
  color: #c9c9c9;
  font-size: 1em;
}

.xs-newsletter.newsLetter-v2 label {
  position: absolute;
  top: -20px;
  left: 0;
  margin-bottom: 0;
}

.xs-newsletter.newsLetter-v3 input:not([type="submit"]) {
  border: 1px solid #e7e7e7;
  border-right: 0;
  background-color: #FFFFFF;
  border-radius: 25px 0 0 25px;
}

.xs-newsletter.newsLetter-v3 input:not([type="submit"]),
.xs-newsletter.newsLetter-v3 input[type="submit"] {
  height: 52px;
}

.xs-newsletter.newsLetter-v3 input[type="submit"] {
  background-color: #333e48;
  font-size: 1em;
  padding: 0 35px;
  border-radius: 0 25px 25px 0;
}

.xs-newsletter.newsLetter-v3 ::-webkit-input-placeholder {
  color: #c9c9c9;
  font-size: 1em;
}

.xs-newsletter.newsLetter-v3 ::-moz-placeholder {
  color: #c9c9c9;
  font-size: 1em;
}

.xs-newsletter.newsLetter-v3 :-ms-input-placeholder {
  color: #c9c9c9;
  font-size: 1em;
}

.xs-newsletter.newsLetter-v3 :-moz-placeholder {
  color: #c9c9c9;
  font-size: 1em;
}

label[for="xs-newsletter-email"] {
  display: block;
  position: absolute;
  top: -30px;
  margin-bottom: 0;
  left: 0;
}

.newsletter-content {
  width: 100%;
}

.newsletter-content i {
  color: #ea1a25;
  font-size: 3.57143em;
}

.newsletter-content .newsletter-title {
  font-size: 1.85714em;
  font-weight: 400;
  letter-spacing: -.3px;
}

.newsletter-content p {
  color: #777777;
  margin-bottom: 0;
}

.xs-featureList-section {
  padding-top: 30px;
}

.xs-feature-list {
  border: 1px solid #eaeaea;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.xs-feature-list li {
  width: 20%;
  padding: 30px;
  border-right: 1px solid #eaeaea;
}

.xs-feature-list li:last-child {
  border-right: 0;
}

.xs-feature-list.vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 10px;
}

.xs-feature-list.vertical li {
  width: 100%;
  padding: 0px;
  border-right: 0px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.xs-feature-list.vertical li:last-child {
  border-bottom: 0px solid #eaeaea;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.xs-feature-list.vertical .xs-feature-text h4 {
  font-weight: 500;
  font-size: 1em;
}

.xs-feature-list.vertical .xs-feature-text span {
  font-size: .9em;
}

.xs-feature i {
  font-size: 34px;
  color: #ea1a25;
}

.xs-feature-text h4 {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -.3px;
}

.xs-feature-text span {
  color: #626060;
  font-size: 12px;
}

.xs-content-header.background-version {
  background-color: #ea1a25;
  border-bottom: 0;
  padding: 18px 30px;
  border-radius: 4px 4px 0 0;
  margin-bottom: 0;
}

.xs-content-header.background-version .xs-content-title {
  margin-top: 0;
  font-size: 1.28571em;
}

.xs-content-header.background-version .xs-custom-nav a {
  color: #FFFFFF;
}

.xs-deal-of-the-week {
  border: 2px solid #ea1a25;
  border-top: 0;
  border-radius: 0 0 4px 4px;
}

.xs-deal-blocks {
  padding-bottom: 28px;
}

.xs-deal-blocks img {
  margin: 0 auto 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-deal-blocks:hover img {
  opacity: .7;
}

.xs-deal-blocks hr {
  border-color: #f4f4f4;
  margin-bottom: 30px;
  margin-top: 0;
}

.xs-deal-blocks .xs-countdown-timer {
  padding: 0 75px;
}

.xs-deals-info {
  padding: 0 28px;
  margin-bottom: 40px;
}

.xs-deals-info .price {
  font-size: 1.71429em;
}

.xs-deals-info .xs-product-offer-label {
  width: 70px;
  height: 70px;
  float: right;
}

.xs-deals-info .product-title {
  margin-bottom: 0;
}

.xs-deals-info .media {
  margin-bottom: 40px;
}

.xs-deal-stock-limit {
  margin-bottom: 10px;
}

.xs-deal-stock-limit .product-sold {
  float: left;
}

.xs-deal-stock-limit .product-available {
  float: right;
}

.product-sold,
.product-available {
  font-size: 0.85714em;
}

.xs-progress {
  height: 10px;
  background-color: #f5f5f5;
  border-radius: 5px;
}

.xs-progress .progress-bar {
  background-color: #ea1a25;
  border-radius: 5px;
}

.countdow-timer h4 {
  font-size: 1em;
  color: #777777;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
}

.countdow-timer h4 span {
  font-weight: 500;
  font-size: 1.28571em;
}

.deal-of-the-week-v2 .background-version {
  background-color: transparent;
  border: 2px solid #ea1a25;
  border-bottom: 0px solid #000;
  position: relative;
}

.deal-of-the-week-v2 .background-version::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 1px;
  width: calc(100% - 64px);
  background-color: #f4f4f4;
}

.deal-of-the-week-v2 .background-version .xs-content-title {
  color: #222;
}

.deal-of-the-week-v2 .background-version .xs-custom-nav a {
  color: #b2b2b2;
}

.deal-of-the-week-v2 .price {
  color: #ea1a25;
  font-weight: 300;
}

.deal-of-the-week-v2 .xs-progress .progress-bar {
  background-color: #ea1a25;
}

.xs-deal-blocks.deal-block-v2 {
  position: relative;
  background-color: #FFFFFF;
  border-right: 1px solid #ededed;
}

.xs-deal-blocks.deal-block-v2 .xs-product-offer-label {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
}

.xs-deal-blocks.deal-block-v2 .xs-product-offer-label span {
  font-size: 1.28571em;
}

.xs-deal-blocks.deal-block-v2 .price {
  color: #ea1a25;
}

.xs-deal-blocks.deal-block-v2 .title-and-price {
  text-align: center;
  margin-bottom: 20px;
}

.xs-deal-blocks.deal-block-v2 .xs-deals-info {
  margin-bottom: 30px;
}

.xs-deal-blocks.deal-block-v2 hr {
  width: calc(100% - 56px);
}

.tab-pane .row [class^="col-"]:last-child .deal-block-v2 {
  border-right: 0px solid #000;
}

.xs-banner-offer {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 0px;
}

.xs-banner-offer,
.xs-offer-text {
  min-height: 363px;
  max-height: 363px;
}

.xs-offer-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 20px;
}

.xs-offer-text h2 {
  font-weight: 300;
  font-size: 2.85714em;
  margin-bottom: 5px;
}

.xs-offer-text h3 {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 2.5em;
}

.xs-offer-product-img {
  margin-top: -28px;
  text-align: right;
}

.small-offer-banner {
  background-color: #f7f7f7;
  padding: 30px;
  max-height: 250px;
  min-height: 250px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.small-offer-banner:hover {
  -webkit-box-shadow: 0px 2px 20px 0px rgba(144, 144, 144, 0.2);
  box-shadow: 0px 2px 20px 0px rgba(144, 144, 144, 0.2);
}

.small-offer-banner .media-body {
  position: relative;
  top: 63px;
  left: 10px;
}

.small-offer-banner .media-body img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.small-offer-banner:hover .media-body img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.small-offer-banner.offer-banner-v2 h2,
.small-offer-banner.offer-banner-v2 h3 {
  font-size: 1.71429em;
  letter-spacing: -.3px;
}

.small-offer-banner.offer-banner-v2 h2 {
  font-weight: 300;
  margin-bottom: 0px;
}

.small-offer-banner.offer-banner-v2 h3 {
  font-weight: 700;
  margin-bottom: 20px;
}

.small-offer-banner.offer-banner-v2 .media-body {
  top: 33px;
}

.small-offer-banner.offer-banner-v3 h2 {
  font-weight: 300;
  color: #ea1a25;
  font-size: 1.28571em;
  margin-bottom: 10px;
}

.small-offer-banner.offer-banner-v3 h3 {
  font-size: 2em;
  font-weight: 300;
}

.small-offer-banner.offer-banner-v3 h3 span {
  font-weight: 700;
}

.small-offer-banner.offer-banner-v3 .media-body {
  top: 80px;
}

.small-offer-banner.offer-banner-v3 .offer-banner-content {
  max-width: 60%;
}

.offer-banner-content {
  max-width: 60%;
}

.offer-banner-content .product-categories {
  font-size: 1.28571em;
  margin-bottom: 10px;
  display: block;
}

.offer-banner-content .product-categories a {
  color: #74a8e5;
}

.offer-banner-content h3 {
  font-size: 2.14286em;
  font-weight: 700;
  margin-bottom: 19px;
}

.small-offer-banner-v2 .small-offer-banner {
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
  margin-bottom: 20px;
  min-height: 277px;
}

.small-offer-banner-v2 .small-offer-banner:last-child {
  margin-bottom: 0;
}

.small-offer-banner-v2 .offer-banner-content {
  max-width: 65%;
}

.small-offer-banner-v2 .offer-banner-content p {
  color: #ea1a25;
  margin-bottom: 8px;
}

.small-offer-banner-v2 .offer-banner-content h3 {
  font-size: 1.28571em;
  font-weight: 300;
}

.small-offer-banner-v2 .offer-banner-content h3 span {
  font-weight: 500;
  display: block;
}

.xs-single-news {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-single-news:hover {
  -webkit-box-shadow: 0px 2px 20px 0px rgba(144, 144, 144, 0.2);
  box-shadow: 0px 2px 20px 0px rgba(144, 144, 144, 0.2);
}

.xs-news-content {
  padding: 30px;
  background-color: #FFFFFF;
}

.tags-links a {
  color: #ea1a25;
}

.entry-meta {
  margin-bottom: 15px;
}

.entry-title {
  font-size: 1.28571em;
  line-height: 1.5;
  letter-spacing: -.3px;
  margin-bottom: 20px;
}

.entry-title a {
  color: #222;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.entry-title a:hover {
  color: #ea1a25;
}

.post-meta {
  color: #999999;
}

.post-meta span {
  margin-right: 30px;
}

.post-meta span:last-child {
  margin-right: 0;
}

.post-meta i {
  font-size: 1.14286em;
  padding-right: 8px;
  position: relative;
  top: 3px;
}

.post-meta a {
  font-size: 0.71429em;
  color: inherit;
  display: inline-block;
}

.version-border .xs-news-content {
  border: 2px solid #f4f4f4;
  border-top: 0px;
}

.xs-nav-tab-v2 {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 0px;
  margin-bottom: 40px;
}

.xs-nav-tab-v2 .nav-item {
  margin-bottom: 0;
}

.xs-nav-tab-v2 .nav-link {
  border: 2px solid #f1f1f1;
  padding: 16px 50px;
  line-height: 1;
  border-radius: 25px;
  font-size: 0.85714em;
  font-weight: 700;
  color: #666666;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-nav-tab-v2 .nav-link.active,
.xs-nav-tab-v2 .nav-link:hover {
  border-color: transparent;
  background-color: #ea1a25;
  color: #FFFFFF;
}

.xs-nav-tab-v2 .nav-filter-img {
  min-height: 173px;
  max-width: 268px;
}

.xs-organic-product-thumb {
  background: #f7f6f2;
  background: -webkit-gradient(linear, left top, left bottom, from(#f7f6f2), color-stop(60%, #f7f6f2), color-stop(60%, #fff), to(#fff));
  background: linear-gradient(to bottom, #f7f6f2 0%, #f7f6f2 60%, #fff 60%, #fff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f6f2', endColorstr='#ffffff', GradientType=0);
  border-radius: 4px;
  padding: 30px 30px 40px;
  position: relative;
  text-align: center;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  margin-bottom: 30px;
}

.xs-organic-product-thumb::before {
  position: absolute;
  content: "";
  top: calc(60% - 42px);
  left: 0;
  background-image: url(/images/curve.png?02599980d79c1e32f2679fe76582512a);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 42px;
  z-index: -1;
}

.xs-organic-product-thumb .xs-product-header {
  text-align: left;
}

.xs-organic-product-thumb .product-item-meta,
.xs-organic-product-thumb .hover-box {
  opacity: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-organic-product-thumb .product-item-meta {
  top: -25px;
}

.xs-organic-product-thumb .hover-box {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  bottom: -20px;
}

.xs-organic-product-thumb .product-thumb {
  margin: 30px 0;
  min-height: 197px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.xs-organic-product-thumb .xs-product-header,
.xs-organic-product-thumb .content-box {
  top: 0;
  opacity: 1;
  visibility: visible;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-organic-product-thumb .content-box {
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-organic-product-thumb:hover {
  -webkit-box-shadow: 0px 2px 6px 0px rgba(168, 168, 168, 0.2);
  box-shadow: 0px 2px 6px 0px rgba(168, 168, 168, 0.2);
}

.xs-organic-product-thumb:hover .xs-product-header,
.xs-organic-product-thumb:hover .content-box {
  top: -20px;
  opacity: 0;
  visibility: hidden;
}

.xs-organic-product-thumb:hover .product-item-meta,
.xs-organic-product-thumb:hover .hover-box {
  opacity: 1;
  visibility: visible;
}

.xs-organic-product-thumb:hover .product-item-meta {
  top: 30px;
}

.xs-organic-product-thumb:hover .hover-box {
  bottom: 40px;
}

.xs-organic-product-thumb .product-title a:hover {
  color: #ff6251;
}

.xs-organic-product-thumb .price {
  font-size: 1.14286em;
}

.xs-organic-product-widget {
  padding: 40px;
  position: relative;
  background-color: #62ab00;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-bottom: 30px;
}

.xs-organic-product-widget:hover {
  -webkit-box-shadow: 0px 2px 20px 0px rgba(144, 144, 144, 0.2);
  box-shadow: 0px 2px 20px 0px rgba(144, 144, 144, 0.2);
}

.xs-organic-product-widget::before {
  position: absolute;
  content: "";
  top: -50px;
  left: -170px;
  height: 393px;
  width: 393px;
  background-color: #fafafa;
  border-radius: 100%;
  z-index: -1;
  border-right: 12.5px solid;
  border-top: 40px solid;
  border-color: #62ab00;
}

.xs-organic-product-widget.red-version {
  background-color: #ff6251;
}

.xs-organic-product-widget.red-version::before {
  border-color: #ff6251;
}

.xs-organic-product-widget .product-thumb {
  min-height: 197px;
}

.organic-widget-content {
  padding-left: 30px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  color: #FFFFFF;
}

.organic-widget-content h4 {
  font-family: 'Pacifico', cursive;
  font-size: 1.85714em;
  margin-bottom: 5px;
}

.organic-widget-content h5 {
  font-weight: 700;
  font-size: 2.28571em;
  margin-bottom: 25px;
}

.xs-organic-widget-highlight {
  padding: 40px;
  display: block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-organic-widget-highlight:hover {
  -webkit-box-shadow: 0px 2px 20px 0px rgba(144, 144, 144, 0.2);
  box-shadow: 0px 2px 20px 0px rgba(144, 144, 144, 0.2);
}

.xs-deal-of-the-day-organic {
  position: relative;
  padding: 110px 0;
  z-index: 1;
}

.xs-deal-of-the-day-organic .xs-gradient {
  z-index: -2;
}

.xs-deal-of-the-day-organic .xs-watermark-text {
  top: 50%;
  bottom: inherit;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 10.71429em;
  color: #e2f6e5;
  z-index: -1;
}

.xs-organic-info-content {
  position: relative;
  z-index: 2;
}

.xs-organic-info-content .organic-info-title {
  margin-bottom: 30px;
}

.xs-organic-info-content p {
  color: #666666;
  margin-bottom: 25px;
}

.xs-organic-info-content .btn:not(.btn-outline-success) {
  padding: 18px 60px;
}

.organic-info-subtitle {
  color: #7fbb00;
  font-family: 'Pacifico', cursive;
  font-size: 2.28571em;
  font-weight: 400;
  margin-bottom: 10px;
}

.organic-info-title {
  font-weight: 700;
  font-size: 3.71429em;
}

.xs-organic-featured-item-section {
  position: relative;
  padding: 100px 0;
}

.xs-organic-featured-item-section .xs-watermark-text {
  z-index: -1;
  top: 50%;
  bottom: inherit;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 17.14286em;
  color: #e2f6e5;
}

.xs-organic-featured-item-section .xs-gradient {
  z-index: -2;
}

.xs-organic-feature-product {
  position: relative;
  z-index: 2;
}

.xs-organic-feature-product .xs-popover-wraper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 68%;
}

.xs-organic-feature-product .xs-popover-wraper .btn {
  position: relative;
}

.xs-organic-feature-product .xs-popover-wraper .btn:last-child {
  float: right;
  top: 90px;
}

.xs-funfact-section {
  padding-top: 200px;
  padding-bottom: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.xs-single-fun-fact {
  color: #FFFFFF;
}

.xs-single-fun-fact i {
  font-size: 4.28571em;
  padding-right: 20px;
}

.xs-single-fun-fact h4 {
  font-size: 1.28571em;
  font-family: 'Pacifico', cursive;
  margin-bottom: 5px;
}

.xs-single-fun-fact p {
  font-size: 2.28571em;
  font-weight: 500;
  margin-bottom: 0;
}

.xs-recent-product-wraper {
  background-color: #ebf1f1;
  border-radius: 4px;
  padding: 50px;
  text-align: center;
}

.xs-recent-product-wraper .xs-content-title {
  margin-bottom: 30px;
}

.recent-view-slider a {
  display: block;
  position: relative;
  overflow: hidden;
}

.recent-view-slider a:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.recent-view-slider img {
  border-radius: 4px;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0, 0, 0.44, 1.18);
  transition: -webkit-transform 0.6s cubic-bezier(0, 0, 0.44, 1.18);
  transition: transform 0.6s cubic-bezier(0, 0, 0.44, 1.18);
  transition: transform 0.6s cubic-bezier(0, 0, 0.44, 1.18), -webkit-transform 0.6s cubic-bezier(0, 0, 0.44, 1.18);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.xs-gadget-thumb-feature {
  margin-top: 75px;
  position: relative;
  padding-top: 100px;
  padding-bottom: 70px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.xs-gadget-thumb-feature .xs-overlay {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#f8f8f8), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(0deg, #f8f8f8 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.xs-gadget-thumb-feature .xs-content-header {
  position: relative;
  z-index: 3;
}

.xs-gadget-thumb-feature .xs-content-header .xs-content-title {
  padding-top: 10px;
}

.product-thumb-feature {
  position: relative;
  z-index: 2;
}

.product-thumb-feature .xs-product-widget {
  border: 0;
  margin-bottom: 30px;
}

.product-thumb-feature .xs-product-widget:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.product-thumb-feature .xs-product-widget img {
  padding-left: 20px;
}

.product-thumb-feature .xs-product-header {
  margin-bottom: 20px;
}

.product-thumb-feature .price {
  margin-bottom: 15px;
  display: block;
}

.product-thumb-feature .product-widget-content .btn {
  margin-bottom: 10px;
}

.product-thumb-feature .xs-btn-wraper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.product-thumb-feature .xs-btn-wraper .btn:not([data-toggle="popover"]) {
  max-width: 180px;
}

.shopify-challenge__container {
  margin-top: 40px;
}

#contact_form .errors {
  background: #fafafa;
  padding: 13px 25px;
  border-radius: 3px;
  margin-bottom: 15px;
  color: #0063d1;
  width: 100%;
}

#contact_form .form-success {
  background: #ea1a25;
  padding: 13px 25px;
  border-radius: 3px;
  margin-bottom: 15px;
  color: #fff;
}

.xs-breadcumb {
  background-color: #f9f9f9;
  padding: 29px 0;
  min-height: 80px;
}

.xs-breadcumb .breadcrumb {
  background-color: inherit;
  padding: 0;
  margin-bottom: 0;
}

.xs-breadcumb .breadcrumb-item {
  margin-right: 25px;
}

.xs-breadcumb .breadcrumb-item a {
  color: #222;
  margin-left: 25px;
}

.xs-breadcumb .breadcrumb-item::before {
  padding: 0 10px;
}

.xs-breadcumb .breadcrumb-item+.breadcrumb-item::before {
  content: '>';
  color: #777777;
}

.xs-breadcumb .breadcrumb-item+.breadcrumb-item a {
  color: #777777;
}

.xs-breadcumb .breadcrumb-item:nth-child(2):before {
  color: #222;
}

.xs-breadcumb .breadcrumb-item.active {
  margin-right: 0;
  color: #222;
}

.xs-breadcumb .breadcrumb-item.active::before {
  margin-right: 25px;
}

.xs-breadcumb .breadcrumb-item:first-child a {
  margin-left: 0;
}

.sync-slider-thumb .item {
  border: 1px solid #d7d7d7;
}

.sync-slider-thumb .item img {
  margin: 0 auto;
}

.sync-slider-preview {
  margin-bottom: 20px;
}

.xs-sync-slider-preview {
  position: relative;
}

.xs-sync-slider-preview .xs-social-tigger {
  position: absolute;
  left: -85px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

.single-product-summary .xs-list {
  margin-bottom: 24px;
}

.single-product-summary .price {
  margin-bottom: 25px;
}

.single-product-summary .xs-add-to-chart-form {
  max-width: 95%;
}

.table.list-group {
  margin-bottom: 40px;
}

.table.list-group li {
  padding: 20px 0;
  color: #777777;
  border: 0px;
  z-index: 1;
  border-bottom: 2px solid #f1f1f1;
}

.table.list-group li span {
  color: #222;
}

.table.list-group li:last-child {
  border-bottom: 0px;
}

.line-separetor-title-wraper {
  position: relative;
  text-align: center;
  z-index: 1;
  margin-bottom: 35px;
}

.line-separetor-title-wraper::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 2px;
  width: 100%;
  background-color: #f1f1f1;
  z-index: -1;
}

.line-separetor-title-wraper .line-separetor-title {
  font-size: 2.28571em;
  font-weight: 500;
  margin-bottom: 0;
  padding: 0 21px;
  display: inline-block;
  background-color: #FFFFFF;
}

.single-product-info-details {
  text-align: center;
  margin-bottom: 60px;
}

.single-product-info-details img {
  padding: 0 30px;
  margin-bottom: 45px;
}

.single-product-info-details h4 {
  font-size: 1.57143em;
  margin-bottom: 20px;
}

.single-product-info-details p {
  margin-bottom: 0;
  line-height: 1.7;
}

.help-tip {
  text-align: center;
  background-color: #ea1a25;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 26px;
  cursor: default;
  display: inline-block;
  z-index: 9;
  position: relative;
}

.help-tip::before {
  content: '?';
  font-weight: bold;
  color: #fff;
}

.help-tip:hover .help-tip-text {
  display: block;
  -webkit-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
  -webkit-animation: fadeIn 0.3s ease-in-out;
  animation: fadeIn 0.3s ease-in-out;
}

.help-tip .help-tip-text {
  display: none;
  text-align: left;
  background-color: #1E2021;
  padding: 20px;
  min-width: 300px;
  position: absolute;
  border-radius: 3px;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  right: -4px;
  color: #FFF;
  margin-bottom: 0;
  margin-top: 8px;
  pointer-events: none;
  font-weight: 400;
}

.help-tip .help-tip-text::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-bottom-color: #1E2021;
  right: 10px;
  top: -12px;
}

.help-tip .help-tip-text::after {
  width: 100%;
  height: 40px;
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }

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

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 100%;
  }
}

.shipping-table thead th {
  background-color: #E6E6E6;
  border: 0;
  position: relative;
}

.shipping-table tbody td del,
.shipping-table tbody td mark {
  color: #dc3545;
}

.shipping-table tbody td span {
  display: block;
}

.shipping-table tbody td mark {
  padding: 0;
  background-color: transparent;
}

.caption-title {
  margin-bottom: 30px;
}

.seller-detail {
  padding: 40px;
  margin-bottom: 30px;
}

.seller-detail:last-child {
  margin-bottom: 0;
}

.seller-detail h5 {
  margin-bottom: 30px;
  padding-right: 15px;
}

.seller-detail p {
  margin-bottom: 0;
}

.xs-contact-form .h3 {
  color: #222;
  margin-bottom: 16px;
  line-height: 1;
  font-size: 1em;
}

.xs-contact-form input:not([type="submit"]),
.xs-contact-form textarea {
  border-color: #CCDCFE;
  height: 52px;
  border-radius: 0;
  padding: 0 19px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-contact-form input:not([type="submit"]):focus,
.xs-contact-form textarea:focus {
  border-color: #222;
}

.xs-contact-form textarea {
  resize: none;
  padding: 19px;
  height: 122px;
}

.xs-contact-form .form-group {
  margin-bottom: 30px;
}

.xs-contact-form input[type="submit"]:hover {
  background-color: #ea1a25;
}

.contact-form .h3 {
  color: #222;
  margin-bottom: 16px;
  line-height: 1;
  font-size: 1em;
}

.contact-form input:not([type="submit"]),
.contact-form textarea {
  border-color: #CCDCFE;
  height: 52px;
  border-radius: 0;
  padding: 0 19px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.contact-form input:not([type="submit"]):focus,
.contact-form textarea:focus {
  border-color: #222;
}

.contact-form textarea {
  resize: none;
  padding: 19px;
  height: 122px;
}

.contact-form .form-group {
  margin-bottom: 30px;
}

.contact-form input[type="submit"]:hover {
  background-color: #ea1a25;
}

.xs-blog-post-details {
  margin-bottom: 40px;
}

.xs-blog-post-details .post-media {
  position: relative;
}

.xs-blog-post-details .post-media img {
  width: 100%;
  display: block;
}

.xs-blog-post-details .post-body {
  border: 1px solid #f1f1f1;
  background: 0 0;
  padding: 40px;
}

.xs-blog-post-details .post-meta {
  margin-bottom: 20px;
  line-height: 1;
}

.xs-blog-post-details .post-meta.row {
  margin-right: 0;
  margin-left: 0;
}

.xs-blog-post-details .entry-content {
  margin-bottom: 40px;
}

.xs-blog-post-details .entry-content p {
  margin-bottom: 30px;
  color: #615f5f;
  line-height: 2;
}

.xs-blog-post-details .xs-unorder-list li:before {
  font-size: 0.71429em;
  top: 0;
  line-height: 1;
  margin-top: 7px;
  color: #ea1a25;
}

.xs-blog-post-details .xs-post-footer .post-meta {
  margin-bottom: 0;
}

.xs-blog-post-details .post-video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.xs-blog-post-details iframe {
  /*height: 166px;*/
  width: 100%;
}

.entry-content blockquote {
  margin-bottom: 30px;
  padding: 30px 40px;
  border-left: 0px solid #dadada;
  color: #FFFFFF;
  background: #ea1a25;
  z-index: 1;
  border-radius: 3px;
  margin-left: 0px;
  font-size: 1.07143em;
  position: relative;
}

.entry-content blockquote:before {
  position: absolute;
  content: "\F10D";
  font-family: "FontAwesome";
  left: 0;
  color: rgba(255, 255, 255, 0.18);
  font-size: 6.14286em;
  z-index: -1;
  line-height: 1;
  top: -8px;
  -webkit-transform: none;
  transform: none;
}

.entry-content .blockquote-footer {
  color: #FFFFFF;
  padding: 20px 20px 0;
}

.xs-post-meta-list {
  line-height: 1;
}

.xs-post-meta-list span {
  color: #222;
  margin-right: 15px;
  padding-right: 15px;
  font-size: 0.85714em;
  border-right: 1px solid #999999;
}

.xs-post-meta-list span:last-child {
  margin-right: 0;
  border-right: 0;
  padding-right: 0;
}

.xs-post-meta-list span a {
  color: #222;
  font-size: 1em;
}

.xs-post-meta-list span a:hover {
  color: #ea1a25;
}

.xs-post-meta-list span i {
  padding-right: 8px;
  color: #999999;
  top: 0px;
}

.xs-post-meta-list.color-white span,
.xs-post-meta-list.color-white a,
.xs-post-meta-list.color-white a:hover {
  color: #FFFFFF;
}

.xs-post-meta-list .xs-post-meta-date .color-white {
  color: #FFFFFF;
}

.xs-post-entry-title {
  font-size: 1.85714em;
  line-height: 1.4;
}

.xs-post-entry-title a {
  display: block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: #222;
  font-weight: 700;
}

.xs-post-entry-title a:hover {
  color: #ea1a25;
}

.entry-sub-title {
  font-size: 1.28571em;
  font-weight: 700;
  margin-bottom: 30px;
  color: #222;
}

.post-author .xs-round-avatar {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  position: relative;
  overflow: hidden;
}

.xs-author-block,
.post-navigation {
  border: 1px solid #dadada;
  padding: 25px;
  margin: 20px 0;
}

.post-navigation {
  padding: 40px;
}

.post-navigation .nav-links {
  border-right: 1px solid #dadada;
}

.post-navigation .nav-links:last-child {
  border-right: 0;
}

.xs-post-footer {
  padding: 40px 0 20px;
}

.xs-post-footer .post-tags,
.xs-post-footer .post-author,
.xs-author-block .post-tags,
.xs-author-block .post-author {
  text-align: left;
  float: left;
  width: 50%;
}

.xs-post-footer .share-items,
.xs-post-footer .post-content,
.xs-author-block .share-items,
.xs-author-block .post-content {
  text-align: right;
  float: right;
  width: 50%;
}

.xs-post-footer .post-author,
.xs-author-block .post-author {
  padding-right: 18px;
  line-height: 1;
}

.xs-post-footer .post-author .xs-round-avatar,
.xs-author-block .post-author .xs-round-avatar {
  margin-right: 0px;
}

.xs-post-footer .post-author .xs-post-author-details,
.xs-author-block .post-author .xs-post-author-details {
  padding-left: 15px;
  width: calc(100% - 90px);
}

.xs-post-footer .post-content,
.xs-author-block .post-content {
  color: #7A7A7A;
  text-align: left;
}

.xs-post-sub-heading {
  color: #222;
  font-weight: 600;
  font-size: 1em;
  margin-bottom: 20px;
}

.xs-blog-post-tag a {
  display: inline-block;
  color: #7A7A7A;
  font-size: 0.85714em;
  text-transform: capitalize;
  padding: 14px 20px;
  margin-right: 7px;
  margin-bottom: 10px;
  border-radius: 20px;
  border: 1px solid #F1F1F1;
  line-height: 1;
}

.xs-blog-post-tag a:hover {
  color: #ea1a25;
  border-color: currentColor;
}

.xs-post-author-details a {
  font-size: 1.14286em;
  font-weight: 600;
  display: block;
  color: #222;
  margin-bottom: 5px;
}

.xs-post-author-details em {
  color: #B1B1B1;
  font-size: 0.85714em;
  display: inline-block;
  margin-bottom: 15px;
}

.xs-post-author-details em i {
  padding-right: 5px;
  color: #ea1a25;
}

.xs-post-author-details .xs-separetor {
  background-color: #F1F1F1;
  margin-bottom: 15px;
  margin-top: 0px;
}

.xs-post-author-details .post-content {
  color: #7A7A7A;
}

.post-navigation a {
  display: inline-block;
}

.post-navigation a span {
  color: #7A7A7A;
  font-size: 0.85714em;
  text-transform: capitalize;
}

.post-navigation a h5 {
  text-transform: capitalize;
  color: #222;
  font-size: 1.28571em;
  font-weight: 700;
  margin-bottom: 10px;
}

.post-navigation a.prev span i {
  padding-right: 10px;
}

.post-navigation a.next span i {
  padding-left: 10px;
}

.xs-blog-post-comment .comments-title {
  color: #222;
  font-weight: 700;
  font-size: 1.28571em;
  margin-bottom: 40px;
}

.xs-blog-post-comment .comment-list {
  padding: 0;
  margin-bottom: 30px;
}

.xs-blog-post-comment .comment-meta .comment-author {
  display: table;
}

.xs-blog-post-comment .comment-meta .comment-author img {
  width: 90px;
  height: 90px;
  border-radius: 100%;
}

.xs-blog-post-comment .comment-meta .comment-author b {
  display: table-cell;
  vertical-align: top;
  color: #222;
  font-size: 1.14286em;
  font-weight: 600;
}

.xs-blog-post-comment .comment-meta .comment-metadata {
  margin-left: 90px;
  margin-top: -63px;
  margin-bottom: 71px;
}

.xs-blog-post-comment .comment-meta .comment-metadata a {
  font-style: italic;
  color: #B1B1B1;
  font-size: 0.85714em;
}

.xs-blog-post-comment .comment-meta b,
.xs-blog-post-comment .comment-meta .comment-metadata {
  padding-left: 21px;
}

.xs-blog-post-comment .comment-content {
  padding-left: 110px;
  margin-top: -55px;
  margin-bottom: 40px;
  border-bottom: 1px solid #F1F1F1;
}

.xs-blog-post-comment .comment-content p {
  color: #7A7A7A;
  margin: 0;
  padding-bottom: 40px;
}

.xs-blog-post-comment .reply {
  text-align: right;
  margin-top: -30px;
  margin-bottom: 30px;
}

.xs-blog-post-comment .reply a {
  font-size: 0.85714em;
  color: #7A7A7A;
}

.xs-blog-post-comment .reply a i {
  padding-right: 7px;
}

.xs-blog-post-comment .children {
  padding-left: 109px;
}

.xs-blog-post-comment .comment-respond .comment-reply-title {
  font-size: 1.28571em;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
}

.xs-blog-post-comment .comment-respond input:not([type="submit"]),
.xs-blog-post-comment .comment-respond textarea {
  width: 100%;
  border: 1px solid #F1F1F1;
  height: 52px;
  padding: 0 20px;
  margin-bottom: 20px;
}

.xs-blog-post-comment .comment-respond textarea {
  padding: 20px;
  height: 142px;
  resize: none;
}

.xs-blog-post-comment .comment-respond .comment-form input[type="submit"] {
  background-color: #ea1a25;
  text-transform: uppercase;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 0.85714em;
  padding: 16px 40px;
  border-radius: 20px;
  letter-spacing: 1px;
  border: 0;
  line-height: 1;
  cursor: pointer;
}

.xs-blog-post-comment .comment-respond .form-submit {
  margin-bottom: 0;
  text-align: right;
}

.xs-blog-post-comment .comment-respond input::-webkit-input-placeholder,
.xs-blog-post-comment .comment-respond textarea::-webkit-input-placeholder {
  color: #7A7A7A;
  font-style: italic;
}

.xs-blog-post-comment .comment-respond input::-moz-placeholder,
.xs-blog-post-comment .comment-respond textarea::-moz-placeholder {
  color: #7A7A7A;
  font-style: italic;
}

.xs-blog-post-comment .comment-respond input:-ms-input-placeholder,
.xs-blog-post-comment .comment-respond textarea:-ms-input-placeholder {
  color: #7A7A7A;
  font-style: italic;
}

.xs-blog-post-comment .comment-respond input:-moz-placeholder,
.xs-blog-post-comment .comment-respond textarea:-moz-placeholder {
  color: #7A7A7A;
  font-style: italic;
}

.blog-post-list .xs-blog-post-details {
  margin-bottom: 50px;
}

.blog-post-list .xs-blog-post-details .entry-content {
  margin-bottom: 20px;
}

.blog-post-list .xs-blog-post-details .entry-content p {
  margin-bottom: 0;
}

.post-gallery-slider {
  position: relative;
}

.post-gallery-slider.owl-carousel .owl-item img {
  width: 100%;
}

.post-gallery-slider .owl-nav .owl-next,
.post-gallery-slider .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.post-gallery-slider .owl-nav .owl-next {
  left: 30px;
}

.post-gallery-slider .owl-nav .owl-prev {
  right: 30px;
}

.xs-serachForm {
  height: 58px;
}

.xs-serachForm input:not([type="submit"]) {
  height: 100%;
  border: 1px solid #F1F1F1;
  display: block;
  width: calc(100% - 64px);
  background-color: #FFFFFF;
  padding-left: 32px;
  float: left;
}

.xs-serachForm input[type="submit"] {
  height: 100%;
  width: 64px;
  background: #ea1a25 url(/images/search-icon.png?7d29827dd431639b2b536c073ab566a1);
  border: 0;
  border-radius: 0;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.xs-serachForm ::-webkit-input-placeholder {
  color: #B1B1B1;
  font-style: italic;
}

.xs-serachForm ::-moz-placeholder {
  color: #B1B1B1;
  font-style: italic;
}

.xs-serachForm :-ms-input-placeholder {
  color: #B1B1B1;
  font-style: italic;
}

.xs-serachForm :-moz-placeholder {
  color: #B1B1B1;
  font-style: italic;
}

.widget {
  margin-bottom: 40px;
}

.sidebar-right .widget {
  margin-left: 10px;
}

.xs-sidebar-widget .widget-title {
  font-size: 1.28571em;
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-weight: 500;
  border-bottom: 1px solid #f1f1f1;
}

.xs-sidebar-widget .xs-blog-post-tag a {
  margin-right: 4px;
}

.xs-recent-post-widget li {
  margin-bottom: 20px;
}

.xs-recent-post-widget li:last-child {
  margin-bottom: 0;
}

.xs-recent-post-widget .posts-thumb {
  margin-right: 20px;
}

.xs-recent-post-widget .posts-thumb a {
  display: block;
  position: relative;
  height: 100%;
}

.xs-recent-post-widget .xs-entry-date {
  position: absolute;
  top: 14px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
  height: 100%;
}

.xs-recent-post-widget .xs-entry-date span {
  font-size: 1.28571em;
  color: #FFFFFF;
  line-height: 1;
  text-transform: capitalize;
  font-weight: 600;
}

.xs-recent-post-widget .xs-entry-date .entry-date {
  margin-bottom: 5px;
}

.xs-recent-post-widget .post-info {
  padding-top: 13px;
  padding-bottom: 13px;
}

.xs-recent-post-widget .post-info .entry-title {
  font-size: 1.14286em;
  margin-bottom: 0;
}

.xs-recent-post-widget .post-info .entry-title a {
  color: #FFFFFF;
  display: inline-block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-recent-post-widget .post-info .entry-title a:hover {
  color: #ea1a25;
}

.xs-recent-post-widget .post-info .comments-link i {
  color: #ea1a25;
  padding-right: 5px;
}

.xs-recent-post-widget .post-info .comments-link a {
  color: #222;
}

.xs-sidebar-widget .xs-recent-post-widget .entry-title a {
  color: #ea1a25;
}

.xs-side-bar-list li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #F1F1F1;
}

.xs-side-bar-list li:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 0;
}

.xs-side-bar-list li a {
  display: table;
  width: 100%;
  color: #7A7A7A;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-side-bar-list li a span {
  display: table-cell;
  width: 50%;
}

.xs-side-bar-list li a span:first-child {
  /* text-align: left; */
}

.xs-side-bar-list li a span:last-child {
  /* text-align: right; */
}

.xs-side-bar-list li a:hover {
  color: #ea1a25;
}

.xs-side-bar-list li.active a {
  color: #ea1a25;
}

.xs-demoFeed li {
  float: left;
  width: 33.33333%;
  padding: 5px;
}

.xs-demoFeed li a {
  display: block;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.rate-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.rate-list li b {
  font-weight: 400;
  color: #aaaaaa;
  font-size: 0.85714em;
  padding-left: 5px;
}

.rate-list li:last-child {
  margin-bottom: 0;
}

.rate-list li .rate-title {
  width: 15%;
  line-height: 1;
  font-size: 0.85714em;
  margin-top: 1px;
}

.rate-list li .rate-graph {
  height: 10px;
  background-color: #f5f5f5;
  border-radius: 5px;
  display: block;
  width: 65%;
  position: relative;
  overflow: hidden;
}

.rate-list li .rate-graph .rate-graph-bar {
  background-color: #ea1a25;
  border-radius: 5px;
  display: block;
  height: 100%;
}

.rate-list li .star-rating {
  width: 20%;
  margin-bottom: 0;
  text-align: right;
  margin-top: -2px;
}

.rate-list li .star-rating::before {
  color: #fed700;
}

.rate-list li .star-rating[data-value="5"]::before {
  content: '\F005\F005\F005\F005\F005';
}

.rate-list li .star-rating[data-value="4"]::before {
  content: '\F005\F005\F005\F005\F006';
}

.rate-list li .star-rating[data-value="3"]::before {
  content: '\F005\F005\F005\F006\F006';
}

.rate-list li .star-rating[data-value="2"]::before {
  content: '\F005\F005\F006\F006\F006';
}

.rate-list li .star-rating[data-value="1"]::before {
  content: '\F005\F006\F006\F006\F006';
}

.rate-score .star-rating {
  font-size: 2.14286em;
}

.rate-score .rating-score-des {
  font-size: 1.42857em;
  float: left;
  margin-bottom: 0;
}

.rate-score .rating-score-des em {
  color: #ffa801;
}

.rate-score .help-tip {
  float: right;
}

.woocommerce .rate-score .star-rating {
  margin-bottom: 10px;
}

.woocommerce-Reviews {
  padding-top: 50px;
}

.woocommerce-Reviews .woocommerce-Reviews-title {
  font-size: 1.42857em;
  margin-bottom: 40px;
}

.woocommerce-Reviews .comment_container .comment-text {
  float: right;
}

.woocommerce-Reviews .star-rating {
  font-family: inherit;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
  width: 42px;
  height: 42px;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
  margin: 0;
  padding: 30px;
  width: calc(100% - 70px);
}

.woocommerce .woocommerce-Reviews .comment-form {
  padding-top: 50px;
}

.woocommerce .woocommerce-Reviews .comment-form input:not([type="submit"]),
.woocommerce .woocommerce-Reviews .comment-form textarea {
  width: 100%;
  display: block;
  border: 1px solid #EEEEEE;
  border-radius: 3px;
  height: 40px;
  padding-left: 15px;
  padding-right: 15px;
}

.woocommerce .woocommerce-Reviews .comment-form textarea {
  height: 100px;
  padding: 15px;
  resize: none;
}

.woocommerce #respond input#submit {
  font-size: 0.85714em;
  padding: 12px 25px;
  font-weight: 500;
  color: #FFFFFF;
  background-color: #ea1a25;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.table-comapre-list {
  text-align: center;
}

.table-comapre-list th {
  width: 17%;
  font-size: 1em;
  font-weight: 400;
  vertical-align: middle;
}

.table-comapre-list th b {
  font-size: 1.14286em;
  font-weight: 500;
}

.table-comapre-list td {
  width: 41.5%;
  padding: 15px;
}

.table-comapre-list td .btn {
  display: inline-block;
}

.table-comapre-list td b {
  font-weight: 500;
  color: #ea1a25;
}

.table-comapre-list .xs-list {
  text-align: left;
  padding: 15px;
}

.table-comapre-list .xs-list li {
  padding-left: 20px;
}

.table-comapre-list .xs-list.arrow li:before {
  position: absolute;
  margin-left: -20px;
  padding-right: 0;
}

.table-comapre-list.table-bordered th,
.table-comapre-list.table-bordered td {
  border: 1px solid #eaeaea;
}

.table-comapre-list.table-bordered thead th {
  border-bottom: 0px;
}

.inline-form label {
  font-weight: 500;
  margin-bottom: 11px;
}

.inline-form .form-group {
  margin-bottom: 20px;
}

.inline-form .row {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.inline-form .separetors {
  position: relative;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #cbcbcb;
  font-weight: 500;
  margin-top: 10px;
}

.inline-form .separetors::before {
  content: attr(data-title);
}

.inline-form input:not([type="submit"]) {
  height: 52px;
  background-color: #FFFFFF;
  border-color: #eaeaea;
  padding: 0 30px;
}

.inline-form ::-webkit-input-placeholder {
  color: #999999;
  font-size: 0.85714em;
  font-style: italic;
}

.inline-form ::-moz-placeholder {
  color: #999999;
  font-size: 0.85714em;
  font-style: italic;
}

.inline-form :-ms-input-placeholder {
  color: #999999;
  font-size: 0.85714em;
  font-style: italic;
}

.inline-form :-moz-placeholder {
  color: #999999;
  font-size: 0.85714em;
  font-style: italic;
}

.inline-form input[type=number]::-webkit-inner-spin-button,
.inline-form input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.inline-form .row [class^=col-]:first-child {
  padding-right: 30px;
}

.inline-form .row [class^=col-]:last-child {
  padding-left: 30px;
}

.customer-info-forms {
  position: relative;
}

.customer-info-forms.row {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.customer-info-forms [class^=col-]:first-child {
  padding-right: 65px;
  position: relative;
}

.customer-info-forms [class^=col-]:first-child::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(25%, #eaeaea), color-stop(75%, #eaeaea), to(#fff));
  background: linear-gradient(to bottom, #fff 0%, #eaeaea 25%, #eaeaea 75%, #fff 100%);
}

.customer-info-forms [class^=col-]:last-child {
  padding-left: 65px;
}

.xs-customer-form-wraper h3 {
  font-size: 1.57143em;
  margin-bottom: 13px;
}

.xs-customer-form-wraper p {
  font-size: 0.85714em;
  line-height: 1.833;
  margin-bottom: 20px;
}

.xs-customer-form-wraper .xs-customer-form .input-group {
  background-color: transparent;
}

.form-separetor {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  line-height: 52px;
  border-radius: 100%;
  border: 1px solid #eaeaea;
  text-align: center;
  margin-bottom: 0;
  font-size: 0.85714em;
  font-weight: 500;
  color: #cccccc;
  background-color: #FFFFFF;
}

.terms-list-group {
  padding: 60px;
  border: 1px solid #eaeaea;
  border-radius: 10px;
}

.terms-list {
  margin-bottom: 40px;
}

.terms-list:last-child {
  margin-bottom: 0;
}

.terms-list i {
  color: #ea1a25;
  font-size: 0.71429em;
  padding-right: 8px;
  margin-top: 4px;
}

.terms-list .media-body>b {
  display: inline-block;
  margin-bottom: 20px;
}

.terms-list .media-body b {
  font-weight: 500;
}

.terms-list .media-body p {
  color: #555;
  line-height: 1.74;
  margin-bottom: 30px;
}

.terms-list .media-body p:last-child {
  margin-bottom: 0;
}

.terms-list .media-body p b {
  color: #222;
}

.xs-faq-group [class^=col-]:first-child {
  counter-reset: my-awesome-counter -1;
}

.xs-faq-group [class^=col-]:first-child .xs-single-faq {
  counter-increment: my-awesome-counter 2;
}

.xs-faq-group [class^=col-]:first-child .xs-single-faq:last-child {
  margin-bottom: 0;
}

.xs-faq-group [class^=col-]:last-child {
  counter-reset: my-awesome-counter;
}

.xs-faq-group [class^=col-]:last-child .xs-single-faq {
  counter-increment: my-awesome-counter 2;
}

.xs-faq-group [class^=col-]:last-child .xs-single-faq:last-child {
  margin-bottom: 0;
}

.xs-faq-group h5::before {
  content: counter(my-awesome-counter) ".";
  padding-right: 8px;
}

.xs-single-faq {
  padding: 30px;
  background-color: #fafafa;
  margin-bottom: 30px;
}

.xs-single-faq h5 {
  font-size: 1.28571em;
  margin-bottom: 15px;
}

.xs-single-faq p {
  margin-bottom: 0;
  color: #555;
}

.xs-about-content {
  position: relative;
  z-index: 1;
}

.xs-about-content .about-info {
  margin-bottom: 30px;
}

.xs-about-content .about-info h4 {
  font-size: 1em;
  color: #ea1a25;
  letter-spacing: .4px;
  margin-bottom: 20px;
}

.xs-about-content .about-info h5 {
  font-size: 3em;
  font-weight: 700;
  line-height: 1.23;
  letter-spacing: -.2px;
  margin-bottom: 25px;
}

.xs-about-content .xs-watermark-text {
  top: -60px;
  left: -10px;
  bottom: inherit;
  line-height: 1;
  z-index: -1;
  color: #f5f4f4;
}

.about-content-left .xs-about-content {
  padding-right: 65px;
  margin-top: 44px;
}

.about-content-left .col-lg-5>img {
  position: relative;
  z-index: 1;
}

.about-content-right .xs-watermark-text {
  left: -45px;
}

.about-content-right .xs-about-content {
  margin-top: 44px;
}

.fact-list .single-fact-item {
  display: inline-block;
  margin-right: 30px;
}

.fact-list .single-fact-item:last-child {
  margin-right: 0;
}

.fact-list .single-fact-item h5,
.fact-list .single-fact-item h6 {
  font-weight: 400;
  margin-bottom: 0;
}

.fact-list .single-fact-item h5 {
  color: #ea1a25;
  font-size: 3em;
}

.fact-list .single-fact-item h6 {
  font-size: 1em;
  color: #555;
}

.xs-single-team {
  text-align: center;
  background-color: #FFFFFF;
  margin-bottom: 30px;
}

.xs-single-team .xs-overlay,
.xs-single-team .team-hover-content {
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-single-team:hover .xs-overlay {
  opacity: .7;
}

.xs-single-team:hover .team-hover-content {
  top: 50%;
  opacity: 1;
}

.xs-single-team .team-thumb {
  position: relative;
}

.xs-single-team .team-hover-content {
  position: absolute;
  top: 35%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

.xs-single-team .team-info {
  padding: 30px;
}

.xs-single-team .team-designation {
  font-size: 1em;
  color: #ea1a25;
  margin-bottom: 15px;
}

.xs-single-team .team-name {
  margin-bottom: 0;
  font-size: 19px;
}

.xs-single-team .team-name a {
  color: #222;
}

.xs-single-team .xs-social-list li {
  margin-right: 14px;
}

.xs-single-team .xs-social-list li a {
  color: #FFFFFF;
  font-size: 1em;
}

.xs-single-team .xs-social-list li:last-child {
  margin-right: 0;
}

.xs-single-team.team-hiring-info {
  background-color: #62ab00;
  width: 100%;
  display: table;
}

.xs-single-team.team-hiring-info .hiring-info {
  display: table-cell;
  vertical-align: middle;
  color: #FFFFFF;
}

.xs-single-team.team-hiring-info .hiring-info p {
  font-weight: 500;
  margin-bottom: 15px;
}

.shop-category .widget:not(.widget_banner) {
  padding: 20px;
  border: 1px solid #eaeaea;
}

.shop-category .widget {
  margin-bottom: 30px;
}

.shop-category .widget:last-child {
  margin-bottom: 0;
}

.shop-category .widget-title {
  font-size: 1.14286em;
  font-weight: 500;
  margin-bottom: 15px;
}

.widget_range .price_label {
  margin-bottom: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.widget_range .price_label label {
  color: #000000;
  font-weight: 500;
  font-size: 1.14286em;
  margin-bottom: 0;
}

.widget_range .price_label input {
  border: 0px;
  text-align: right;
  color: #ea1a25;
  font-size: 0.85714em;
  display: inline-block;
  margin-top: 3px;
  max-width: 50%;
}

.widget_range .ui-state-default,
.widget_range .ui-widget-content .ui-state-default {
  border: 0;
  width: 14px;
  height: 14px;
  background-color: #ea1a25;
  border-radius: 50%;
  top: -6px;
  cursor: pointer;
}

.widget_range .ui-widget-content {
  border-radius: 0;
  background-color: #efefef;
  height: 2px;
  border: 0px;
}

.widget_range .ui-slider .ui-slider-range {
  background-color: #ea1a25;
}

.widget_range .ui-widget-content .ui-state-default:nth-child(even) {
  margin-left: 0;
}

.widget_range .ui-widget-content .ui-state-default:nth-child(odd) {
  margin-left: -14px;
}

.widget_cate .custom-control {
  margin-bottom: 10px;
}

.widget_cate .custom-control:last-child {
  margin-bottom: 0;
}

.widget_cate .custom-control label {
  cursor: pointer;
  color: #222;
}

.widget_cate .custom-control label span {
  padding-left: 5px;
}

.widget_rate .rate-list li {
  margin-bottom: 10px;
}

.widget_rate .rate-list li .star-rating {
  width: 100%;
  text-align: left;
}

.widget_rate .rate-list li:last-child {
  margin-bottom: 0;
}

.shop-cate-list {
  padding: 15px 20px;
  border: 1px solid #eaeaea;
  margin-bottom: 30px;
}

.shop-cate-list .shop-cate-title {
  display: inline-block;
}

.shop-cate-list .shop-cate-title h5 {
  font-size: 1.14286em;
  margin-bottom: 0;
}

.shop-cate-list .shop-catelist-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.shop-catelist-item li {
  display: inline-block;
}

.shop-catelist-item li .media {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.shop-catelist-item li .media-body .custom-control {
  display: inline-block;
  margin-bottom: 0;
  padding-left: 10px;
  min-height: 0;
  line-height: 1;
}

.shop-catelist-item li h6 {
  font-size: 1em;
  margin-bottom: 0;
  font-weight: 400;
  padding-right: 20px;
  margin-top: 2px;
}

.shop-catelist-item .custom-control.custom-radio .custom-control-label::after,
.shop-catelist-item .custom-control.custom-radio .custom-control-label::before {
  width: 15px;
  height: 15px;
  background-size: 60% 60%;
}

.shop-catelist-item>li {
  margin-right: 30px;
  padding-right: 30px;
  position: relative;
}

.shop-catelist-item>li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 36px;
  width: 1px;
  background-color: #eaeaea;
}

.shop-catelist-item>li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.shop-catelist-item>li:last-child::before {
  display: none;
}

.shop-view-nav {
  border-bottom: 0px;
}

.shop-view-nav .nav-item {
  margin-bottom: 0;
  margin-right: 10px;
}

.shop-view-nav .nav-item:last-child {
  margin-right: 0;
}

.shop-view-nav .nav-item .nav-link {
  padding: 0;
  border: 0px;
  color: #c3c3c3;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.shop-view-nav .nav-item .nav-link.active {
  color: #ea1a25;
}

.product-ordering {
  border: 0px;
  color: #9a9a9a;
  background-image: url(../images/arrow-blue.png?5bb3cd68ee3d5f5179d05f098458e69e);
  background-repeat: no-repeat;
  background-position: center right;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-width: 130px;
  max-width: 170px;
  white-space: nowrap;
  padding-right: 15px;
  cursor: pointer;
  background-color: transparent;
}

.category-v4 .xs-product-wraper {
  padding: 0;
  text-align: center;
  margin-bottom: 30px;
  border-color: #eaeaea;
  margin-left: -1px;
}

.category-v4 .xs-product-wraper:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #eaeaea;
}

.category-v4 .xs-product-wraper .xs-product-content {
  padding: 30px;
  padding-top: 0;
}

#list-justify .xs-single-product {
  margin-bottom: 30px;
}

#listSmall {
  margin-bottom: 30px;
}

.xs-slider-nav {
  background-color: #222;
  color: #FFFFFF;
}

.xs-slider-nav .slider-nav {
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: transparent;
  position: relative;
}

.xs-slider-nav .slider-nav::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-image: -webkit-gradient(linear, left top, right top, from(#009cff), to(#6b43ab));
  background-image: linear-gradient(to right, #009cff 0%, #6b43ab 100%);
}

.xs-slider-nav .slider-nav h5 {
  margin-bottom: 0;
  font-size: 1em;
}

.xs-slider-nav .current .slider-nav {
  background-color: #343434;
}

.xs-slider-nav .current .slider-nav::before {
  width: 100%;
}

.nav-slider-content .owl-prev,
.nav-slider-content .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 2.14286em;
  color: #FFFFFF;
}

.nav-slider-content .owl-next {
  right: 30px;
}

.nav-slider-content .owl-prev {
  left: 30px;
}

.vendor-logo {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 30px;
}

.vendor-logo a {
  display: inline-block;
}

.block-product-cate-wraper {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #FFFFFF;
  padding: 19px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100%;
}

.block-product-cate-wraper .xs-overlay {
  opacity: .9;
  z-index: -1;
}

.block-product-cate-wraper .block-cate-header {
  font-size: 1.42857em;
  margin-bottom: 4px;
}

.block-product-cate-wraper .nav .nav-link {
  color: #FFFFFF;
  padding: 10px 0;
  font-size: 1em;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-weight: 700;
}

.block-product-cate-wraper .nav .nav-link:hover {
  color: #222;
}

.block-product-cate-wraper .nav .nav-item:last-child .nav-link {
  padding-bottom: 0;
}

.product-block-category {
  margin-bottom: 13.5px;
}

.product-block-category .xs-product-category {
  padding: 0;
  border-right: 0px;
  text-align: center;
}

.product-block-category .xs-product-category .product-title {
  color: #333e48;
  font-size: 0.92857em;
}

.product-block-category .xs-product-category .price {
  font-size: 0.85714em;
  color: #ea1a25;
}

.product-block-category .xs-product-category .product-content {
  padding: 0 20px;
}

.product-block-category .xs-product-category img {
  margin-bottom: 10px;
}

.product-block-slider {
  position: relative;
}

.product-block-slider .owl-dots {
  position: absolute;
  bottom: 20px;
  margin-top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.product-block-slider .owl-dots .owl-dot span {
  background-color: rgba(51, 62, 72, 0.5);
}

.product-block-slider .owl-dots .owl-dot.active span {
  background-color: #333e48;
}

.product-cate-block-wraper {
  border: 2px solid #e3e3e3;
  margin-bottom: 50px;
}

.product-cate-block-section {
  padding-top: 80px;
  padding-bottom: 10px;
}

.xs-nav-cate {
  border: 1px solid #eaeaea;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.xs-nav-cate>li {
  border-right: 1px solid #eaeaea;
}

.xs-nav-cate>li:last-child {
  border-right: 0px;
}

.xs-nav-cate>li>a {
  color: #555;
  font-size: 1.14286em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 22px 26px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.xs-nav-cate>li>a:hover {
  color: #ea1a25;
}

.xs-nav-cate>li>a i {
  font-size: 2.14286em;
  padding-right: 15px;
}

.xs-nav-cate>li>.btn:not([data-toggle="popover"]).btn-outline-primary {
  border-radius: 0;
  border: 0px;
  color: #797979;
  font-size: 1em;
  padding: 16px 31px;
}

.xs-nav-cate>li>.btn:not([data-toggle="popover"]).btn-outline-primary strong {
  display: block;
  font-size: 1.28571em;
  color: #ea1a25;
}

.navsearch-form {
  display: none;
  position: absolute;
  right: -5px;
  top: 100%;
}

.navsearch-form input:not([type="submit"]) {
  height: 50px;
  width: 300px;
  border: 1px solid #222;
  padding: 0 20px;
}

.navSearch-group {
  position: relative;
}

.navSearch-group>a {
  font-size: 1.42857em;
  padding: 24px;
  display: block;
}

.navSearch-group>a i {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-sidebar-group .xs-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  z-index: 9999;
  opacity: 0;
  -webkit-transition: all .8s ease;
  transition: all .8s ease;
  visibility: hidden;
}

.xs-minicart-widget {
  position: fixed;
  right: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 600px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #fff;
  -webkit-transition: all 0.8s cubic-bezier(0.9, 0.03, 0, 0.96);
  transition: all 0.8s cubic-bezier(0.9, 0.03, 0, 0.96);
  padding: 30px;
  visibility: hidden;
  opacity: 0;
}

.xs-minicart-widget .widget-heading {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}

.xs-minicart-widget .widget-heading .widget-title {
  margin-bottom: 0;
  font-size: 1.28571em;
}

.xs-minicart-widget .mini_cart_item {
  margin-bottom: 5px;
  padding-bottom: 5px;
}

.xs-minicart-widget .xs-empty-content {
  text-align: center;
  padding: 50px 0;
}

.xs-minicart-widget .xs-empty-content .woocommerce-mini-cart__empty-message {
  font-size: 1.42857em;
}

.xs-minicart-widget .xs-empty-content .empty-cart-icon {
  font-size: 3.57143em;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: .7;
  visibility: visible;
}

.xs-sidebar-group.isActive .xs-minicart-widget {
  opacity: 1;
  visibility: visible;
  right: 0;
}

.close-side-widget {
  color: #222;
  font-size: 13px;
  display: block;
  height: 30px;
  max-width: 30px;
  background-color: #ededed;
  margin-left: auto;
  text-align: center;
  line-height: 30px;
  border-radius: 100%;
}

.owl-carousel .active [class^=anim-] {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.owl-carousel .active .animInLeft {
  -webkit-animation: animInLeft 1s ease 0s both;
  animation: animInLeft 1s ease 0s both;
}

.owl-carousel .active .animInRight {
  -webkit-animation: animInRight 1s ease 0s both;
  animation: animInRight 1s ease 0s both;
}

.owl-carousel .active .animInTop {
  -webkit-animation: animInTop 1s ease 0s both;
  animation: animInTop 1s ease 0s both;
}

.owl-carousel .active .animInBottom {
  -webkit-animation: animInBottom 1s ease 0s both;
  animation: animInBottom 1s ease 0s both;
}

.owl-carousel .active .xs-banner-title.animInLeft {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.owl-carousel .active .xs-banner-sub-title.animInTop {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.owl-carousel .active .xs-banner-title.animInBottom {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.owl-carousel .active .xs-banner-image.animInRight {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.owl-carousel .active .btn.animInLeft {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.owl-carousel .active .btn.animInLeft+.btn.animInRight {
  -webkit-animation-duration: 1.7s;
  animation-duration: 1.7s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.owl-carousel .active .best-deal-title.animInRight {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.owl-carousel .active .price.animInRight {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.owl-carousel .active .xs-best-deal-slider-content .btn.animInLeft {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.owl-carousel .active .xs-best-deal-slider-content .btn.animInLeft+.btn.animInRight {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.owl-carousel.xs-banner-slider-3 .active .xs-banner-image.animInRight,
.owl-carousel.xs-banner-slider-4 .active .xs-banner-image.animInRight {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

@-webkit-keyframes animInLeft {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes animInLeft {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes animInRight {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes animInRight {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes animInTop {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
  }
}

@keyframes animInTop {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes animInBottom {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  to {
    opacity: 1;
  }
}

@keyframes animInBottom {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  to {
    opacity: 1;
  }
}

.xs-promoPopup {
  text-align: left;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  min-height: 460px;
  background-image: url(/images/promo_overlay.png?b0df04f42ac40db2923473652182eee0);
}

.promo-image-container img {
  width: 100%;
}

.promo-text-container {
  padding: 0 15px;
}

.promo-text-container .xs-newsletter {
  width: calc(100% - 65px);
}

.promo-text-container .xs-newsletter input:not([type="submit"]) {
  border: 1px solid rgba(0, 99, 209, 0.27);
  border-radius: 0px;
  padding-left: 20px;
}

.promo-text-container .xs-newsletter input:not([type="submit"])::-webkit-input-placeholder {
  color: #6d6d6d;
}

.promo-text-container .xs-newsletter input:not([type="submit"])::-moz-placeholder {
  color: #6d6d6d;
}

.promo-text-container .xs-newsletter input:not([type="submit"]):-ms-input-placeholder {
  color: #6d6d6d;
}

.promo-text-container .xs-newsletter input:not([type="submit"]):-moz-placeholder {
  color: #6d6d6d;
}

.promo-text-container .btn:not([data-toggle="popover"]) {
  border-radius: 0px;
  padding: 0px;
  min-width: 67px;
  font-size: 1.14286em;
}

body>.mfp-bg.xs-promo-popup {
  z-index: 99999;
}

body>.mfp-wrap.xs-promo-popup {
  z-index: 999999;
}

body .xs-promo-popup .mfp-container {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: fixed;
}

.promo-text-content {
  margin-bottom: 25px;
}

.promo-text-content h3,
.promo-text-content h4 {
  font-size: 2.14286em;
  margin-bottom: 5px;
  color: #ea1a25;
  font-weight: 700;
}

.promo-text-content h4 {
  color: #222;
}

.promo-text-content p {
  margin-bottom: 0;
  font-size: 1.14286em;
  font-weight: 300;
}

.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  transform: translateY(-20px) perspective(600px) rotateX(10deg);
}

.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
}

.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}

.xs-banner.v-yellow .xs-banner-content .xs-banner-title {
  color: #333e48;
}

.xs-banner.xs-product-banner {
  padding-top: 60px;
  padding-bottom: 40px;
}

.xs-feauture-product-section.v-yellow .product-title-v2 a strong {
  color: #333e48;
}

.v-yellow .btn {
  color: #333e48;
}

.v-yellow .btn:hover {
  color: #FFFFFF;
}

.v-yellow .btn-primary {
  background-color: #fed700;
}

.v-yellow .btn-outline-primary {
  border-color: #959a9e;
}

.v-yellow .btn-outline-primary:hover {
  color: #FFFFFF;
}

.v-yellow .btn:not([data-toggle="popover"]).btn-outline-primary:hover {
  color: #FFFFFF;
}

.v-yellow .xs-product-offer-label {
  background-color: #333e48;
}

.v-yellow .price {
  color: #333e48;
}

.v-yellow .xs-progress .progress-bar {
  background-color: #fed700;
}

.v-yellow .product-title a {
  color: #ea1a25;
}

.v-yellow .xs-content-title {
  color: #333e48;
}

.v-yellow .xs-nav-tab .nav-link {
  color: #b7b7b7;
}

.v-yellow .xs-nav-tab .nav-link.active,
.v-yellow .xs-nav-tab .nav-link:hover {
  color: #333e48;
}

.v-yellow .xs-nav-tab .nav-link::before {
  background-color: #fed700;
}

.v-yellow .xs-nav-tab .nav-link::after {
  border-top-color: #fed700;
}

.v-yellow .product-title.highlight a {
  color: #adb7c1;
}

.v-yellow .product-title.highlight a strong {
  color: #ea1a25;
}

.v-yellow .product-feature-ribbon {
  background-image: linear-gradient(45deg, #fff 0%, #fff 50%, #fed700 50%, #fed700 100%);
}

.v-yellow .product-feature-ribbon i {
  color: #333e48;
}

.v-yellow .product-item-meta li a:hover {
  background-color: #fed700;
}

.v-yellow .product-item-meta li a {
  color: #333e48;
}

.v-yellow .owl-dots .owl-dot.active span {
  background-color: #fed700;
}

.v-yellow .xs-simple-arrow {
  color: #fed700;
}

.v-yellow .add_to_wishlist,
.v-yellow .add_to_wishlist:hover,
.v-yellow .add_to_wishlist.pulse_effect i::after {
  color: #ea1a25;
}

.v-yellow .xs-watermark-text {
  color: #f6d000;
}

.v-yellow .xs-slider-highlight .owl-prev i,
.v-yellow .xs-slider-highlight .owl-next i {
  color: #5b646c;
}

.v-yellow .xs-slider-highlight .owl-prev i:hover,
.v-yellow .xs-slider-highlight .owl-next i:hover {
  color: #333e48;
}

.v-yellow .xs-content-header.background-version {
  background-color: #fed700;
}

.v-yellow .xs-content-header.background-version .xs-content-title,
.v-yellow .xs-content-header.background-version .xs-custom-nav a {
  color: #333e48;
}

.v-yellow .xs-deal-of-the-week {
  border-color: #fed700;
}

.xs-deal-of-the-day-section.v-yellow {
  background-color: #fed700;
}

.xs-deal-of-the-day-section.v-yellow .best-deal-sub-title {
  color: #5b646c;
}

.xs-deal-of-the-day-section.v-yellow .best-deal-title {
  color: #333e48;
}

.xs-deal-of-the-day-section.v-yellow .xs-best-deal-slider-content .price del {
  color: #d2b200;
}

.xs-deal-of-the-day-section.v-yellow .btn.btn-outline-secondary {
  border-color: #ea1a25;
}

.xs-deal-of-the-day-section.v-yellow .btn.btn-success {
  background-color: #333e48;
  color: #FFFFFF;
}

.xs-newsLetter-section.v-yellow {
  background-color: #fed700;
}

.xs-newsLetter-section.v-yellow .newsletter-content i,
.xs-newsLetter-section.v-yellow .newsletter-content .newsletter-title,
.xs-newsLetter-section.v-yellow .newsletter-content p {
  color: #333e48;
}

.v-semi-black .xs-content-title,
.v-semi-black .xs-nav-tab .nav-link.active,
.v-semi-black .xs-nav-tab .nav-link:hover,
.v-semi-black .product-title a {
  color: #333e48;
}

.v-semi-black .xs-nav-tab .nav-link::before {
  background-color: #333e48;
}

.v-semi-black .xs-nav-tab .nav-link::after {
  border-top-color: #333e48;
}

.v-semi-black .product-title a:hover {
  color: #ea1a25;
}

.v-yellow-and-black .xs-content-title,
.v-yellow-and-black .xs-nav-tab .nav-link.active,
.v-yellow-and-black .xs-nav-tab .nav-link:hover,
.v-yellow-and-black .product-title a,
.v-yellow-and-black .xs-product-offer-label,
.v-yellow-and-black .xs-countdown-timer .timer-count,
.v-yellow-and-black .xs-countdown-timer .timer-title,
.v-yellow-and-black .product-sold,
.v-yellow-and-black .product-available,
.v-yellow-and-black .small-offer-banner-v2 .offer-banner-content p,
.v-yellow-and-black .small-offer-banner-v2 .offer-banner-content h3,
.v-yellow-and-black .btn {
  color: #333e48;
}

.v-yellow-and-black .btn:not([data-toggle="popover"]) {
  background-color: #fed700 !important;
}

.v-yellow-and-black .btn:hover {
  color: #FFFFFF;
}

.v-yellow-and-black .xs-nav-tab .nav-link::before {
  background-color: #333e48;
}

.v-yellow-and-black .xs-nav-tab .nav-link::after {
  border-top-color: #333e48;
}

.v-yellow-and-black .xs-product-offer-label,
.v-yellow-and-black .xs-progress .progress-bar,
.v-yellow-and-black .xs-countdown-timer .timer-count {
  background-color: #fed700;
}

.v-yellow-and-black .product-thumb-feature .btn.btn-outline-primary {
  border-color: transparent;
  color: #333e48;
}

.v-yellow-and-black .btn:not([data-toggle="popover"]).btn-outline-primary:hover {
  color: #FFFFFF;
}

.v-yellow-and-black .product-title a:hover {
  color: #ea1a25;
}

.xs-list li {
  margin-bottom: 12px;
}

.xs-list li:last-child {
  margin-bottom: 0;
}

.xs-list li a {
  color: #777777;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-list li a:hover {
  color: #ea1a25;
}

.xs-list li::before {
  font-family: "FontAwesome";
}

.xs-list.check li::before {
  padding-right: 8px;
  content: "\F00C";
  color: #ea1a25;
}

.xs-list.play li::before {
  padding-right: 8px;
  content: "\F04B";
  color: #ea1a25;
}

.xs-list.arrow li::before {
  padding-right: 8px;
  content: "\F178";
}

.xs-tweet li {
  font-size: 0.92857em;
  color: #777777;
  margin-bottom: 20px;
}

.xs-tweet li:last-child {
  margin-bottom: 0;
}

.xs-tweet li a {
  color: #ea1a25;
}

.xs-social-list li {
  margin-right: 8px;
  display: inline-block;
}

.xs-social-list li.xs-list-text {
  font-size: 0.92857em;
  margin-right: 20px;
}

.xs-social-list li a {
  font-size: 0.92857em;
  color: #222;
  display: inline-block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.xs-social-list li a.color-facebook:hover {
  background-color: #3b5998;
}

.xs-social-list li a.color-twitter:hover {
  background-color: #1da1f2;
}

.xs-social-list li a.color-dribbble:hover {
  background-color: #ea4c89;
}

.xs-social-list li a.color-pinterest:hover {
  background-color: #bd081c;
}

.xs-social-list li a.color-instagram:hover {
  background-color: #e1306c;
}

.xs-social-list li a.color-linkedin:hover {
  background-color: #dd5143;
}

.xs-social-list.version-2 li {
  margin-right: 30px;
}

.xs-social-list.version-2 li:last-child {
  margin-right: 0;
}

.xs-social-list.version-2 li a {
  font-size: 1em;
}

.xs-social-list.version-2 li a i {
  padding-right: 10px;
}

.xs-social-list.version-2 li a:hover {
  color: #222;
}

.xs-social-list.round li a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.14);
  color: #FFFFFF;
  font-size: 1.14286em;
}

.xs-social-list.boxed li {
  width: 45%;
  margin-right: 10px;
  margin-bottom: 10px;
  text-align: center;
}

.xs-social-list.boxed li a {
  padding: 14px 0px;
  font-size: 1em;
  font-weight: 500;
  border: 1px solid #F1F1F1;
  color: #222;
  display: block;
}

.xs-social-list.boxed li a:hover {
  color: #FFFFFF;
}

.xs-social-list.boxed li i {
  padding-right: 15px;
}

.xs-social-list.square li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 0%;
  border: 1px solid #F4F4F4;
  background-color: transparent;
  color: #222;
  text-align: center;
}

.xs-social-list.square li a:hover {
  color: #FFFFFF;
}

.xs-map-popup {
  padding: 9px 19px;
  font-weight: 500;
  font-size: 1em;
  border: 0;
}

.xs-map-popup.btn-primary {
  background-color: #ea1a25;
}

.xs-map-popup.btn-danger {
  background-color: #ff6251;
}

.xs-map-popup.btn-warning {
  background-color: #fed700;
  color: #333e48;
}

.xs-map-popup.btn-warning:hover {
  color: #FFFFFF;
}

.xs-map-popup i {
  padding-right: 10px;
  font-size: 16px;
  position: relative;
  top: 2px;
}

.xs-back-to-top {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  font-size: 1em;
  font-weight: 500;
  text-transform: uppercase;
  padding: 12px 21px;
  border: 0px;
}

.xs-back-to-top.btn-success {
  background-color: #62ab00;
}

.xs-back-to-top.btn-danger {
  background-color: #ff6251;
}

.xs-back-to-top.btn-warning {
  background-color: #fed700;
  color: #333e48;
}

.xs-back-to-top.btn-warning:hover {
  color: #FFFFFF;
}

.xs-back-to-top i {
  padding-left: 14px;
  font-size: 1.42857em;
  position: relative;
  top: 4px;
}

.xs-back-to-top-wraper {
  position: absolute;
  right: -45px;
  bottom: 180px;
}

.xs-heading {
  padding-bottom: 40px;
  text-align: center;
}

.xs-heading hr {
  width: 34px;
  border-top: 1px dashed #ea1a25;
  margin-bottom: 19px;
  margin-top: 0;
}

.xs-heading p {
  margin-bottom: 0;
}

.xs-heading.v-small {
  padding-bottom: 70px;
}

.xs-heading.v-small .xs-heading-title {
  font-size: 2.28571em;
  color: #222;
}

.xs-heading.v-medium .xs-heading-sub {
  font-size: 1em;
  font-weight: 500;
  margin-bottom: 5px;
}

.xs-heading.v-big {
  padding-bottom: 60px;
}

.xs-heading-sub {
  color: #ea1a25;
  font-size: 1.28571em;
  font-weight: 400;
  margin-bottom: 10px;
}

.xs-heading-title {
  font-size: 2.3em;
  font-weight: 700;
  margin-bottom: 0;
}

.btn:not([data-toggle="popover"]) {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  padding: 16px 35px;
  letter-spacing: .3px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: #FFFFFF;
}

.btn:not([data-toggle="popover"]).btn-sm {
  min-height: 40px;
  min-width: 180px;
  font-size: 1em;
  padding: 0;
  line-height: 40px;
}

.btn:not([data-toggle="popover"]).btn-outline-secondary {
  background-color: #ea1a25;
  border: 2px solid rgba(200, 200, 200, 0.3);
  color: #FFFFFF;
}

.btn:not([data-toggle="popover"]).btn-outline-primary {
  color: #ea1a25;
}

.btn:not([data-toggle="popover"]).btn-outline-success {
  color: #222;
  border: 2px solid #ea1a25;
}

.btn:not([data-toggle="popover"]).btn-outline-success:hover {
  background-color: #222;
  color: #FFFFFF;
  border-color: #222;
}

.btn:not([data-toggle="popover"]).btn-outline-light:hover {
  color: #FFFFFF;
  border-color: #222;
  background-color: transparent;
}

.btn:not([data-toggle="popover"]) .icon {
  margin-top: 0;
}

.btn:not([data-toggle="popover"]).icon-left i {
  padding-right: 7px;
}

.btn:not([data-toggle="popover"]).icon-right i {
  float: right;
  padding-left: 7px;
}

.btn:not([data-toggle="popover"]).btn-success {
  background-color: #62ab00;
}

.btn:not([data-toggle="popover"]).btn-secondary {
  background-color: #ff6251;
  border: 0px;
}

.btn:not([data-toggle="popover"])::before {
  content: '';
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 100%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: scale3d(1, 2, 1);
  transform: scale3d(1, 2, 1);
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.btn:not([data-toggle="popover"]).btn-primary {
  border: 0px;
}

.btn:not([data-toggle="popover"]).btn-success {
  border: 0px;
}

.btn:not([data-toggle="popover"]).btn-success::before,
.btn:not([data-toggle="popover"]).btn-success:hover {
  background-color: #62ab00;
}

.xs-best-deal-slider-content .btn:not([data-toggle="popover"]).btn-success {
  color: #FFFFFF;
}

.xs-best-deal-slider-content .btn:not([data-toggle="popover"]).btn-success::before {
  background-color: #333e48;
}

.btn-loading i {
  font-size: 1.14286em;
  position: relative;
  top: 2px;
}

.btn-cart {
  color: #ea1a25;
}

.btn-cart.icon-left i {
  padding-right: 7px;
}

.btn-cart.icon-right i {
  float: right;
  padding-left: 7px;
}

.xs-best-deal-slider-content .xs-btn-wraper a:last-child {
  padding: 18px 35px;
}

.w-quantity-btn .btn {
  margin: 0 auto;
}

.xs-product-offer-label {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 100%;
  background-color: #62ab00;
  color: #FFFFFF;
}

.xs-product-offer-label span {
  font-weight: 700;
  font-size: 1.57143em;
  line-height: 1;
  margin-bottom: 4px;
}

.xs-product-offer-label small {
  font-size: 1em;
  line-height: 1;
}

.star-rating {
  position: relative;
  height: auto;
  width: 100%;
  display: inline-block;
}

.star-rating::before {
  content: "\F005\F005\F005\F005\F123";
  font-family: "FontAwesome";
  top: 0;
  left: 0;
  font-size: 0.85714em;
  color: #ffa801;
  letter-spacing: 4px;
}

.star-rating .value {
  position: relative;
  font-size: 0.85714em;
  color: #b9b9b9;
  font-family: "Rubik", sans-serif;
}

.star-rating.color-green::before {
  color: #ea1a25;
}

.star-rating.color-green .value {
  color: #777777;
}

.woocommerce .star-rating {
  margin-bottom: 20px;
  line-height: 1;
  float: none;
  overflow: visible;
  height: 100%;
  width: 100%;
  display: block;
}

.woocommerce .star-rating::before {
  float: none;
  top: 0;
  left: 0;
  position: static;
  content: '\F005\F005\F005\F005\F006';
  color: #fed700;
}

.woocommerce .star-rating .value {
  color: #777777;
  float: none;
  padding-top: 0;
  position: static;
}

.woocommerce .star-rating .value::before {
  display: none;
}

.add_to_wishlist {
  color: #ea1a25;
  font-size: 0.85714em;
}

.add_to_wishlist:hover {
  color: #ea1a25;
}

.add_to_wishlist.pulse_effect i {
  position: relative;
}

.add_to_wishlist.pulse_effect i::after {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'FontAwesome';
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  -webkit-animation: scale .6s linear;
  animation: scale .6s linear;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  color: #ea1a25;
}

.add_to_wishlist.pulse_effect i::before {
  z-index: 2;
}

.add_to_wishlist.pulse_effect .fa-heart-o::after {
  content: "\F004";
}

.add_to_wishlist.pulse_effect .fa-heart::after {
  content: "\F08A";
}

@-webkit-keyframes scale {
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}

@keyframes scale {
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}

img.imager-loader-up {
  background-image: url(../assets/app/img/ajax-loader.gif?6851121517266890162);
  background-repeat: no-repeat;
  background-position: center center;
  background-color: transparent;
  width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin: 0;
}

.tab-content img.imager-loader-up {
  max-height: 133px;
}

.owl-carousel .owl-item img {
  width: auto;
}

.owl-carousel .owl-item img.imager-loader-up {
  max-width: 100px;
  height: 144px;
  margin: 0 auto;
}

.owl-dots {
  text-align: center;
  margin-top: 25px;
}

.owl-dots .owl-dot {
  display: inline-block;
  margin-right: 10px;
}

.owl-dots .owl-dot:last-child {
  margin-right: 0;
}

.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  display: inline-block;
  background-color: #e1e1e1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.owl-dots .owl-dot.active span {
  background-color: #ea1a25;
}

.xs_input_number {
  position: relative;
  border-radius: 25px;
  height: 45px;
  width: 148px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid rgba(129, 129, 129, 0.2);
  border-radius: 0;
}

.xs_input_number .sub,
.xs_input_number .add {
  float: left;
  width: 43px;
  height: 100%;
  line-height: 45px;
  cursor: pointer;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  background-color: #f9f9f9;
  text-align: center;
}

.xs_input_number .add {
  float: right;
}

.xs_input_number input[type="number"] {
  height: 100%;
  width: auto;
  border: 0;
  text-align: center;
  font-size: 15px;
  pointer-events: none;
  -webkit-appearance: none;
  width: 60px;
  font-weight: 400;
  color: #777777;
}

.xs_input_number input[type="number"]::-webkit-inner-spin-button,
.xs_input_number input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.xs-simple-btn {
  color: #ea1a25;
}

.xs-countdown-timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.xs-countdown-timer .timer-count {
  width: 40px;
  height: 40px;
  line-height: 42px;
  border-radius: 100%;
  background-color: #f5f5f5;
  font-size: 1em;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 8px;
}

.xs-countdown-timer .timer-title {
  line-height: 1;
  text-transform: uppercase;
  font-size: 0.71429em;
  font-weight: 400;
  display: block;
}

.xs-countdown-timer .xs-timer-container {
  margin-right: 10px;
}

.xs-countdown-timer .xs-timer-container:last-child {
  margin-right: 0;
}

.xs-countdown-timer.version-ring .xs-timer-container {
  background-image: url(/images/circle.png?694e74d807d94238077ef60f60cc4978);
  min-height: 114px;
  min-width: 114px;
  padding: 33px 0;
  margin-right: 30px;
}

.xs-countdown-timer.version-ring .xs-timer-container:last-child {
  margin-right: 0;
}

.xs-countdown-timer.version-ring .timer-count {
  height: auto;
  width: auto;
  line-height: 1;
  background-color: transparent;
  font-size: 2em;
  color: #ea1a25;
}

.xs-countdown-timer.version-ring .timer-title {
  font-size: 0.85714em;
  text-transform: capitalize;
}

.btn[data-toggle="popover"] {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 100%;
  border: 0px;
  padding: 0;
  background-color: #ea1a25;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.btn[data-toggle="popover"]::before {
  position: absolute;
  content: '\E93E';
  font-family: "iconfont";
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 1.42857em;
  -webkit-transform: rotate(0deg) scale(1);
  transform: rotate(0deg) scale(1);
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.btn[data-toggle="popover"].is-active {
  background-color: #ff6251;
}

.btn[data-toggle="popover"].is-active::before {
  -webkit-transform: rotate(-360deg) scale(1);
  transform: rotate(-360deg) scale(1);
  content: '\E93D';
}

.btn[data-toggle="popover"].is-active:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn[data-toggle="popover"]:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.btn[data-toggle="popover"]:active {
  background-color: #ff6251 !important;
}

.popover {
  background-color: #ff6251;
  border: 0;
  max-width: 227px;
  min-height: 109px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  font-size: 1em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  visibility: hidden;
}

.popover.show {
  visibility: visible;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.popover[x-placement="top"] {
  margin-bottom: 14px;
}

.popover[x-placement="bottom"] {
  margin-top: 19px;
}

.popover[x-placement="left"] {
  margin-right: 16px;
}

.popover[x-placement="right"] {
  margin-left: 16px;
}

.popover .popover-body {
  color: #FFFFFF;
  padding: 0;
}

.popover.bs-popover-bottom .arrow::after {
  border-bottom-color: #ff6251;
}

.popover.bs-popover-bottom .arrow::before {
  border-bottom-color: transparent;
}

.popover.bs-popover-top .arrow::after {
  border-top-color: #ff6251;
}

.popover.bs-popover-top .arrow::before {
  border-top-color: transparent;
}

.popover.bs-popover-left .arrow::after {
  border-left-color: #ff6251;
}

.popover.bs-popover-left .arrow::before {
  border-left-color: transparent;
}

.popover.bs-popover-right .arrow::after {
  border-right-color: #ff6251;
}

.popover.bs-popover-right .arrow::before {
  border-right-color: transparent;
}

.xs-list-group li {
  padding: 0;
  border-bottom: 1px dashed #999999;
  font-size: 0.85714em;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.xs-list-group li span {
  font-weight: 400;
  color: #999999;
}

.xs-list-group li:last-child {
  border-bottom: 1px dashed transparent;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.xs-watermark-product {
  position: absolute;
  right: 30px;
  top: -70px;
  pointer-events: none;
}

.xs-social-tigger {
  position: relative;
  margin: 1% auto;
  height: 50px;
  width: 50px;
}

.xs-social-tigger li {
  height: 100%;
}

.xs-social-tigger li a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #ea1a25;
  text-align: center;
  color: #FFFFFF;
  font-size: 1em;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 25px;
  z-index: 999;
  opacity: 0;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  visibility: hidden;
}

.xs-social-tigger li a.tigger-icon {
  opacity: 1;
  -webkit-transform: translate(0%, 0%) !important;
  transform: translate(0%, 0%) !important;
  visibility: visible;
}

.xs-social-tigger li a.xs-facebook {
  background-color: #3B5999;
}

.xs-social-tigger li a.xs-twitter {
  background-color: #55ACEE;
}

.xs-social-tigger li a.xs-pinterest {
  background-color: #BD081C;
}

.xs-social-tigger li a.xs-dribbble {
  background-color: #EA4C89;
}

.xs-social-tigger li a.xs-instagram {
  background-color: #E4405F;
}

.xs-social-tigger li a.xs-google-plus {
  background-color: #DD4B39;
}

.xs-social-tigger li a.xs-envelope {
  background-color: #373737;
}

.xs-social-tigger li:nth-child(1) a {
  -webkit-transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0.6s;
  transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0.6s;
}

.xs-social-tigger li:nth-child(2) a {
  -webkit-transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0.9s;
  transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0.9s;
}

.xs-social-tigger li:nth-child(3) a {
  -webkit-transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44) 1.2s;
  transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44) 1.2s;
}

.xs-social-tigger li:nth-child(4) a {
  -webkit-transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44) 1.5s;
  transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44) 1.5s;
}

.xs-social-tigger.active li:nth-child(1) a {
  -webkit-transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0.6s;
  transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0.6s;
  -webkit-transform: translate(0, -80px);
  transform: translate(0, -80px);
}

.xs-social-tigger.active li:nth-child(2) a {
  -webkit-transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0.9s;
  transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0.9s;
  -webkit-transform: translate(70px, -40px);
  transform: translate(70px, -40px);
}

.xs-social-tigger.active li:nth-child(3) a {
  -webkit-transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44) 1.2s;
  transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44) 1.2s;
  -webkit-transform: translate(70px, 40px);
  transform: translate(70px, 40px);
}

.xs-social-tigger.active li:nth-child(4) a {
  -webkit-transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44) 1.5s;
  transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44) 1.5s;
  -webkit-transform: translate(0, 80px);
  transform: translate(0, 80px);
}

.xs-social-tigger.active li a {
  opacity: 1;
  visibility: visible;
}

.xs-map {
  height: 570px;
  width: 100%;
}

.custom-control {
  margin-bottom: 24px;
}

.custom-control .custom-control-label::after,
.custom-control .custom-control-label::before {
  width: 22px;
  height: 22px;
  top: 0;
  -webkit-transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
}

.custom-control.custom-checkbox {
  border-radius: 4px;
}

.custom-control .custom-control-label::after {
  -webkit-transform: scale(0);
  transform: scale(0);
}

.custom-control .custom-control-input:checked~.custom-control-label::after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.custom-control .custom-control-label::before {
  background-color: transparent;
  border: 1px solid #eaeaea;
  pointer-events: visible;
  cursor: pointer;
}

.custom-control .custom-control-input:focus~.custom-control-label::before {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.custom-control .custom-control-label {
  margin-bottom: 0;
  padding-left: 14px;
  font-size: 0.85714em;
  color: #555;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.custom-control .custom-control-label span {
  color: #ea1a25;
}

.custom-control.custom-radio .custom-control-label::after,
.custom-control.custom-radio .custom-control-label::before {
  width: 20px;
  height: 20px;
  background-size: 70% 70%;
  border-radius: 100%;
  border-color: transparent;
}

.custom-control.custom-radio .custom-control-label::before {
  border-color: #eaeaea;
}

.custom-control.custom-radio .custom-control-input:checked~.custom-control-label::before {
  background-color: #FFFFFF;
  border-color: #ea1a25;
}

.custom-control.custom-radio .custom-control-input:checked~.custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%230063d1'/%3E%3C/svg%3E");
}

.custom-control.custom-radio.color-one .custom-control-label::before {
  background-color: #1abc9c;
  border-color: transparent;
}

.custom-control.custom-radio.color-one .custom-control-input:checked~.custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%231abc9c'/%3E%3C/svg%3E");
}

.custom-control.custom-radio.color-one .custom-control-input:checked~.custom-control-label::before {
  border-color: #1abc9c;
}

.custom-control.custom-radio.color-two .custom-control-label::before {
  background-color: #3498db;
  border-color: transparent;
}

.custom-control.custom-radio.color-two .custom-control-input:checked~.custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%233498db'/%3E%3C/svg%3E");
}

.custom-control.custom-radio.color-two .custom-control-input:checked~.custom-control-label::before {
  border-color: #3498db;
}

.custom-control.custom-radio.color-three .custom-control-label::before {
  background-color: #9b59b6;
  border-color: transparent;
}

.custom-control.custom-radio.color-three .custom-control-input:checked~.custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%239b59b6'/%3E%3C/svg%3E");
}

.custom-control.custom-radio.color-three .custom-control-input:checked~.custom-control-label::before {
  border-color: #9b59b6;
}

.custom-control.custom-radio.color-four .custom-control-label::before {
  background-color: #e74c3c;
  border-color: transparent;
}

.custom-control.custom-radio.color-four .custom-control-input:checked~.custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23e74c3c'/%3E%3C/svg%3E");
}

.custom-control.custom-radio.color-four .custom-control-input:checked~.custom-control-label::before {
  border-color: #e74c3c;
}

.custom-control.custom-radio.color-five .custom-control-label::before {
  background-color: #e67e22;
  border-color: transparent;
}

.custom-control.custom-radio.color-five .custom-control-input:checked~.custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23e67e22'/%3E%3C/svg%3E");
}

.custom-control.custom-radio.color-five .custom-control-input:checked~.custom-control-label::before {
  border-color: #e67e22;
}

.custom-control.custom-radio.color-six .custom-control-label::before {
  background-color: #2c3e50;
  border-color: transparent;
}

.custom-control.custom-radio.color-six .custom-control-input:checked~.custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%232c3e50'/%3E%3C/svg%3E");
}

.custom-control.custom-radio.color-six .custom-control-input:checked~.custom-control-label::before {
  border-color: #2c3e50;
}

.pagination li {
  display: inline-block;
  margin: 0 10px 0 0;
}

.pagination li:last-child {
  margin: 0;
}

.pagination li a {
  width: 42px;
  height: 42px;
  line-height: 42px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 1px solid #eaeaea;
  color: #222;
  padding: 0;
  border-radius: 100%;
  text-align: center;
}

.pagination li a:hover,
.pagination li a.current {
  background-color: #ea1a25;
  color: #FFFFFF;
  border-color: #ea1a25;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  border-radius: 100%;
  font-size: 0.85714em;
  color: #eaeaea;
}

#myTabContent {
  padding-bottom: 20px;
}

.add-to-compare {
  color: #ea1a25;
}

.xs-video-popup {
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: block;
  text-align: center;
  font-size: 1.28571em;
  color: #FFFFFF;
  background-color: #ea1a25;
  border-radius: 100%;
}

.xs-video-popup:hover {
  color: #FFFFFF;
}

.round-nav {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100%;
  display: block;
  background-color: #ea1a25;
  text-align: center;
  cursor: pointer;
  color: #FFFFFF;
}

.xs-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.content-center {
  text-align: center;
  margin: 0 auto;
}

.content-left {
  margin: 0 auto 0 0;
}

.content-right {
  text-align: left;
  margin: 0 0 0 auto;
}

.transition,
.xs-tab-nav .nav-link,
.xs-tab-nav .nav-link:before,
.xs-post-meta-list span a,
.xs-blog-post-tag a {
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.xs-section-padding {
  padding: 40px 0;
}

.xs-section-padding-2 {
  padding: calc(80px / 2) 0;
}

.xs-feature-product-tab.xs-section-padding-2 {
  padding-bottom: 10px;
}

.xs-section-padding-bottom {
  padding-bottom: 40px;
}

.xs-section-padding-top {
  padding-top: 80px;
}

.xs-box-shadow {
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
}

.xs-feauture-product-section.xs-section-padding {
  padding: 40px 0 40px 0;
}

.xs-box-shadow-2 {
  -webkit-box-shadow: 0px 2px 20px 0px rgba(144, 144, 144, 0.2);
  box-shadow: 0px 2px 20px 0px rgba(144, 144, 144, 0.2);
}

.xs-margin-0 {
  margin: 0;
}

.xs-mb-0 {
  margin-bottom: 0;
}

.xs-mb-10 {
  margin-bottom: 10px;
}

.xs-mb-20 {
  margin-bottom: 20px;
}

.xs-mb-30 {
  margin-bottom: 30px;
}

.xs-mb-40 {
  margin-bottom: 40px;
}

.xs-mb-50 {
  margin-bottom: 50px;
}

.xs-mb-60 {
  margin-bottom: 60px;
}

.xs-mb-70 {
  margin-bottom: 70px;
}

.xs-mb-80 {
  margin-bottom: 80px;
}

.xs-mb-90 {
  margin-bottom: 90px;
}

.xs-mb-100 {
  margin-bottom: 100px;
}

.xs-padding-0 {
  padding: 0;
}

.xs-pt-20 {
  padding-top: 20px;
}

.xs-pt-50 {
  padding-top: 50px;
}

.xs-mt-30 {
  margin-top: 30px;
}

.color-black {
  color: #000000;
}

.color-white {
  color: #FFFFFF;
}

.color-primary {
  color: #ea1a25;
}

.color-secondary {
  color: #ea1a25;
}

.color-yellow {
  color: #fed700;
}

.color-red {
  color: #d31242;
}

.color-semi-black {
  color: #333e48;
}

.xs-pr-90 {
  padding-right: 90px;
}

.bg-black {
  background-color: #000000;
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-xs-primary {
  background-color: #ea1a25;
}

.bg-xs-secondary {
  background-color: #ea1a25;
}

.bg-gray {
  background-color: #f9f9f9;
}

.bg-yellow {
  background-color: #fed700;
}

.bg-red {
  background-color: #d31242;
}

.bg-semi-black {
  background-color: #333e48;
}

.bg-teal {
  background-color: #15c1d7;
}

.bg-chocolate {
  background-color: #8c6e63;
}

.bg-navyBlue {
  background-color: #0059a7;
}

.bg-blue {
  background-color: #5c6dbd;
}

.bg-green {
  background-color: #009893;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  opacity: .5;
  z-index: 1;
}

.parallax-window {
  background-attachment: fixed;
}

.lead {
  font-size: 1.14286em;
  font-weight: 400;
}

.xs-btn-wraper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.xs-btn-wraper .btn,
.xs-btn-wraper a {
  margin-right: 20px;
}

.xs-btn-wraper .btn:last-child,
.xs-btn-wraper a:last-child {
  margin-right: 0;
}

.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.col-md-5-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  position: relative;
  width: 100%;
}

.xs-gradient {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#f1fde7), color-stop(75%, #e7fef0), to(#dcfff9));
  background-image: linear-gradient(to top, #f1fde7 0%, #e7fef0 75%, #dcfff9 100%);
}

.xs-watermark-text {
  display: block;
  position: absolute;
  font-size: 8.42857em;
  color: #0869d5;
  font-weight: 700;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  pointer-events: none;
  z-index: 1;
}

.xs-watermark-text.large-version {
  font-size: 380px;
  color: #000000;
  text-indent: -65px;
}

iframe#preview-bar-iframe {
  display: none;
}

iframe#preview-bar-iframe {
  display: none !important;
}

label.currency-picker__wrapper {
  margin: 0;
}

.xs-menus .nav-menu>li>a {
  padding-right: 20px;
  font-weight: 400;
}

.wish-list-hover {
  position: relative;
}

.wish-list-hover:hover .wish-list-hover-show {
  opacity: 1;
  visibility: visible;
}

.wish-list-hover .wish-list-hover-show {
  position: absolute;
  top: 50px;
  right: -20px;
  background: #fff;
  width: 300px;
  z-index: 2;
  padding: 15px 15px;
  -webkit-box-shadow: 0px 0px 1px #0000001c;
  box-shadow: 0px 0px 1px #0000001c;
  -webkit-transition: .4s;
  transition: .4s;
  opacity: 0;
  visibility: hidden;
}

.wish-list-hover .removeWishlistItem.btn-cancel.pull-right {
  background: #ea1a25;
  color: #fff !important;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  line-height: 15px;
  margin-left: 20px;
  font-size: 12px;
}

p.xs-btn-wraper.justify-content-center a.button.wc-backward.btn.btn-primary {
  display: inline-block;
  font-size: 0.85714em;
  font-weight: 500;
  padding: 16px 35px;
  letter-spacing: .3px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: #FFFFFF;
}

.widget_shopping_cart_content p.xs-btn-wraper.justify-content-center a.button.wc-backward.btn.btn-primary {
  color: #FFFFFF !important;
  background-color: #ea1a25;
  border-color: #ea1a25;
}

.widget_shopping_cart_content p.xs-btn-wraper.justify-content-center a.button.wc-backward.btn.btn-primary:hover {
  background-color: #0063d1;
  color: #FFFFFF !important;
  border-color: #ea1a25;
}

.xs-miniCart-menu .woocommerce-mini-cart__buttons a,
.xs-miniCart-menu input.checkout {
  display: inline-block;
  font-size: 0.85714em;
  font-weight: 500;
  padding: 16px 35px;
  letter-spacing: .3px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: #fff;
  font-size: 13px !important;
  border-radius: 30px;
  margin: 0 !important;
  background-color: #ea1a25;
}

.xs-miniCart-menu .woocommerce-mini-cart__buttons a:hover,
.xs-miniCart-menu input.checkout:hover {
  background-color: #0f233c;
}

.mini-cart-button-area .xs-btn-wraper {
  margin-right: 13px;
}

.woocommerce-Price-amount.amount {
  color: #ea1a25;
  padding-left: 5px;
}

.woocommerce-mini-cart__total.total {
  margin-top: 10px;
}

.breadcrumb-item+.breadcrumb-item::before {
  margin-right: 25px;
}

#shopify-section-contacts .form-row {
  padding-left: 0;
  padding-right: 0;
}

.form-row,
#shopify-section-contacts .form-row .col-md-6:first-child {
  padding-left: 0;
}

.form-row,
#shopify-section-contacts .form-row .col-md-6:last-child {
  padding-right: 0;
}

.btn-full {
  width: 100%;
  margin-bottom: 10px;
}

#form-canl-logi a {
  color: #222;
}

a#RecoverPassword {
  color: #ea1a25;
  margin-left: 10px;
}

div#form-canl-logi {
  font-size: 13px;
  margin-top: 15px;
}

.btn-full {
  width: 100% !important;
}

#list-th .xs-product-wraper {
  border: 1px solid #eaeaea !important;
}

.wishlist-tile-container .removeWishlistItem {
  display: block;
  font-size: 1.5em;
  height: 1em;
  width: 1em;
  text-align: center;
  line-height: 1;
  border-radius: 100%;
  color: red !important;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  border: 0;
}

.wishlist-tile-container .removeWishlistItem:hover {
  color: #fff !important;
  background: red;
}

.xs-product-wraper .xs-product-header {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.xs-product-wraper .xs-product-header .spr-badge span.spr-badge-caption {
  display: none;
}

.xs-product-wraper .xs-product-header .spr-badge .spr-starrating {
  color: #ffa801;
  font-size: 0.85714em;
}

.xs-product-wraper .xs-product-header .add-to-wishlist.wishlist a {
  color: #ea1a25;
}

.xs-product-wraper img {
  margin: 0 auto;
  float: none;
  text-align: center;
  display: block;
}

.xs-tab-slider .xs-product-header {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.xs-tab-slider .xs-product-header .spr-badge span.spr-badge-caption {
  display: none;
}

.xs-tab-slider .xs-product-header .spr-badge .spr-starrating {
  color: #ffa801;
  font-size: 0.85714em;
}

.xs-tab-slider .xs-product-header .add-to-wishlist.wishlist a {
  color: #ea1a25;
}

a.btn.btn-outline-primary.animInLeft {
  border: 2px solid !important;
}

form#contact_form {
  width: 100%;
}

form#contact_form input#Email {
  height: 60px;
}

.xs-product-wraper:hover .xs-product-hover-area a {
  display: block;
}

.shop-category h5.widget-title {
  font-size: 1.14286em;
  font-weight: 500;
  position: relative;
  margin: 0 0 20px;
}

.shop-category ul li {
  border-bottom: 0px dashed #f1f1f1;
  list-style: none;
  font-family: sans-serif;
}

.shop-category ul li a {
  color: #626c84;
  border-radius: 0;
  padding: 10px 0;
  display: inline-block;
  font-weight: 400;
  line-height: 24px;
  -webkit-transition: .4s;
  transition: .4s;
  font-family: Poppins, sans-serif;
  text-transform: capitalize;
}

.shop-category ul li:hover a {
  color: #ea1a25;
}

.xs-product-header {
  /*-webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;*/
}

.xs-product-header .spr-badge span.spr-badge-caption {
  display: none;
}

.xs-product-header .spr-badge .spr-starrating {
  color: #ffa801;
  font-size: 0.85714em;
}

.xs-product-header .add-to-wishlist.wishlist a {
  color: #ea1a25;
}

.shop-category ul li:last-child {
  border: none;
}

.product-sku {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  margin-bottom: 10px;
}

.product-sku span.variant-sku {
  margin-left: 3px;
}

.categories-sku {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  font-size: 20px;
}

.categories-sku .categories-sku-item {
  font-size: 14px;
  margin-right: 10px;
}

.categories-sku a {
  font-size: 14px;
}

.shopify-product-reviews-badge-area {
  margin-bottom: 20px;
  line-height: 1;
  float: none;
  overflow: visible;
  height: 100%;
  width: 100%;
  display: block;
}

span.spr-starrating.spr-badge-starrating i {
  font-size: 0.85714em;
  color: #fed700;
}

.shopify-product-reviews-badge-area span.spr-badge-caption {
  color: #777777;
  float: none;
  padding-top: 0;
  position: static;
  font-size: 0.85714em;
  margin-left: 16px;
}

span.price.highlight {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: block;
  font-weight: 500;
  font-size: 2.14286em;
  line-height: 1;
  text-align: left;
}

span.price.highlight money {
  float: right;
}

.add-tocart-ite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.add-tocart-ite li {
  margin-right: 15px;
}

.color-prodcut-area .header {
  font-weight: 500;
  margin-right: 18px !important;
}

.color-prodcut-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.color-prodcut-area .color label {
  border-radius: 50%;
  width: 30px !important;
  height: 30px !important;
  overflow: hidden;
  min-width: auto !important;
  border: 1.5px solid #ffffff;
  -webkit-box-shadow: 0px 0px 0px 2px #000 !important;
  box-shadow: 0px 0px 0px 2px #000 !important;
  -webkit-transition: .4s;
  transition: .4s;
}

.swatch .swatch-element:hover .tooltip {
  -webkit-transform: translateY(0px) translateX(-8px) !important;
  transform: translateY(0px) translateX(-8px) !important;
}

.swatch label {
  border-radius: 50% !important;
  min-width: auto !important;
  height: 36px !important;
  width: 36px !important;
  line-height: 35px !important;
  text-align: center;
  padding: 0;
  background: transparent;
  color: #222222;
  font-weight: 500;
  font-size: 12px;
  border: 2px solid #00000017;
  -webkit-transition: .4s;
  transition: .4s;
}

#shopify-product-reviews .spr-container {
  width: 100% !important;
  max-width: 100% !important;
}

div#shopify-product-reviews {
  width: 100%;
}

#shopify-product-reviews .spr-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#shopify-product-reviews span.spr-summary-actions {
  margin-left: 20px;
  background: #ea1a25;
  color: #fff !important;
  border-radius: 2px;
}

#shopify-product-reviews span.spr-summary-actions a {
  color: #fff;
  border: 1px solid #ea1a25;
  padding: 5px 15px;
}

div#shopify-product-reviews form {
  max-width: 400px;
}

div#shopify-product-reviews form label.spr-form-label {
  font-size: 14px;
  margin-top: 15px;
}

div#shopify-product-reviews form input,
div#shopify-product-reviews form textarea {
  border: 1px solid #e5e5e5;
  padding: 10px;
  margin-top: 3px;
}

div#shopify-product-reviews a.spr-icon.spr-icon-star.spr-icon-star-empty {
  opacity: .8;
  margin-top: 5px;
  font-size: 12px;
}

#shopify-product-reviews fieldset.spr-form-actions {
  float: left;
}

#shopify-product-reviews fieldset.spr-form-actions input {
  color: #ea1a25;
  font-weight: 500;
  border: 1px solid #ea1a25;
  padding: 12px 25px;
  border-radius: 2px;
  background-color: #fafafa;
}

form#contact_form input#Email {
  height: 60px;
}

#shopify-product-reviews .spr-summary-starrating i {
  font-size: 0.85714em;
  color: #fed700;
}

#shopify-product-reviews .spr-summary-caption {
  color: #777777;
  float: none;
  padding-top: 0;
  position: static;
  font-size: 0.85714em;
  margin-left: 16px;
}

span.spr-starratings.spr-review-header-starratings i {
  color: #fed700;
  font-size: 0.85714em;
}

.spr-review-header-byline {
  font-style: normal !important;
}

.spr-review-header-byline strong {
  font-weight: 500;
  color: #ea1a25;
}

.swatch {
  margin: 1em 0;
}

.swatch .header {
  margin: 0.5em 0;
}

.swatch input {
  display: none;
}

.swatch-element label {
  padding: 0 10px;
}

.color.swatch-element label {
  padding: 0;
}

.swatch input:checked+label {
  border-color: #000000;
}

.swatch .swatch-element {
  float: left;
  -webkit-transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  margin: 0px 10px 10px 0;
  position: relative;
}

.crossed-out {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.swatch .swatch-element .crossed-out {
  display: none;
}

.swatch .swatch-element.soldout .crossed-out {
  display: block;
}

.swatch .swatch-element.soldout label {
  filter: alpha(opacity=60);
  -khtml-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
}

.swatch .tooltip {
  left: -23px;
  text-align: center;
  background: gray;
  color: #fff;
  bottom: 100%;
  padding: 10px;
  display: block;
  position: absolute;
  width: 100px;
  margin-bottom: 15px;
  filter: alpha(opacity=0);
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all .25s ease-out;
  transition: all .25s ease-out;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  z-index: 10000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.swatch .tooltip:before {
  bottom: -20px;
  content: " ";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  width: 100%;
}

.swatch .tooltip:after {
  border-left: solid transparent 10px;
  border-right: solid transparent 10px;
  border-top: solid gray 10px;
  bottom: -10px;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -13px;
  position: absolute;
  width: 0;
}

.swatch .swatch-element:hover .tooltip {
  filter: alpha(opacity=100);
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.swatch.error {
  background-color: #e8d2d2 !important;
  color: #333 !important;
  padding: 1em;
  border-radius: 5px;
}

.swatch.error p {
  margin: 0.7em 0;
}

.swatch.error p:first-child {
  margin-top: 0;
}

.swatch.error p:last-child {
  margin-bottom: 0;
}

.swatch.error code {
  font-family: monospace;
}

.xs-list-group {
  font-size: 1.05714em;
  line-height: 20px;
}

.serch-result-title {
  background: #f9f9f9;
  padding: 20px 10px;
  font-size: 9px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
  color: #ea1a25;
}

form.xs-navbar-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.serch-result-form-area input#Search {
  width: 100%;
}

.serch-result-form-area {
  max-width: 320px;
  margin: 0 auto;
  padding: 25px 0px;
}

.serch-result-area {
  border-bottom: 1px solid #f9f9f9;
  padding-bottom: 50px 0;
}

.serch-result-done .xs-single-product .xs-product-content {
  padding: 30px;
  padding-top: 0;
  text-align: center;
}

.serch-result-done .xs-single-product .xs-product-content span {
  color: #ea1a25;
  font-size: 14px;
}

.serch-result-done .xs-single-product a img {
  padding: 0 30px;
  height: 160px;
  margin: 0 auto;
  float: none;
  display: block;
  margin-top: 15px;
  margin-bottom: 15PX;
}

.serch-result-done {
  padding: 50px 0;
  border-bottom: 1px solid #f9f9f9;
}

div#RecoverPasswordForm .xs-navbar-search {
  max-width: 300px;
}

h4.product-title-v2.xs-cat {
  margin-bottom: 5px;
}

h4.product-title-v2 strong a {
  color: #222;
}

.product-title-v2 a:hover {
  color: #ea1a25;
}

.xs-product-widget .product-image-area {
  max-width: 125px;
  overflow: hidden;
  max-height: 125px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 125px;
  min-height: 125px;
}

.xs-product-widget .product-image-area img {
  max-height: 96px;
}

.xs-product-category .product-image-area {
  max-width: 158px;
  max-height: 158px;
  overflow: hidden;
}

.product-slider-list .xs-product-widget .product-image-area {
  max-width: 70px;
  overflow: hidden;
  max-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 70px;
  min-height: 70px;
}

.product-slider-list .xs-product-widget .product-image-area img {
  max-height: 70px;
}

input.shopify-challenge__button.btn {
  background: #ea1a25;
}

input#RecoverEmail {
  border: 0;
  padding: 13px 20px;
  border-radius: 0;
  font-style: italic;
  background-color: transparent;
  font-size: 1em;
  font-style: normal;
  border: 1px solid #ced4da;
  border-radius: 3px;
}

#RecoverPasswordForm input[type="submit"] {
  padding: 14px 20px !important;
  margin-top: -4px;
  margin-left: -7px;
  border: 0px;
  background: #ea1a25;
  border-radius: 0px 4px 4px 0px;
}

button#HideRecoverPasswordLink {
  margin-top: 21px;
  color: #ea1a25;
  background: transparent;
  border: none;
}

.shop-product-image-area-1 {
  padding: 0px 20px;
  max-width: 235px;
  max-height: 155px;
  overflow: hidden;
  margin: 0 auto;
  height: 155px;
}

.shop-product-image-area-1 img {
  height: 150px !important;
  width: auto !important;
  max-width: 100%;
  padding-top: 20px;
}

.shop-product-image-area-2 {
  padding: 0px 0px;
  max-width: 213px;
  max-height: 213px;
  overflow: hidden;
  margin: 0 auto;
}

.shop-product-image-area-2 img {
  height: 150px !important;
  width: auto !important;
  max-width: 100%;
}

.shop-product-image-area-3 {
  padding: 10px 0px;
  max-width: 125px;
  width: 100%;
  max-height: 125px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  max-height: 125px;
  min-height: 125px;
}

.shop-product-image-area-3 a {
  padding: 15px;
}

ul.xs-recent-post-widget .posts-thumb img {
  height: 70px;
  width: 80px;
}

.xs-product-wraper .xs-product-hover-area {
  text-align: center;
}

.xs-deal-of-the-week span.price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.widget-slider-type .xs-product-widget .product-image-area {
  max-width: 70px !important;
  width: 100%;
  max-height: 70px !important;
  min-width: 70px !important;
  min-height: 70px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.widget-slider-type .xs-product-widget .product-image-area img {
  max-height: 70px;
}

.home-v3-body .xs-product-wraper .xs-product-content {
  margin-top: 4px;
}

.home-v3-body .version-thumb span.price.version-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-title.highlight a strong:hover {
  color: #ea1a25;
}

.home-v4-body .xs-product-slider-item .xs-product-widget .product-image-area {
  max-width: 70px !important;
  width: 100%;
  max-height: 70px !important;
  min-width: 70px !important;
  min-height: 70px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.home-v4-body .xs-product-slider-item .xs-product-widget .product-image-area img {
  max-height: 70px;
}

.home-v4-body .xs-product-wraper.version-4 img {
  margin-bottom: 18px;
}

.home-v5-body .xs-feature-product.highlight {
  background: #f7f7f7;
}

.home-v5-body .xs-banner-slider-4 .owl-dots {
  text-align: center;
}

.home-v5-body .xs-product-content h4.product-title.highlight:first-child {
  margin-bottom: 0;
}

.home-v5-body .xs-product-wraper.highlight .product-image-area {
  margin-bottom: 66px;
}

.home-v6-body .xs-product-slider-item .xs-product-widget .product-image-area {
  max-width: 70px !important;
  width: 100%;
  max-height: 70px !important;
  min-width: 70px !important;
  min-height: 70px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.home-v6-body .xs-product-slider-item .xs-product-widget .product-image-area img {
  max-height: 70px;
}

.home-v6-body .xs-product-slider-item .xs-product-widget .product-image-area img {
  max-height: 70px;
}

.col-md-2.footer-widget.logo-ffooter-mdl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.store-country-list {
  padding: 20px 0px;
}

.store-country-list .single-item-flug {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 0px;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 0px;
  margin-right: 0;
}

.store-country-list .single-item-flug p {
  margin: 0;
  margin-left: 10px;
  font-size: 13px;
}

section.store-country-area {
  background: #F8F8F8;
}

.store-country-list ul li:first-child {
  padding-left: 0;
}

.store-country-list ul li:last-child {
  padding-right: 0;
  border-right: 0px solid red;
}

.header-version-3-top .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-version-3-top .xs-navbar-search {
  margin-top: 0 !important;
  height: 50px !important;
  background: #fff;
  border-radius: 0;
  border: 0;
}

.header-version-3-top .xs-navBar.navBar-v5 .xs-navbar-search .form-control {
  color: #959595;
}

.header-version-3 .xs-navBar.secondary-color-v .xs-navbar-search .btn[type="submit"] {
  background: #ea1a25;
  border-radius: 0;
  height: calc(100% + 0px);
  margin-top: 0px;
}

.header-version-3 .xs-navBar.secondary-color-v .xs-navbar-search .btn[type="submit"]:hover {
  background: #0f233c;
}

.header-cus-class-3 .xs-navbar-search .btn[type="submit"] {
  background: #ea1a25;
}

.header-cus-class-3 .xs-navbar-search .btn[type="submit"]:hover {
  background: #0f233c;
}

.header-version-3-top a.xs-single-wishList {
  color: #fff;
}

.header-version-3-bottom .xs-navDown.navDown-v5 .xs-menus .nav-menu>li>a {
  padding: 20px 25px 19px;
  font-weight: 400;
}

.header-version-3 select#product_cat {
  font-size: 14px;
  color: #000;
}

.xs-navDown .btn:not([type="submit"]) strong {
  color: #fff;
}

.xs-navDown .btn:not([type="submit"]) {
  color: #fff;
  border: 2px solid #e7e7e7;
}

.header-version-3-bottom .xs-navDown .btn:not([type="submit"]) {
  width: 100%;
  font-size: 0.85714em;
  letter-spacing: .2px;
  padding: 8px 12px;
  border: 1px solid #e7e7e7;
  -webkit-transition: all .6s;
  transition: all .6s;
  border-width: 0;
  border-left: 1px solid;
  border-right: 1px solid;
  border-color: #ededed;
  border-radius: 0;
  padding: 10.2px 10px;
  background: #ea1a25;
}

.xs-navDown .btn:not([type="submit"]):hover {
  background: #0f233c;
}

.header-version-4 .header-version-4-rightbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-version-4 .xs-logo-wraper {
  padding: 14px 0px;
}

.header-version-4-rightbar .navSearch-group>a {
  font-size: 2.14286em;
}

.header-version-4 .header-version-4-rightbar a.xs-single-wishList.offset-cart-menu {
  color: #ea1a25;
}

.header-version-4 nav.xs-menus.xs_nav-landscape {
  text-align: center;
}

.featured-product-update-css .xs-feature-product.highlight .xs-feature-product-info {
  position: relative;
  padding: 30px 30px;
}

.featured-product-update-css .product-image-area {
  max-height: 423px;
  min-height: 424px;
  overflow: hidden;
}

.featured-product-update-css .product-image-area img {
  height: 404px !important;
  padding-bottom: 30px;
  float: right;
  padding-right: 30px;
  -webkit-transition: .5s;
  transition: .5s;
  width: auto;
}

.featured-product-update-css .xs-feature-product.highlight {
  background: #f7f7f7;
}

.featured-product-update-css .product-image-area:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.featured-product-update-css .xs-feature-product-info {
  position: relative;
  padding: 30px;
  padding-bottom: 15px;
  min-height: 110px;
}

.featured-product-update-css .xs-feature-product-info h4 {
  margin: 0;
}

.featured-product-update-css .xs-feature-product img {
  height: 149px;
  float: right;
  width: auto;
}

.featured-product-update-css .xs-feature-product {
  background: #f7f7f7;
}

.xs-content-header.section-title-area {
  border-bottom: 0;
  padding-left: 0px;
}

.feature-product-v4 .price {
  font-size: 1em;
}

.feature-product-v4 ul {
  font-size: 12px;
}

.small-offer-banner-v2 .offer-banner-content p {
  font-size: 24px;
  font-weight: 400;
}

.small-offer-banner-v2 .offer-banner-content h3 {
  font-size: 24px;
  font-weight: 700;
}

.xs-brand-content.version-3 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #ddd;
  width: 20%;
  min-height: 145px !important;
}

.marketo-footer-version-3 .marketo-footer-top-layer {
  background-color: #efefef;
}

.marketo-footer-version-3 .xs-footer-main,
.marketo-footer-version-3 .marketo-footer-top-layer {
  padding-top: 80px;
  padding-bottom: 65px;
}

.marketo-footer-version-3 .xs-footer-logo p {
  color: #777777;
}

.marketo-footer-version-3 .xs-footer-logo img {
  padding: 0px 0px 20px 0;
}

.marketo-footer-version-3 .xs-copyright-text p {
  margin: 0;
}

.xs-footer-info-and-payment {
  font-size: 13.6px;
}

.marketo-footer-version-3 .xs-back-to-top-wraper {
  right: -55px;
}

.icon-box-version-3 .xs-feature-list li {
  padding: 10px;
  border: 0;
}

.icon-box-version-3 .xs-feature-list {
  -webkit-box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.08);
  padding: 20px 28px;
  border: 0;
}

.icon-box-version-3 .media.xs-feature {
  border-right: 1px solid #eaeaea;
}

.icon-box-version-3 li:last-child .media.xs-feature {
  border: none;
}

.icon-box-version-3 .media.xs-feature h4 {
  margin-bottom: 6px;
}

.mini_cart_item .mini-product-thumb {
  width: 75px;
  height: 75px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mini_cart_item .mini-product-thumb {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 15px;
}

.mini_cart_item .mini-product-thumb img {
  height: 65px;
  width: auto;
}

.single-item-collcation-list-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single-item-collcation-list-area .col-md-2 {
  padding: 0px 10px;
  overflow: hidden;
}

.single-item-collcation-img img {
  width: auto;
}

.single-item-collcation-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 160px;
  overflow: hidden;
  max-height: 160px;
}

.single-item-collcation-list-area .col-md-2 .single-item-collcation:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-transition: -webkit-transform 1.8s;
  transition: -webkit-transform 1.8s;
  transition: transform 1.8s;
  transition: transform 1.8s, -webkit-transform 1.8s;
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -200%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -200%, 0);
}

.single-item-collcation-list-area .col-md-2:hover .single-item-collcation:before {
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 200%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 200%, 0);
}

.single-item-collcation h2 {
  color: #222;
  font-size: 15px;
  text-align: center;
  padding: 10px;
  font-weight: 400;
}

.jlw-search form {
  width: auto;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 10px;
  padding-left: 10px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.jlw-search form input#search {
  background: transparent;
  height: 40px;
  border: 0;
  padding: 10px;
  width: 155px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  max-width: 100%;
}

.jlw-search form button {
  background: transparent;
  border: 0;
  height: 40px;
  width: 40px;
  font-size: 17px;
  text-align: right;
}

.jlw-search form input#search[type=search]:focus {
  width: 300px;
}

.header-version-jlw .xs-logo-wraper {
  text-align: center;
  padding: 19px 0;
}

.header-version-jlw .xs-wish-list-item {
  padding: 0;
}

.header-version-jlw .nav-menus-wrapper ul {
  text-align: center;
}

.header-version-jlw .xs-navDown.navDown-v5 .xs-menus .nav-menu {
  text-align: center;
}

header.xs-header.header-version-jlw .header-version-3-top a.xs-single-wishList {
  color: #777777;
}

.header-version-jlw .header-version-3-top .xs-single-wishList .xs-item-count.highlight {
  background: #f0f0f0;
  color: #565656;
}

.video-banner-img {
  position: relative;
}

.video-banner-img a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
}

section.banner-area-simple {
  background-color: #f6f7fb;
}

.left-img-area-simple img {
  max-width: 100%;
}

.banner-area-simple .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.right-content-area-simple h3 {
  font-size: 36px;
  line-height: 48px;
  font-weight: 500;
  color: #222;
}

.right-content-area-simple p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #666;
}

.right-content-area-simple {
  margin-bottom: 30px;
}

.bg_css_cover_style {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.responsive-menu-area .nav-toggle {
  position: relative;
  width: 30px;
  height: 30px;
  padding: 0;
  top: 0;
  margin-top: 0;
  right: 0;
  cursor: pointer;
  left: 0;
}

.responsive-menu-area .row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 20px;
}

.responsive-menu-area .xs-wish-list.wish-list-hover {
  display: block;
  margin: 0;
  margin-right: 15px;
}

.responsive-menu-area .xs-wish-list-item {
  font-size: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin-top: 12px;
}

.responsive-menu-area nav.xs-menus.xs_nav-portrait {
  height: auto;
}

.responsive-menu-area .xs-logo-wraper {
  padding: 0;
}

.menu-list-area {
  margin-top: 24px;
}

section.responsive-menu-area {
  padding: 15px 0px;
  border-bottom: 1px solid #0f233c;
  background-color: #0f233c;
}

.responsive-menu-area .xs-logo-wraper img {
  max-height: 50px !important;
  width: auto !important;
}

.responsive-menu-area {
  display: none;
}

.responsive-menu-area .nav-toggle {
  position: relative;
  width: 30px;
  height: 30px;
  padding: 0;
  top: 0;
  margin-top: 0;
  right: 0;
  cursor: pointer;
  left: 0;
}

.responsive-menu-area .row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 20px;
}

.responsive-menu-area .xs-wish-list.wish-list-hover {
  display: block;
  margin: 0;
  margin-right: 15px;
}

.responsive-menu-area .xs-wish-list-item {
  font-size: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}

.responsive-menu-area nav.xs-menus.xs_nav-portrait {
  height: auto;
}

.responsive-menu-area .xs-logo-wraper {
  padding: 0;
}

.menu-list-area {
  margin-top: 24px;
}

section.responsive-menu-area {
  padding: 15px 0px;
  border-bottom: 1px solid #00000030;
}

.responsive-menu-area .xs-logo-wraper img {
  max-height: 50px !important;
  width: auto !important;
}

.responsive-menu-area nav.xs-menus.xs_nav-portrait .nav-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.responsive-menu-area nav.xs-menus.xs_nav-portrait i {
  margin-left: 8px;
  font-size: 17px;
  margin-top: -1px;
  -webkit-appearance: listitem;
  cursor: pointer;
  color: #70798b;
}

.responsive-search-area .row {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.responsive-menu-area .wish-list-hover .wish-list-hover-show {
  right: -45px;
}

.responsive-search-area .xs-navbar-search .xs-category-select {
  border-top-color: transparent;
}

.responsive-search-area .xs-navbar-search input:not([type="submit"]),
.responsive-search-area .xs-navbar-search .xs-category-select,
.responsive-search-area .xs-navbar-search .btn[type="submit"] {
  height: 50px;
}

.responsive-search-area .xs-navbar-search {
  margin: 0;
  padding: 15px 0;
}

.xs-header .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.xs-navDown .row {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.xs-header .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.xs-navDown .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.video-banner-img a {
  font-size: 48px;
  color: #f05d4d;
}

.img-height-01 img {
  width: auto;
}

.img-height-01-left .product-image-area {
  min-height: 75px;
  max-width: 75px;
  overflow: hidden;
  min-width: 75px;
  max-height: 75px;
}

.img-height-02 img {
  height: 155px;
}

.container.xs-section-padding.padding-left-right {
  padding-left: 15px;
  padding-right: 15px;
}

.banner-type-one .xs-section-padding {
  padding-left: 15px;
  padding-right: 15px;
}

.xs-breadcumb {
  margin-top: 15px;
}

.new-form-pro-cart .adto-cart-me {
  margin-right: 10px;
}

.new-form-pro-cart .adto-cart-me:last-child {
  margin-right: 0;
}

.quick-view-container span.price.highlight {
  font-size: 20px;
}

.coupon input {
  float: right;
}

td.product-name a {
  color: #0063d1;
}

.product-instock span {
  color: #297E29;
}

.product-addtocart span.add-to-cart-wishlist {
  font-weight: 400;
  cursor: pointer;
  font-size: 15px;
}

.coustom-product-thumbnail img {
  height: 55px;
}

td.product-thumbnail.coustom-product-thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.coustom-thum-cart img {
  height: 100px;
  padding: 10px 0px;
}

.post-navigation a.next_title span i {
  padding-left: 10px;
}

.xs-newsletter input:not([type="submit"]),
.xs-newsletter input[type="submit"] {
  height: 60px !important;
}

.marketo-footer-top-layer.marketo-footer-version-3 {
  padding-bottom: 75px;
}

.cart_box_text_area h2 {
  font-size: 22px;
  line-height: 1.41;
}

.cart_box_text_area {
  background: #f7f7f7;
  padding: 25px;
}

.cart_box_text_area h3 {
  font-weight: 400;
  color: #777;
  font-size: 14px;
  margin-top: 13px;
  margin-bottom: 23px;
}

.cart_box_text_area textarea {
  width: 100%;
  height: 128px;
  padding: 5px;
}

.cart_totals {
  margin-top: 18px;
}

.xs-empty-content.no-content-area {
  width: 100%;
}

.xs-empty-content.no-content-area img {
  text-align: center;
  margin: 0 auto;
  display: block;
}

.single-product-summary .price {
  font-size: 23px !important;
  margin-top: 15px !important;
}

.xs-empty-content.no-content-area h2 {
  text-align: center;
  color: #333;
  font-size: 60px;
}

.xs-empty-content.no-content-area p {
  text-align: center;
  margin-top: 36px;
  font-size: 15px;
}

.filter-by-collection ul li:before {
  width: 20px;
  height: 20px;
  content: "";
  display: block;
  border: 4px solid #fff;
  border-radius: 50%;
  margin-right: 15px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 0px 1px #eaeaea;
  box-shadow: 0px 0px 0px 1px #eaeaea;
  -webkit-transition: .7s;
  transition: .7s;
  cursor: pointer;
}

.filter-by-collection ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px dashed #f1f1f1;
}

.filter-by-collection ul li.active:before {
  background: #0063d1;
  -webkit-box-shadow: 0px 0px 0px 1px #0063d1;
  box-shadow: 0px 0px 0px 1px #0063d1;
}

.filter-by-collection ul li:before {
  width: 20px;
  height: 20px;
  content: "";
  display: block;
  border: 4px solid #fff;
  border-radius: 50%;
  margin-right: 15px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 0px 1px #eaeaea;
  box-shadow: 0px 0px 0px 1px #eaeaea;
  -webkit-transition: .4s;
  transition: .4s;
  cursor: pointer;
}

.filter-by-collection ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.filter-by-collection ul li.active:before {
  background: #0063d1;
  -webkit-box-shadow: 0px 0px 0px 1px #0063d1;
  box-shadow: 0px 0px 0px 1px #0063d1;
}

.filter-by-tags ul li.active:before {
  background-color: #0063d1;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-1 -1 10 10'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
  border-color: #0063d1;
}

.filter-by-tags ul li:before {
  width: 22px;
  height: 22px;
  content: "";
  display: block;
  border: 4px solid #fff;
  margin-right: 15px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 0px 1px #eaeaea;
  box-shadow: 0px 0px 0px 1px #eaeaea;
  -webkit-transition: .4s;
  transition: .4s;
  cursor: pointer;
  border-radius: .25rem;
}

.filter-by-tags ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.single-product-summary .price {
  font-size: 23px !important;
  margin-top: 15px !important;
}

.swatch.clearfix {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.swatch.clearfix .header {
  margin-right: 39px;
  font-weight: 500;
  width: 12px;
}

.today-gadget-area-main .xs-product-wraper .xs-product-content {
  margin-top: 23px;
}

.xs-single-product-imgr-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.xs-single-product-imgr-area img {
  height: 155px;
  margin-top: 12px;
  margin-bottom: 15px;
}

.serch-result-done .xs-single-product {
  border: 1px solid #efefef;
  margin-bottom: 30px;
}

.error-page .error-code {
  display: block;
  font-size: 150px;
  line-height: 150px;
  color: #333;
  margin-bottom: 20px;
  text-shadow: 5px 5px 0px rgba(0, 0, 0, 0.6), 7px 7px 0px #3a6f00, 7px 7px 0px rgba(204, 255, 0, 0.64), 10px 10px 0px #f44336;
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
}

.error-body a {
  margin-top: 30px;
  display: block;
}

.xs-nav-tab.version-2 .nav-item .nav-link::after {
  bottom: -10px;
}

.xs-newsletter.xs-newsletter.round input[type="submit"] {
  height: 49px !important;
}

.col-md-12.footer-widget.logo-ffooter-mdl {
  margin-bottom: 0px;
}

.xs-product-wraper.highlight .price {
  font-size: 24px !important;
}

.featured-product-on-uff .xs-feature-product-info {
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px;
  width: 100%;
  height: 100%;
}

.featured-product-on-uff .xs-feature-product img {
  height: auto;
}

.collections-page-only {
  padding: 10px 30px 30px;
  background-color: #FFFFFF;
  border: 1px solid #efefef;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  display: block;
}

.collections-page-only a img,
.collections-page-only a svg {
  height: 170px;
  margin: 10px auto;
  display: block;
}

.collections-page-only p {
  color: #222222;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-top: 15px;
}

.no-wishlist-img img {
  height: 75px;
  display: block;
  margin: 0 auto;
}

.no-wishlist-img {
  margin-bottom: 12px;
}

.no-wishlist-content p {
  text-align: center;
  font-size: 30px;
  color: #777777;
}

.position-relative {
  position: relative;
}

.deal-of-the-week .xs-deal-blocks .product-image-area img {
  padding-top: 10px;
}

.header-one {
  margin-bottom: 30px;
}

.card-opouu-area .tt-add-to-cart {
  text-align: center;
  margin-top: 45px;
}

.card-opouu-area .tt-add-to-cart i.icon-online-shopping-cart {
  font-size: 30px;
  margin-bottom: 15px;
  display: block;
}

.card-opouu-area .tt-add-to-cart p {
  font-size: 20px;
}

.card-opouu-area .tt-add-to-cart a.btn.btn--flw {
  background: #0063d1;
}

.card-opouu-area .tt-add-to-cart button.btn.btn--flw.colorize-btn6.ttg-mt--20 {
  background: #62ab00;
}

.collection-view.loader-filtetr:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #ffffffd4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  font-size: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: 43%;
  background-repeat: no-repeat;
  background-position: center;
}

.collection-view.loader-filtetr {
  position: relative;
}

.collection-view.loader-filtetr:before {
  content: " ";
  display: block;
  width: 70px;
  height: 70px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid #fafafa;
  border-color: #0063d1 #0063d1 #0063d1 transparent;
  -webkit-animation: lds-dual-ring 1.2s linear infinite;
  animation: lds-dual-ring 1.2s linear infinite;
  position: absolute;
  z-index: 2;
  left: auto;
  right: calc(50% - 35px);
  top: 15%;
}

@-webkit-keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.product-single-loader {
  -webkit-animation: alds-dual-ring 1.2s linear infinite;
  animation: alds-dual-ring 1.2s linear infinite;
  background: #62ab00;
}

.product-single-loader .icon-online-shopping-cart {
  color: white;
}

.product-single-loader .icon-online-shopping-cart:before {
  content: "\E971";
}

@-webkit-keyframes alds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes alds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.adto-cart-me span.added:before {
  font-family: 'iconfont' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.adto-cart-me span.added:before {
  content: "\E96E";
  margin-right: 10px;
}

.adto-cart-me span.added {
  position: relative;
}

.xs-modal.xs-quick-view-modal.modal.fade.show {
  background: #00000033;
}

.modal-backdrop.fade.show {
  background: transparent;
}

.xs-brand-content.version-4 {
  text-align: center;
}

.xs-brand-content.version-4 li {
  min-width: auto;
  float: none;
  text-align: center;
  display: inline-block;
  max-width: 16.6666666667%;
  width: 100%;
}

.xs-recent-post-widget li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.xs-recent-post-widget li .posts-thumb {
  width: 100%;
  max-height: 80px;
  max-width: 80px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.wishlist-btn.is-active .fa-heart-o:before {
  content: "\F004";
}

.xs-content-header.section-title-area h3 {
  font-size: 1.57143em;
}

.header-one .nav-menu {
  text-align: center;
}

.header-cus-class-2 .xs-navDown.secondary-color-v .xs-vartical-menu .cd-dropdown-trigger {
  padding: 22px 42px;
  background: transparent;
  color: #222;
  border: 1px solid #ededed;
  border-radius: 0;
  border-top: 0;
  border-bottom: 0;
}

.header-cus-class-2 .xs-navDown.secondary-color-v .xs-vartical-menu .cd-dropdown-trigger:before,
.header-cus-class-2 .xs-navDown.secondary-color-v .xs-vartical-menu .cd-dropdown-trigger:after {
  background: #222;
}

.header-cus-class-2 .xs-navDown.navDown-v5 .xs-menus .nav-menu {
  text-align: left;
}

.header-cus-class-2 .header-version-3-bottom .xs-navDown.navDown-v5 .xs-menus .nav-menu>li>a {
  padding: 20px 25px 24px;
}

.header-cus-class-2 .xs-navDown.secondary-color-v .xs-vartical-menu .cd-dropdown-trigger:hover {
  background: #83b735;
}

.header-cus-class-3 .xs-navBar.navBar-v5 .xs-navbar-search {
  background: transparent;
  height: 50px;
  margin-top: 20px;
}

.header-cus-class-3 .xs-navBar.navBar-v5 .xs-navbar-search input:not([type="submit"]) {
  background: transparent;
}

.header-cus-class-3 .xs-navbar-search .btn[type="submit"] {
  height: 50px;
  padding: 16px 28px;
}

.header-cus-class-3 .xs-navBar.navBar-v5 .xs-navbar-search input:not([type="submit"])::-webkit-input-placeholder {
  color: white;
  opacity: 1;
}

.header-cus-class-3 .xs-navBar.navBar-v5 .xs-navbar-search input:not([type="submit"])::-ms-input-placeholder {
  color: white;
  opacity: 1;
}

.header-cus-class-3 .xs-navBar.navBar-v5 .xs-navbar-search input:not([type="submit"])::placeholder {
  color: white;
  opacity: 1;
}

.header-cus-class-3 .xs-navBar.navBar-v5 .xs-navbar-search input:not([type="submit"]):-ms-input-placeholder {
  color: white;
}

.header-cus-class-3 .xs-navBar.navBar-v5 .xs-navbar-search input:not([type="submit"])::-ms-input-placeholder {
  color: white;
}

.header-cus-class-3 .xs-logo-wraper {
  padding-bottom: 26px;
}

.header-cus-class-3 .xs-wish-list {
  margin-right: 26px;
}

.header-cus-class-3 .xs-navDown.navDown-v5 .xs-wish-list-item {
  padding-top: 12px;
}

.header-cus-class-3 .xs-navDown.navDown-v5 .xs-menus .nav-menu {
  text-align: center;
}

.header-cus-class-4 .xs-menus .nav-menu>li:last-child {
  margin-right: 35px;
}

.header-cus-class-5 .header-version-4-top {
  -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.05);
}

.header-cus-class-5 .header-version-4-rightbar {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header-cus-class-5 .xs-menus .nav-menu>li>a {
  padding: 32px 19px;
}

.header-cus-class-5 .jlw-search form {
  background: transparent;
  height: 45px;
}

.header-cus-class-5 .jlw-search form input#search {
  width: 252px;
}

.header-cus-class-5 .jlw-search form input#search[type=search]:focus {
  width: 350px;
}

.header-cus-class-5 .jlw-search form button {
  height: 25px;
  margin: 0;
  padding: 0;
  width: 33px;
  padding-right: 4px;
}

.no_prt_smg {
  display: none;
}

.xs-content-header.background-version .xs-content-title {
  color: #fff;
}

.cart-area {
  padding-top: 80px;
}

html {
  padding: 0 !important;
}

.search-box {
  position: relative;
}

.results-box {
  background: #fff;
  margin-top: 2px;
  -webkit-box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.07);
  border-radius: 0 0 5px 5px;
  position: absolute;
  top: 105%;
  left: 0;
  width: 100%;
  border-left: 1px solid;
  border-color: rgba(129, 129, 129, 0.2);
  z-index: 1;
}

.results-box .note.erors {
  padding: 20px;
}

.results-box a:first-child,
.results-box a:nth-child(2) {
  border-top: 1px solid #e6e6e6;
}

.results-box a {
  width: 50%;
  display: inline-block;
  border-right: 1px solid;
  border-bottom: 1px solid;
  border-color: rgba(129, 129, 129, 0.2);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  padding: 15px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  height: 100%;
  margin-top: -6px;
}

.results-box a:hover {
  background: #f5f5f5;
}

.results-box a .img {
  max-width: 65px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  float: left;
}

.results-box a .img img {
  height: 50px;
  width: auto !important;
}

.results-box a .d-title {
  float: right;
  overflow: hidden;
  position: relative;
  width: calc(100% - 65px);
  padding-left: 20px;
  margin-top: 15px;
}

.search-ajax-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.results-box .note-area {
  text-align: center;
  padding: 20px;
  border: 1px solid #dedede;
  border-top: 0;
  border-radius: 0 0 5px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.results-box .note-area a.note.btn.btn-primary {
  color: #fff !important;
  max-width: 120px;
  padding: 13px 0px !important;
}

.xs-btn-wraper a.btn.btn-outline-primary {
  background: #222222;
  color: #fff;
}

.paddding-o {
  padding: 0px;
}

span.price.version-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

span.price.version-2 span.money {
  margin-right: 8px;
}

.collection-view span.price.version-2 {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.nreu-today-gadget-area .xs-product-content span.price.version-2 {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.nreu-today-gadget-area .version-6 [class^="col"]:first-child {
  padding-left: 7.5px;
}

.nreu-today-gadget-area .version-6 [class^="col"]:last-child {
  padding-right: 7.5px;
}

.nreu-blog-single .xs-blog-post-comment ul.comment-list {
  float: left;
  width: 100%;
  height: auto;
}

.nreu-blog-single .xs-blog-post-comment ul.comment-list li {
  float: left;
  width: 100%;
  height: auto;
  clear: both;
  margin-bottom: 10px;
}

.nreu-blog-single .xs-blog-post-comment ul.comment-list li .comment-content {
  padding-left: 0;
  margin-top: 0 !important;
}

.nreu-blog-single .xs-blog-post-comment ul.comment-list li .comment-content p {
  padding-bottom: 10px !important;
}

.nreu-blog-single .xs-blog-post-comment ul.comment-list li .comment-metadata {
  padding: 0;
  margin: 0;
}

.nreu-blog-single .xs-blog-post-comment ul.comment-list li .comment-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
}

.nreu-blog-single .xs-blog-post-comment ul.comment-list li .comment-author {
  margin-right: 10px;
}

.nreu-relat-product-area-img {
  overflow: hidden;
  max-height: 155px;
  height: 155px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.xs-product-details-section .btn:not([data-toggle="popover"]) {
  padding: 13px 35px;
}

.xs-product-details-section .xs-wishlist-and-compare {
  height: 47px;
  line-height: 47px;
}

.quick-view-container .new-form-pro-cart .adto-cart-me a.single_add_to_cart_button {
  padding: 16px 35px;
}

.nreu-main-slider-3 .xs-banner .xs-feature-product,
.nreu-main-slider-3 .xs-banner .xs-feature-product img {
  min-height: auto;
}

.nreu-deal-of-the-week .product-image-area .imager-loader-up {
  height: 170px;
}

.nreu-today-gadget .product-image-area .imager-loader-up {
  height: 170px;
}

.team-thumb .xs-overlay {
  height: 100%;
}

.xs-single-team:hover .team-hover-content {
  z-index: 1;
}

.header-one .xs-menus .nav-menu>li>a {
  font-weight: 500;
}

.header-one {
  background-color: #0f233c;
}

.header-cus-class-2 .header-version-3-top {
  background-color: #0f233c;
}

.header-cus-class-2 .xs-navbar-search input:not([type="submit"]) {
  border: 2px solid #e7e7e7;
  border-right: 0px;
}

.header-cus-class-3 {
  background-color: #0f233c;
}

.header-cus-class-4 {
  background: #0f233c;
  padding-bottom: 0;
}

.header-cus-class-5 {
  background: #0f233c;
}

.header-cus-class-6 .header-version-3-top {
  background-color: #0f233c;
}

.header-cus-class-7 .header-version-3-top {
  background-color: #0f233c;
}

.cart-area p.xs-btn-wraper.justify-content-center a.button.wc-backward.btn.btn-primary {
  background-color: #fafafa;
  color: #0f233c;
}

.cart-area p.xs-btn-wraper.justify-content-center a.button.wc-backward.btn.btn-primary:hover {
  color: #fff;
  background-color: #ea1a25;
}

.xs-vartical-menu .cd-dropdown-trigger {
  background-color: #fafafa;
  color: #0f233c;
}

.xs-vartical-menu .cd-dropdown-trigger:hover,
.xs-vartical-menu,
.xs-vartical-menu .cd-dropdown-trigger.dropdown-is-active:hover {
  color: #fff;
  background-color: #ea1a25;
}

.xs-vartical-menu .cd-dropdown-content,
.xs-vartical-menu .cd-dropdown:before {
  border-color: #ea1a25;
}

.xs-vartical-menu .cd-dropdown-content,
.xs-vartical-menu .cd-dropdown:before {
  border-color: #ea1a25;
}

.xs-vartical-menu .cd-dropdown-trigger::after {
  background-color: #0f233c;
}

.xs-vartical-menu .cd-dropdown-trigger::before {
  background-color: #0f233c;
}

.xs-vartical-menu:hover .cd-dropdown-trigger::after {
  background-color: #fff;
}

.xs-vartical-menu:hover .cd-dropdown-trigger::before {
  background-color: #fff;
}

.header-cus-class-2 .xs-navDown.secondary-color-v .xs-vartical-menu .cd-dropdown-trigger {
  background: #fafafa;
  color: #0f233c;
  border-color: #0f233c;
}

.header-cus-class-2 .xs-navDown.secondary-color-v .xs-vartical-menu .cd-dropdown-trigger:before,
.header-cus-class-2 .xs-navDown.secondary-color-v .xs-vartical-menu .cd-dropdown-trigger:after {
  background: #0f233c;
}

.header-cus-class-2 .xs-navDown.secondary-color-v .xs-vartical-menu .cd-dropdown-trigger:hover::before,
.header-cus-class-2 .xs-navDown.secondary-color-v .xs-vartical-menu .cd-dropdown-trigger:hover::after {
  background: #0f233c;
}

.header-cus-class-2 .xs-navDown.secondary-color-v .xs-vartical-menu .cd-dropdown-trigger:hover {
  background: #ea1a25;
  background: #fff;
}

.dropdown-is-active::after,
.dropdown-is-active::before {
  background: #fff;
}

a.cd-dropdown-trigger:focus {
  color: #fff;
}

a.cd-dropdown-trigger:focus::after,
a.cd-dropdown-trigger:focus::before {
  background: #fff;
}

.xs-menus .nav-menu>li>a,
.xs-menus .nav-menu>li>a .submenu-indicator {
  color: #333;
}

.xs-menus .nav-menu>li>a.highlight {
  color: #ea1a25;
}

.xs-menus .nav-menu>li.active a,
.xs-menus .nav-menu>li.active a .submenu-indicator {
  color: #ea1a25;
}

.xs-menus .nav-menu>li>.nav-dropdown li a:hover,
.xs-menus .nav-menu>li>a:hover,
.xs-menus .nav-menu>li:hover>a {
  color: #ea1a25;
}

.xs-menus .nav-menu>li>a .submenu-indicator-chevron {
  border-color: transparent #333 #333 transparent !important;
}

.xs-menus .nav-menu>li>a:hover .submenu-indicator-chevron {
  border-color: transparent #ea1a25 #ea1a25 transparent !important;
}

.xs-menus .nav-menu>li.active>a .submenu-indicator-chevron {
  border-color: transparent #ea1a25 #ea1a25 transparent !important;
}

.xs-navDown .btn:not([data-toggle="popover"]).btn-primary {
  background-color: #ea1a25;
  border-color: #ea1a25 !important;
  border: 0px !important;
  color: #ffffff !important;
}

.xs-navDown .btn:not([data-toggle="popover"]).btn-primary:hover {
  background-color: #0f233c;
  border-color: #0f233c !important;
}

.xs-navbar-search .btn[type="submit"] {
  color: #fff;
}

.xs-navbar-search .btn[type="submit"]:hover {
  color: #fff;
}

.xs-navDown .btn:not([data-toggle="popover"]).btn-primary {
  border-color: #0f233c;
}

.navSearch-group>a {
  color: #fff;
}

.navSearch-group>a:hover {
  color: #fff;
}

.jlw-search form input#search {
  color: #fff;
}

.jlw-search form button {
  color: #fff;
}

.header-cus-class-5 .jlw-search form button {
  color: #fff;
}

.header-cus-class-5 .jlw-search form button:hover {
  color: #fff;
}

.header-cus-class-5 .jlw-search form {
  border: 1px solid #0f233c;
}

.header-cus-class-5 .jlw-search form button {
  border-left: 1px solid #0f233c;
}

.xs-single-wishList .xs-item-count {
  border: 2px solid #fff;
  background-color: #160101;
  color: #fff;
  -webkit-transition: .4s;
  transition: .4s;
}

.xs-single-wishList i {
  color: #fff;
}

.xs-single-wishList:hover i {
  color: #ea1a25;
}

.xs-navDown .btn:not([type="submit"]):hover {
  color: #fff;
}

.xs-navDown .btn:not([type="submit"]):hover strong {
  color: #fff;
}

.xs-navbar-search {
  border: 2px solid #e7e7e7;
}

.xs-navbar-search input:not([type="submit"]) {
  background: #fff;
}

.jlw-search form {
  background: #fff;
}

.header-cus-class-3 .xs-navBar.navBar-v5 .xs-navbar-search input:not([type="submit"]) {
  background: #fff;
}

.header-cus-class-3 .xs-navBar.navBar-v5 .xs-navbar-search input:not([type="submit"])::-webkit-input-placeholder {
  color: #797979;
}

.header-cus-class-3 .xs-navBar.navBar-v5 .xs-navbar-search input:not([type="submit"])::-ms-input-placeholder {
  color: #797979;
}

.header-cus-class-3 .xs-navBar.navBar-v5 .xs-navbar-search input:not([type="submit"])::placeholder {
  color: #797979;
}

ul.nav-dropdown.nav-submenu li:hover a {
  color: #333 !important;
}

section.responsive-menu-area .nav-toggle:before {
  -webkit-box-shadow: 0 0.5em 0 0 #fff, 0 1em 0 0 #fff;
  box-shadow: 0 0.5em 0 0 #fff, 0 1em 0 0 #fff;
  background: #fff;
}

.responsive-menu-area nav.xs-menus.xs_nav-portrait i {
  color: #fff;
}

.responsive-menu-area .xs-menus .nav-menu>li>a .submenu-indicator-chevron {
  border-color: transparent #000 #000 transparent !important;
}

.responsive-menu-area .xs-menus .nav-menu>li.active a,
.responsive-menu-area .xs-menus .nav-menu>li.active a .submenu-indicator {
  color: #000;
}

.header-one a.btn.btn-outline-primary.btn-lg {
  padding: 8px 25px;
}

@media (min-width: 320px) and (max-width: 1199px) {
  .cd-dropdown-wrapper.xs-vartical-menu {
    margin-bottom: 0;
  }

  .xs-vartical-menu .cd-dropdown-trigger {
    padding: 23px 23px;
  }

  .xs-vartical-menu .cd-dropdown-trigger::after {
    right: 24px;
  }

  .xs-vartical-menu .cd-dropdown-trigger::before {
    right: 30px;
  }

  .cd-dropdown-trigger::before,
  .cd-dropdown-trigger::after {
    top: 54%;
  }

  .xs-top-bar-info li {
    margin-right: 3px;
    padding-right: 7px;
  }

  .small-offer-banner-v2 .offer-banner-content {
    max-width: 70%;
  }

  .xs-deal-img {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .xs-feature-list li {
    padding: 30px 15px;
  }

  .price {
    font-size: 16px;
  }

  .xs-sync-slider-preview .xs-social-tigger {
    position: absolute;
    left: -35px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
  }

  .respons-pro-one .xs-nav-tab.version-2 .nav-item .nav-link {
    font-size: 20px;
  }

  .nreu-feauture-product-section h4.product-title-v2 strong {
    font-size: 18px;
  }

  .nreu-feauture-product-section .highlight h4.product-title-v2 strong {
    font-size: 18px;
  }

  .nreu-feauture-product-section .highlight h4.product-title-v2 strong {
    font-size: 25px;
  }

  .nreu-feauture-product-section .xs-feature-product-info {
    min-height: 85px;
  }

  .nreu-feauture-product-section .xs-feature-product img {
    height: 130px;
  }

  .nreu-feauture-product-section .product-image-area {
    max-height: 352px;
    min-height: 352px;
  }

  .nreu-feauture-product-section .product-image-area img {
    height: 352px !important;
  }

  .nreu-feauture-product-section .featured-product-on-uff .xs-feature-product img {
    height: auto;
    width: 100%;
  }

  .nreu-today-gadget .xs-product-wraper.highlight .xs-product-content {
    margin-bottom: 0;
  }

  .nreu-today-gadget .xs-product-wraper.highlight {
    padding: 34px 35px;
  }

  .header-cus-class-3 .xs-navDown.navDown-v5 .xs-vartical-menu .cd-dropdown-trigger {
    padding: 22px 15px;
  }

  .nreu-today-gadget .xs-product-wraper.highlight .product-image-area {
    margin-top: 57px;
  }

  .nreu-today-gadget-area .xs-product-wraper.highlight .xs-product-content {
    margin-top: 14px;
  }
}

@media (min-width: 320px) and (max-width: 991px) {
  .xs-brand-content.version-4 li {
    min-width: auto !important;
    float: none !important;
    text-align: center;
    max-width: 25%;
    width: 100%;
  }

  .product-categories {
    font-size: 14px;
  }

  .xs-copyright .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .xs-social-list.version-2 li a {
    font-size: 15px !important;
    padding: 4px 9px !important;
  }

  .xs-social-list.version-2 li a i {
    margin-right: 8px !important;
  }

  .xs-single-wishList .xs-item-count.highlight {
    display: none;
  }

  .deal-of-the-week .xs-content-header.background-version .xs-content-title {
    margin-bottom: 0 !important;
  }

  .xs-product-widget {
    padding-bottom: 10px !important;
  }

  .product-categories {
    font-size: 15px;
  }

  span.price {
    font-size: 16px;
  }

  h4.product-title {
    font-size: 16px;
  }

  .responsive-menu-area {
    display: block;
  }

  .xs-header {
    display: none;
  }

  .responsive-search-area .xs-navbar-search .xs-category-select-wraper {
    line-height: 50px;
  }

  .responsive-search-area #product_cat_mob {
    height: 50px;
  }

  .store-country-list ul li:nth-child(3) {
    border-right: 0px solid red;
  }

  .small-offer-banner-v2 .small-offer-banner {
    float: left !important;
    width: 100% !important;
  }

  .xs-feature-list li {
    border: 1px solid #eaeaea;
    margin-right: 10px;
    margin-top: 10px;
    width: calc(33.33333% - 10px) !important;
  }

  ul.xs-feature-list {
    border: none;
  }

  .xs-feature-list li:last-child {
    border-right: 1px solid #eaeaea;
  }

  .icon-box-version-3 .xs-feature-list {
    -webkit-box-shadow: 0 7px 30px 0 rgba(0, 0, 0, 0.04);
    box-shadow: 0 7px 30px 0 rgba(0, 0, 0, 0.04);
  }

  .icon-box-version-3 .xs-feature-list li {
    border: 0;
    margin-top: 20px;
  }

  .icon-box-version-3 .media.xs-feature {
    border: 0;
  }

  .version-6 [class^="col"] {
    padding-left: 0;
    padding-right: 0;
  }

  .version-6 [class^="col"]:last-child {
    padding-right: 0;
  }

  .version-6 [class^="col"]:first-child {
    padding-left: 0;
  }

  .pagination li {
    margin-bottom: 10px;
  }

  .serch-result-form-area form.xs-navbar-search {
    display: block;
  }

  .input-group-btn button.btn.btn-primary i {
    text-align: center;
    margin: 0 auto;
  }

  .serch-result-form-area input#Search {
    margin-bottom: 10px;
    -webkit-appearance: none;
  }

  #product_cat_mob {
    height: 51px;
    width: 100%;
    padding-left: 26px;
    color: #7d858c;
  }

  .xs-social-list.version-2 li {
    margin-right: 0px;
  }

  .nreu-feauture-product-section h4.product-title-v2 strong {
    font-size: 20px;
  }

  .nreu-feauture-product-section .highlight h4.product-title-v2 strong {
    font-size: 30px;
  }

  .nreu-feauture-product-section .xs-feature-product-info {
    min-height: 125px;
  }

  .nreu-feauture-product-section .xs-feature-product img {
    height: 175px;
  }

  .nreu-feauture-product-section .product-image-area {
    max-height: 352px;
    min-height: 352px;
  }

  .nreu-feauture-product-section .product-image-area img {
    height: 352px !important;
  }

  .nreu-feauture-product-section .featured-product-on-uff .xs-feature-product img {
    width: 100%;
  }

  .nreu-feauture-product-section .featured-product-on-uff .xs-feature-product {
    max-height: 300px;
    overflow-y: hidden;
  }

  .nrue-tab-slider-6-col h4.product-title {
    font-size: 14px;
  }

  .nreu-today-gadget-area .version-6 [class^="col"],
  .nreu-today-gadget-area .version-6 [class^="col"]:first-child {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .xs-section-padding {
    padding: 20px 0;
  }

  .responsive-search-area .xs-navbar-search .xs-category-select-wraper {
    line-height: 47px;
  }

  .xs-footer-info-and-payment {
    padding: 0;
  }

  .wishlist-table-area thead {
    display: none;
  }

  .wishlist-table-area thead {
    display: none;
  }

  .wishlist-table-area tr.wishlist-tile-container {
    display: block;
    width: 100%;
    margin-bottom: 25px;
  }

  .wishlist-table-area td {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .wishlist-table-area tr td:after {
    content: attr(data-title);
    font-weight: 700;
    float: left;
  }

  .wishlist-table-area td {
    text-align: right;
    padding: 14px !important;
  }

  .xs-footer-main {
    padding-bottom: 0px;
  }

  .woocommerce table.shop_table td {
    border-top: 0px solid rgba(0, 0, 0, 0.1);
  }

  .woocommerce .cart_totals.josn-cart-tota table.shop_table tr {
    border-bottom: 1px solid #e5e5e5;
    display: block;
  }

  .woocommerce .cart_totals.josn-cart-tota table.shop_table tr th {
    border: none;
  }

  tr.coupon-area-none {
    border-top: 1px solid #e5e5e5 !important;
  }

  tr.coupon-area-none td.actions {
    padding-top: 18px !important;
  }

  .shop_table_new_pro_max td {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding: 20px !important;
    text-align: right;
  }

  .woocommerce table.shop_table td {
    max-width: 100% !important;
    width: 100%;
    clear: both;
  }

  .shop_table_new_pro_max td:last-child {
    border: 0px solid !important;
  }

  .shop_table_new_pro_max tr {
    margin-bottom: 0px;
    display: block;
    border: 0;
    border-top: 1px solid #e5e5e5;
  }

  .shop_table_new_pro_max tr:first-child {
    border-top: 0px solid #e5e5e5;
  }

  .coustom-thum-cart img {
    height: 65px;
  }

  .shop_table_new_pro_max td:before {
    content: attr(data-title);
    font-weight: 700;
    float: left;
  }

  td.product-quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .xs_input_number input[type="number"] {
    width: 50px !important;
    margin-bottom: 15px !important;
  }

  .coupon input {
    margin-bottom: 15px;
  }

  .shop_table_new_pro_max thead {
    display: none;
  }

  .shop_table_new_pro_max tr.woocommerce-cart-form__cart-item.cart_item:first-child td {
    border-top: 0;
  }

  .xs-modal.show .modal-dialog {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    top: 0;
    left: 0;
  }

  .xs-serachForm input:not([type="submit"]) {
    -moz-appearance: none;
    -webkit-appearance: none;
    width: calc(100% - 74px);
    margin-right: 10px;
  }

  .xs-wishlist-and-compare {
    margin-bottom: 0px !important;
  }

  .xs-content-header.version-3 {
    margin-top: 15px;
  }

  .xs-nav-tab .nav-link {
    font-size: 15px;
  }

  .store-country-list ul li {
    max-width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-right: 0;
  }

  .small-offer-banner.offer-banner-v3 .offer-banner-content {
    max-width: 70%;
  }

  .xs-single-news {
    background: #fff;
  }

  .xs-single-news img {
    margin: 0 auto;
    float: none;
    display: block;
    padding-top: 35px;
  }

  .xs-news-content {
    text-align: center;
  }

  .xs-feature-list li {
    width: calc(49.33333% - 10px) !important;
  }

  .xs-feature-list li {
    border-right: 1px solid #eaeaea !important;
  }

  .xs-feature-list li:last-child {
    border-bottom: 1px solid #eaeaea !important;
  }

  .icon-box-version-3 .xs-feature-list li:last-child {
    border-bottom: 0;
  }

  .product-title-v2.large strong {
    font-size: 2em;
  }

  .icon-box-version-3 .xs-feature-list li {
    border: 0 !important;
  }

  .xs-logo-wraper img {
    max-width: 115px;
  }

  .xs-newsletter.newsLetter-v2 input[type="submit"] {
    margin-top: 10px;
  }

  .form-row,
  #shopify-section-contacts .form-row .col-md-6:last-child {
    padding-left: 0px;
  }

  .add-tocart-ite-css .xs_input_number input[type="number"] {
    width: 60px !important;
  }

  .xs-banner-item .btn:not([data-toggle="popover"]) {
    padding: 14px 20px;
  }

  .xs-navbar-search input:not([type="submit"]) {
    padding-left: 15px;
  }

  .nreu-feauture-product-section .featured-product-on-uff .xs-feature-product img {
    width: auto;
  }

  .nreu-xs-banner-v4 h3.xs-banner-title {
    font-size: 30px;
  }
}

@media only screen and (min-width: 300px) and (max-width: 575.98px) {
  .right-content-area-simple h3 {
    font-size: 30px;
    line-height: 40px;
  }

  .xs-offer-text h3 {
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 1.5em;
  }

  .footer-widget,
  .xs-navbar-search,
  .xs-footer-info-and-payment,
  .xs-footer-info-and-payment .media,
  .xs-feature-product.highlight,
  .xs-banner-campaign,
  .xs-content-header .xs-content-title,
  .xs-product-wraper,
  .xs-deal-img,
  .xs-vertical-tab-nav,
  .xs-newsletter-content,
  .xs-banner-slider-2,
  .xs-deal-of-the-week,
  .xs-single-news,
  .newsletter-content,
  .xs-banner-slider-3 .xs-banner-image {
    margin-bottom: 15px !important;
  }

  .col-md-12.footer-widget.logo-ffooter-mdl {
    margin-bottom: 0;
  }

  .video-banner-img a {
    font-size: 23px;
  }

  .xs-banner-content .xs-banner-title {
    font-size: 1.42857em !important;
  }

  .xs-banner-slider-3 .xs-banner-content .xs-banner-title {
    font-size: 1.71429em;
  }

  .btn:not([data-toggle="popover"]) {
    padding: 10px 20px;
  }

  .xs-newsletter-title {
    font-size: 1.57143em;
  }

  .xs-newsLetter-section {
    padding: 35px 0;
  }

  .xs-newsletter.xs-newsletter.round input[type="submit"] {
    height: 46px !important;
    width: 105px;
    padding: 0;
  }

  .xs-blog-post-details .post-body {
    padding: 0;
    border: 0;
  }

  .single-product-pro-cart li.w-quantity.quantity.xs_input_number {
    width: 100% !important;
    max-width: 100px;
  }

  .single-product-pro-cart .xs_input_number input[type="number"] {
    width: 100px !important;
    margin-bottom: 15px !important;
  }

  .xs-post-meta-list {
    margin-top: 18px;
  }

  p br {
    display: none;
  }

  .product-title {
    margin-bottom: 0px;
  }

  .xs-product-widget {
    padding-bottom: 10px;
    padding-top: 10px;
    margin-bottom: 10px;
  }

  .xs-product-widget .product-image-area {
    max-width: 75px;
    max-height: 75px;
    min-width: 75px;
    min-height: 75px;
  }

  li.add-to-wishlist.wishlist.xs-wishlist-and-compare {
    border: 0;
  }

  .xs-feature-list li {
    width: calc(49.33333% - 10px) !important;
    border: 1px solid #eaeaea;
  }

  .xs-feature-list li:last-child {
    border: 1px solid #eaeaea;
  }

  .icon-box-version-3 .xs-feature-list li:last-child {
    border: 0;
  }

  .xs-feature-list li {
    width: calc(100%) !important;
    margin-right: 0;
    margin-left: 0px;
  }

  .icon-box-version-3 .xs-feature-list li {
    margin-left: 0;
  }

  .icon-box-version-3 .xs-feature-list {
    margin-left: 0px;
  }

  .xs-brand-content.version-3 li {
    width: 100% !important;
  }

  .xs-product-category .product-image-area {
    margin: 0 auto;
  }

  .xs-section-padding-bottom {
    padding-bottom: 20px;
  }

  .xs-section-padding {
    padding: 20px 0;
  }

  .xs-footer-section {
    padding-top: 15px;
  }

  .xs-copyright {
    padding: 20px 0;
  }

  .product-ordering {
    min-width: 90px;
    max-width: 90px;
  }

  .shop-catelist-item>li {
    margin-bottom: 10px !important;
  }

  .xs-newsletter input,
  .xs-newsletter input[type="submit"] {
    font-size: 12px;
  }

  .xs-social-list.version-2 li a i {
    padding-right: 0px !important;
  }

  .xs-banner-content .xs-banner-title {
    font-size: 1.42857em;
  }

  .store-country-list .single-item-flug {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  ul#myTab {
    margin-top: 10px;
  }

  .xs-brand-content.version-4 li {
    max-width: 100%;
    width: 100%;
  }

  .responsive-search-area .xs-navbar-search input:not([type="submit"]),
  .responsive-search-area .xs-navbar-search .xs-category-select,
  .responsive-search-area .xs-navbar-search .btn[type="submit"] {
    margin-bottom: 5px;
  }

  .nreu-feauture-product-section .product-image-area img {
    height: 260px !important;
  }

  .nreu-feauture-product-section .product-image-area {
    max-height: 260px;
    min-height: 260px;
  }

  .nreu-banner-slider .btn:not([data-toggle="popover"]) {
    padding: 16px 35px;
  }

  .nreu-xs-banner-v4 .xs-banner-content {
    margin: 0 auto;
    float: none;
    display: table;
    text-align: center;
  }

  .nreu-xs-banner-v4 .xs-btn-wraper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .nreu-xs-banner-v4 .xs-banner-image {
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }

  .nreu-xs-banner-v4 .xs-banner-image img {
    height: 250px;
  }
}

@media only screen and (min-width: 300px) and (max-width: 465px) {
  .add-tocart-ite-css .xs_input_number input[type="number"] {
    width: 59px !important;
  }
}

@media only screen and (min-width: 300px) and (max-width: 464px) {
  .add-tocart-ite-css .xs_input_number input[type="number"] {
    width: 100px !important;
  }

  .add-tocart-ite-css .xs_input_number {
    width: 100px;
    text-align: center;
  }
}

@media (min-width: 1300px) {
  .container-fullwidth {
    padding-left: 4%;
    padding-right: 4%;
    max-width: 100%;
  }
}

@media (min-width: 1600px) {
  .container-fullwidth {
    padding-left: 5%;
    padding-right: 5%;
    max-width: 100%;
  }

  .xs-feature-text.vertical h4 {
    font-weight: 700;
    font-size: 1.14286em;
  }

  .xs-feature-list.vertical {
    padding: 30px;
  }

  .xs-feature-list.vertical li {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .deal-of-the-week-v2 .xs-content-header .xs-content-title {
    font-size: 1.571em;
  }

  .deal-of-the-week-v2 .xs-deal-blocks .countdow-timer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 25px;
  }

  .deal-of-the-week-v2 .xs-deal-blocks .xs-countdown-timer {
    padding: 0;
  }

  .deal-of-the-week-v2 .countdow-timer h4 {
    text-align: left;
    margin-bottom: 0;
    padding-top: 5px;
    padding-right: 20px;
  }

  .deal-of-the-week-v2 .countdow-timer h4 span {
    display: block;
    margin-bottom: 5px;
  }

  .xs-single-product {
    border: 1px solid #efefef;
    margin-bottom: 30px;
  }

  .small-offer-banner.offer-banner-v2 h2,
  .small-offer-banner.offer-banner-v2 h3 {
    font-size: 2.286em;
  }

  .small-offer-banner {
    max-height: 300px;
    min-height: 300px;
  }

  .small-offer-banner .media-body {
    left: 0px;
    top: 50px;
  }

  .small-offer-banner.offer-banner-v3 .media-body {
    top: 70px;
  }

  .small-offer-banner.offer-banner-v2 .media-body {
    top: 23px;
  }

  .small-offer-banner.offer-banner-v3 h2 {
    font-size: 1.571em;
  }

  .small-offer-banner.offer-banner-v3 h3 {
    font-size: 2.6em;
  }

  .small-offer-banner-v2 .small-offer-banner {
    min-height: 290px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  body {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 90%;
  }

  .footer-widget,
  .xs-navbar-search,
  .xs-footer-info-and-payment,
  .xs-footer-info-and-payment .media,
  .xs-feature-product.highlight,
  .xs-banner-campaign,
  .xs-content-header .xs-content-title,
  .xs-product-wraper,
  .xs-deal-img,
  .xs-vertical-tab-nav,
  .xs-newsletter-content,
  .xs-banner-slider-2,
  .xs-deal-of-the-week,
  .xs-single-news,
  .newsletter-content,
  .xs-banner-slider-3 .xs-banner-image {
    margin-bottom: 30px;
  }

  .xs-heading-title {
    font-size: 2em;
  }

  .xs-content-header {
    text-align: center;
  }

  .xs-content-header .xs-content-title {
    float: none;
    margin-top: 0;
    line-height: 1.5;
  }

  .xs-content-header .xs-content-title.version-2 {
    padding-bottom: 0;
  }

  .xs-content-header .xs-nav-tab {
    float: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .xs-nav-tab .nav-item {
    margin-right: 20px;
  }

  .xs-wish-list-item .xs-miniCart-dropdown {
    display: block;
    text-align: right;
  }

  .navbar-border .xs-wish-list-item .xs-miniCart-dropdown {
    text-align: left;
  }

  .xs-wish-list {
    display: none;
  }

  .xs-wish-list-item {
    padding: 11px 0;
  }

  .xs-wish-list-item .xs-header-info {
    display: none;
  }

  .xs-navDown.transparent-header-info .xs-logo-wraper {
    text-align: center;
  }

  .xs-navDown.navDown-v5 .xs-menus-group,
  .xs-navDown.navDown-v5 .xs-wishlist-group {
    float: left;
    width: 30%;
  }

  .xs-navDown.navDown-v5 .row {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .xs-navBar.navBar-v5 .xs-logo-wraper {
    position: absolute;
  }

  .home-menu-panel>.row>[class^="col-"] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .xs-navBar {
    margin-bottom: 20px;
    border-bottom: 1px solid #ededed;
  }

  .xs-navBar.navBar-v5 {
    margin-bottom: 0px;
    border-bottom: 0px;
  }

  .xs-navDown.navDown-v5:not(.secondary-color-v) .xs-menus-group .nav-toggle:before {
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 0.5em 0 0 #FFFFFF, 0 1em 0 0 #FFFFFF;
    box-shadow: 0 0.5em 0 0 #FFFFFF, 0 1em 0 0 #FFFFFF;
  }

  .xs-menus .megamenu-bg {
    display: none;
  }

  .megamenu-panel.megamenu-v2 .row>[class^=col-] {
    margin-bottom: 30px;
  }

  .xs-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .xs-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .xs-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .btn {
    padding: 10px 25px;
  }

  .xs-navBar .xs-menus-group {
    position: relative;
  }

  .xs-top-bar-info,
  .xs-top-bar .xs-social-list {
    text-align: center !important;
    margin-bottom: 10px;
    margin-left: 0;
  }

  .xs-top-bar .row .row {
    margin: 0;
  }

  .xs-menus .nav-menu>li>a,
  .xs-navDown.navDown-v5 .xs-menus .nav-menu>li>a {
    padding: 15px;
    color: #333333;
  }

  .xs-navDown.color-white .xs-menus .nav-menu>li>a .submenu-indicator-chevron {
    border-color: transparent #333333 #333333 transparent;
  }

  .xs-navBar .navbar-border .xs-menus ul li a,
  .xs-navBar .navbar-border .xs-menus .nav-menu>li>a {
    padding: 15px;
  }

  .navbar-border .nav-toggle {
    right: 0;
  }

  .menu-label {
    left: inherit;
    right: 0;
  }

  .xs_nav-portrait {
    position: relative;
    height: 68px;
  }

  .xs-logo-wraper {
    padding: 23px 0;
  }

  .xs-navbar-search {
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .xs-navbar-search .input-group {
    display: block;
    height: auto;
  }

  .xs-navbar-search input:not([type="submit"]),
  .xs-navbar-search .xs-category-select,
  .xs-navbar-search .btn[type="submit"] {
    height: 70px;
  }

  .xs-navbar-search input:not([type="submit"]),
  .xs-navbar-search .xs-category-select {
    border: 1px solid #e7e7e7;
  }

  .xs-navbar-search input:not([type="submit"]),
  .xs-navbar-search .input-group-btn,
  .xs-navbar-search .xs-category-select-wraper {
    float: left;
  }

  .xs-navbar-search input:not([type="submit"]),
  .xs-navbar-search .xs-category-select-wraper {
    width: 40%;
  }

  .xs-navbar-search .input-group-btn {
    width: 20%;
  }

  .xs-navbar-search .xs-category-select {
    min-width: 100%;
    max-width: 100%;
  }

  .xs-navbar-search .btn[type="submit"] {
    width: 100%;
    border-radius: 0;
    margin-top: 0;
    margin-right: 0;
    padding: 0px;
  }

  .xs-navbar-search .xs-category-select-wraper:before {
    display: none;
  }

  .xs-wish-list-item .xs-header-info {
    top: 0px;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .nav-toggle {
    right: 0;
  }

  .xs-banner-content .xs-banner-title {
    font-size: 2.42857em;
  }

  .xs-btn-wraper .btn,
  .xs-btn-wraper a {
    margin-right: 10px;
    margin-bottom: 20px;
  }

  .xs-feature-product.highlight .xs-feature-product-info {
    padding: 30px;
  }

  .xs-feature-product .xs-product-offer-label {
    bottom: 20px;
    left: 30px;
  }

  .xs-feature-product img {
    width: 100%;
  }

  .xs-product-wraper {
    padding: 10px 20px 20px;
  }

  .product-title {
    font-size: 1em;
  }

  .price {
    font-size: .7em;
  }

  .xs-banner-campaign img {
    width: 100%;
  }

  .xs-watermark-text {
    display: none;
  }

  .xs-product-wraper.version-2 .xs-product-content,
  .xs-product-wraper.version-2 img,
  .xs-product-wraper.version-2 .xs-product-header {
    padding: 0 15px;
  }

  .xs-product-wraper.version-2 .xs-product-content {
    padding-bottom: 15px;
  }

  .xs-product-wraper .xs-product-hover-area .float-left,
  .xs-product-wraper .xs-product-hover-area .float-right {
    float: none !important;
    width: 100%;
    text-align: center;
  }

  .xs-content-title.version-2:before,
  .xs-content-title.version-2:after {
    display: none;
  }

  .xs-content-header .customNavigation {
    display: none;
  }

  [class*="xs-product-slider"] {
    margin-bottom: 30px;
  }

  .xs-brand-content li {
    min-width: 50%;
    margin-bottom: 20px;
  }

  .xs-newsLetter-section .xs-newsletter {
    margin-right: 0;
  }

  .footer-widget.footer-content {
    padding-right: 15px;
  }

  .xs-copyright-text {
    text-align: center;
  }

  .xs-copyright .xs-payment-card {
    text-align: center;
  }

  .xs-copyright .xs-payment-card .payment-title {
    display: none;
  }

  .xs-social-list.version-2 {
    text-align: center;
  }

  .xs-social-list.version-2 li a {
    font-size: .7em;
  }

  .footer-banner {
    display: block;
    text-align: center;
  }

  .xs-content-header.version-2 .xs-simple-btn {
    float: none;
  }

  .xs-feature-list li {
    width: 33.33333%;
  }

  .xs-nav-tab.version-2 .nav-item .nav-link {
    font-size: 15px;
    padding-bottom: 10px;
  }

  .xs-nav-tab.version-2 .nav-item .nav-link:before,
  .xs-nav-tab.version-2 .nav-item .nav-link:after {
    display: none;
  }

  .xs-banner-slider-2 .xs-banner-item {
    min-height: 460px;
  }

  .xs-banner-slider-3 .xs-banner-content .xs-banner-title {
    font-size: 2.71429em;
  }

  .xs-banner-slider-3 .xs-banner-content {
    margin-top: 30px;
  }

  .xs-banner-slider-3 .xs-banner-image {
    padding: 0 15px;
  }

  .xs-banner-slider-3 .xs-banner-image img {
    margin: 0 auto;
  }

  .col-md-5-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .xs-nav-tab.version-4 .nav-item {
    margin-right: 10px;
  }

  .sync-slider-preview.owl-carousel .owl-item img {
    width: auto;
    margin: 0 auto;
  }

  .single-product-summary {
    margin-top: 30px;
  }

  .xs-social-tigger {
    display: none;
  }

  .container-fullwidth .xs-banner-content .xs-banner-title {
    font-size: 1.85714em;
  }

  .xs-header.version-fullwidth .xs-wish-list-item {
    text-align: left;
  }

  .xs-feature-list.vertical {
    margin-bottom: 30px;
  }

  .xs-nav-tab-v3 .nav-item {
    width: 50%;
  }

  .product-category-version-2 .xs-product-category {
    margin-bottom: 30px;
  }

  .recent-view-slider.owl-carousel .owl-item img {
    width: 100%;
  }

  .small-offer-banner .media-body {
    display: none;
  }

  .small-offer-banner {
    margin-bottom: 30px;
  }

  .small-offer-banner-v2 .small-offer-banner:last-child {
    margin-bottom: 30px;
  }

  .xs-deal-blocks.deal-block-v2 {
    text-align: center;
    margin-bottom: 30px;
  }

  .xs-watermark-product {
    display: none;
  }

  .xs-brand-content.version-3 li {
    min-width: 50%;
  }

  .xs-banner-slider.owl-carousel .owl-item img {
    margin: 5% auto;
    max-width: 50%;
  }

  .xs-banner-slider-6 .xs-banner-item {
    min-height: 500px;
    margin-left: 0px;
  }

  .xs-banner-slider-6 {
    margin-bottom: 30px;
  }

  .customer-info-forms [class^=col-]:first-child {
    padding-right: 15px;
  }

  .customer-info-forms [class^=col-]:last-child {
    padding-left: 15px;
  }

  .customer-info-forms [class^=col-]:first-child:before {
    display: none;
  }

  .customer-info-forms .form-separetor {
    display: none;
  }

  .xs-brand-content.version-2 li {
    min-width: calc(100% / 3);
  }

  .xs-menus.xs_nav-portrait .nav-menu li>.nav-dropdown {
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .xs-single-team .team-thumb img {
    width: 100%;
  }

  .about-content-left .xs-about-content {
    margin-bottom: 20px;
  }

  .about-content-right img {
    margin-bottom: 30px;
  }

  .about-content-left img,
  .about-content-right img {
    width: 100%;
  }

  .xs-menus .home-menu-panel a {
    margin-bottom: 30px;
  }

  .block-product-cate-wraper .nav .nav-link {
    padding: 18px 0;
  }

  .xs-deal-blocks .xs-countdown-timer {
    padding: 0 10px;
  }

  .xs-deal-blocks .xs-countdown-timer .xs-timer-container {
    margin-bottom: 0;
    margin-right: 10px;
  }

  .xs-deal-blocks .xs-countdown-timer .xs-timer-container:last-child {
    margin-right: 0;
  }

  .xs-product-widget {
    padding-bottom: 30px;
  }

  .product-thumb-feature .xs-product-widget {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .small-offer-banner-v2 .small-offer-banner {
    float: left;
    width: 48%;
    margin-right: 15px;
  }

  .small-offer-banner-v2 .small-offer-banner:last-child {
    margin-right: 0;
  }

  .xs-nav-tab-v2 .nav-filter-img {
    display: none;
  }

  .xs-content-title.version-3::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .xs-single-fun-fact {
    margin-bottom: 20px;
  }

  .version-thumb .xs-product-widget {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .version-thumb .xs-product-widget .product-widget-content {
    width: 100%;
  }

  .xs-banner .xs-feature-product {
    float: left;
    width: calc(50% - 15px);
    margin-right: 15px;
  }

  .xs-banner .xs-feature-product:last-child {
    margin-right: 0;
  }

  .blog-post-list {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 80%;
  }

  .xs-wish-list-item,
  .xs-header.header-transparent .xs-wish-list-item .xs-miniCart-dropdown {
    padding: 11px 0;
  }

  .xs-wish-list-item {
    text-align: right;
  }

  .xs-navBar .xs-menus-group,
  .xs-navBar .xs-wishlist-group,
  .xs-navDown.navDown-v5 .xs-wishlist-group,
  .xs-navDown.navDown-v5 .xs-menus-group {
    float: left;
    width: 50%;
  }

  .xs-navbar-search input:not([type="submit"]),
  .xs-navbar-search .xs-category-select,
  .xs-navbar-search .btn[type="submit"] {
    height: 60px;
  }

  .xs-wish-list-item .xs-miniCart-dropdown {
    text-align: left;
  }

  .xs-navBar.navBar-v5 .xs-logo-wraper {
    position: relative;
  }

  .xs-breadcumb .breadcrumb-item a {
    margin-left: 12px;
  }

  .xs-breadcumb .breadcrumb-item.active:before,
  .xs-breadcumb .breadcrumb-item {
    margin-right: 12px;
  }

  [class^=xs-banner-].owl-carousel .xs-banner-content {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .xs-banner-slider-5 .xs-banner-image img {
    width: 50%;
  }

  .owl-carousel .xs-banner-image img {
    margin: 0 auto;
  }

  .xs-product-wraper {
    text-align: center;
  }

  .xs-copyright-text {
    margin-bottom: 30px;
  }

  .xs-brand-content li {
    min-width: 100%;
    margin-bottom: 20px;
  }

  .xs-brand-content.version-2 li {
    min-width: 100%;
  }

  .xs-social-list.round li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1em;
  }

  .xs-product-offer-label {
    width: 80px;
    height: 80px;
  }

  .xs-product-offer-label span {
    font-size: 1.27143em;
  }

  .xs-feature-list li {
    width: 100%;
    border-right: 0px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
  }

  .xs-feature-list li:last-child {
    border-bottom: 0px solid #eaeaea;
  }

  .xs-banner-offer,
  .xs-offer-text {
    max-height: 100%;
  }

  .xs-offer-text {
    padding: 0px 15px;
  }

  .newsletter-content .newsletter-title {
    font-size: 1.35714em;
  }

  .xs-newsletter.newsLetter-v2 input:not([type="submit"]) {
    border-radius: 4px;
    border-right: 1px solid #e7e7e7;
    width: 100%;
  }

  .xs-newsletter.newsLetter-v2 input[type="submit"] {
    width: 100%;
    float: none;
    border-radius: 4px;
  }

  .entry-title {
    font-size: 1em;
  }

  .xs-product-wraper.version-3.highlight {
    padding: 25px;
  }

  .xs-nav-tab .nav-link.active:before,
  .xs-nav-tab .nav-link.active:after,
  .xs-nav-tab .nav-link:hover:before,
  .xs-nav-tab .nav-link:hover:after {
    display: none;
  }

  .best-deal-title {
    font-size: 2em;
  }

  .product-title-v2.large {
    font-size: 1em;
  }

  .product-title-v2.large strong {
    font-size: 1em;
  }

  .product-title-v2 {
    margin-bottom: 10px;
  }

  .xs-feature-product-info {
    padding: 20px;
  }

  .xs-banner-slider-3 .xs-banner-content {
    padding-left: 15px;
  }

  .col-md-5-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .xs-post-meta-list span {
    border-right: 0px solid #999999;
    display: block;
    margin-bottom: 10px;
  }

  .xs-post-footer .post-tags,
  .xs-post-footer .post-author,
  .xs-author-block .post-tags,
  .xs-author-block .post-author,
  .xs-post-footer .share-items,
  .xs-post-footer .post-content,
  .xs-author-block .share-items,
  .xs-author-block .post-content {
    text-align: left;
    float: none;
    width: 100%;
    margin-bottom: 20px;
  }

  .post-navigation .nav-links {
    width: 100% !important;
    float: none !important;
    text-align: left !important;
    border-right: 0px;
    margin-bottom: 10px;
  }

  .xs-blog-post-comment .children {
    padding-left: 15px;
  }

  .xs-blog-post-comment {
    margin-bottom: 30px;
  }

  .w-quantity-btn .btn {
    margin: 10px auto 10px 0;
  }

  .xs-add-to-chart-form .xs_input_number {
    float: none;
  }

  .xs-wishlist-and-compare {
    margin-bottom: 10px;
  }

  .list-group-flush .list-group-item .w-50 {
    width: 100% !important;
    margin-bottom: 20px;
  }

  .list-group-flush .list-group-item .w-50:last-child {
    margin-bottom: 0;
  }

  .single-product-info-details img {
    padding: 0;
  }

  .rate-list {
    margin-bottom: 30px;
  }

  .rate-list li {
    display: block;
  }

  .rate-list li span {
    width: 100% !important;
    margin-bottom: 10px;
    display: block;
  }

  .rate-list li .star-rating {
    text-align: left;
  }

  .rate-list li span:last-child {
    margin-bottom: 0;
  }

  .rate-score .help-tip {
    display: none;
  }

  .woocommerce-Reviews .woocommerce-Reviews-title {
    font-size: 1.12857em;
    line-height: 1.5;
  }

  .woocommerce #reviews #comments ol.commentlist {
    padding: 0;
  }

  .table-responsive thead tr {
    border-bottom: 0px solid #000;
  }

  .table td,
  .table th {
    border-top: 0px solid #dee2e6;
  }

  .product-thumb-feature .xs-product-widget {
    display: block;
  }

  .xs-nav-tab.version-3 .nav-item .nav-link {
    font-size: 1em;
  }

  .offer-banner-content {
    max-width: 100%;
  }

  .xs-promotion p {
    font-size: 0.55714em;
  }

  .xs-navDown.transparent-header-info .xs-logo-wraper,
  .xs-navDown.transparent-header-info .xs-header-info {
    padding: 10px 0;
  }

  .xs-navDown.transparent-header-info .xs-header-info,
  .xs-navBar .navbar-border .xs-wish-list-item {
    text-align: left;
    padding: 0px 0;
  }

  .xs-header-info li {
    margin-right: 8px;
    font-size: .8em;
  }

  .xs-banner-v5 .xs-banner-content .xs-banner-title {
    font-size: 2.85714em;
  }

  .xs-banner-v5 .xs-banner-content .xs-banner-sub-title {
    font-size: 1em;
  }

  .xs-nav-tab-v2 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .xs-nav-tab-v2 .nav-item {
    margin-bottom: 10px;
  }

  .xs-organic-product-widget .product-thumb img {
    display: none;
  }

  .xs-organic-product-widget:before {
    display: none;
  }

  .organic-widget-content {
    padding-left: 0px;
  }

  .xs-countdown-timer {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .xs-countdown-timer .xs-timer-container {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .xs-funfact-section {
    padding-top: 260px;
    padding-bottom: 40px;
  }

  .xs-single-fun-fact {
    margin-bottom: 30px;
  }

  .xs-newsletter.newsLetter-v2 {
    display: block;
  }

  .xs-banner-slider-6 .xs-banner-content {
    padding: 0 15px;
  }

  .block-product-cate-wraper {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .product-block-slider {
    margin-bottom: 30px;
  }

  .product-block-category .xs-product-category {
    margin-bottom: 30px;
  }

  .product-block-category {
    margin-bottom: 0px;
  }

  .customer-info-forms.row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .customer-info-forms [class^=col-]:first-child {
    margin-bottom: 30px;
  }

  .terms-list-group {
    padding: 30px;
  }

  .xs-faq-group [class^=col-]:first-child .xs-single-faq {
    counter-increment: my-awesome-counter;
  }

  .xs-faq-group [class^=col-]:first-child {
    counter-reset: my-awesome-counter;
  }

  .inline-form .row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .inline-form .row [class^=col-]:first-child {
    padding-right: 15px;
  }

  .inline-form .row [class^=col-]:last-child {
    padding-left: 15px;
  }

  .inline-form .separetors {
    display: none;
  }

  .feature-product-v4 .xs-single-product .xs-product-wraper {
    margin-bottom: 0px;
  }

  .shop-category {
    margin-bottom: 30px;
  }

  .widget.widget_banner img {
    width: 100%;
  }

  .shop-cate-list .shop-cate-title {
    display: block;
    margin-bottom: 20px;
  }

  .shop-cate-list .shop-catelist-item {
    float: none;
  }

  .shop-catelist-item>li {
    margin-right: 0;
    padding-right: 0;
    margin-bottom: 10px;
    display: block;
  }

  .shop-catelist-item>li:before {
    display: none;
  }

  .pagination {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .about-content-left .xs-about-content {
    padding-right: 0px;
  }

  .xs-about-content .about-info h5 {
    font-size: 2em;
  }

  .fact-list .single-fact-item {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .block-product-cate-wraper .nav .nav-link {
    padding: 10px 0;
  }

  .small-offer-banner-v2 .small-offer-banner {
    float: none;
    width: 100%;
  }

  .xs-banner .xs-banner-campaign img {
    width: 100%;
    min-height: 100%;
  }

  .xs-banner .xs-feature-product {
    float: none;
    width: 100%;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 65%;
  }

  .xs-back-to-top-wraper {
    display: none;
  }

  .xs-wish-list-item {
    text-align: left;
  }

  .xs-wish-list-item .xs-miniCart-dropdown {
    display: block;
  }

  .xs-wish-list {
    display: none;
  }

  .xs-logo-wraper {
    text-align: center;
  }

  .xs-navDown.transparent-header-info .xs-logo-wraper {
    padding: 20px 0;
  }

  .xs-navbar-search input:not([type="submit"]),
  .xs-navbar-search .xs-category-select-wraper {
    width: 100%;
  }

  .xs-navbar-search .xs-category-select-wraper {
    width: 80%;
  }

  .xs-navbar-search .input-group-btn {
    width: 20%;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 60.5%;
  }
}

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */

html {
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

figcaption,
figure,
main {
  display: block;
}

figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: inherit;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  /* font-family: monospace, monospace;
  font-size: 1em; */
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details,
menu {
  display: block;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body,
input,
textarea,
button,
select {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

a:focus {
  color: inherit;
}

img {
  max-width: 100%;
}

form {
  margin: 0;
}

@media only screen and (max-width: 989px) {

  input,
  textarea,
  select {
    font-size: 16px;
  }
}

button,
input[type="submit"],
label[for] {
  cursor: pointer;
}

optgroup {
  font-weight: 700;
}

option {
  color: #000;
  background-color: #fff;
}

[tabindex='-1']:focus {
  outline: none;
}

a,
button,
[role="button"],
input,
label,
select,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

.clearfix {
  *zoom: 1;
}

.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.js-focus-hidden:focus {
  outline: none;
}

.label-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.no-placeholder .label-hidden {
  position: inherit !important;
  overflow: auto;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

.visually-shown {
  position: inherit !important;
  overflow: auto;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

.no-js:not(html) {
  display: none;
}

.no-js .no-js:not(html) {
  display: block;
}

.no-js .js {
  display: none;
}

.supports-no-cookies:not(html) {
  display: none;
}

html.supports-no-cookies .supports-no-cookies:not(html) {
  display: block;
}

html.supports-no-cookies .supports-cookies {
  display: none;
}

.skip-link:focus {
  position: absolute !important;
  overflow: auto;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: #000;
  background-color: #fff;
  padding: 15px;
  z-index: 10000;
  -webkit-transition: none;
  transition: none;
}

.grid {
  *zoom: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -30px;
}

.grid::after {
  content: '';
  display: table;
  clear: both;
}

.grid__item {
  float: left;
  padding-left: 30px;
  width: 100%;
}

.grid__item[class*='--push'] {
  position: relative;
}

.grid--rev {
  direction: rtl;
  text-align: left;
}

.grid--rev>.grid__item {
  direction: ltr;
  text-align: left;
  float: right;
}

.one-whole {
  width: 100%;
}

.one-half {
  width: 50%;
}

.one-third {
  width: 33.33333%;
}

.two-thirds {
  width: 66.66667%;
}

.one-quarter {
  width: 25%;
}

.two-quarters {
  width: 50%;
}

.three-quarters {
  width: 75%;
}

.one-fifth {
  width: 20%;
}

.two-fifths {
  width: 40%;
}

.three-fifths {
  width: 60%;
}

.four-fifths {
  width: 80%;
}

.one-sixth {
  width: 16.66667%;
}

.two-sixths {
  width: 33.33333%;
}

.three-sixths {
  width: 50%;
}

.four-sixths {
  width: 66.66667%;
}

.five-sixths {
  width: 83.33333%;
}

.one-eighth {
  width: 12.5%;
}

.two-eighths {
  width: 25%;
}

.three-eighths {
  width: 37.5%;
}

.four-eighths {
  width: 50%;
}

.five-eighths {
  width: 62.5%;
}

.six-eighths {
  width: 75%;
}

.seven-eighths {
  width: 87.5%;
}

.one-tenth {
  width: 10%;
}

.two-tenths {
  width: 20%;
}

.three-tenths {
  width: 30%;
}

.four-tenths {
  width: 40%;
}

.five-tenths {
  width: 50%;
}

.six-tenths {
  width: 60%;
}

.seven-tenths {
  width: 70%;
}

.eight-tenths {
  width: 80%;
}

.nine-tenths {
  width: 90%;
}

.one-twelfth {
  width: 8.33333%;
}

.two-twelfths {
  width: 16.66667%;
}

.three-twelfths {
  width: 25%;
}

.four-twelfths {
  width: 33.33333%;
}

.five-twelfths {
  width: 41.66667%;
}

.six-twelfths {
  width: 50%;
}

.seven-twelfths {
  width: 58.33333%;
}

.eight-twelfths {
  width: 66.66667%;
}

.nine-twelfths {
  width: 75%;
}

.ten-twelfths {
  width: 83.33333%;
}

.eleven-twelfths {
  width: 91.66667%;
}

.show {
  display: block !important;
}

.hide {
  display: none !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media only screen and (max-width: 749px) {
  .small--one-whole {
    width: 100%;
  }

  .small--one-half {
    width: 50%;
  }

  .small--one-third {
    width: 33.33333%;
  }

  .small--two-thirds {
    width: 66.66667%;
  }

  .small--one-quarter {
    width: 25%;
  }

  .small--two-quarters {
    width: 50%;
  }

  .small--three-quarters {
    width: 75%;
  }

  .small--one-fifth {
    width: 20%;
  }

  .small--two-fifths {
    width: 40%;
  }

  .small--three-fifths {
    width: 60%;
  }

  .small--four-fifths {
    width: 80%;
  }

  .small--one-sixth {
    width: 16.66667%;
  }

  .small--two-sixths {
    width: 33.33333%;
  }

  .small--three-sixths {
    width: 50%;
  }

  .small--four-sixths {
    width: 66.66667%;
  }

  .small--five-sixths {
    width: 83.33333%;
  }

  .small--one-eighth {
    width: 12.5%;
  }

  .small--two-eighths {
    width: 25%;
  }

  .small--three-eighths {
    width: 37.5%;
  }

  .small--four-eighths {
    width: 50%;
  }

  .small--five-eighths {
    width: 62.5%;
  }

  .small--six-eighths {
    width: 75%;
  }

  .small--seven-eighths {
    width: 87.5%;
  }

  .small--one-tenth {
    width: 10%;
  }

  .small--two-tenths {
    width: 20%;
  }

  .small--three-tenths {
    width: 30%;
  }

  .small--four-tenths {
    width: 40%;
  }

  .small--five-tenths {
    width: 50%;
  }

  .small--six-tenths {
    width: 60%;
  }

  .small--seven-tenths {
    width: 70%;
  }

  .small--eight-tenths {
    width: 80%;
  }

  .small--nine-tenths {
    width: 90%;
  }

  .small--one-twelfth {
    width: 8.33333%;
  }

  .small--two-twelfths {
    width: 16.66667%;
  }

  .small--three-twelfths {
    width: 25%;
  }

  .small--four-twelfths {
    width: 33.33333%;
  }

  .small--five-twelfths {
    width: 41.66667%;
  }

  .small--six-twelfths {
    width: 50%;
  }

  .small--seven-twelfths {
    width: 58.33333%;
  }

  .small--eight-twelfths {
    width: 66.66667%;
  }

  .small--nine-twelfths {
    width: 75%;
  }

  .small--ten-twelfths {
    width: 83.33333%;
  }

  .small--eleven-twelfths {
    width: 91.66667%;
  }

  .grid--uniform .small--one-half:nth-child(2n+1),
  .grid--uniform .small--one-third:nth-child(3n+1),
  .grid--uniform .small--one-quarter:nth-child(4n+1),
  .grid--uniform .small--one-fifth:nth-child(5n+1),
  .grid--uniform .small--one-sixth:nth-child(6n+1),
  .grid--uniform .small--two-sixths:nth-child(3n+1),
  .grid--uniform .small--three-sixths:nth-child(2n+1),
  .grid--uniform .small--one-eighth:nth-child(8n+1),
  .grid--uniform .small--two-eighths:nth-child(4n+1),
  .grid--uniform .small--four-eighths:nth-child(2n+1),
  .grid--uniform .small--five-tenths:nth-child(2n+1),
  .grid--uniform .small--one-twelfth:nth-child(12n+1),
  .grid--uniform .small--two-twelfths:nth-child(6n+1),
  .grid--uniform .small--three-twelfths:nth-child(4n+1),
  .grid--uniform .small--four-twelfths:nth-child(3n+1),
  .grid--uniform .small--six-twelfths:nth-child(2n+1) {
    clear: both;
  }

  .small--show {
    display: block !important;
  }

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

  .small--text-left {
    text-align: left !important;
  }

  .small--text-right {
    text-align: right !important;
  }

  .small--text-center {
    text-align: center !important;
  }
}

@media only screen and (min-width: 750px) {
  .medium-up--one-whole {
    width: 100%;
  }

  .medium-up--one-half {
    width: 50%;
  }

  .medium-up--one-third {
    width: 33.33333%;
  }

  .medium-up--two-thirds {
    width: 66.66667%;
  }

  .medium-up--one-quarter {
    width: 25%;
  }

  .medium-up--two-quarters {
    width: 50%;
  }

  .medium-up--three-quarters {
    width: 75%;
  }

  .medium-up--one-fifth {
    width: 20%;
  }

  .medium-up--two-fifths {
    width: 40%;
  }

  .medium-up--three-fifths {
    width: 60%;
  }

  .medium-up--four-fifths {
    width: 80%;
  }

  .medium-up--one-sixth {
    width: 16.66667%;
  }

  .medium-up--two-sixths {
    width: 33.33333%;
  }

  .medium-up--three-sixths {
    width: 50%;
  }

  .medium-up--four-sixths {
    width: 66.66667%;
  }

  .medium-up--five-sixths {
    width: 83.33333%;
  }

  .medium-up--one-eighth {
    width: 12.5%;
  }

  .medium-up--two-eighths {
    width: 25%;
  }

  .medium-up--three-eighths {
    width: 37.5%;
  }

  .medium-up--four-eighths {
    width: 50%;
  }

  .medium-up--five-eighths {
    width: 62.5%;
  }

  .medium-up--six-eighths {
    width: 75%;
  }

  .medium-up--seven-eighths {
    width: 87.5%;
  }

  .medium-up--one-tenth {
    width: 10%;
  }

  .medium-up--two-tenths {
    width: 20%;
  }

  .medium-up--three-tenths {
    width: 30%;
  }

  .medium-up--four-tenths {
    width: 40%;
  }

  .medium-up--five-tenths {
    width: 50%;
  }

  .medium-up--six-tenths {
    width: 60%;
  }

  .medium-up--seven-tenths {
    width: 70%;
  }

  .medium-up--eight-tenths {
    width: 80%;
  }

  .medium-up--nine-tenths {
    width: 90%;
  }

  .medium-up--one-twelfth {
    width: 8.33333%;
  }

  .medium-up--two-twelfths {
    width: 16.66667%;
  }

  .medium-up--three-twelfths {
    width: 25%;
  }

  .medium-up--four-twelfths {
    width: 33.33333%;
  }

  .medium-up--five-twelfths {
    width: 41.66667%;
  }

  .medium-up--six-twelfths {
    width: 50%;
  }

  .medium-up--seven-twelfths {
    width: 58.33333%;
  }

  .medium-up--eight-twelfths {
    width: 66.66667%;
  }

  .medium-up--nine-twelfths {
    width: 75%;
  }

  .medium-up--ten-twelfths {
    width: 83.33333%;
  }

  .medium-up--eleven-twelfths {
    width: 91.66667%;
  }

  .grid--uniform .medium-up--one-half:nth-child(2n+1),
  .grid--uniform .medium-up--one-third:nth-child(3n+1),
  .grid--uniform .medium-up--one-quarter:nth-child(4n+1),
  .grid--uniform .medium-up--one-fifth:nth-child(5n+1),
  .grid--uniform .medium-up--one-sixth:nth-child(6n+1),
  .grid--uniform .medium-up--two-sixths:nth-child(3n+1),
  .grid--uniform .medium-up--three-sixths:nth-child(2n+1),
  .grid--uniform .medium-up--one-eighth:nth-child(8n+1),
  .grid--uniform .medium-up--two-eighths:nth-child(4n+1),
  .grid--uniform .medium-up--four-eighths:nth-child(2n+1),
  .grid--uniform .medium-up--five-tenths:nth-child(2n+1),
  .grid--uniform .medium-up--one-twelfth:nth-child(12n+1),
  .grid--uniform .medium-up--two-twelfths:nth-child(6n+1),
  .grid--uniform .medium-up--three-twelfths:nth-child(4n+1),
  .grid--uniform .medium-up--four-twelfths:nth-child(3n+1),
  .grid--uniform .medium-up--six-twelfths:nth-child(2n+1) {
    clear: both;
  }

  .medium-up--show {
    display: block !important;
  }

  .medium-up--hide {
    display: none !important;
  }

  .medium-up--text-left {
    text-align: left !important;
  }

  .medium-up--text-right {
    text-align: right !important;
  }

  .medium-up--text-center {
    text-align: center !important;
  }
}

body,
html {
  background-color: #fff;
}

.page-width {
  *zoom: 1;
  max-width: 1180px;
  padding: 0 30px;
  margin: 0 auto;
}

.page-width::after {
  content: '';
  display: table;
  clear: both;
}

.rte img {
  height: auto;
}

.rte table {
  table-layout: fixed;
}

.rte ul,
.rte ol {
  margin: 0 0 15px 30px;
}

.rte ul {
  list-style: disc outside;
}

.rte ul ul {
  list-style: circle outside;
}

.rte ul ul ul {
  list-style: square outside;
}

.text-center.rte ul,
.text-center.rte ol,
.text-center .rte ul,
.text-center .rte ol {
  margin-left: 0;
  list-style-position: inside;
}

.rte-table {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.rte__video-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  height: auto;
}

.rte__video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rte__table-wrapper {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

@media only screen and (max-width: 749px) {
  .responsive-table {
    width: 100%;
  }

  .responsive-table thead {
    display: none;
  }

  .responsive-table tr {
    display: block;
  }

  .responsive-table tr,
  .responsive-table td {
    float: left;
    clear: both;
    width: 100%;
  }

  .responsive-table th,
  .responsive-table td {
    display: block;
    text-align: right;
    padding: 15px;
    margin: 0;
  }

  .responsive-table td::before {
    content: attr(data-label);
    float: left;
    text-align: center;
    padding-right: 10px;
  }

  .responsive-table-row+.responsive-table-row,
  tfoot>.responsive-table-row:first-child {
    position: relative;
    margin-top: 10px;
    padding-top: 15px;
  }

  .responsive-table-row+.responsive-table-row::after,
  tfoot>.responsive-table-row:first-child::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    border-bottom: 1px solid #f6f6f6;
  }
}

.btn {
  -moz-user-select: "none";
  -ms-user-select: "none";
  -webkit-user-select: "none";
  user-select: "none";
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: auto;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  border: 0;
}

input,
textarea,
select {
  border: 1px solid #f6f6f6;
  border-radius: 0;
  max-width: 100%;
}

input[disabled],
textarea[disabled],
select[disabled] {
  cursor: default;
  background-color: #000;
  border-color: #000;
}

textarea {
  min-height: 100px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url(//cdn.shopify.com/s/files/1/0069/4524/3200/t/14/assets/ico-select.svg?6851121517266890162);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: transparent;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
}

.ie9 select {
  padding-right: 10px;
  background-image: none;
}

select::-ms-expand {
  display: none;
}

input.input-error,
select.input-error,
textarea.input-error {
  border-color: #000;
  background-color: #000;
  color: #000;
}

.placeholder-svg {
  display: block;
  fill: rgba(0, 0, 0, 0.35);
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.placeholder-svg--small {
  width: 480px;
}

.placeholder-noblocks {
  padding: 40px;
  text-align: center;
}

.placeholder-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.placeholder-background .icon {
  border: 0;
}

.site-logo {
  display: block;
}

.site-logo img {
  display: block;
  width: 100%;
}

.giftcard-qr img {
  display: block;
  margin: 0 auto;
}

.apple-wallet-image {
  display: block;
  margin: 0 auto;
}

@media print {
  @page {
    margin: 0.5cm;
  }

  p {
    orphans: 3;
    widows: 3;
  }

  html,
  body {
    background-color: #fff;
    color: #000;
  }

  .print-giftcard,
  .apple-wallet {
    display: none;
  }
}

.btn-outline-primary.focus,
.btn-outline-primary:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0) !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0) !important;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto #f7f7f7 !important;
}

.btn-outline-primary.focus,
.btn-outline-primary:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0) !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0) !important;
}

.btn-primary.focus,
.btn-primary:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0) !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0) !important;
}

a:focus,
button:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.xs-section-padding-b {
  padding: 0 0 40px 0;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@font-face {
  font-family: star;
  src: url(/fonts/star.eot?5aba6f67f5a8e7baf9bc5a569824e2ba);
  src: url(/fonts/star.eot?5aba6f67f5a8e7baf9bc5a569824e2ba) format("embedded-opentype"), url(/fonts/star.woff?335cbf607c55aa32fd06809d1f9eb127) format("woff"), url(/fonts/star.ttf?6b78a34cea321205e5ee8a1b44b41a5e) format("truetype"), url(/fonts/star.svg?5e73470010dd7998b280b4066e39e9ec) format("svg");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: WooCommerce;
  src: url(/fonts/WooCommerce.eot?37499c01879113d013b3f6179700ce69);
  src: url(/fonts/WooCommerce.eot?37499c01879113d013b3f6179700ce69) format("embedded-opentype"), url(/fonts/WooCommerce.woff?a675793d69f4eec5a3825bfc2da67287) format("woff"), url(/fonts/WooCommerce.ttf?88d94391c7d0b11d54a46fbff449b98f) format("truetype"), url(/fonts/WooCommerce.svg?d9b7a6d9164deb672b462edc5e90621e) format("svg");
  font-weight: 400;
  font-style: normal;
}

.woocommerce-store-notice,
p.demo_store {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  width: 100%;
  font-size: 1em;
  padding: 1em 0;
  text-align: center;
  background-color: #a46497;
  color: #fff;
  z-index: 99998;
  -webkit-box-shadow: 0 1px 1em rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 1em rgba(0, 0, 0, 0.2);
  display: none;
}

.woocommerce-store-notice a,
p.demo_store a {
  color: #fff;
  text-decoration: underline;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.admin-bar p.demo_store {
  top: 32px;
}

.clear {
  clear: both;
}

.woocommerce .blockUI.blockOverlay {
  position: relative;
}

.woocommerce .blockUI.blockOverlay::before {
  height: 1em;
  width: 1em;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -.5em;
  margin-top: -.5em;
  content: '';
  -webkit-animation: spin 1s ease-in-out infinite;
  animation: spin 1s ease-in-out infinite;
  background: url(/fonts/loader.svg?72376329015bc6d0d20c77b4f10c5ed1) center center;
  background-size: cover;
  line-height: 1;
  text-align: center;
  font-size: 2em;
  color: rgba(0, 0, 0, 0.75);
}

.woocommerce .loader::before {
  height: 1em;
  width: 1em;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -.5em;
  margin-top: -.5em;
  content: '';
  -webkit-animation: spin 1s ease-in-out infinite;
  animation: spin 1s ease-in-out infinite;
  background: url(/fonts/loader.svg?72376329015bc6d0d20c77b4f10c5ed1) center center;
  background-size: cover;
  line-height: 1;
  text-align: center;
  font-size: 2em;
  color: rgba(0, 0, 0, 0.75);
}

.woocommerce a.remove {
  display: block;
  font-size: 1.5em;
  height: 1em;
  width: 1em;
  text-align: center;
  line-height: 1;
  border-radius: 100%;
  color: red !important;
  text-decoration: none;
  font-weight: 700;
  border: 0;
}

.woocommerce a.remove:hover {
  color: #fff !important;
  background: red;
}

.woocommerce small.note {
  display: block;
  color: #777;
  font-size: .857em;
  margin-top: 10px;
}

.woocommerce .woocommerce-breadcrumb {
  margin: 0 0 1em;
  padding: 0;
  font-size: .92em;
  color: #777;
}

.woocommerce .woocommerce-breadcrumb::after,
.woocommerce .woocommerce-breadcrumb::before {
  content: ' ';
  display: table;
}

.woocommerce .woocommerce-breadcrumb::after {
  clear: both;
}

.woocommerce .woocommerce-breadcrumb a {
  color: #777;
}

.woocommerce .quantity .qty {
  width: 3.631em;
  text-align: center;
}

.woocommerce div.product {
  margin-bottom: 0;
  position: relative;
}

.woocommerce div.product .product_title {
  clear: none;
  margin-top: 0;
  padding: 0;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: #77a464;
  font-size: 1.25em;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
  background: inherit;
  font-weight: 700;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
  opacity: .5;
}

.woocommerce div.product p.stock {
  font-size: .92em;
}

.woocommerce div.product .stock {
  color: #77a464;
}

.woocommerce div.product .out-of-stock {
  color: red;
}

.woocommerce div.product .woocommerce-product-rating {
  margin-bottom: 1.618em;
}

.woocommerce div.product div.images {
  margin-bottom: 2em;
}

.woocommerce div.product div.images img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.woocommerce div.product div.images div.thumbnails {
  padding-top: 1em;
}

.woocommerce div.product div.images.woocommerce-product-gallery {
  position: relative;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  -webkit-transition: all cubic-bezier(0.795, -0.035, 0, 1) 0.5s;
  transition: all cubic-bezier(0.795, -0.035, 0, 1) 0.5s;
  margin: 0;
  padding: 0;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .zoomImg {
  background-color: #fff;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
  width: 25%;
  display: inline-block;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
  position: absolute;
  top: .5em;
  right: .5em;
  font-size: 2em;
  z-index: 9;
  width: 36px;
  height: 36px;
  background: #fff;
  text-indent: -9999px;
  border-radius: 100%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid #000;
  border-radius: 100%;
  position: absolute;
  top: 9px;
  left: 9px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger:after {
  content: "";
  display: block;
  width: 2px;
  height: 8px;
  background: #000;
  border-radius: 6px;
  position: absolute;
  top: 19px;
  left: 22px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.woocommerce div.product div.images .flex-control-thumbs {
  overflow: hidden;
  zoom: 1;
  margin: 0;
  padding: 0;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
  list-style: none;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
  cursor: pointer;
  opacity: .5;
  margin: 0;
}

.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs li img:hover {
  opacity: 1;
}

.woocommerce div.product .woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1) {
  clear: left;
}

.woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
  clear: left;
}

.woocommerce div.product .woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1) {
  clear: left;
}

.woocommerce div.product div.summary {
  margin-bottom: 2em;
}

.woocommerce div.product div.social {
  text-align: right;
  margin: 0 0 1em;
}

.woocommerce div.product div.social span {
  margin: 0 0 0 2px;
}

.woocommerce div.product div.social span span {
  margin: 0;
}

.woocommerce div.product div.social span .stButton .chicklets {
  padding-left: 16px;
  width: 0;
}

.woocommerce div.product div.social iframe {
  float: left;
  margin-top: 3px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  list-style: none;
  padding: 0 0 0 1em;
  margin: 0 0 1.618em;
  overflow: hidden;
  position: relative;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 1px solid #d3ced2;
  background-color: #ebe9eb;
  display: inline-block;
  position: relative;
  z-index: 0;
  border-radius: 4px 4px 0 0;
  margin: 0 -5px;
  padding: 0 1em;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: inline-block;
  padding: .5em 0;
  font-weight: 700;
  color: #515151;
  text-decoration: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  text-decoration: none;
  color: #6b6a6b;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: #fff;
  z-index: 2;
  border-bottom-color: #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: inherit;
  text-shadow: inherit;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before {
  -webkit-box-shadow: 2px 2px 0 #fff;
  box-shadow: 2px 2px 0 #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
  -webkit-box-shadow: -2px 2px 0 #fff;
  box-shadow: -2px 2px 0 #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  border: 1px solid #d3ced2;
  position: absolute;
  bottom: -1px;
  width: 5px;
  height: 5px;
  content: ' ';
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  left: -6px;
  border-bottom-right-radius: 4px;
  border-width: 0 1px 1px 0;
  -webkit-box-shadow: 2px 2px 0 #ebe9eb;
  box-shadow: 2px 2px 0 #ebe9eb;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  right: -6px;
  border-bottom-left-radius: 4px;
  border-width: 0 0 1px 1px;
  -webkit-box-shadow: -2px 2px 0 #ebe9eb;
  box-shadow: -2px 2px 0 #ebe9eb;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  position: absolute;
  content: ' ';
  width: 100%;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #d3ced2;
  z-index: 1;
}

.woocommerce div.product .woocommerce-tabs .panel {
  margin: 0 0 2em;
  padding: 0;
}

.woocommerce div.product p.cart {
  margin-bottom: 2em;
}

.woocommerce div.product p.cart::after,
.woocommerce div.product p.cart::before {
  content: ' ';
  display: table;
}

.woocommerce div.product p.cart::after {
  clear: both;
}

.woocommerce div.product form.cart {
  margin-bottom: 2em;
}

.woocommerce div.product form.cart::after,
.woocommerce div.product form.cart::before {
  content: ' ';
  display: table;
}

.woocommerce div.product form.cart::after {
  clear: both;
}

.woocommerce div.product form.cart div.quantity {
  float: left;
  margin: 0 4px 0 0;
}

.woocommerce div.product form.cart table {
  border-width: 0 0 1px;
}

.woocommerce div.product form.cart table td {
  padding-left: 0;
}

.woocommerce div.product form.cart table div.quantity {
  float: none;
  margin: 0;
}

.woocommerce div.product form.cart table small.stock {
  display: block;
  float: none;
}

.woocommerce div.product form.cart .variations {
  margin-bottom: 1em;
  border: 0;
  width: 100%;
}

.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
  border: 0;
  vertical-align: top;
  line-height: 2em;
}

.woocommerce div.product form.cart .variations label {
  font-weight: 700;
}

.woocommerce div.product form.cart .variations select {
  max-width: 100%;
  min-width: 75%;
  display: inline-block;
  margin-right: 1em;
}

.woocommerce div.product form.cart .variations td.label {
  padding-right: 1em;
}

.woocommerce div.product form.cart .woocommerce-variation-description p {
  margin-bottom: 1em;
}

.woocommerce div.product form.cart .reset_variations {
  visibility: hidden;
  font-size: .83em;
}

.woocommerce div.product form.cart .wc-no-matching-variations {
  display: none;
}

.woocommerce div.product form.cart .button {
  vertical-align: middle;
  float: left;
}

.woocommerce div.product form.cart .group_table td.label {
  padding-right: 1em;
  padding-left: 1em;
}

.woocommerce div.product form.cart .group_table td {
  vertical-align: top;
  padding-bottom: .5em;
  border: 0;
}

.woocommerce div.product form.cart .group_table td:first-child {
  width: 4em;
  text-align: center;
}

.woocommerce div.product form.cart .group_table .wc-grouped-product-add-to-cart-checkbox {
  display: inline-block;
  width: auto;
  margin: 0 auto;
  -webkit-transform: scale(1.5, 1.5);
  transform: scale(1.5, 1.5);
}

.woocommerce span.onsale {
  min-height: 3.236em;
  min-width: 3.236em;
  padding: .202em;
  font-size: 1em;
  font-weight: 700;
  position: absolute;
  text-align: center;
  line-height: 3.236;
  top: -.5em;
  left: -.5em;
  margin: 0;
  border-radius: 100%;
  background-color: #77a464;
  color: #fff;
  font-size: .857em;
  -webkit-font-smoothing: antialiased;
  z-index: 9;
}

.woocommerce .products ul,
.woocommerce ul.products {
  margin: 0 0 1em;
  padding: 0;
  list-style: none outside;
  clear: both;
}

.woocommerce .products ul::after,
.woocommerce .products ul::before,
.woocommerce ul.products::after,
.woocommerce ul.products::before {
  content: ' ';
  display: table;
}

.woocommerce .products ul::after,
.woocommerce ul.products::after {
  clear: both;
}

.woocommerce .products ul li,
.woocommerce ul.products li {
  list-style: none outside;
}

.woocommerce ul.products li.product .onsale {
  top: 0;
  right: 0;
  left: auto;
  margin: -.5em -.5em 0 0;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
  padding: .5em 0;
  margin: 0;
  font-size: 1em;
}

.woocommerce ul.products li.product a {
  text-decoration: none;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 0 1em;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.woocommerce ul.products li.product strong {
  display: block;
}

.woocommerce ul.products li.product .star-rating {
  font-size: .857em;
}

.woocommerce ul.products li.product .button {
  margin-top: 1em;
}

.woocommerce ul.products li.product .price {
  color: #77a464;
  display: block;
  font-weight: 400;
  margin-bottom: .5em;
  font-size: .857em;
}

.woocommerce ul.products li.product .price del {
  color: inherit;
  opacity: .5;
  display: block;
}

.woocommerce ul.products li.product .price ins {
  background: 0 0;
  font-weight: 700;
}

.woocommerce ul.products li.product .price .from {
  font-size: .67em;
  margin: -2px 0 0 0;
  text-transform: uppercase;
  color: rgba(132, 132, 132, 0.5);
}

.woocommerce .woocommerce-result-count {
  margin: 0 0 1em;
}

.woocommerce .woocommerce-ordering {
  margin: 0 0 1em;
}

.woocommerce .woocommerce-ordering select {
  vertical-align: top;
}

.woocommerce nav.woocommerce-pagination {
  text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
  display: inline-block;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border: 1px solid #d3ced2;
  border-right: 0;
  margin: 1px;
}

.woocommerce nav.woocommerce-pagination ul li {
  border-right: 1px solid #d3ced2;
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1;
  font-size: 1em;
  font-weight: 400;
  padding: .5em;
  min-width: 1em;
  display: block;
}

.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: #ebe9eb;
  color: #8a7e88;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  /*font-size: 100%;
  margin: 0;
  line-height: 1;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  overflow: visible;
  padding: .618em 1em;
  font-weight: 700;
  border-radius: 3px;
  left: auto;
  color: #515151;
  background-color: #ebe9eb;
  border: 0;
  white-space: nowrap;
  display: inline-block;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;*/
}

.woocommerce #respond input#submit.loading,
.woocommerce a.button.loading,
.woocommerce button.button.loading,
.woocommerce input.button.loading {
  opacity: .25;
  padding-right: 2.618em;
}

.woocommerce #respond input#submit.loading::after,
.woocommerce a.button.loading::after,
.woocommerce button.button.loading::after,
.woocommerce input.button.loading::after {
  font-family: WooCommerce;
  content: '\E01C';
  vertical-align: top;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  position: absolute;
  top: .618em;
  right: 1em;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.woocommerce #respond input#submit.added::after,
.woocommerce a.button.added::after,
.woocommerce button.button.added::after,
.woocommerce input.button.added::after {
  font-family: WooCommerce;
  content: '\E017';
  margin-left: .53em;
  vertical-align: bottom;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background-color: #dad8da00;
  text-decoration: none;
  background-image: none;
  color: #515151;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background-color: #a46497;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background-color: #935386;
  color: #fff;
}

.woocommerce #respond input#submit.alt.disabled,
.woocommerce #respond input#submit.alt.disabled:hover,
.woocommerce #respond input#submit.alt:disabled,
.woocommerce #respond input#submit.alt:disabled:hover,
.woocommerce #respond input#submit.alt:disabled[disabled],
.woocommerce #respond input#submit.alt:disabled[disabled]:hover,
.woocommerce a.button.alt.disabled,
.woocommerce a.button.alt.disabled:hover,
.woocommerce a.button.alt:disabled,
.woocommerce a.button.alt:disabled:hover,
.woocommerce a.button.alt:disabled[disabled],
.woocommerce a.button.alt:disabled[disabled]:hover,
.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt.disabled:hover,
.woocommerce button.button.alt:disabled,
.woocommerce button.button.alt:disabled:hover,
.woocommerce button.button.alt:disabled[disabled],
.woocommerce button.button.alt:disabled[disabled]:hover,
.woocommerce input.button.alt.disabled,
.woocommerce input.button.alt.disabled:hover,
.woocommerce input.button.alt:disabled,
.woocommerce input.button.alt:disabled:hover,
.woocommerce input.button.alt:disabled[disabled],
.woocommerce input.button.alt:disabled[disabled]:hover {
  background-color: #a46497;
  color: #fff;
}

.woocommerce #respond input#submit.disabled,
.woocommerce #respond input#submit:disabled,
.woocommerce #respond input#submit:disabled[disabled],
.woocommerce a.button.disabled,
.woocommerce a.button:disabled,
.woocommerce a.button:disabled[disabled],
.woocommerce button.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button.disabled,
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled] {
  color: inherit;
  cursor: not-allowed;
  opacity: .5;
  padding: .618em 1em;
}

.woocommerce #respond input#submit.disabled:hover,
.woocommerce #respond input#submit:disabled:hover,
.woocommerce #respond input#submit:disabled[disabled]:hover,
.woocommerce a.button.disabled:hover,
.woocommerce a.button:disabled:hover,
.woocommerce a.button:disabled[disabled]:hover,
.woocommerce button.button.disabled:hover,
.woocommerce button.button:disabled:hover,
.woocommerce button.button:disabled[disabled]:hover,
.woocommerce input.button.disabled:hover,
.woocommerce input.button:disabled:hover,
.woocommerce input.button:disabled[disabled]:hover {
  color: inherit;
  background-color: #ebe9eb;
}

.woocommerce .cart .button,
.woocommerce .cart input.button {
  float: none;
}

.woocommerce a.added_to_cart {
  padding-top: .5em;
  white-space: nowrap;
  display: inline-block;
}

.woocommerce #reviews h2 small {
  float: right;
  color: #777;
  font-size: 15px;
  margin: 10px 0 0;
}

.woocommerce #reviews h2 small a {
  text-decoration: none;
  color: #777;
}

.woocommerce #reviews h3 {
  margin: 0;
}

.woocommerce #reviews #respond {
  margin: 0;
  border: 0;
  padding: 0;
}

.woocommerce #reviews #comment {
  height: 75px;
}

.woocommerce #reviews #comments .add_review::after,
.woocommerce #reviews #comments .add_review::before {
  content: ' ';
  display: table;
}

.woocommerce #reviews #comments .add_review::after {
  clear: both;
}

.woocommerce #reviews #comments h2 {
  clear: none;
}

.woocommerce #reviews #comments ol.commentlist {
  margin: 0;
  width: 100%;
  background: 0 0;
  list-style: none;
}

.woocommerce #reviews #comments ol.commentlist::after,
.woocommerce #reviews #comments ol.commentlist::before {
  content: ' ';
  display: table;
}

.woocommerce #reviews #comments ol.commentlist::after {
  clear: both;
}

.woocommerce #reviews #comments ol.commentlist li {
  padding: 0;
  margin: 0 0 20px;
  border: 0;
  position: relative;
  background: 0;
  border: 0;
}

.woocommerce #reviews #comments ol.commentlist li .meta {
  color: #777;
  font-size: .75em;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
  float: left;
  position: absolute;
  top: 0;
  left: 0;
  padding: 3px;
  width: 32px;
  height: auto;
  background: #ebe9eb;
  border: 1px solid #e4e1e3;
  margin: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
  margin: 0 0 0 50px;
  border: 1px solid #e4e1e3;
  border-radius: 4px;
  padding: 1em 1em 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text::after,
.woocommerce #reviews #comments ol.commentlist li .comment-text::before {
  content: ' ';
  display: table;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text::after {
  clear: both;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p {
  margin: 0 0 1em;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
  font-size: .83em;
}

.woocommerce #reviews #comments ol.commentlist ul.children {
  list-style: none outside;
  margin: 20px 0 0 50px;
}

.woocommerce #reviews #comments ol.commentlist ul.children .star-rating {
  display: none;
}

.woocommerce #reviews #comments ol.commentlist #respond {
  border: 1px solid #e4e1e3;
  border-radius: 4px;
  padding: 1em 1em 0;
  margin: 20px 0 0 50px;
}

.woocommerce #reviews #comments .commentlist>li::before {
  content: '';
}

.woocommerce .star-rating {
  float: right;
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1;
  font-size: 1em;
  width: 5.4em;
  font-family: star;
}

.woocommerce .star-rating::before {
  content: 'sssss';
  color: #d3ced2;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}

.woocommerce .star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}

.woocommerce .star-rating span::before {
  content: 'SSSSS';
  top: 0;
  position: absolute;
  left: 0;
}

.woocommerce .woocommerce-product-rating {
  line-height: 2;
  display: block;
}

.woocommerce .woocommerce-product-rating::after,
.woocommerce .woocommerce-product-rating::before {
  content: ' ';
  display: table;
}

.woocommerce .woocommerce-product-rating::after {
  clear: both;
}

.woocommerce .woocommerce-product-rating .star-rating {
  margin: .5em 4px 0 0;
  float: left;
}

.woocommerce .products .star-rating {
  display: block;
  margin: 0 0 .5em;
  float: none;
}

.woocommerce .hreview-aggregate .star-rating {
  margin: 10px 0 0;
}

.woocommerce #review_form #respond {
  position: static;
  margin: 0;
  width: auto;
  padding: 0;
  background: transparent none;
  border: 0;
}

.woocommerce #review_form #respond::after,
.woocommerce #review_form #respond::before {
  content: ' ';
  display: table;
}

.woocommerce #review_form #respond::after {
  clear: both;
}

.woocommerce #review_form #respond p {
  margin: 0 0 10px;
}

.woocommerce #review_form #respond .form-submit input {
  left: auto;
}

.woocommerce #review_form #respond textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.woocommerce p.stars a {
  position: relative;
  height: 1em;
  width: 1em;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
}

.woocommerce p.stars a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-family: WooCommerce;
  content: '\E021';
  text-indent: 0;
}

.woocommerce p.stars a:hover~a::before {
  content: '\E021';
}

.woocommerce p.stars:hover a::before {
  content: '\E020';
}

.woocommerce p.stars.selected a.active::before {
  content: '\E020';
}

.woocommerce p.stars.selected a.active~a::before {
  content: '\E021';
}

.woocommerce p.stars.selected a:not(.active)::before {
  content: '\E020';
}

.woocommerce table.shop_attributes {
  border: 0;
  border-top: 1px dotted rgba(0, 0, 0, 0.1);
  margin-bottom: 1.618em;
  width: 100%;
}

.woocommerce table.shop_attributes th {
  width: 150px;
  font-weight: 700;
  padding: 8px;
  border-top: 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
  margin: 0;
  line-height: 1.5;
}

.woocommerce table.shop_attributes td {
  font-style: italic;
  padding: 0;
  border-top: 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
  margin: 0;
  line-height: 1.5;
}

.woocommerce table.shop_attributes td p {
  margin: 0;
  padding: 8px 0;
}

.woocommerce table.shop_attributes tr:nth-child(even) td,
.woocommerce table.shop_attributes tr:nth-child(even) th {
  background: rgba(0, 0, 0, 0.025);
}

.woocommerce table.shop_table {
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 -1px 24px 0;
  text-align: left;
  width: 100%;
  border-collapse: separate;
  border-radius: 5px;
}

.woocommerce table.shop_table th {
  font-weight: 700;
  padding: 13px 12px;
}

.woocommerce table.shop_table td {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 6px 12px;
  vertical-align: middle;
}

.woocommerce table.shop_table td small {
  font-weight: 400;
}

.woocommerce table.shop_table tbody:first-child tr:first-child td,
.woocommerce table.shop_table tbody:first-child tr:first-child th {
  border-top: 0;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
  font-weight: 700;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.woocommerce table.my_account_orders {
  font-size: .85em;
}

.woocommerce table.my_account_orders td,
.woocommerce table.my_account_orders th {
  padding: 4px 8px;
  vertical-align: middle;
}

.woocommerce table.my_account_orders .button {
  white-space: nowrap;
}

.woocommerce table.my_account_orders .order-actions {
  text-align: right;
}

.woocommerce table.my_account_orders .order-actions .button {
  margin: .125em 0 .125em .25em;
}

.woocommerce table.woocommerce-MyAccount-downloads td,
.woocommerce table.woocommerce-MyAccount-downloads th {
  vertical-align: top;
  text-align: center;
}

.woocommerce table.woocommerce-MyAccount-downloads td:first-child,
.woocommerce table.woocommerce-MyAccount-downloads th:first-child {
  text-align: left;
}

.woocommerce table.woocommerce-MyAccount-downloads td:last-child,
.woocommerce table.woocommerce-MyAccount-downloads th:last-child {
  text-align: left;
}

.woocommerce table.woocommerce-MyAccount-downloads td .woocommerce-MyAccount-downloads-file::before,
.woocommerce table.woocommerce-MyAccount-downloads th .woocommerce-MyAccount-downloads-file::before {
  content: '\2193';
  display: inline-block;
}

.woocommerce td.product-name .wc-item-meta,
.woocommerce td.product-name dl.variation {
  list-style: none outside;
}

.woocommerce td.product-name .wc-item-meta .wc-item-meta-label,
.woocommerce td.product-name .wc-item-meta dt,
.woocommerce td.product-name dl.variation .wc-item-meta-label,
.woocommerce td.product-name dl.variation dt {
  float: left;
  clear: both;
  margin-right: .25em;
  display: inline-block;
  list-style: none outside;
}

.woocommerce td.product-name .wc-item-meta dd,
.woocommerce td.product-name dl.variation dd {
  margin: 0;
}

.woocommerce td.product-name .wc-item-meta p,
.woocommerce td.product-name .wc-item-meta:last-child,
.woocommerce td.product-name dl.variation p,
.woocommerce td.product-name dl.variation:last-child {
  margin-bottom: 0;
}

.woocommerce td.product-name p.backorder_notification {
  font-size: .83em;
}

.woocommerce td.product-quantity {
  min-width: 80px;
}

.woocommerce ul.cart_list,
.woocommerce ul.product_list_widget {
  list-style: none outside;
  padding: 0;
  margin: 0;
}

.woocommerce ul.cart_list li,
.woocommerce ul.product_list_widget li {
  padding: 4px 0;
  margin: 0;
  list-style: none;
}

.woocommerce ul.cart_list li::after,
.woocommerce ul.cart_list li::before,
.woocommerce ul.product_list_widget li::after,
.woocommerce ul.product_list_widget li::before {
  content: ' ';
  display: table;
}

.woocommerce ul.cart_list li::after,
.woocommerce ul.product_list_widget li::after {
  clear: both;
}

.woocommerce ul.cart_list li a,
.woocommerce ul.product_list_widget li a {
  display: block;
  font-weight: 700;
}

.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
  float: right;
  margin-left: 4px;
  width: 32px;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.woocommerce ul.cart_list li dl,
.woocommerce ul.product_list_widget li dl {
  margin: 0;
  padding-left: 1em;
  border-left: 2px solid rgba(0, 0, 0, 0.1);
}

.woocommerce ul.cart_list li dl::after,
.woocommerce ul.cart_list li dl::before,
.woocommerce ul.product_list_widget li dl::after,
.woocommerce ul.product_list_widget li dl::before {
  content: ' ';
  display: table;
}

.woocommerce ul.cart_list li dl::after,
.woocommerce ul.product_list_widget li dl::after {
  clear: both;
}

.woocommerce ul.cart_list li dl dd,
.woocommerce ul.cart_list li dl dt,
.woocommerce ul.product_list_widget li dl dd,
.woocommerce ul.product_list_widget li dl dt {
  display: inline-block;
  float: left;
  margin-bottom: 1em;
}

.woocommerce ul.cart_list li dl dt,
.woocommerce ul.product_list_widget li dl dt {
  font-weight: 700;
  padding: 0 0 .25em;
  margin: 0 4px 0 0;
  clear: left;
}

.woocommerce ul.cart_list li dl dd,
.woocommerce ul.product_list_widget li dl dd {
  padding: 0 0 .25em;
}

.woocommerce ul.cart_list li dl dd p:last-child,
.woocommerce ul.product_list_widget li dl dd p:last-child {
  margin-bottom: 0;
}

.woocommerce ul.cart_list li .star-rating,
.woocommerce ul.product_list_widget li .star-rating {
  float: none;
}

.woocommerce .widget_shopping_cart .total,
.woocommerce.widget_shopping_cart .woocommerce .widget_shopping_cart .total strong,
.woocommerce.widget_shopping_cart .total strong {
  min-width: 40px;
  display: inline-block;
}

.woocommerce .widget_shopping_cart .cart_list li,
.woocommerce.widget_shopping_cart .cart_list li {
  padding-left: 2em;
  position: relative;
  padding-top: 0;
}

.woocommerce .widget_shopping_cart .cart_list li a.remove,
.woocommerce.widget_shopping_cart .cart_list li a.remove {
  position: absolute;
  top: 0;
  left: 0;
}

.woocommerce .widget_shopping_cart .buttons::after,
.woocommerce .widget_shopping_cart .buttons::before,
.woocommerce.widget_shopping_cart .buttons::after,
.woocommerce.widget_shopping_cart .buttons::before {
  content: ' ';
  display: table;
}

.woocommerce .widget_shopping_cart .buttons::after,
.woocommerce.widget_shopping_cart .buttons::after {
  clear: both;
}

.woocommerce .widget_shopping_cart .buttons a,
.woocommerce.widget_shopping_cart .buttons a {
  margin-right: 5px;
  margin-bottom: 5px;
}

.woocommerce form .form-row {
  padding: 3px;
  margin: 0 0 6px;
}

.woocommerce form .form-row [placeholder]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity .5s .5s ease;
  transition: opacity .5s .5s ease;
  opacity: 0;
}

.woocommerce form .form-row label {
  line-height: 2;
}

.woocommerce form .form-row label.hidden {
  visibility: hidden;
}

.woocommerce form .form-row label.inline {
  display: inline;
}

.woocommerce form .form-row select {
  cursor: pointer;
  margin: 0;
}

.woocommerce form .form-row .required {
  color: red;
  font-weight: 700;
  border: 0;
}

.woocommerce form .form-row .input-checkbox {
  display: inline;
  margin: -2px 8px 0 0;
  text-align: center;
  vertical-align: middle;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  outline: 0;
  line-height: 1;
}

.woocommerce form .form-row textarea {
  height: 4em;
  line-height: 1.5;
  display: block;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.woocommerce form .form-row .select2-container {
  width: 100%;
  line-height: 2em;
}

.woocommerce form .form-row.woocommerce-invalid label {
  color: #a00;
}

.woocommerce form .form-row.woocommerce-invalid .select2-container,
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
  border-color: #a00;
}

.woocommerce form .form-row.woocommerce-validated .select2-container,
.woocommerce form .form-row.woocommerce-validated input.input-text,
.woocommerce form .form-row.woocommerce-validated select {
  border-color: #69bf29;
}

.woocommerce form .form-row ::-webkit-input-placeholder {
  line-height: normal;
}

.woocommerce form .form-row :-moz-placeholder {
  line-height: normal;
}

.woocommerce form .form-row :-ms-input-placeholder {
  line-height: normal;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border: 1px solid #d3ced2;
  padding: 20px;
  margin: 2em 0;
  text-align: left;
  border-radius: 5px;
}

.woocommerce ul#shipping_method {
  list-style: none outside;
  margin: 0;
  padding: 0;
}

.woocommerce ul#shipping_method li {
  margin: 0;
  padding: .25em 0 .25em 22px;
  text-indent: -22px;
  list-style: none outside;
}

.woocommerce ul#shipping_method li input {
  margin: 3px .5ex;
}

.woocommerce ul#shipping_method li label {
  display: inline;
}

.woocommerce ul#shipping_method .amount {
  font-weight: 700;
}

.woocommerce p.woocommerce-shipping-contents {
  margin: 0;
}

.woocommerce ul.order_details {
  margin: 0 0 3em;
  list-style: none;
}

.woocommerce ul.order_details::after,
.woocommerce ul.order_details::before {
  content: ' ';
  display: table;
}

.woocommerce ul.order_details::after {
  clear: both;
}

.woocommerce ul.order_details li {
  float: left;
  margin-right: 2em;
  text-transform: uppercase;
  font-size: .715em;
  line-height: 1;
  border-right: 1px dashed #d3ced2;
  padding-right: 2em;
  margin-left: 0;
  padding-left: 0;
  list-style-type: none;
}

.woocommerce ul.order_details li strong {
  display: block;
  font-size: 1.4em;
  text-transform: none;
  line-height: 1.5;
}

.woocommerce ul.order_details li:last-of-type {
  border: none;
}

.woocommerce .wc-bacs-bank-details-account-name {
  font-weight: 700;
}

.woocommerce .woocommerce-customer-details,
.woocommerce .woocommerce-order-details,
.woocommerce .woocommerce-order-downloads {
  margin-bottom: 2em;
}

.woocommerce .woocommerce-customer-details :last-child,
.woocommerce .woocommerce-order-details :last-child,
.woocommerce .woocommerce-order-downloads :last-child {
  margin-bottom: 0;
}

.woocommerce .woocommerce-customer-details address {
  font-style: normal;
  margin-bottom: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom-width: 2px;
  border-right-width: 2px;
  text-align: left;
  width: 100%;
  border-radius: 5px;
  padding: 6px 12px;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email,
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone {
  margin-bottom: 0;
  padding-left: 1.5em;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before {
  font-family: WooCommerce;
  speak: none;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: .618em;
  content: "\E037";
  text-decoration: none;
  margin-left: -1.5em;
  line-height: 1.75;
  position: absolute;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before {
  font-family: WooCommerce;
  speak: none;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: .618em;
  content: "\E02D";
  text-decoration: none;
  margin-left: -1.5em;
  line-height: 1.75;
  position: absolute;
}

.woocommerce .woocommerce-widget-layered-nav-list {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none outside;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item {
  padding: 0 0 1px;
  list-style: none;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after,
.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::before {
  content: ' ';
  display: table;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after {
  clear: both;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a,
.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item span {
  padding: 1px 0;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item--chosen a::before {
  font-family: WooCommerce;
  speak: none;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: .618em;
  content: "\E013";
  text-decoration: none;
  color: #a00;
}

.woocommerce .woocommerce-widget-layered-nav-dropdown__submit {
  margin-top: 1em;
}

.woocommerce .widget_layered_nav_filters ul {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none outside;
  overflow: hidden;
  zoom: 1;
}

.woocommerce .widget_layered_nav_filters ul li {
  float: left;
  padding: 0 1px 1px 0;
  list-style: none;
}

.woocommerce .widget_layered_nav_filters ul li a {
  text-decoration: none;
}

.woocommerce .widget_layered_nav_filters ul li a::before {
  font-family: WooCommerce;
  speak: none;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: .618em;
  content: "\E013";
  text-decoration: none;
  color: #a00;
}

.woocommerce .widget_price_filter .price_slider {
  margin-bottom: 1em;
}

.woocommerce .widget_price_filter .price_slider_amount {
  text-align: right;
  line-height: 2.4;
  font-size: .8751em;
}

.woocommerce .widget_price_filter .price_slider_amount .button {
  font-size: 1.15em;
  float: left;
}

.woocommerce .widget_price_filter .ui-slider {
  position: relative;
  text-align: left;
  margin-left: .5em;
  margin-right: .5em;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1em;
  height: 1em;
  background-color: #a46497;
  border-radius: 1em;
  cursor: ew-resize;
  outline: 0;
  top: -.3em;
  margin-left: -.5em;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  border-radius: 1em;
  background-color: #a46497;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  border-radius: 1em;
  background-color: #602053;
  border: 0;
}

.woocommerce .widget_price_filter .ui-slider-horizontal {
  height: .5em;
}

.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-min {
  left: -1px;
}

.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-max {
  right: -1px;
}

.woocommerce .widget_rating_filter ul {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none outside;
}

.woocommerce .widget_rating_filter ul li {
  padding: 0 0 1px;
  list-style: none;
}

.woocommerce .widget_rating_filter ul li::after,
.woocommerce .widget_rating_filter ul li::before {
  content: ' ';
  display: table;
}

.woocommerce .widget_rating_filter ul li::after {
  clear: both;
}

.woocommerce .widget_rating_filter ul li a {
  padding: 1px 0;
  text-decoration: none;
}

.woocommerce .widget_rating_filter ul li .star-rating {
  float: none;
  display: inline-block;
}

.woocommerce .widget_rating_filter ul li.chosen a::before {
  font-family: WooCommerce;
  speak: none;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: .618em;
  content: "\E013";
  text-decoration: none;
  color: #a00;
}

.pswp {
  z-index: 999999;
}

.woocommerce img.pswp__img,
.woocommerce-page img.pswp__img {
  max-width: none;
}

button.pswp__button {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background-image: url(/images/default-skin.png?e3f799c6dec9af194c86decdf7392405) !important;
}

button.pswp__button,
button.pswp__button--arrow--left::before,
button.pswp__button--arrow--right::before,
button.pswp__button:hover {
  background-color: transparent !important;
}

button.pswp__button--arrow--left,
button.pswp__button--arrow--left:hover,
button.pswp__button--arrow--right,
button.pswp__button--arrow--right:hover {
  background-image: none !important;
}

button.pswp__button--close:hover {
  background-position: 0 -44px;
}

button.pswp__button--zoom:hover {
  background-position: -88px 0;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  padding: 1em 2em 1em 3.5em;
  margin: 0 0 2em;
  position: relative;
  background-color: #f7f6f7;
  color: #515151;
  border-top: 3px solid #a46497;
  list-style: none outside;
  width: auto;
  word-wrap: break-word;
}

.woocommerce-error::after,
.woocommerce-error::before,
.woocommerce-info::after,
.woocommerce-info::before,
.woocommerce-message::after,
.woocommerce-message::before {
  content: ' ';
  display: table;
}

.woocommerce-error::after,
.woocommerce-info::after,
.woocommerce-message::after {
  clear: both;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
  font-family: WooCommerce;
  content: '\E028';
  display: inline-block;
  position: absolute;
  top: 1em;
  left: 1.5em;
}

.woocommerce-error .button,
.woocommerce-info .button,
.woocommerce-message .button {
  float: right;
}

.woocommerce-error li,
.woocommerce-info li,
.woocommerce-message li {
  list-style: none outside !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.rtl.woocommerce div.product div.images .flex-control-thumbs li {
  float: right;
}

.woocommerce-message {
  border-top-color: #8fae1b;
}

.woocommerce-message::before {
  content: '\E015';
  color: #8fae1b;
}

.woocommerce-info {
  border-top-color: #1e85be;
}

.woocommerce-info::before {
  color: #1e85be;
}

.woocommerce-error {
  border-top-color: #b81c23;
}

.woocommerce-error::before {
  content: '\E016';
  color: #b81c23;
}

.woocommerce-account .woocommerce::after,
.woocommerce-account .woocommerce::before {
  content: ' ';
  display: table;
}

.woocommerce-account .woocommerce::after {
  clear: both;
}

.woocommerce-account .addresses .title::after,
.woocommerce-account .addresses .title::before {
  content: ' ';
  display: table;
}

.woocommerce-account .addresses .title::after {
  clear: both;
}

.woocommerce-account .addresses .title h3 {
  float: left;
}

.woocommerce-account .addresses .title .edit {
  float: right;
}

.woocommerce-account ol.commentlist.notes li.note p.meta {
  font-weight: 700;
  margin-bottom: 0;
}

.woocommerce-account ol.commentlist.notes li.note .description p:last-child {
  margin-bottom: 0;
}

.woocommerce-account ul.digital-downloads {
  margin-left: 0;
  padding-left: 0;
}

.woocommerce-account ul.digital-downloads li {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.woocommerce-account ul.digital-downloads li::before {
  font-family: WooCommerce;
  speak: none;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: .618em;
  content: "\E00A";
  text-decoration: none;
}

.woocommerce-account ul.digital-downloads li .count {
  float: right;
}

#add_payment_method table.cart .product-thumbnail,
.woocommerce-cart table.cart .product-thumbnail,
.woocommerce-checkout table.cart .product-thumbnail {
  min-width: 32px;
}

#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
  width: 32px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#add_payment_method table.cart td,
#add_payment_method table.cart th,
.woocommerce-cart table.cart td,
.woocommerce-cart table.cart th,
.woocommerce-checkout table.cart td,
.woocommerce-checkout table.cart th {
  vertical-align: middle;
}

#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text {
  float: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #d3ced2;
  padding: 6px 6px 5px;
  margin: 0 4px 0 0;
  outline: 0;
  line-height: 1;
}

#add_payment_method table.cart input,
.woocommerce-cart table.cart input,
.woocommerce-checkout table.cart input {
  margin: 0;
  vertical-align: middle;
  line-height: 1;
}

#add_payment_method .wc-proceed-to-checkout,
.woocommerce-cart .wc-proceed-to-checkout,
.woocommerce-checkout .wc-proceed-to-checkout {
  padding: 1em 0;
}

#add_payment_method .wc-proceed-to-checkout::after,
#add_payment_method .wc-proceed-to-checkout::before,
.woocommerce-cart .wc-proceed-to-checkout::after,
.woocommerce-cart .wc-proceed-to-checkout::before,
.woocommerce-checkout .wc-proceed-to-checkout::after,
.woocommerce-checkout .wc-proceed-to-checkout::before {
  content: ' ';
  display: table;
}

#add_payment_method .wc-proceed-to-checkout::after,
.woocommerce-cart .wc-proceed-to-checkout::after,
.woocommerce-checkout .wc-proceed-to-checkout::after {
  clear: both;
}

#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
  display: block;
  text-align: center;
  margin-bottom: 1em;
  font-size: 1.25em;
  padding: 1em;
}

#add_payment_method .cart-collaterals .shipping_calculator .button,
.woocommerce-cart .cart-collaterals .shipping_calculator .button,
.woocommerce-checkout .cart-collaterals .shipping_calculator .button {
  width: 100%;
  float: none;
  display: block;
}

#add_payment_method .cart-collaterals .shipping_calculator .shipping-calculator-button::after,
.woocommerce-cart .cart-collaterals .shipping_calculator .shipping-calculator-button::after,
.woocommerce-checkout .cart-collaterals .shipping_calculator .shipping-calculator-button::after {
  font-family: WooCommerce;
  speak: none;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-left: .618em;
  content: "\E019";
  text-decoration: none;
}

#add_payment_method .cart-collaterals .cart_totals p small,
.woocommerce-cart .cart-collaterals .cart_totals p small,
.woocommerce-checkout .cart-collaterals .cart_totals p small {
  color: #777;
  font-size: .83em;
}

#add_payment_method .cart-collaterals .cart_totals table,
.woocommerce-cart .cart-collaterals .cart_totals table,
.woocommerce-checkout .cart-collaterals .cart_totals table {
  border-collapse: separate;
  margin: 0 0 6px;
  padding: 0;
}

#add_payment_method .cart-collaterals .cart_totals table tr:first-child td,
#add_payment_method .cart-collaterals .cart_totals table tr:first-child th,
.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child td,
.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child th,
.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child td,
.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child th {
  border-top: 0;
}

#add_payment_method .cart-collaterals .cart_totals table th,
.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-checkout .cart-collaterals .cart_totals table th {
  width: 40%;
}

#add_payment_method .cart-collaterals .cart_totals table td,
#add_payment_method .cart-collaterals .cart_totals table th,
.woocommerce-cart .cart-collaterals .cart_totals table td,
.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-checkout .cart-collaterals .cart_totals table td,
.woocommerce-checkout .cart-collaterals .cart_totals table th {
  vertical-align: top;
  border-left: 0;
  border-right: 0;
  line-height: 1.5em;
}

#add_payment_method .cart-collaterals .cart_totals table small,
.woocommerce-cart .cart-collaterals .cart_totals table small,
.woocommerce-checkout .cart-collaterals .cart_totals table small {
  color: #777;
}

#add_payment_method .cart-collaterals .cart_totals table select,
.woocommerce-cart .cart-collaterals .cart_totals table select,
.woocommerce-checkout .cart-collaterals .cart_totals table select {
  width: 100%;
}

#add_payment_method .cart-collaterals .cart_totals .discount td,
.woocommerce-cart .cart-collaterals .cart_totals .discount td,
.woocommerce-checkout .cart-collaterals .cart_totals .discount td {
  color: #77a464;
}

#add_payment_method .cart-collaterals .cart_totals tr td,
#add_payment_method .cart-collaterals .cart_totals tr th,
.woocommerce-cart .cart-collaterals .cart_totals tr td,
.woocommerce-cart .cart-collaterals .cart_totals tr th,
.woocommerce-checkout .cart-collaterals .cart_totals tr td,
.woocommerce-checkout .cart-collaterals .cart_totals tr th {
  border-top: 1px solid #ebe9eb;
}

#add_payment_method .cart-collaterals .cross-sells ul.products li.product,
.woocommerce-cart .cart-collaterals .cross-sells ul.products li.product,
.woocommerce-checkout .cart-collaterals .cross-sells ul.products li.product {
  margin-top: 0;
}

#add_payment_method .checkout .col-2 h3#ship-to-different-address,
.woocommerce-cart .checkout .col-2 h3#ship-to-different-address,
.woocommerce-checkout .checkout .col-2 h3#ship-to-different-address {
  float: left;
  clear: none;
}

#add_payment_method .checkout .col-2 .notes,
.woocommerce-cart .checkout .col-2 .notes,
.woocommerce-checkout .checkout .col-2 .notes {
  clear: left;
}

#add_payment_method .checkout .col-2 .form-row-first,
.woocommerce-cart .checkout .col-2 .form-row-first,
.woocommerce-checkout .checkout .col-2 .form-row-first {
  clear: left;
}

#add_payment_method .checkout .create-account small,
.woocommerce-cart .checkout .create-account small,
.woocommerce-checkout .checkout .create-account small {
  font-size: 11px;
  color: #777;
  font-weight: 400;
}

#add_payment_method .checkout div.shipping-address,
.woocommerce-cart .checkout div.shipping-address,
.woocommerce-checkout .checkout div.shipping-address {
  padding: 0;
  clear: left;
  width: 100%;
}

#add_payment_method .checkout .shipping_address,
.woocommerce-cart .checkout .shipping_address,
.woocommerce-checkout .checkout .shipping_address {
  clear: both;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background: #ebe9eb;
  border-radius: 5px;
}

#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
  text-align: left;
  padding: 1em;
  border-bottom: 1px solid #d3ced2;
  margin: 0;
  list-style: none outside;
}

#add_payment_method #payment ul.payment_methods::after,
#add_payment_method #payment ul.payment_methods::before,
.woocommerce-cart #payment ul.payment_methods::after,
.woocommerce-cart #payment ul.payment_methods::before,
.woocommerce-checkout #payment ul.payment_methods::after,
.woocommerce-checkout #payment ul.payment_methods::before {
  content: ' ';
  display: table;
}

#add_payment_method #payment ul.payment_methods::after,
.woocommerce-cart #payment ul.payment_methods::after,
.woocommerce-checkout #payment ul.payment_methods::after {
  clear: both;
}

#add_payment_method #payment ul.payment_methods li,
.woocommerce-cart #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li {
  line-height: 2;
  text-align: left;
  margin: 0;
  font-weight: 400;
}

#add_payment_method #payment ul.payment_methods li input,
.woocommerce-cart #payment ul.payment_methods li input,
.woocommerce-checkout #payment ul.payment_methods li input {
  margin: 0 1em 0 0;
}

#add_payment_method #payment ul.payment_methods li img,
.woocommerce-cart #payment ul.payment_methods li img,
.woocommerce-checkout #payment ul.payment_methods li img {
  vertical-align: middle;
  margin: -2px 0 0 .5em;
  padding: 0;
  position: relative;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#add_payment_method #payment ul.payment_methods li img+img,
.woocommerce-cart #payment ul.payment_methods li img+img,
.woocommerce-checkout #payment ul.payment_methods li img+img {
  margin-left: 2px;
}

#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after,
#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::before,
.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,
.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::before,
.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after,
.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::before {
  content: ' ';
  display: table;
}

#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after,
.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,
.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after {
  clear: both;
}

#add_payment_method #payment div.form-row,
.woocommerce-cart #payment div.form-row,
.woocommerce-checkout #payment div.form-row {
  padding: 1em;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 1em;
  margin: 1em 0;
  font-size: .92em;
  border-radius: 2px;
  line-height: 1.5;
  background-color: #dfdcde;
  color: #515151;
}

#add_payment_method #payment div.payment_box input.input-text,
#add_payment_method #payment div.payment_box textarea,
.woocommerce-cart #payment div.payment_box input.input-text,
.woocommerce-cart #payment div.payment_box textarea,
.woocommerce-checkout #payment div.payment_box input.input-text,
.woocommerce-checkout #payment div.payment_box textarea {
  border-color: #c7c1c6;
  border-top-color: #bbb3b9;
}

#add_payment_method #payment div.payment_box ::-webkit-input-placeholder,
.woocommerce-cart #payment div.payment_box ::-webkit-input-placeholder,
.woocommerce-checkout #payment div.payment_box ::-webkit-input-placeholder {
  color: #bbb3b9;
}

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

#add_payment_method #payment div.payment_box :-ms-input-placeholder,
.woocommerce-cart #payment div.payment_box :-ms-input-placeholder,
.woocommerce-checkout #payment div.payment_box :-ms-input-placeholder {
  color: #bbb3b9;
}

#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods {
  list-style: none outside;
  margin: 0;
}

#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,
#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token {
  margin: 0 0 .5em;
}

#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,
#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label {
  cursor: pointer;
}

#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput {
  vertical-align: middle;
  margin: -3px 1em 0 0;
  position: relative;
}

#add_payment_method #payment div.payment_box .wc-credit-card-form,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form {
  border: 0;
  padding: 0;
  margin: 1em 0 0;
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number {
  font-size: 1.5em;
  padding: 8px;
  background-repeat: no-repeat;
  background-position: right .618em center;
  background-size: 32px 20px;
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.visa,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.visa,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.visa,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.visa,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.visa,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.visa,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.visa,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.visa,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.visa {
  background-image: url(/fonts/visa.svg?7983b6eb576bf04dbb018536bdcade7a);
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.mastercard,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.mastercard,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.mastercard {
  background-image: url(/fonts/mastercard.svg?33f312d516c9de63d7b4d195aa296487);
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.laser,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.laser,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.laser,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.laser,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.laser,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.laser,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.laser,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.laser,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.laser {
  background-image: url(/fonts/laser.svg?a4326608afec0f36e36799d512294281);
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.dinersclub {
  background-image: url(/fonts/diners.svg?736edd84b14487a1e8c71ea53f2ef5ff);
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.maestro,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.maestro,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.maestro {
  background-image: url(/fonts/maestro.svg?bd191a7de6d486982ce4593f6b3cf9af);
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.jcb,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.jcb,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.jcb {
  background-image: url(/fonts/jcb.svg?058ed89cb406417e68d1742247618082);
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.amex,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.amex,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.amex,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.amex,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.amex,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.amex,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.amex,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.amex,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.amex {
  background-image: url(/fonts/amex.svg?9819e0a13651d0d91ce093bd34e95672);
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.discover,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.discover,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.discover,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.discover,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.discover,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.discover,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.discover,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.discover,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.discover {
  background-image: url(/fonts/discover.svg?85c3dfdc5142c15870b8a31902553f7a);
}

#add_payment_method #payment div.payment_box span.help,
.woocommerce-cart #payment div.payment_box span.help,
.woocommerce-checkout #payment div.payment_box span.help {
  font-size: .857em;
  color: #777;
  font-weight: 400;
}

#add_payment_method #payment div.payment_box .form-row,
.woocommerce-cart #payment div.payment_box .form-row,
.woocommerce-checkout #payment div.payment_box .form-row {
  margin: 0 0 1em;
}

#add_payment_method #payment div.payment_box p:last-child,
.woocommerce-cart #payment div.payment_box p:last-child,
.woocommerce-checkout #payment div.payment_box p:last-child {
  margin-bottom: 0;
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
  content: '';
  display: block;
  border: 1em solid #dfdcde;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  position: absolute;
  top: -.75em;
  left: 0;
  margin: -1em 0 0 2em;
}

#add_payment_method #payment .payment_method_paypal .about_paypal,
.woocommerce-cart #payment .payment_method_paypal .about_paypal,
.woocommerce-checkout #payment .payment_method_paypal .about_paypal {
  float: right;
  line-height: 52px;
  font-size: .83em;
}

#add_payment_method #payment .payment_method_paypal img,
.woocommerce-cart #payment .payment_method_paypal img,
.woocommerce-checkout #payment .payment_method_paypal img {
  max-height: 52px;
  vertical-align: middle;
}

.woocommerce-terms-and-conditions {
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.05);
}

.woocommerce-password-strength {
  text-align: center;
  font-weight: 600;
  padding: 3px .5em;
  font-size: 1em;
}

.woocommerce-password-strength.strong {
  background-color: #c1e1b9;
  border-color: #83c373;
}

.woocommerce-password-strength.short {
  background-color: #f1adad;
  border-color: #e35b5b;
}

.woocommerce-password-strength.bad {
  background-color: #fbc5a9;
  border-color: #f78b53;
}

.woocommerce-password-strength.good {
  background-color: #ffe399;
  border-color: #ffc733;
}

.woocommerce-password-hint {
  margin: .5em 0 0;
  display: block;
}

#content.twentyeleven .woocommerce-pagination a {
  font-size: 1em;
  line-height: 1;
}

.single-product .twentythirteen #reply-title,
.single-product .twentythirteen #respond #commentform,
.single-product .twentythirteen .entry-summary {
  padding: 0;
}

.single-product .twentythirteen p.stars {
  clear: both;
}

.twentythirteen .woocommerce-breadcrumb {
  padding-top: 40px;
}

.twentyfourteen ul.products li.product {
  margin-top: 0 !important;
}

body:not(.search-results) .twentysixteen .entry-summary {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.twentysixteen .price ins {
  background: inherit;
  color: inherit;
}