:root {
  --accent: #FF4C00;
  --secondary: #dadada;
}

.felmoks-block-gallery {
  position: relative;
  overflow: hidden;
  display: block;
}
.felmoks-block-gallery .slides {
  display: flex;
  gap: 30px;
  height: 500px;
  transition: transform 0.3s ease;
}
.felmoks-block-gallery .slides .slide {
  transition: opacity 0.3s ease;
  flex: 0 0 auto;
  height: inherit;
  overflow: hidden;
}
.felmoks-block-gallery .slides .slide img {
  width: auto;
  height: inherit;
  max-width: none;
}
.felmoks-block-gallery .controls {
  width: 100%;
  align-items: center;
  padding: 18px 0;
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
.felmoks-block-gallery .controls .carousel-controls-arrows {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  z-index: 3;
  position: relative;
}
@media (min-width: 800px) {
  .felmoks-block-gallery .controls .carousel-controls-arrows {
    width: 332px;
    justify-content: flex-end;
  }
}
.felmoks-block-gallery .controls .carousel-controls-arrows .carousel-control-arrow {
  width: 32px;
  height: 28px;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
}
.felmoks-block-gallery .controls .carousel-controls-arrows .carousel-control-arrow:hover {
  color: var(--accent);
}
.felmoks-block-gallery .controls .carousel-controls-arrows .carousel-control-arrow:hover > * {
  transition: all 0.2s ease-in-out;
}
.felmoks-block-gallery .controls .carousel-controls-arrows .carousel-control-arrow:disabled {
  cursor: default;
  color: var(--secondary);
}
.felmoks-block-gallery .controls .carousel-controls-dots {
  list-style: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  display: none;
}
@media (min-width: 900px) {
  .felmoks-block-gallery .controls .carousel-controls-dots {
    display: flex;
    width: 100%;
    z-index: 2;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.felmoks-block-gallery .controls .carousel-controls-dots > li {
  border-radius: 50%;
  background-color: var(--secondary);
  transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
  width: 9px;
  height: 9px;
  display: block;
}
.felmoks-block-gallery .controls .carousel-controls-dots > li:not(.active):hover {
  transform: scale(1.4);
  cursor: pointer;
}
.felmoks-block-gallery .controls .carousel-controls-dots > li.active {
  background-color: var(--accent);
  width: 14px;
  height: 14px;
}

/*# sourceMappingURL=felmoks-gallery.css.map */
