/**
 * 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
 */
 
 button:focus {
  outline: unset
}

.owl-main {
   position: relative;
 }

 .owl-nav {
  /* margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; */
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  transform: translateY(-60%);
  

}
/* .owl-nav button:focus {
  outline: unset
} */

.owl-nav [class*='owl-'] {
  position: absolute;
  width: 20%;
  opacity: .5;

}
.owl-nav [class*='owl-']:focus,
.owl-nav [class*='owl-']:hover {
  position: absolute;
  width: 20%;
  opacity: .9;

}
.owl-prev {
  left: 0;

  background: #0088cc;
}
.owl-next {
  right: 0;
}

.owl-nav [class*='owl-']:hover {
  background: #434343;
  color: #FFF;
  text-decoration: none;
}

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

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

.owl-dots { 
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

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

.owl-dots .owl-dot span {
  width: 27px;
  height: 3px;
  margin: 12px 3px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
  background: #434343;
}