/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
 .owl-theme {
   position: relative;
 }
 .owl-theme .owl-nav {
  text-align: center;
  position: absolute;
  left: 0;
  width: 90%;
  top: 30%;
  left: 5%;
  height: 40px;
}

.owl-only-image .owl-nav{
  text-align: center;
  position: absolute;
  left: 0;
  width: 95%;
  top: 50%;
  left: 2.5%;
  height: 40px;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.owl-prev{
  width: 30px;
  height: 30px;
  border-radius: 100px;
  -o-border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  position: absolute;
  left: 0;
  outline: 0;
  background-color: rgba(0,0,0,0.3)!important;
}

.owl-next{
  width: 30px;
  height: 30px;
  border-radius: 100px;
  -o-border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  position: absolute;
  right: 0;
  outline: 0;
  background-color: rgba(0,0,0,0.4)!important;
}

.owl-prev{
  width: 30px;
  height: 30px;
  border-radius: 100px;
  -o-border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  position: absolute;
  left: 0;
  outline: 0;
  background-color: rgba(0,0,0,0.3)!important;
}

.owl-next span, .owl-prev span{
  color: #fff;
  font-size: 25px;
  line-height: 25px;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

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

.owl-theme .owl-dots {
  text-align: center;
  position: absolute;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
  bottom: 30px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0px 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;
}

.owl-item img {
  display: block;
  margin: 0 auto;
}