/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791;
}


/* Styling Next and Prev buttons */
.owl-theme .owl-nav .owl-prev,
.owl-theme .owl-nav .owl-next {
	position: absolute; top: 0; bottom: 0;
	zoom: 1;
	display:inline-block;
	*display: inline;/*IE7 life-saver */
	margin: auto 0!important; padding: 3px 10px;
	width: 40px; height: 60px;
	text-indent: -9999px;
	background-color: #222!important;
}
.owl-theme .owl-nav .owl-prev {
	left: 15px;
	background: url(left.png) no-repeat center center;
	background: url(left.svg) no-repeat center center, none;
}	
.owl-theme .owl-nav .owl-next {
	right: 15px;
	background: url(right.png) no-repeat center center;
	background: url(right.svg) no-repeat center center, none;
}
.owl-theme .owl-nav .owl-prev.disabled,
.owl-theme .owl-nav .owl-next.disabled {
	opacity: 0.5
}
