.sliderSection {
  display: flex;
  background: #F7F8FA;
  align-content: center;
  align-items: center;
  color: #000000;
  flex-direction: column;
  padding: var(--section-desktop-padding);
}

.sliderSection__content {
  width: 100%;
  max-width: 585px;
  display: flex;
  flex-direction: column;
}

.sliderSection .h2-semi-bold {
  text-align: center;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 24px;
}

.sliderSection .h4 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0em;
  text-align: center;
}

.sliderSection__slider {
  text-align: center;
  margin-bottom: 24px;
  width: 100%;
}

.sliderSection__slider .h3 {
  color: #757575;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: right;
}

.sliderSection__slider p {
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #757575;
}

.sliderSection__expectedReturn {
  padding-top: 11px;
  padding-bottom: 11px;
  background: #ffffff;
  width: 100%;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.sliderSection__userRefundBox {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sliderSection__expectedReturn .h4 {
  margin-bottom: 0;
}

.sliderSection__expectedReturn .h1 {
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  line-height: 46px;
}

.currency-input {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 4px;
}

.currency-input span {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.currency-input-refund {
  font-size: 16px;
  line-height: 23.2px;
  align-self: flex-end;
  padding-bottom: 3px;
  font-weight: 400;
}

.slider {
  /* accent-color: var(--accent-color); */
  width: 100%;
  height: 3px;
  background: black;
  outline: none;
  transition: opacity 0.2s;
}

.slider:hover {
  opacity: 1;
}

.slider__outPutValue {
  color: #101820;
  text-align: right;
}

.slider__info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: right;
  color: #101820;
  margin-top: 9px;
}

.slider__infoMin,
.slider__infoMax {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.slider__error {
  accent-color: red !important;
}

.amount-input:focus-visible {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.symbol-nis {
  font-size: 16px;
  line-height: 23.2px;
  font-weight: 400;
  align-self: baseline;
}

.input-errors {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 190px;
}

.min-error {
  display: none;
  color: red;
  font-size: 14px;
  font-weight: 400;
}

.max-error {
  display: none;
  color: red;
  font-size: 14px;
  font-weight: 400;
}

.num-error {
  display: none;
  color: red;
  font-size: 14px;
  font-weight: 400;
}

.bullets-list {
  list-style: disc;
  margin-top: 11px;
  padding-right: 15px;
}

.bullets-listItem {
  margin: 8px 0;
  font-size: 12px;
  line-height: 18px;
}

.open__slider__button__container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.open__slider__button__container button {
  cursor: pointer;
  border-radius: 4.8px;
  height: 48px;
  width: 296.4px;
  border: 1.2px solid var(--open-slider-button-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.open__slider__button__container button div {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  height: 100%;
}

.open__slider__button__container button span {
  font-weight: 600;
  font-size: 19.2px;
  line-height: 26.4px;
  white-space: nowrap;
  color: var(--open-slider-button-color);
}

.open__slider__button__container button img {
  max-width: 28.8px;
}

/* .amount-display styles are now managed in JavaScript for better timing control */

@media (max-width: 768px) {
  .sliderSection {
    padding: var(--section-mobile-padding);
    padding-left: 20px;
    padding-right: 20px;
  }
  .bullets-list {
    list-style: disc;
    margin-top: 11px;
    padding-right: 15px;
  }

  .bullets-listItem {
    font-size: 14px;
    line-height: 19px;
  }
  .sliderSection__expectedReturn {
    width: 100%;
  }

  .sliderSection__expectedReturn {
    padding-top: 11px;
    padding-bottom: 11px;
    background: #ffffff;
    width: 100%;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);
    align-self: center;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}