.ois {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: visible;
}

.ois_no-nav {
  width: 100%;
}

.ois_has-nav {
  width: 100%;
}

.ois__viewport {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
}

.ois__track {
  position: relative;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  width: auto;
  height: 100%;
  z-index: 1;
  box-sizing: content-box;
  transition-property: transform;
}

.ois__slide {
  position: relative;
  box-sizing: border-box;
  flex: 0 0 100px !important;
  width: 100px !important;
  max-width: 100px !important;
  height: 100px !important;
  display: block;
}

.ois__image {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.ois__btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.ois__btn::before {
  content: "";
  display: block;
  width: 6px;
  height: 12px;
  background-color: #000;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 12' fill='none'%3E%3Cpath d='M5 1L1 6l4 5' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 6px 12px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 12' fill='none'%3E%3Cpath d='M5 1L1 6l4 5' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 6px 12px no-repeat;
}

.ois__btn_prev {
  left: -32px;
}

.ois__btn_next {
  right: -32px;
}

.ois__btn_next::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 12' fill='none'%3E%3Cpath d='M1 1l4 5-4 5' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 12' fill='none'%3E%3Cpath d='M1 1l4 5-4 5' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ois__btn:hover::before {
  background-color: var(--orange-1);
}

.ois__btn.ois__btn_hidden,
.ois_no-nav .ois__btn {
  display: none;
}

.ois_cards .ois__viewport {
  height: auto;
  border-radius: 0;
}

.ois_cards .ois__track {
  align-items: stretch;
}

.ois_cards .ois__slide {
  flex: 0 0 200px !important;
  width: 200px !important;
  max-width: 200px !important;
  height: auto !important;
}

.ois_cards .ois__btn {
  top: 100px;
}

@media (max-width: 1023px) {
  .ois .ois__btn {
    display: none;
  }
}
