
.category-slider {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  border-left: 15px solid transparent;
}

.category-box.card {
  display: flex;
  flex-direction: column;
  height: 275px;
  background: rgba(242, 206, 173, .3);
  padding: 1rem;
  color: var(--blue);
  width: 24%;
  -webkit-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
  -o-transition: all 400ms;
  transition: all 400ms;
  background: var(--matt-blue);
  border-left: 15px solid var(--light-blue);
}

/* .category-box.card[data-tipologia="minimal"] {
  background: rgba(189,198,242,0.2);
  border-left: 15px solid rgba(189,198,242);
}

.category-box.card[data-tipologia="basic"] {
  background: rgba(170,218,226, 0.1);
  border-left: 15px solid var(--aqua);
}

.category-box.card[data-tipologia="comfort"] {
  background: rgba(242,206,173, 0.1);
  border-left: 15px solid var(--pink);
}

.category-box.card[data-tipologia="relax"] {
  background: rgba(173,89,69, 0.1);
  border-left: 15px solid var(--red);
} */

ul[role="tablist"].slick-dots {
  display: block;
}

.slick-dots {
  bottom: -32px;
}

.slick-dots li {
  margin: 5px 2px 0;
}

.slick-dots li button:before {
  font-size: 12px;
  color: var(--red);
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--red);
}

.category-slider .slick-dots li button:before {
  font-size: 12px;
  color: var(--blue);
}

.category-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--blue);
}

#product-carousel:not(.pergola-carousel) .slider-navigation-next {
  right: -.5rem !important;
}

#product-carousel:not(.pergola-carousel) .slider-navigation-previous {
  left: -.5rem !important;
}

#product-carousel:not(.pergola-carousel) .slider-navigation-next,
#product-carousel:not(.pergola-carousel) .slider-navigation-previous,
#product-carousel:not(.pergola-carousel) .slick-prev,
#product-carousel:not(.pergola-carousel) .slick-next {
  background-color: transparent !important;
  box-shadow: none;
}

#product-carousel:not(.pergola-carousel) .slick-prev:before,
#product-carousel:not(.pergola-carousel) .slick-next:before {
  color: var(--blue) !important;
}

#product-carousel.pergola-carousel .slider-navigation-next,
#product-carousel.pergola-carousel .slider-navigation-previous,
#product-carousel.pergola-carousel .slick-prev,
#product-carousel.pergola-carousel .slick-next {
  background-color: #cbaa97 !important;
  color: #fff;
  box-shadow: none;
}
.slick-next, .slick-prev {
  z-index: 2 !important;
}
#product-carousel.pergola-carousel {
  position: relative;
}

@media screen and (min-width: 769px) and (max-width: 1280px) {
  .category-box.card {
    width: 49%;
    margin-bottom: 2.5rem;
  }
}

@media screen and (max-width: 768px) {

  /*
  .category-box.card {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 0;
    -webkit-transition: opacity 1400ms;
    -moz-transition: opacity 1400ms;
    -o-transition: opacity 1400ms;
    transition: opacity 1400ms;
  }
   */

  .category-slider .slider-item {
    margin-right: 1.5rem;
  }

  .category-box.card {
    width: 100%;
  }

  .category-box.card.showing {
    opacity: 1;
    z-index: 1;
  }

}

