/**
* Owl Carousel v2.2.1
* Copyright 2013-2017 David Deutsch
* Licensed under  ()
*/
/*
* 	Default theme - Owl Carousel CSS File
*/
.owl-nav {
	-webkit-tap-highlight-color: transparent; 
}
.owl-nav .owl-prev,
.owl-nav .owl-next{
	position:absolute;
	width:120px;
	height:100%;
	left:0;
	top:0;
	background-color: rgba(255,255,255,.15);
	opacity:0;
	transition: opacity ease 250ms;
	text-indent:-9999em;
}
.owl-nav .owl-next{
	left:auto;
	right:0;
}
.owl-nav .owl-prev:before {
	content:'';
	position:absolute;
	width:60px;
	height:60px;
	border-top:1px solid #fff;
	border-left:1px solid #fff;
	transform:rotate(-45deg);
	left:45px;
	top:50%;
	margin-top:-30px;
}
.owl-nav .owl-next:before {
	content:'';
	position:absolute;
	width:60px;
	height:60px;
	border-top:1px solid #fff;
	border-right:1px solid #fff;
	transform:rotate(45deg);
	right:45px;
	top:50%;
	margin-top:-30px;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover{
	opacity:1;
	transition: opacity ease 250ms;
}
.owl-nav [class*='owl-'] {
	color: #FFF;
	font-size: 14px;
	#margin: 5px;
	#padding: 4px 7px;
	#background: #D6D6D6;
	display: inline-block;
	cursor: pointer;
	border-radius: 3px;
}
.owl-nav [class*='owl-']:hover {
	#background: #869791;
	color: #FFF;
	text-decoration: none; 
}
.owl-nav .disabled {
	opacity: 0;
	cursor: default;
}
.owl-dots {
	-webkit-tap-highlight-color: transparent;
	position:absolute;
	left:50%;
	width:1320px;
	margin-left:-660px;
	bottom:1rem;
	text-align:left;
}
@media all and (max-width:1320px){
	.owl-dots{width:100%;left:0;margin-left:0;bottom:1pc;padding:0 1pc;}
}
.owl-dots .owl-dot {
	display:inline-block;
}
.owl-dots .owl-dot span {
	display: block;
	height:24px;
	width:24px;
	border:1px solid #fff;
	border-radius:2px;
	margin:2px;
	-webkit-backface-visibility: visible;
	transition: all 200ms ease;
}
.owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background:#fff;
	#background:#fc990c;
	border:3px solid #fff;
	transform:scale(0.8);
	transition: all 200ms ease;
}
