/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
	margin-top: 10px;
	text-align: center;
	-webkit-tap-highlight-color: transparent;
	position: absolute;
	top: 45%;
	left: 0;
	right: 0;
}


button.owl-prev span, button.owl-next span {
	display: none;
}

button.owl-prev, button.owl-next {
	position: absolute;
	outline: none!important;
}




@media (min-width: 320px) {
	button.owl-prev {
		left: 5px;
	}
	button.owl-next {
		right: 5px;
	}
}

@media (min-width: 640px) {
	button.owl-prev {
		left: -15px;
	}
	button.owl-next {
		right: -15px;
	}
}

@media (min-width: 1024px) {
	button.owl-prev {
		left: -75px;
	}
	button.owl-next {
		right: -75px;
	}
}

button.owl-prev:after, button.owl-next:after {
	content: '';
	display: inline-block;
	width: 29px;
	height: 54px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0.8;
}

button.owl-prev:hover:after, button.owl-next:hover:after {
	opacity: 1;
}

button.owl-prev:after {
	background-image: url(/images/slider_arrow_left.svg);
}

button.owl-next:after {
	background-image: url(/images/slider_arrow_right.svg);
}

.owl-theme .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-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;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -70px;
	z-index: 100;
	transition: 3s;
}

.owl-dot {
	outline: none!important;
}

.owl-theme .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
	*display: inline;
}

.owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	background: #4B9FEA;
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity 200ms ease;
	border-radius: 30px;
	position: relative;
}

.owl-dot.active span {
	background-color: #fff!important;
	position: relative;
	z-index: 200;
}

.owl-dot.active span:before {
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	position: absolute;
	top: -3.8px;
	left: -4px;
	background: none;
	border-radius: 50%;
	border: 1px solid #fff;
	z-index: 100;
}
