/*
* 	Owl Carousel
*	v2 - Style theme
*/

.owl-theme .owl-nav {
	cursor: pointer;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-nav .owl-prev {
	position: absolute;
	line-height: 34px;
	width: 18px;
	height: 34px;
	left: 15px;
	top: 50%;
	margin-top: -126px;
	opacity: 0;
	-webkit-transition: all ease 0.5s;
	-moz-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.owl-theme .owl-nav .owl-next {
	position: absolute;
	line-height: 34px;
	width: 18px;
	height: 34px;
	right: 14px;
	top: 50%;
	margin-top: -126px;
	opacity: 0;
	-webkit-transition: all ease 0.5s;
	-moz-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.owl-carousel:hover .owl-nav .owl-prev {
	opacity: 1;
	filter: alpha(opacity=100);
}

.owl-carousel:hover .owl-nav .owl-next {
	opacity: 1;
	filter: alpha(opacity=100);
}

@media (max-width: 992px) {

	.owl-theme .owl-nav .owl-prev {
		opacity: 1 !important;
	}

	.owl-theme .owl-nav .owl-next {
		opacity: 1 !important;
	}
}