/**
 * 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 {
	
}

.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: #869791;
	color: #FFF;
	text-decoration: none;*/
}

.owl-theme .owl-nav .disabled {
	opacity: 0.5;
	cursor: default;
}

.owl-theme .owl-dots {
	text-align: center;
	-webkit-tap-highlight-color: transparent;
	display: flex;
	justify-content: center;
	margin-top: 25px;
}

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

.owl-theme .owl-dots .owl-dot span {
	width: 13px;
	height: 13px;
	margin: 0px 4px;
	background: #D1E8FF;
	display: block;
	-webkit-backface-visibility: visible;
	transition: 300ms all;
	border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: #1B4875;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
	padding: 10px !important;
	top: 50%;
	margin-top: -35px;
	position: absolute;
	
}
.owl-carousel .owl-nav button.owl-next span, .owl-carousel .owl-nav button.owl-prev span {
	display: block;
	overflow: hidden;
	text-indent: -999px;
	height: 29px;
	width: 16px;
	background: url('../../images/arrow_left_16_29.svg') no-repeat center/contain;
}
.owl-carousel .owl-nav button.owl-next span {
	transform: scaleX(-1);
}

.owl-carousel .owl-nav button.owl-prev {
	left: -65px;
	padding-left: 0;
}
.owl-carousel .owl-nav button.owl-next {
	right: -65px;
	padding-right: 0;
}












