/*!*************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/scss/sections/gallery-control.scss ***!
  \*************************************************************************************************************************************************************/

/*** LTR websites ***/

.gallery-control {
  padding: 60px 0 40px;
  background-color: #fff;
}

.gallery-control__row {
  position: relative;
  margin-top: 30px;
}

.gallery-control__row img {
  border-radius: 12px;
}

.gallery-control__row .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery-control__row .swiper-slide {
  width: auto;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.gallery-control__row .swiper-slide img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.gallery-control__row .swiper-slide__caption {
  color: #757575;
  margin-top: 12px;
  margin-bottom: 0;
  text-align: center;
}

.gallery-control__row .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.3;
}

.gallery-control__row .swiper-slide:not(.swiper-slide-active) .swiper-slide__caption {
  display: none;
}

.gallery-control__row .swiper-slide img {
  aspect-ratio: 56/41;
}

.gallery-control__sub-headline {
  text-align: center;
  color: #000000;
  text-shadow: 0px 10px 10px rgba(46, 213, 115, 0.15);
  display: block;
  margin-top: 12px;
}

.gallery-control__headline {
  color: #000000;
  text-align: center;
}

.gallery-control .primaryGreen {
  color: #528f07;
}

.gallery-control .button-prev,
.gallery-control .button-next {
  position: absolute;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 56px;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-control .button-prev:before,
.gallery-control .button-next:before {
  content: "";
  width: 32px;
  height: 32px;
  border-top: 5px solid #000000;
  border-right: 5px solid #000000;
}

.gallery-control .button-prev.swiper-button-disabled,
.gallery-control .button-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.gallery-control .button-prev {
  left: 5%;
}

.gallery-control .button-prev:before {
  transform: rotate(-135deg);
}

.gallery-control .button-next {
  right: 5%;
}

.gallery-control .button-next:before {
  transform: rotate(45deg);
}

.gallery-control .swiper-pagination {
  position: relative;
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 24px;
}

.gallery-control .swiper-pagination .swiper-pagination-bullet {
  min-width: 16px;
  height: 5px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0;
  opacity: 1;
  transition: background-color 0.3s ease;
}

.gallery-control .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #757575;
}