/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */

.owl-theme .owl-nav [class*='owl-'] {
	color: #424040;
	font-size: 14px;
	margin: 5px;
	padding: 6px 14px;
	background: #D6D6D6;
	display: inline-block;
	cursor: pointer;
	border-radius: 3px; 
	transition: all 0.5s;
}

.owl-theme .owl-nav [class*='owl-']:hover {
	background: #424040;
	color: #FFF;
	text-decoration: none; 
}
.owl-theme .owl-nav .disabled {
	opacity: 0.5;
	cursor: default; 
}

.owl-theme .owl-dots {
	display: table;
	width: 100%;
	border: 1px solid #ddd;
	border-top: 0;
	font-weight: 600;
	background-color: #f5f5f5;
}
.owl-theme .owl-dots .owl-dot {
	display: table-cell;
	width: 6.6%;
	height: 30px;
	vertical-align: middle;
	border-right: 1px solid #ddd;
	text-align: center;
	text-decoration: none;
	color: #000;
}
.owl-theme .owl-dots .owl-dot.active, .owl-theme .owl-dots .owl-dot:hover{
  background: #ddc71f; 
}
.owl-theme .owl-dots .owl-dot span {
}

