/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
	margin-top: 10px;
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav .owl-next{
	border-left: 1px solid #9a98a0;
}
.owl-theme .owl-nav [class*='owl-'] {
	color: #f79248;
	font-size: 20px;
	margin: 5px;
	padding: 4px 15px;
	background: none;
	display: inline-block;
	cursor: pointer;
	text-transform: uppercase;
	font-weight: bold;
}
.owl-theme .owl-nav [class*='owl-']:hover {
	background: none;
	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;
}
.owl-theme .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
 *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
	width: 16px;
	height: 16px;
	margin: 5px 7px;
	background: #959595;
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity 200ms ease;
	border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: #959595;
}


.owl-item {
    /*opacity: 0;*/
    transition: all 0.9s cubic-bezier(0.7, 0, 0.3, 1) 0s;
}
 .owl-item.active {
    opacity: 1;
    transition: opacity 0.9s cubic-bezier(0.7, 0, 0.3, 1) 0.5s;
}