/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.a3web-galleries__list-picture-grid .a3web-galleries__picture-image img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.a3web-galleries__list-picture-carousel {
  position: relative;
}
.a3web-galleries__list-picture-carousel .a3web-galleries__picture-item {
  margin: 0 8px;
}
.a3web-galleries__list-picture-carousel .a3web-galleries__picture-image img {
  height: 500px;
}

.a3web-galleries__list-picture-carousel .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  border-radius: 0;
  border: none;
  padding: 10px;
  cursor: pointer;
}
.a3web-galleries__list-picture-carousel .slick-prev {
  left: 0;
}
.a3web-galleries__list-picture-carousel .slick-next {
  right: 0;
}
.a3web-galleries__list-picture-carousel .slick-prev svg {
  transform: rotate(180deg);
}

.a3web-galleries__list-picture-carousel .slick-dots {
  display: flex;
  margin: 0 auto;
  justify-content: center;
}

.a3web-galleries__list-picture-carousel .slick-dots li {
  position: relative;
  list-style: none;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: hsla(245, 0%, 24%, 0.5);
  cursor: pointer;
}
.a3web-galleries__list-picture-carousel .slick-dots li button {
  display: none;
}

.a3web-galleries__list-picture-carousel .slick-dots .slick-active {
  background-color: hsla(245, 0%, 24%, 1);
}
