qp-image-carousel {
  display: block;
}
qp-image-carousel:empty {
  display: inline;
}
qp-image-carousel .carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 100%;
  -moz-border-radius: 6px;
       border-radius: 6px;
  -webkit-clip-path: inset(0 round 6px);
          clip-path: inset(0 round 6px);
}
qp-image-carousel .carousel .slides-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -moz-transform 0.3s ease;
  will-change: transform;
}
qp-image-carousel .carousel .slide {
  aspect-ratio: 16/9;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
     -moz-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
qp-image-carousel .dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  z-index: 2;
}
qp-image-carousel .dots .dot {
  width: 12px;
  height: 12px;
  -moz-border-radius: 50%;
       border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}
qp-image-carousel .dots .dot.active {
  background: rgb(255, 255, 255);
}
qp-image-carousel .button {
  display: none;
}
@media (min-width: 992px) {
  qp-image-carousel .button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 32px;
    height: 32px;
    -moz-border-radius: 32px;
         border-radius: 32px;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: rgb(51, 51, 51);
    font-size: 16px;
    cursor: pointer;
    z-index: 2;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    gap: 4px;
  }
  qp-image-carousel .button.flipped svg {
    -webkit-transform: scaleX(-1);
       -moz-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  qp-image-carousel .button .arrow-icon {
    width: 16px;
    height: 16px;
  }
  qp-image-carousel .previous-slide-button {
    left: 8px;
  }
  qp-image-carousel .previous-slide-button svg {
    position: absolute;
    left: 5px;
    width: 18px;
    height: 24px;
  }
  qp-image-carousel .next-slide-button {
    right: 8px;
  }
  qp-image-carousel .next-slide-button svg {
    position: absolute;
    right: 5px;
    width: 18px;
    height: 24px;
  }
}