/* [project]/components/ui/payment-calculator/payment-calculator.scss.css [app-client] (css) */
.payment-calculator {
  --payment-calculator-control-height: 40px;
  box-sizing: border-box;
  font-family: var(--font-family-sans, "Macklin Sans", system-ui, sans-serif);
  background-color: #fff;
  flex-direction: column;
  gap: 1rem;
  padding: 1.625rem 2.625rem;
  display: flex;
}

.payment-calculator__heading {
  letter-spacing: -.01em;
  color: #000;
  align-self: flex-start;
  margin: 0;
  font-family: inherit;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
}

.payment-calculator__fields {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  display: grid;
}

.payment-calculator__field {
  width: 100%;
  max-width: 100%;
  min-height: calc(var(--payment-calculator-control-height) + 1rem);
  box-sizing: border-box;
  background: none;
  border: none;
  border-bottom: 1px solid #000;
  flex-direction: row;
  align-items: center;
  padding-block: .5rem;
  display: flex;
  position: relative;
}

.payment-calculator__field-input {
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #000;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

.payment-calculator__field-input::placeholder {
  color: #000;
  opacity: 1;
}

.payment-calculator__field-input {
  width: 100%;
  height: var(--payment-calculator-control-height);
  min-height: var(--payment-calculator-control-height);
  appearance: none;
  box-sizing: border-box;
  background: none;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
}

.payment-calculator__field--downpayment {
  gap: 12px;
}

.payment-calculator__field--downpayment .payment-calculator__field-input {
  flex: 1;
  min-width: 0;
}

.payment-calculator__field--downpayment .payment-calculator__minimum {
  flex-shrink: 0;
}

.payment-calculator__field-input::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

.payment-calculator__field-input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.payment-calculator__field-input[type="number"] {
  appearance: textfield;
}

.payment-calculator .marketing-contact-form__select-wrap {
  width: 100%;
  height: var(--payment-calculator-control-height);
  min-height: var(--payment-calculator-control-height);
  position: relative;
}

.payment-calculator .payment-calculator__select-trigger {
  width: 100%;
  height: var(--payment-calculator-control-height);
  min-height: var(--payment-calculator-control-height);
  box-sizing: border-box;
  cursor: pointer;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #000;
  text-align: start;
  background: none;
  border: none;
  outline: none;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  display: flex;
}

.payment-calculator .marketing-contact-form__select-value {
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.payment-calculator .marketing-contact-form__select-chevron {
  color: #000;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  transition: transform .2s;
  display: flex;
}

.payment-calculator .marketing-contact-form__custom-select.is-open .marketing-contact-form__select-chevron {
  transform: rotate(180deg);
}

.payment-calculator .marketing-contact-form__select-list {
  z-index: 20;
  inset-inline: 0;
  background: #fff;
  border: 1px solid #000;
  max-height: 224px;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  position: absolute;
  top: calc(100% + 1px);
  overflow-y: auto;
  box-shadow: 0 4px 16px #00000014;
}

.payment-calculator .marketing-contact-form__select-option {
  color: #000;
  text-transform: uppercase;
  letter-spacing: .03em;
  cursor: pointer;
  margin: 0;
  padding: 12px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  transition: background-color .15s, color .15s;
}

.payment-calculator .marketing-contact-form__select-option.is-active, .payment-calculator .marketing-contact-form__select-option:hover {
  color: #fff;
  background-color: #000;
}

.payment-calculator .marketing-contact-form__select-option.is-selected {
  color: #000;
  background-color: #f2f2f2;
}

.payment-calculator .marketing-contact-form__select-option.is-selected.is-active, .payment-calculator .marketing-contact-form__select-option.is-selected:hover {
  color: #fff;
  background-color: #000;
}

.payment-calculator__minimum {
  box-sizing: border-box;
  width: 92px;
  height: var(--payment-calculator-control-height);
  min-height: var(--payment-calculator-control-height);
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  opacity: 1;
  background-color: #0000;
  border: 1px solid #000;
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 6px 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition: background-color .2s, color .2s, border-color .2s;
  display: inline-flex;
}

.payment-calculator__minimum:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #000;
}

.payment-calculator__minimum--checked {
  color: #fff;
  background-color: #000;
}

.payment-calculator__minimum-text {
  line-height: 1;
}

.payment-calculator__actions {
  grid-template-rows: minmax(2.6em, auto) auto;
  align-items: stretch;
  gap: 1rem;
  width: 100%;
  min-height: 70px;
  display: grid;
}

.payment-calculator__result {
  letter-spacing: -.01em;
  color: #000;
  grid-row: 1;
  width: 100%;
  margin: 0;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.payment-calculator__result--empty {
  visibility: hidden;
}

.payment-calculator__footer {
  flex-wrap: wrap;
  grid-row: 2;
  justify-content: flex-end;
  align-self: end;
  align-items: center;
  gap: 16px;
  width: 100%;
  display: flex;
}

.payment-calculator__btn {
  border-radius: var(--radius-button, .5em);
  letter-spacing: .03em;
  text-transform: uppercase;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: opacity .2s;
  display: inline-flex;
}

.payment-calculator__btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.payment-calculator__btn--calculate {
  color: #fff;
  background: #000;
  border: none;
  min-width: 117px;
}

.payment-calculator__btn--inquire {
  color: #000;
  background: none;
  border: 1px solid #000;
  min-width: 165px;
}

.payment-calculator__btn-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: block;
}

.payment-calculator__btn-label {
  line-height: 1;
}

.payment-calculator__result strong {
  font-weight: 500;
}

@media (min-width: 601px) {
  .payment-calculator__actions {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    min-height: 48px;
    display: flex;
  }

  .payment-calculator__result {
    text-align: start;
    flex: 1;
    grid-row: auto;
    width: auto;
    min-width: 0;
  }

  .payment-calculator__result--empty {
    min-height: 0;
  }

  .payment-calculator__footer {
    flex-shrink: 0;
    grid-row: auto;
    align-self: center;
    width: auto;
    margin-inline-start: auto;
  }
}

@media (max-width: 1024px) {
  .payment-calculator {
    padding: 24px 10px;
  }

  .payment-calculator__fields {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .payment-calculator__field {
    max-width: none;
    min-height: calc(var(--payment-calculator-control-height) + 1rem);
  }

  .payment-calculator__field-input, .payment-calculator .payment-calculator__select-trigger {
    font-size: 16px;
  }
}

/* [project]/components/ui/animated-map/animated-map.scss.css [app-client] (css) */
.animated-map {
  --animated-map-trail-width: 8;
  z-index: 1;
  width: 100%;
  position: relative;
}

.animated-map__media {
  width: 100%;
  line-height: 0;
  position: relative;
}

.animated-map__bg {
  width: 100%;
  height: auto;
  display: block;
}

.animated-map__overlay {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.animated-map__trail {
  fill: none;
  stroke: #fed400;
  stroke-width: var(--animated-map-trail-width);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.animated-map__point {
  transition: transform .3s, filter .3s;
}

.animated-map__point.is-active {
  filter: drop-shadow(0 0 12px #fed400e6);
  transform: scale(1.2);
}

.animated-map__point.is-visited .animated-map__pin-ring {
  fill: #fff4a8;
  stroke: #fed400;
  stroke-width: 3px;
  filter: drop-shadow(0 0 8px #fed400bf);
}

.animated-map__pin-ring {
  fill: #fed400;
  stroke: #0000;
  stroke-width: 0;
  transition: fill .3s, stroke .3s, filter .3s;
}

.animated-map__pin-dot {
  fill: #1a1a1a;
}

.animated-map__car image {
  filter: drop-shadow(0 4px 12px #00000059);
}

/*# sourceMappingURL=components_ui_0iitbed._.css.map*/