.investment-calculator-section .investment-calculator__wrapper {
  padding: 40px;
  background: #fbfaf7;
  border-radius: 4px;
}
.investment-calculator-section .investment-calculator__container {
  display: flex;
  width: 100%;
  gap: 40px;
  align-items: flex-start;
}
.investment-calculator-section .panel-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1 1 0;
  min-width: 0;
}
.investment-calculator-section .label {
  font-size: 16px;
  line-height: 24px;
  color: #000;
  margin-bottom: 12px;
}
.investment-calculator-section .amount-input-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.investment-calculator-section .input-box {
  position: relative;
  width: auto;
  height: 46px;
  border-radius: 4px;
  flex: 1 1 auto;
  min-width: 0;
}
.investment-calculator-section .input-box input {
  width: 100%;
  height: 100%;
  padding: 10px 16px;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 4px;
}
.investment-calculator-section .input-border {
  position: absolute;
  inset: 0;
  border: 1px solid #000;
  border-radius: 4px;
  pointer-events: none;
}
.investment-calculator-section .currency-label {
  font-size: 16px;
  line-height: 24px;
  color: #000;
}
.investment-calculator-section .slider-wrapper {
  position: relative;
  height: 20px;
  width: 100%;
  margin-bottom: 4px;
}
.investment-calculator-section .slider-track {
  position: absolute;
  top: 7px;
  left: 0;
  width: 100%;
  height: 6px;
  background: #e0e0e0;
  border-radius: 999px;
}
.investment-calculator-section .slider-fill {
  position: absolute;
  top: 7px;
  left: 0;
  height: 6px;
  background: #000;
  border-radius: 999px;
}
.investment-calculator-section .slider-wrapper input[type=range] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 20px;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.investment-calculator-section .slider-thumb {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background: #000;
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}
.investment-calculator-section .slider-labels {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.investment-calculator-section .slider-labels span {
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
  color: #000;
}
.investment-calculator-section .dropdown {
  position: relative;
  width: 100%;
}
.investment-calculator-section .dropdown-btn {
  position: relative;
  width: 100%;
  height: 46px;
  background: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: left;
  padding: 0 17px;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.investment-calculator-section .dropdown-arrow {
  font-size: 16px;
  color: #000;
}
.investment-calculator-section .dropdown-menu {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #000;
  border-radius: 4px;
  z-index: 10;
  overflow: hidden;
}
.investment-calculator-section .dropdown-menu.open {
  display: block;
}
.investment-calculator-section .dropdown-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 11px 17px;
  border: none;
  background: none;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  cursor: pointer;
}
.investment-calculator-section .dropdown-menu button:hover,
.investment-calculator-section .dropdown-menu button:focus-visible {
  background: #f0f0f0;
  outline: none;
}
.investment-calculator-section .dropdown-menu button[disabled] {
  cursor: default;
  background: #f7f7f7;
}
.investment-calculator-section .section-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
}
.investment-calculator-section .checkbox {
  position: relative;
  width: 20px;
  height: 20px;
  background: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.investment-calculator-section .checkbox-border {
  position: absolute;
  inset: 0;
  border: 2px solid #000;
  border-radius: 4px;
  pointer-events: none;
}
.investment-calculator-section .checkbox-fill {
  display: none;
  position: absolute;
  inset: 4px;
  background: #000;
  border-radius: 2px;
}
.investment-calculator-section .checkbox-fill.active {
  display: block;
}
.investment-calculator-section .checkbox-label {
  font-size: 14px;
  line-height: 21px;
  color: #000;
}
.investment-calculator-section .section-rate {
  position: relative;
  background: #fff;
  border-radius: 4px;
  min-height: 100px;
}
.investment-calculator-section .rate-border {
  position: absolute;
  inset: 0;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  pointer-events: none;
}
.investment-calculator-section .rate-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 21px;
}
.investment-calculator-section .rate-title {
  font-size: 14px;
  line-height: 21px;
  color: #000;
}
.investment-calculator-section .rate-value {
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  color: #000;
}
.investment-calculator-section .rate-bonus {
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
  color: #000;
}
.investment-calculator-section .section-phone {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 4px;
  padding: 16px;
}
.investment-calculator-section .phone-title {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}
.investment-calculator-section .phone-desc {
  font-size: 12px;
  color: #000;
  margin-bottom: 12px;
}
.investment-calculator-section .section-phone input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #000;
  border-radius: 4px;
  font-family: "Helvetica", sans-serif;
  font-size: 14px;
  outline: none;
}
.investment-calculator-section .panel-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: auto;
  flex: 1 1 0;
  min-width: 0;
  background: #000;
  border-radius: 4px;
  padding: 32px;
}
.investment-calculator-section .results-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.investment-calculator-section .results-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  line-height: 36px;
  color: #fff;
}
.investment-calculator-section .results-subtitle {
  font-size: 13px;
  font-weight: 300;
  line-height: 19.5px;
  color: #fff;
  opacity: 0.7;
}
.investment-calculator-section .results-total {
  background: #fff;
  border-radius: 4px;
  padding: 24px;
  text-align: center;
}
.investment-calculator-section .results-total-label {
  font-size: 13px;
  line-height: 19.5px;
  color: #000;
  opacity: 0.7;
  margin-bottom: 8px;
}
.investment-calculator-section .results-total-value {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  line-height: 54px;
  color: #000;
}
.investment-calculator-section .results-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.investment-calculator-section .result-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 21px;
}
.investment-calculator-section .result-card-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  pointer-events: none;
}
.investment-calculator-section .result-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.investment-calculator-section .result-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.investment-calculator-section .result-card-label {
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
  color: #fff;
  opacity: 0.8;
}
.investment-calculator-section .result-card-value {
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  color: #fff;
}
.investment-calculator-section .result-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.investment-calculator-section [hidden] {
  display: none !important;
}
@media (max-width: 1320px) {
  .investment-calculator-section .investment-calculator__container {
    flex-direction: column;
  }
  .investment-calculator-section .panel-left,
  .investment-calculator-section .panel-right {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .investment-calculator-section .investment-calculator__wrapper {
    padding: 24px;
  }
  .investment-calculator-section .panel-right {
    padding: 24px;
  }
  .investment-calculator-section .amount-input-row {
    gap: 12px;
  }
  .investment-calculator-section .input-box {
    width: 100%;
  }
  .investment-calculator-section .results-total-value {
    font-size: 30px;
    line-height: 42px;
  }
  .investment-calculator-section .result-card-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
