.double-carousel {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
}
.double-carousel__wrapper {
  display: flex;
  flex-wrap: nowrap;
}
.double-carousel__slide {
  flex: 0 0 auto;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .double-carousel__slide {
    max-width: 50%;
  }
}
.double-carousel__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}
.double-carousel__side-controls {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px 0 16px;
  box-sizing: border-box;
}
.double-carousel__button-group {
  display: flex;
  gap: 12px;
}
.double-carousel__button-prev, .double-carousel__button-next {
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.double-carousel__button-prev img, .double-carousel__button-next img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.double-carousel__button-prev.disabled, .double-carousel__button-next.disabled {
  opacity: 0.3;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.double-carousel__double-pagination {
  display: flex;
  gap: 6px;
}
.double-carousel__double-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 1px solid;
  border-color: #111d11;
  opacity: 1;
  border-radius: 2px;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.double-carousel__double-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #111d11;
}

/*# sourceMappingURL=double-carousel.css.map */
