/**
 * 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-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.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: 20px;
  height: 20px;
  margin: 0 15px;
  background: #f5afbb;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

@media screen and (max-width: 380px) {
  .owl-dots .owl-dot span {
    margin: 0 13px;
  }
}

.owl-dots .owl-dot:first-child span {
  margin-left: 0;
}
.owl-dots .owl-dot:last-child span {
  margin-right: 0;
}

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

.owl-dots .owl-dot.active span {
  border: 2px solid #fff;
  box-shadow: 0 0 0px 2px #10147e;
}
