.f-carousel {
  padding: 10px 0 0;
}
.f-carousel__tabs {
  overflow: visible;
  position: relative;
}
.f-carousel__tabs::before,
.f-carousel__tabs::after {
  content: "";
  position: absolute;
  z-index: 4;
  left: 0;
  top: 0;
  height: 100%;
  width: 50px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(5%, #fff),
    to(transparent)
  );
  background-image: -o-linear-gradient(left, #fff 5%, transparent);
  background-image: linear-gradient(to right, #fff 5%, transparent);
}
.f-carousel__tabs::after {
  left: unset;
  right: 0;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#fff),
    to(transparent)
  );
  background-image: -o-linear-gradient(right, #fff, transparent);
  background-image: linear-gradient(to left, #fff, transparent);
}
.f-carousel__tabs .swiper-slide {
  width: auto;
}
.f-carousel__scrollbar-wrap {
  margin-top: 10px;
  height: 1px;
  background: #c4c4c4;
  border-radius: 99px;
  position: relative;
  overflow: hidden;
  /* opacity: 0; */
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.f-carousel__scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(0, 0, 0);
  border-radius: 99px;
  -webkit-transition: -webkit-transform 0.05s linear;
  transition: -webkit-transform 0.05s linear;
  -o-transition: transform 0.05s linear;
  transition: transform 0.05s linear;
  transition:
    transform 0.05s linear,
    -webkit-transform 0.05s linear;
}
.f-carousel__tab {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px 15px;
  border: 1px solid #c4c4c4;
  border-radius: 5px;

  font-weight: 400;
  font-size: 18px;
  color: #292929;

  text-decoration: none;

  -webkit-transition:
    color 0.3s ease-in,
    border-color 0.3s ease-in;

  -o-transition:
    color 0.3s ease-in,
    border-color 0.3s ease-in;

  transition:
    color 0.3s ease-in,
    border-color 0.3s ease-in;
}

@media (any-hover: hover) and (pointer: fine) {
  .f-carousel__tab:hover {
    color: #83ab4c;
    border-color: #83ab4c;
  }
}

@media (max-width: 576px) {
  .f-carousel__tab {
    padding: 12px 10px;
    font-size: 16px;
  }
}

.f-carousel__tab--accent {
  color: #83ab4c;
  border-color: currentColor;
}

.f-carousel__slider-wrapper {
  padding: 0 30px;
  position: relative;
}
@media (max-width: 576px) {
  .f-carousel__slider-wrapper {
    padding: 0 24px;
  }
}
.f-carousel__slider-controls {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.f-carousel__slider-button {
  width: 16px;
  height: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  color: #000;
  -webkit-transition: color 0.3s ease-in;
  -o-transition: color 0.3s ease-in;
  transition: color 0.3s ease-in;
}
.f-carousel__slider-button svg {
  fill: currentColor;
}
@media (any-hover: hover) and (pointer: fine) {
  .f-carousel__slider-button:hover {
    color: #83ab4c;
  }
}

.f-carousel__slider-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 10px;
  gap: 10px;
  -webkit-transition:
    background-color 0.3s ease-in,
    -webkit-box-shadow 0.3s ease-in;
  transition:
    background-color 0.3s ease-in,
    -webkit-box-shadow 0.3s ease-in;
  -o-transition:
    box-shadow 0.3s ease-in,
    background-color 0.3s ease-in;
  transition:
    box-shadow 0.3s ease-in,
    background-color 0.3s ease-in;
  transition:
    box-shadow 0.3s ease-in,
    background-color 0.3s ease-in,
    -webkit-box-shadow 0.3s ease-in;
}

@media (max-width: 576px) {
  .f-carousel__slider-item {
    gap: 2px;
  }
}

.f-carousel__slider-item-image {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 130px;
  width: 100%;
}
.f-carousel__slider-item-image img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.f-carousel__slider-item-name {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;

  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #292929;

  border-bottom: 1px dashed currentColor;

  -webkit-transition: color 0.3s ease-in;

  -o-transition: color 0.3s ease-in;

  transition: color 0.3s ease-in;
}
@media (max-width: 576px) {
  .f-carousel__slider-item-name {
    font-size: 12px;
  }
}
.f-carousel__slider-item-name::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
}
@media (any-hover: hover) and (pointer: fine) {
  .f-carousel__slider-item:hover {
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
  }
  .f-carousel__slider-item:hover .f-carousel__slider-item-name {
    color: #83ab4c;
  }
}
.catalog-block {
  overflow: hidden;
}
.catalog-block__content {
  overflow: visible;
}
