/* 
 *  Owl Carousel - Animate Plugin
 */



/* 
 * 	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;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
}
.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;
	width:100%;
}
.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;
}

/*custom****************************************/

.owl-carousel .owl-controls{
    color:transparent;
}
.owl-carousel .owl-controls .owl-nav{
    display:block;
}
.owl-carousel .owl-controls .owl-nav .owl-prev {
    position: absolute;
    left: 20px;
    top: 43%;
    background-image: url('images/Arrow_Left.png');
    background-repeat:no-repeat;
    height:60px;
}
.owl-carousel .owl-controls .owl-nav .owl-next {
    position: absolute;
    right:20px;
    top: 43%;
    background-image: url('images/Arrow_Right.png');
    background-repeat:no-repeat;
    height:60px;
}
.owl-carousel .owl-controls .owl-dots{
    position:absolute;
    bottom:10px;
    left:45%;
}
.owl-carousel .owl-controls .owl-dot{
    background-color:white;
    width:10px;
    height:10px;
    float:left;
    margin-left:7px;
    border-radius:50px;
}
.owl-carousel .owl-controls .owl-dot.active{
    background-color:black;
}

/***********************************************/

.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;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel.owl-text-select-on .owl-item {
  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;
}
/* EDITOR PROPERTIES - PLEASE DON'T DELETE THIS LINE TO AVOID DUPLICATE PROPERTIES */
