.directory-scroll-wrapper {
  position: relative;
  z-index: 1;
}

.directory-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: var(--color-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  background-image: url("/local/include/svg/arrow_nav.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px 18px;
}
.directory-arrow:hover {
  background-color: var(--color-alt-hover);
}

.directory-arrow--prev {
  left: -15px;
  transform: translateY(-50%) rotate(180deg);
}
.directory-arrow--prev:active {
  transform: translateY(-50%) rotate(180deg) scale(0.9);
}

.directory-arrow--next {
  right: -15px;
}
.directory-arrow--next:active {
  transform: translateY(-50%) scale(0.9);
}

.directory-arrow.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.t31327.js-scroll-block {
  width: auto;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .directory-arrow {
    display: none;
  }
}
