/* Owl Carousel v2.3.3
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE 
 */
 
.owl-theme .owl-nav {
  margin: 12px 0;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  transform: scale(1.2);  /*added*/
}

.owl-theme .owl-nav [class*='owl-'] {
  color: #F5F4F4;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #191919;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

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

.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;
  -webkit-tap-highlight-color: transparent;
  transform: scale(1.3);  /*added*/
  margin-bottom: -13px;  /*added*/
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  display: inline;
  outline: none; /*added*/
  margin-top: 8px;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: -11px 7px;
  background: #b9bebe;
  display: block;
  /* -webkit-backface-visibility: visible; */
  backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 50%;
}

.owl-theme .owl-dots .owl-dot.active span { background: #5482c7; }

.owl-theme .owl-dots .owl-dot:hover span { background-color: #e28b07; }

/* Media Queries */
@media(min-width: 1000px) {
  .owl-theme .owl-dots .owl-dot {margin-left: 2px;}
}