/*
* 	Matkat theme - Owl Carousel CSS File
*/

.owl-carousel {
	z-index: auto;
}

.owl-carousel .owl-item {
	width: 100%;
}

.owl-carousel .owl-item img {
	height: inherit;
}

.owl-theme .owl-nav {
	-webkit-tap-highlight-color: transparent;
}

.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev {
	cursor: pointer;
	position: absolute;
	top: 0;
	width: 60px;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out;
	z-index: 10;
}

.owl-theme .owl-nav button.owl-next {
	right: 0;
	background-image: url('next.png');
	opacity: .5;
}

.owl-theme .owl-nav button.owl-prev {
	left: 0;
	background-image: url('prev.png');
	opacity: .5;
}

.owl-theme .owl-nav button:hover {
	opacity: 1;
	background-color: rgba(238, 238, 238, 0.2);
}

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

.owl-theme .owl-dots {
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 7px;
	background: #D6D6D6;
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity 200ms ease;
	border-radius: 30px;
	box-shadow: 0 0 2px #626262;
}

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

.owl-carousel button:focus {
	outline: 0;
}

