/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -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;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
  z-index: 1;
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel .owl-refresh .owl-item {
  display: none;
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
  -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-controls {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
}
.owl-carousel .owl-controls .owl-dot {
  position: relative;
  display: inline-block;
  margin-right: 4px;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  border: 2px solid rgba(13, 202, 178, 0);
  -webkit-transition: -webkit-all 0.15s ease;
  -moz-transition: -moz-all 0.15s ease;
  -ms-transition: -ms-all 0.15s ease;
  -o-transition: -o-all 0.15s ease;
  transition: all 0.15s ease;
}
.owl-carousel .owl-controls .owl-dot:last-child {
  margin: 0;
}
.owl-carousel .owl-controls .owl-dot span {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #222222;
  opacity: 1;
  -webkit-transition: -webkit-all 0.15s ease;
  -moz-transition: -moz-all 0.15s ease;
  -ms-transition: -ms-all 0.15s ease;
  -o-transition: -o-all 0.15s ease;
  transition: all 0.15s ease;
}
.owl-carousel .owl-controls .owl-dot.active {
  border: 2px solid #0dcab2;
}
.owl-carousel .owl-controls .owl-dot.active span {
  opacity: 0;
}

.product-label {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 2px 5px;
  text-transform: uppercase;
  font-size: 10px;
  border: 1px solid;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  z-index: 1;
}
.product-label.sold-out, .product-label.sale, .product-label.raffle {
  color: #ff1559;
  border-color: #ff1559;
}
.product-label.new, .product-label.soon {
  color: #0dcab2;
  border-color: #0dcab2;
}
.product-label.in-store-only {
  color: #666666;
  border-color: #666666;
}

@media (max-width: 767px) {
  .product-label {
    top: 10px;
    left: 10px;
  }
}
.product-list {
  position: relative;
  margin: 30px 0 0 -10px;
}
.product-list .item {
  position: relative;
  font-size: 12px;
  border-left-width: 10px;
  border-bottom-width: 10px;
  z-index: 1;
}
.product-list .item .content {
  -webkit-transition: -webkit-all 0.15s ease;
  -moz-transition: -moz-all 0.15s ease;
  -ms-transition: -ms-all 0.15s ease;
  -o-transition: -o-all 0.15s ease;
  transition: all 0.15s ease;
  box-shadow: 0 0 0 0 rgba(34, 34, 34, 0);
  background: #ffffff;
  outline: 0 solid #ffffff;
}
.product-list .item .image {
  display: block;
  position: relative;
  max-width: 250px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  overflow: hidden;
}
.product-list .item .image img {
  display: inline-block;
  max-width: 100%;
}
.product-list .item .name {
  height: 24px;
  text-transform: uppercase;
  margin: 10px 0;
  padding: 0 20px;
  font-weight: 700;
  line-height: 12px;
  overflow: hidden;
}
.product-list .item .price-box {
  padding: 0 20px 20px 20px;
  font-size: 14px;
}
.product-list .item .price {
  display: block;
  color: #999999;
  letter-spacing: -0.5px;
}
.product-list .item .old-price,
.product-list .item .special-price {
  float: left;
  width: 50%;
}
.product-list .item .old-price {
  text-decoration: line-through;
}
.product-list .item .special-price .price {
  text-align: right;
  color: #ff1559;
}
.product-list .item .tax-details {
  display: none;
}
.product-list .item:hover {
  z-index: 2;
}
.product-list .item:hover .content {
  box-shadow: 0 5px 20px 0 rgba(34, 34, 34, 0.2);
  outline: 5px solid #ffffff;
}
.product-list .item:hover .content a {
  color: #222222;
}
.product-list .item.featured {
  width: 40%;
}
.product-list .item.featured .image {
  padding: 13px 30px 0 30px;
  max-width: inherit;
}
.product-list .item.featured .name {
  margin: 20px 0;
  padding: 0 30px;
  height: 39px;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: -1px;
}
.product-list .item.featured .price-box {
  padding: 0 30px 30px 30px;
  font-size: 20px;
}

@media (max-width: 1024px) {
  .product-list .item.span_2 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .product-list .item .name {
    height: 45px;
    padding: 10px 10px 5px 10px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .product-list .item .price-box {
    padding: 0 10px 20px 10px;
  }
}
.cms-home #brands {
  height: 45px;
  overflow: hidden;
}
.cms-home #brands img {
  display: inline-block;
  width: 45px;
  margin: 0 38px;
  opacity: .4;
}
.cms-home #brands img:hover {
  opacity: .5;
}
.cms-home .slider {
  width: 100%;
}
.cms-home .item .slider.owl-carousel .owl-item {
  height: 100%;
}
.cms-home .item .slider.owl-carousel .owl-item .image {
  max-height: inherit;
  width: 100%;
  max-width: inherit;
  height: 100%;
  padding: 0;
  background-size: cover;
  background-position: center;
}

@media (max-width: 1024px) {
  .cms-home .span_4 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .cms-home #brands {
    display: none;
  }
  .cms-home .span_4 {
    float: none;
    width: 100%;
    margin-top: 0;
  }
  .cms-home .product-list {
    margin: 10px 0 0 -10px;
  }
  .cms-home .product-list .item.featured {
    width: 100%;
  }
}

