@charset "utf-8";
/* CSS Document */
#owl-demo .item img {
    display: block;
    width: 100%;
    height: auto;
}
#bar{
	width: 0%;
	max-width: 100%;
	height: 4px;
	background: #FC0;
	}
#progressBar{
	width: 100%;
	background: #EDEDED;
	}

/* CARROSSEL */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel {
	display: none;
	position: relative;
	width: 100%;
	touch-action: pan-y; 
}
.owl-carousel .owl-wrapper {
	display: none;
	position: relative;
	transform: translate3d(0px, 0px, 0px); 
}
.owl-carousel .owl-wrapper-outer {
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
	transition: height 500ms ease-in-out; 
}
	
.owl-carousel .owl-item {
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
	cursor: pointer;
}
.owl-controls {
	user-select: none; 
}

/* mouse grab icon */
.grabbing { 
    cursor:url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
	backface-visibility: hidden; 
	transform: translate3d(0, 0, 0); 
}

/* THEME */

.owl-theme .owl-controls {
    position: absolute;
    left: 10%;
    right: 10%;
    /* posição acima da imagem, tirando isso fica abaixo da imagem */
    margin-top:-35px; /* posição dos controles, 5 px fica abaixo da imagem */
    text-align: center;
}
.owl-theme .owl-controls .owl-page span {
    display: block;
    width: 12px;
    height: 12px;
    opacity: 0.5; /* Use apenas "opacity" ao invés de "Alpha(Opacity=50)" */
    border-radius: 20px; /* Remova prefixos -webkit- e -moz- */
    background: #FC0; /* cor dos controles */
	margin:5px;
}

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div {
    color: #FFF;
    display: inline-block;
    margin: 5px;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 30px; /* Remova prefixos -webkit- e -moz- */
    background: #FC0;
    opacity: 0.5; /* Remova "filter: Alpha(Opacity=50);" */
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
    opacity: 1; /* Remova "filter: Alpha(Opacity=100);" */
    text-decoration: none;
}

/* Styling Pagination */
.owl-theme .owl-controls .owl-page {
    display: inline-block;
}

/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers {
    height: auto;
    width: auto;
    color: #FFF;
    padding: 2px 10px;
    font-size: 12px;
    border-radius: 30px; /* Remova prefixos -webkit- e -moz- */
}

/* Preloading images */
.owl-item.loading {
    min-height: 150px;
    background: url(imagens/AjaxLoader.gif) no-repeat center center;
}