.Slider-progress {
  position: relative;
  height: 2px;
  margin-top: 40px;
  background-color: $gray;

  .swiper-pagination-progressbar-fill {
    display: block;
    height: 4px;
    background: $green;
    transform-origin: left;
  }
}

.Slider-navigation {
  gap: 10px;

  .button-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 4px;
    background: #0000000a;
    font-size: 24px;
    color: #666669;
    appearance: none;
    cursor: pointer;

    i {
      &::before {
        display: block;
      }
    }

    &:hover {
      background: #e6e6e6;
      background-color: rgba(0, 0, 0, 0.08);
      border: none;
    }

    &.swiper-button-disabled {
      pointer-events: none;
      opacity: 0.7;
      background: rgba(0, 0, 0, 0.02);
      color: #6666693d;
    }
  }
}
