/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

.carousel-cell > [class*="col-"] {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

/* 🖥️ Desktop SM - Até 1199px */
@media (max-width: 1199px) {
    .flkty-sm-desktop-1 { width: 100%; }
    .flkty-sm-desktop-2 { width: 50%; }
    .flkty-sm-desktop-3 { width: 33.33%; }
    .flkty-sm-desktop-4 { width: 25%; }
    .flkty-sm-desktop-5 { width: 20%; }
    .flkty-sm-desktop-6 { width: 16.66%; }
    .flkty-sm-desktop-7 { width: 14.28%; }
    .flkty-sm-desktop-8 { width: 12.5%; }
    .flkty-sm-desktop-9 { width: 11.11%; }
    .flkty-sm-desktop-10 { width: 10%; }
    .flkty-sm-desktop-11 { width: 9.09%; }
    .flkty-sm-desktop-12 { width: 8.33%; }
}

/* 📟 Tablet - Até 991px */
@media (max-width: 991px) {
    .flkty-tablet-1 { width: 100%; }
    .flkty-tablet-2 { width: 50%; }
    .flkty-tablet-3 { width: 33.33%; }
    .flkty-tablet-4 { width: 25%; }
    .flkty-tablet-5 { width: 20%; }
    .flkty-tablet-6 { width: 16.66%; }
    .flkty-tablet-7 { width: 14.28%; }
    .flkty-tablet-8 { width: 12.5%; }
    .flkty-tablet-9 { width: 11.11%; }
    .flkty-tablet-10 { width: 10%; }
    .flkty-tablet-11 { width: 9.09%; }
    .flkty-tablet-12 { width: 8.33%; }
}

/* 🌐 Mobile - Até 767px */
@media (max-width: 767px) {
    .flkty-mobile-1 { width: 100%; } /* 1 coluna */
    .flkty-mobile-2 { width: 50%; }  /* 2 colunas */
    .flkty-mobile-3 { width: 33.33%; } /* 3 colunas */
    .flkty-mobile-4 { width: 25%; }  /* 4 colunas */
    .flkty-mobile-5 { width: 20%; }
    .flkty-mobile-6 { width: 16.66%; }
    .flkty-mobile-7 { width: 14.28%; }
    .flkty-mobile-8 { width: 12.5%; }
    .flkty-mobile-9 { width: 11.11%; }
    .flkty-mobile-10 { width: 10%; }
    .flkty-mobile-11 { width: 9.09%; }
    .flkty-mobile-12 { width: 8.33%; } /* 12 colunas */
}

/* 🖥️ Desktop - A partir de 1200px */
@media (min-width: 1200px) {
    .flkty-desktop-1 { width: 100%; }
    .flkty-desktop-2 { width: 50%; }
    .flkty-desktop-3 { width: 33.33%; }
    .flkty-desktop-4 { width: 25%; }
    .flkty-desktop-5 { width: 20%; }
    .flkty-desktop-6 { width: 16.66%; }
    .flkty-desktop-7 { width: 14.28%; }
    .flkty-desktop-8 { width: 12.5%; }
    .flkty-desktop-9 { width: 11.11%; }
    .flkty-desktop-10 { width: 10%; }
    .flkty-desktop-11 { width: 9.09%; }
    .flkty-desktop-12 { width: 8.33%; }
}