/***
 * 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:#00b5eb;
	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:#00b5eb;
	text-decoration:none;
	background:#fff;
}

.owl-hori .owl-nav .owl-next {
	right:2%;
	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:2%;
	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;
	-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:20px;
	height:12px;
	margin:5px 5px;
	background:rgba(255,255,255,0.5);
	border-radius:20px;
	display:block;
	-webkit-backface-visibility:visible;
	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:30px;
	background:rgba(255,255,255,1);
}

/*** 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;
}

