/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-theme .owl-dots, .owl-theme .owl-nav {
	text-align: center;
	-webkit-tap-highlight-color: transparent
}
.owl-theme .owl-nav {
	/* margin-top: 10px */
	width: 100%;
	position: absolute;
	top: calc(50% - 50px);
	transform: translateY(14px);
	z-index: 2;
}
.owl-theme .owl-nav .owl-next{
	position: absolute;
	right: -30px;
}
.owl-theme .owl-nav .owl-prev{
	position: absolute;
	left: -30px;
}
.owl-theme .owl-nav [class*=owl-] {
	color: #FFF;
	font-size: 16px;
	/* margin: 5px; */
	/* padding: 4px 7px; */
	display: inline-block;
	cursor: pointer;
	width:28px;
	height:28px;
	background: #fff;
	border: 1px solid #2a416d;

}
.owl-theme .owl-nav [class*=owl-]:hover {
	background: #2a4a6d;
	color: #FFF;
	text-decoration: none
}
.owl-theme .owl-nav [class*=owl-]:hover i{
	color: #fff;
}
.owl-theme .owl-nav .disabled {
	opacity: .5;
	cursor: default
}
.owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 10px
}
.owl-dots{
	margin-top: 30px;
}
.owl-theme .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
	width: 14px;
	height: 14px;
	border: 1px solid #000;
	border-radius: 100%;
	margin: 0 3px;
}
.owl-theme .owl-dots .owl-dot.active{
	border: 2px solid #A1C9EC;
	background: #A1C9EC;
}
.owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	background: #D6D6D6;
	display: none;
	-webkit-backface-visibility: visible;
	transition: opacity .2s ease;
	border-radius: 30px
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: #869791
}
.owl-item{
	padding: 0 20px;
}
.owl-nav i{
	color: #000;
	font-size: 14px;
	font-weight: bold;
}
.a-item{
	cursor: pointer;
}


@media(max-width:992px){
	.owl-dots{
		display: none;
	}
	.owl-theme .owl-nav .owl-prev{
		left: 10px;
	}
	.owl-theme .owl-nav .owl-next{
		right: 10px;
	}
	.owl-item{
		padding: 0;
	}
	.owl-theme .owl-nav{
		top: 50%;
		transform: translateY(-14px);
	}
}