/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  width: 100%;
  position: relative; /* Put arrows in center vertically */
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage-outer {
  height: 400px !important;
  position: relative;
  overflow: hidden;
}
.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;
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
}

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

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

