/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 * 	Default theme - Owl Carousel CSS File
 */
.owl-stage {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: box;
}
.owl-carousel{margin-bottom: 30px;}
.owl-theme .owl-nav {
	margin-top: 10px;
	-webkit-tap-highlight-color: transparent;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top:-14px;
	width: 100%;
	text-align: left;
    height: 0px;
}
.owl-theme .owl-nav div {
	box-sizing: content-box;
	width: 16px;
	height: 28px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
      opacity: 0.8;
}

.owl-theme .owl-nav .owl-next {
	float: right;
	background: url(../img/icon-arrow-right.png) no-repeat center center;
	right:0px;
    margin-right: -34px;
	background-size: 16px 28px;
}

.owl-theme .owl-nav .owl-prev {
	float: left;
	background: url(../img/icon-arrow-left.png) no-repeat center center;
	left:0px;
    margin-left: -34px;
	background-size: 16px 28px;
}

.owl-theme .owl-nav [class*='owl-'] {
	color: #FFF;
	font-size: 14px;
	display: inline-block;
	cursor: pointer;
}
.owl-theme .owl-nav [class*='owl-']:hover {
	opacity: 1;
	text-decoration: none;
}

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

.owl-theme .owl-nav.disabled + .owl-dots {
	margin-top: 10px;
}
.owl-theme .owl-dots {
    margin-top: 30px;
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
	*display: inline;
}
.owl-theme .owl-dots .owl-dot span {
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	background: #D6D6D6;
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity 200ms ease;
	border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: #869791;
}
@media all and (max-width:600px) {
    .owl-theme .owl-nav .owl-next {
        margin-right: 10px;
    }
    .owl-theme .owl-nav .owl-prev {
        margin-left: 10px;
    }
}