/**
 * 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 .owl-nav {
	text-align: center;
	-webkit-tap-highlight-color: transparent;
 }
.owl-theme .owl-nav [class*='owl-'] {
    display: none;
    cursor: pointer;
}

.owl-theme .owl-dots {
	position:relative;
	text-align: center;
	-webkit-tap-highlight-color: transparent;
 }
.owl-theme .owl-dots .owl-dot {
	display: inline-block;
	*display: inline;
}
.owl-theme .owl-dots .owl-dot span {
      width: 1.5em;
      height: 1.5em;
      margin: -3em 0.3em 0 0.3em;
      background: rgb(0, 0, 0, 0.1);
	  border:0.2em solid #fff;
      display: none;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
	  border-radius: 1em; 
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #7b579f;
}
