/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.carousel, .carouselCategory, .carouselBrands, .carouselSlider {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: static;
  z-index: 1;
}
.carousel__stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}
.carousel__stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.carousel__stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.carousel__wrapper, .carousel__item {
  -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);
}
.carousel__item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.carousel__item img {
  display: block;

}
 .carousel__nav.disabled, .carousel__dots.disabled {
  display: none;
}
.carousel__nav .carousel__prev, .carousel__nav .carousel__next, .carousel__dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
 .carousel__nav button.carousel__prev, .carousel__nav button.carousel__next, button.carousel__dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.carousel_loaded {
  display: block;
}
.carousel_loading {
  opacity: 0;
  display: block;
}
.carousel_hidden {
  opacity: 0;
}
.carousel_refresh .carousel__item {
  visibility: hidden;
}
.carousel_drag .carousel__item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.carousel_grab {
  cursor: move;
  cursor: grab;
}
.carousel_rtl {
  direction: rtl;
}
.carousel_rtl .carousel__item {
  float: right;
}
/* No Js */
.no-js .carousel {
  display: block;
}
/*
 *  Owl Carousel - Animate Plugin
 */
.animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.carousel_animated-in {
  z-index: 0;
}
.carousel_animated-out {
  z-index: 1;
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.carousel__height {
  transition: height 500ms ease-in-out;
}
/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.carousel .carousel__item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}
.carousel__item .carousel__lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.carousel__item .carousel__lazy[src^=""], .carousel__item .carousel__lazy:not([src]) {
  max-height: 0;
}
.carousel .carousel__item img.carousel__lazy {
  transform-style: preserve-3d;
}
/*
 * 	Owl Carousel - Video Plugin
 */
.carousel__video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.carousel__video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.carousel__video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.carousel__video-playing .carousel__video-tn, .carousel__video-playing .carousel__video-play-icon {
  display: none;
}
.carousel__video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.carousel__video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}