/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */
.carousel{
  outline: none; 
}

.carousel-cell {
  width: 100vw;
  height: 300px;
  overflow: hidden;
  padding: 3px;
}

.carousel-cell img {
    object-fit: cover;
    width: 100%; height: 100%;
    border-radius: var(--radius);
}

@media all and (max-width: 991px) {
  .carousel-cell {
    /*width: 100%;*/
  }
}

@media all and (min-width: 768px) {
    .carousel-cell {
      width: 680px;     
      height: 420px;
    }  
}
@media all and (min-width: 992px) {
    .carousel-cell {
      width: 700px;     
      height: 450px;
    }  
}
@media all and (min-width: 1200px) {
    .carousel-cell {    
      width: 740px;
      height: 480px;
      
    }  
}
@media all and (min-width: 1400px) {
    .carousel-cell {
      width: 840px;
      height: 520px; 
    }  
}
@media all and (min-width: 1600px) {
    .carousel-cell {
      width: 880px;
      height: 530px;      
    }  
}
@media all and (min-width: 1900px) {
    .carousel-cell {
      width: 880px;
      height: 540px;        
    }  
}




/* 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;
}


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

.flickity-page-dots {
  width: 100%;
  bottom: 0px;
  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: 8px;
  height: 8px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

