.owl-dots {
	display:none;
}

.owl-nav {
	position:absolute;
	z-index:2000;
	top:50%;
	left:0%;
	right:0%;
}
.owl-prev, .owl-next {
	position:absolute;
	width:40px;
	height:40px;
	margin:0px 25px;
	color:rgba(255,255,255,1);
	background-color:rgba(0,0,0,0.3);
	/*outline:solid 2px rgba(255,255,255,1);*/
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.owl-prev {
	left:0%;
}
.owl-next {
	right:0%;
}
.owl-prev:before, .owl-next:before {
	position:absolute;
	font-family:icomoon;
	left:0px;
	right:0px;
	line-height:40px;
	font-size:30px;
}
.owl-prev:before {
	content: "\ee45";
}
.owl-next:before {
	content: "\ee42";
}
.owl-prev:hover, .owl-next:hover {
	background-color:rgba(0,0,0,0.6);
}

@media (min-width: 768px) and (max-width: 1024px) { /* B - TABLET da 768px a 1024px */

	.owl-nav {
		/*top:auto;
		bottom:100px;
		display:none;*/
	}

}

@media (max-width: 767px) { /* A - SMARTPHONE da 0px a 767px */

	.owl-nav {
		top:auto;
		bottom:100px;
		/*display:none;*/
	}

}