/* Flickity
------------------------- */

.flickity-enabled {
  /*position: relative;*/
  width:100%;
  height: 100%
}

.quem-gallery.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.banners .flickity-viewport, #quem-gallery .flickity-viewport, #quem2-gallery .flickity-viewport{
  position: relative;
  overflow:hidden;
  width:100%;
}
.flickity-viewport {
  position: relative;
  overflow:hidden;
  height:100%;
}

#noticias_gallery .flickity-viewport {
  position: relative;
  overflow:hidden;
  height:230px !important;
}


.flickity-slider {
  position: absolute;
  width: 100%;
  height:100% !important;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
	cursor: url(grab.png), move;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
	cursor: url(grab.png), move;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  filter: alpha(opacity=100); /* IE8 */
  opacity: 1;
  position: absolute;
  top: 50%;
  width: 31px;
  height: 13px;
  border: none;
  background: url(arrow.svg) no-repeat center;
  
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.flickity-prev-next-button:hover {
	filter: alpha(opacity=30); /* IE8 */
  	opacity: 0.3;
}

.flickity-prev-next-button:focus {
  outline: none;
}

.flickity-prev-next-button:active {
  filter: alpha(opacity=60); /* IE8 */
  opacity: 0.6;
}

.flickity-prev-next-button.previous { 
	left: -100px; 
}
.flickity-prev-next-button.next { 
	right: -100px; 
	background: url(arrow2.svg) no-repeat center;

}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 0px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 0px;
}

.flickity-prev-next-button:disabled {
  filter: alpha(opacity=30); /* IE8 */
  opacity: 0.3;
  cursor: auto;
  display:none;
}

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
  display:none;
}

.flickity-prev-next-button .arrow {
  fill: #333;
}
.flickity-prev-next-button.no-svg {
  color: #333;
  font-size: 26px;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
 /* width: 9px;*/
  bottom: 70px;
  padding: 0;
  left:50%;
  list-style: none;
  text-align: center;
  line-height: 1;
  margin:auto;
  
  transform:translateX(-50%);
  -webkit-transform:translateX(-50%);
  -moz-transform:translateX(-50%);
  -ms-transform:translateX(-50%);
  -o-transform:translateX(-50%);
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
	cursor: pointer;
	display: inline-block;
	margin: 0 4px;
	cursor: pointer;
	width:10px;
	height:10px;
	border:0;
	
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
}



.flickity-page-dots .dot {
	width:10px;
	height:10px;
	background:url(../../../imgs/elem/bullet.png) no-repeat center;
}
.flickity-page-dots .dot.is-selected, .dot:hover {
	width:10px;
	height:10px;
	background:url(../../../imgs/elem/bullet_.png) no-repeat center;
}

.flickity-page-dots .dot:only-child{
	display:none;
}

.gallery-cell {
  width: 100%;
  height:100%;
  display:table;
}
.gallery-cell-alinha {
	height:100%; display:table-cell; vertical-align:middle; width:100%;
}

@media only screen and (max-width: 950px) {
  .flickity-prev-next-button.previous { 
    left: -40px; 
  }
  .flickity-prev-next-button.next { 
    right: -40px; 

  }
}