/***
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under:SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
***/

/*** HORI ***/
.owl-hori .owl-nav {
	text-align:center;
	-webkit-tap-highlight-color:transparent;
}

.owl-hori .owl-nav [class*='owl-'] {
	width:35px;
	height:50px;
	font-size:20px;
	color:#fff;
	text-align:center;
	line-height:150%;
	top:45%;
	background:#002ce6;
	border:0;
	border-radius:5px;
	box-shadow:0px 5px 10px 0px rgba(0,0,0,0.2);
	display:inline-block;
	position:absolute;
	cursor:pointer;
}

.owl-hori .owl-nav [class*='owl-']:hover {
	color:#002ce6;
	text-decoration:none;
	background:#fff;
}

.owl-hori .owl-nav .owl-next {
	right:-3%;
	padding-left:7px;
	-webkit-transition:0.4s;
	-moz-transition:0.4s;
	-o-transition:0.4s;
	-ms-transition:0.4s;
	opacity:1;
}

.owl-hori .owl-nav .owl-prev {
	left:-3%;
	padding-left:4px;
	-webkit-transition:0.4s;
	-moz-transition:0.4s;
	-o-transition:0.4s;
	-ms-transition:0.4s;
	opacity:1;
}

.owl-hori .owl-nav .disabled {
	opacity:0.5;
	cursor:default;
}

.owl-hori .owl-nav.disabled + .owl-dots {
	margin-top:10px;
}

.owl-hori .owl-dots {
	text-align:center;
	margin-top:10px;
	margin: 0 auto;
	left: 0;
	right: 0;
	position: absolute;
	-webkit-tap-highlight-color:transparent;
}

.owl-hori .owl-dots .owl-dot {
	display:inline-block;
	zoom:1;
	*display:inline;
}

.owl-hori .owl-dots .owl-dot span {
	width:15px;
	height:15px;
	margin:5px 5px;
	background-image: linear-gradient(to right, #1b146a, #2453e6);
	background-image: -webkit-linear-gradient(right, #1b146a, #2453e6);
	background-image: -moz-linear-gradient(right, #1b146a, #2453e6);
	background-image: -o-linear-gradient(right, #1b146a, #2453e6);
	border-radius:50%;
	display:block;
	transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
}

.owl-hori .owl-dots .owl-dot.active span, .owl-hori .owl-dots .owl-dot:hover span {
	width:15px;
	height:15px;
	background-image: linear-gradient(to right, #2453e6, #2453e6);
	background-image: -webkit-linear-gradient(right, #2453e6, #2453e6);
	background-image: -moz-linear-gradient(right, #2453e6, #2453e6);
	background-image: -o-linear-gradient(right, #2453e6, #2453e6);
}

/*** VERT ***/
.owl-vert .owl-nav {
	text-align:center;
	-webkit-tap-highlight-color:transparent;
}

.owl-vert .owl-nav [class*='owl-'] {
	width:40px;
	height:25px;
	font-size:20px;
	color:#fea000;
	text-align:center;
	left:calc(50% - 20px);
	background:#4301c7;
	border:0;
	border-radius:5px;
	box-shadow:0px 5px 10px 0px rgba(0,0,0,0.2);
	display:inline-block;
	position:absolute;
	cursor:pointer;
}

.owl-vert .owl-nav [class*='owl-']:hover {
	color:#4301c7;
	text-decoration:none;
	background:#fea000;
}

.owl-vert .owl-nav .owl-next{
	top:-12.5px;
	-webkit-transition:0.4s;
	-moz-transition:0.4s;
	-o-transition:0.4s;
	-ms-transition:0.4s;
	opacity:1;
}
.owl-vert .owl-nav .owl-prev{
	bottom:-12.5px;
	-webkit-transition:0.4s;
	-moz-transition:0.4s;
	-o-transition:0.4s;
	-ms-transition:0.4s;
	opacity:1;
}

.owl-vert .owl-nav .disabled {
	opacity:0.5;
	cursor:default;
}

.owl-vert .owl-nav.disabled + .owl-dots {
	margin-top:10px;
}

.owl-vert .owl-dots {
	text-align:center;
	-webkit-tap-highlight-color:transparent;
}

.owl-vert .owl-dots .owl-dot {
	display:inline-block;
	zoom:1;
	*display:inline;
}

.owl-vert .owl-dots .owl-dot span {
	width:10px;
	height:10px;
	margin:5px 7px;
	background:#4301c7;
	border-radius:30px;
	display:block;
	-webkit-backface-visibility:visible;
	transition:opacity 200ms ease;
}

.owl-vert .owl-dots .owl-dot.active span, .owl-vert .owl-dots .owl-dot:hover span {
	background:#869791;
}

