.slider-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 3rem 0;
}

.slider {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 28px;
  border-radius: 70px;
  cursor: pointer;
  border: 1px solid #000000;
  overflow: hidden;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .slider::-webkit-slider-runnable-track {
    height: 28px;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    color: #13bba4;
  }

  .slider::-webkit-slider-thumb {
    height: 28px;
    width: 28px;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 50%;
    background: #efc94000;
  }
}

.slider-tooltip {
  position: absolute;
  top: -35px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-tooltip-text {
  background-color: #f4c542;
  padding: 5px 10px;
  border-radius: 5px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #f4c542;
  margin-top: -3px;
}

.slider-values {
  position: absolute;
  left: 0;
  right: 0;
  top: 53%;
}

.slider-mark {
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -17%);
}

.dot {
  height: 1.1rem;
  width: 1.1rem;
  background-color: #00a651;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

.dot.active {
  opacity: 1;
}

.mark-label {
  width: 1rem;
  font-weight: 600;
  margin-top: 0.5rem;
  display: block;
  font-size: 12px;
  color: #333;
}

.citizen {
  border-radius: 50px;
  padding: 1rem 2rem;
  background: #FFFFFF;
}

.citizen-selected {
  border-radius: 50px;
  padding: 1rem 2rem;
  background: #FFFFFF;
  box-shadow: 0px 4px 12px 0px #14142B1F;
}

.citizen-text {
  width: 1rem;
  height: 1rem;
  border-radius: 250px;
  background: #EFC940;
  border: 2.5px solid #EFC940;
}

.citizen-text-selected {
  width: 1rem;
  height: 1rem;
  border-radius: 250px;
  background: #EFC940;
  border: 2.5px solid #252525;
}

.form-select-custom {
  border-radius: 50px;
  padding: 15px 42px 15px 40px;
  background: #FFFFFF;
  color: #444444;
  outline: none;
  resize: none;
  overflow: hidden;
  font-weight: 600;
  font-size: 1rem;
  line-height: 24px;
  text-align: center;
  border: 1px solid #25252500;
}

.form-input-custom {
  width: 100%;
  border-radius: 50px;
  padding: 15px 42px 15px 40px;
  background: #F9F7F6;
  color: #000000;
  outline: none;
  resize: none;
  overflow: hidden;
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 20px;
  border: 1px solid #25252500;
  margin-bottom: 1.5rem;
}

.money-input {
  max-width: 130px;
  width: 100%;
  border-radius: 50px;
  padding: 20px 10px 20px 10px;
  background: #FFFFFF;
  color: #777777;
  outline: none;
  resize: none;
  overflow: hidden;
  font-weight: 600;
  font-size: 1rem;
  line-height: 20px;
  border: 1px solid #25252500;
  text-align: center;
}

.donation-title {
  font-size: 40px;
  color: #4a4c70;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -2px;
  text-align: center;
}

.donation-title-span {
  font-weight: 300;
}

.donation-note-text {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 24px;
  letter-spacing: -1px;
  color: #4a4c70;
  margin-bottom: 1.3rem;
}

.donation-message {
  max-width: 60rem;
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: -0.02em;
  text-align: center;
}

.donation-conditions {
  width: 54%;
  margin-top: 1.6rem;
  font-weight: 700;
  font-size: 0.8rem;
  color: #777777;
  margin-bottom: 1.8rem;
}

.donation-conditions-link {
  color: #0029FF;
  text-decoration: none;
  background-color: transparent;
}

.donate-btn {
  border: 1px solid #EFC940;
  padding: 0.8rem 5rem;
  background: #ffffff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  color: #000000;
}

.currency-toggle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #f4c542;
  font-weight: 800;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.currency-container {
  border-radius: 50px;
  background-color: #ffffff;
  box-shadow: 0px 4px 12px 0px #14142B1F;
  padding: 0rem 1rem;
}