/**
 * 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 {
	width: 100%;
	padding-top: 17px;
}

  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    background: #E0DFDD;
    display: inline-block;
    cursor: pointer;
}

.owl-theme .owl-nav [class*='owl-']:hover {
      text-decoration: none; 
	  font-weight: bold;
}
.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; 
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin: 15px 0px; 
  line-height: 0px;
}

.owl-theme .owl-dots {
	text-align: center;
	-webkit-tap-highlight-color: transparent; 
	margin-top: -40px;
}
.owl-theme .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
	*display: inline; 
	margin: 0px 14px;
	border-radius: 30px; 
	padding: 1px;
	background: #D9D9D9;
}
.owl-theme .owl-dots .owl-dot span {
	  width: 7px;
	  height: 7px;
	  display: block;
	  visibility: hidden;
	  transition: opacity 200ms ease;
	  border-radius: 30px; 
	  background: #A6A6A6;
}

.owl-theme .owl-dots .owl-dot.active {
	background: #979797;
}

.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
	visibility: visible;
}

.owl-nav {
	width: 100%;
}

.owl-nav button {
	padding: 0px;
	width: 55px;
	height: 55px;
	border-radius: 55px;
	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex !important;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
	background: transparent !important;
	position: absolute !important;
	transition: all 0.2s ease-out;
	border: 3px solid #191919 !important;
}

.owl-nav button:hover {
	background: #c7c7c7 !important;
}

.owl-carousel .owl-nav button.owl-prev {
	right: 155px;
}

.owl-carousel .owl-nav button.owl-next {
	right: 0px;
}
