.owl-nav {
	position:absolute;
	/*bottom:20px;
	left:50%;
	margin-left:-100px;*/
	z-index:2000;
	top:50%;
	left:0%;
	right:0%;
	margin-top:-25px;
}
.owl-prev, .owl-next {
	/*position:relative;*/
	position:absolute;
	width:50px;
	height:50px;
	margin:0px 30px;
	font-size:50px;
	color:rgba(255,255,255,1);
	background-color:rgba(255,255,255,0);
	border: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.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.owl-prev {
	/*float:left;*/
	left:0%;
}
.owl-next {
	/*float:right;*/
	right:0%;
}
.owl-prev:before, .owl-next:before {
	position:absolute;
	font-family: 'icomoon';
	left:0px;
	right:0px;
	line-height:50px;
	font-size:30px;
}
.owl-prev:before {
	content: "\e925";
}
.owl-next:before {
	content: "\e926";
}
.owl-prev:hover, .owl-next:hover {
	color:rgba(255,255,255,1);
	background-color:rgba(246,175,43,1);
	border:solid 2px rgba(246,175,43,1);
}

@media (min-width: 768px) and (max-width: 1024px) { /* B - TABLET da 768px a 1024px */

	.owl-nav {
		top:auto;
		bottom:80px;
		margin-top:0px;
		display:none;
	}

}

@media (max-width: 767px) { /* A - SMARTPHONE da 0px a 767px */

	.owl-nav {
		top:auto;
		bottom:80px;
		margin-top:0px;
		display:none;
	}

}