/**
 * 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 > div {
  position: absolute;
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: white;
  color: #333;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.1);
  font-size: 30px;
  border-radius: 30px;



  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.owl-nav > div:hover {
  background: rgba(255,255,255,.85);
}

.owl-theme .owl-nav > div i {

}

.owl-carousel .owl-prev {
  left: -30px;
}

.owl-carousel .owl-next {
  right: -30px;
}


.owl-theme .owl-dots {
  position: absolute;
  right: 0; bottom: 5px; left: 0;
}

.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;
  background: white;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
  box-shadow: 0 0 5px rgba(0,0,0,.6);

}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  width: 14px;
  height: 14px;
  margin: 3px;
}
