/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

/* Styling Next and Prev buttons */

.owl-carousel .owl-controls .owl-nav > div {
  margin: 0 5px;
}

@media (max-width: 767px) {
  .owl-carousel .owl-controls .owl-nav > div {
    margin: 5px 8px;
  }
}

.owl-theme .owl-prev div,
.owl-theme .owl-next div {
  color: #fff;
  display: inline-block;
  zoom: 1;
  *display: inline; /*IE7 life-saver */
  margin: 5px;
  padding: 3px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #869791;
  filter: Alpha(Opacity=50); /*IE7 fix*/
  opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-dots.clickable .owl-nav div:hover {
  filter: Alpha(Opacity=100); /*IE7 fix*/
  opacity: 1;
  text-decoration: none;
}

/* Styling Pagination*/
.owl-theme .owl-dots .owl-dot span {
  display: block;
  width: 18px;
  height: 18px;
  margin: 5px 3px;
  filter: Alpha(Opacity=50);
  opacity: 0.5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid #c04a62;
  transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -webkit-transition: all 300ms ease 0ms;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots.clickable .owl-dot:hover span {
  filter: Alpha(Opacity=100); /*IE7 fix*/
  opacity: 1;
  border-width: 9px;
}

/* If PaginationNumbers is true */

.owl-theme .owl-dots .owl-dot span.owl-numbers {
  height: auto;
  width: auto;
  color: #fff;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

/* preloading images */
.owl-item.loading {
  min-height: 150px;
  background: url(AjaxLoader.gif) no-repeat center center;
}
