.rw-ere-calculator {
  --rw-ere-primary: #3235A8;
  --rw-ere-neutral: #CECECE;
  --rw-ere-accent: #FD8F6A;
  --rw-ere-accent-hover: #f07f58;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  font-family: Poppins, sans-serif;
}

.rw-ere-calculator h1,
.rw-ere-calculator h2,
.rw-ere-calculator h3,
.rw-ere-calculator h4,
.rw-ere-calculator h5,
.rw-ere-calculator h6 {
  margin: 0;
  font-weight: 600;
  line-height: 130%;
}

.rw-ere-calculator h1 {
  font-size: 56px;
}

.rw-ere-calculator h3 {
  font-size: 40px;
}

.rw-ere-calculator h4 {
  font-size: 32px;
}

.rw-ere-calculator h5 {
  font-size: 24px;
}

.rw-ere-calculator h6 {
  font-size: 20px;
}

.rw-ere-calculator p {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.rw-ere-calculator .rw-ere-small-text {
  font-size: 14px;
  color: var(--rw-ere-neutral);
}

.rw-ere-calculator .rw-ere-btn {
  background-color: var(--rw-ere-accent);
  cursor: pointer;
  display: flex;
  padding: 14px 32px;
  border: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: var(--Typography-Desktop-P, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  transition: all 0.3s ease;
}

.rw-ere-calculator .rw-ere-btn:hover,
.rw-ere-calculator .rw-ere-btn:focus,
.rw-ere-calculator .rw-ere-btn:focus-visible,
.rw-ere-calculator .rw-ere-btn:active {
  background-color: var(--rw-ere-accent-hover) !important;
}

.rw-ere-calculator input[type='text'],
.rw-ere-calculator input[type='url'],
.rw-ere-calculator input[type='tel'],
.rw-ere-calculator input[type='email'],
.rw-ere-calculator input[type='number'] {
  border: 1px solid var(--rw-ere-neutral);
  background: #fff;
  color: var(--rw-ere-primary) !important;
}

.rw-ere-calculator input[type='text']::placeholder,
.rw-ere-calculator input[type='url']::placeholder,
.rw-ere-calculator input[type='tel']::placeholder,
.rw-ere-calculator input[type='email']::placeholder,
.rw-ere-calculator input[type='number']::placeholder {
  color: rgba(50, 53, 168, 0.5);
}

.rw-ere-calculator input[type='text']:focus,
.rw-ere-calculator input[type='url']:focus,
.rw-ere-calculator input[type='tel']:focus,
.rw-ere-calculator input[type='email']:focus,
.rw-ere-calculator input[type='number']:focus,
.rw-ere-calculator input[type='text']:focus-visible,
.rw-ere-calculator input[type='url']:focus-visible,
.rw-ere-calculator input[type='tel']:focus-visible,
.rw-ere-calculator input[type='email']:focus-visible,
.rw-ere-calculator input[type='number']:focus-visible,
.rw-ere-calculator input[type='text']:active,
.rw-ere-calculator input[type='url']:active,
.rw-ere-calculator input[type='tel']:active,
.rw-ere-calculator input[type='email']:active,
.rw-ere-calculator input[type='number']:active {
  border-color: var(--rw-ere-primary) !important;
  outline: none;
  box-shadow: none;
}

.rw-ere-calculator .rw-ere-step {
  display: block;
  max-height: 0;
  opacity: 0;
  transform: translateY(8px);
  overflow: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.rw-ere-calculator .rw-ere-step-active {
  max-height: 4000px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.rw-ere-calculator .rw-ere-heading {
  margin: 0 0 16px;
  color: var(--rw-ere-primary);
}

.rw-ere-calculator .rw-ere-summary {
  background: var(--rw-ere-primary);
  color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.rw-ere-calculator .rw-ere-summary-label {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.rw-ere-calculator .rw-ere-summary-total {
  margin: 8px 0 16px;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 700;
}

.rw-ere-calculator .rw-ere-currency {
  margin-right: 2px;
}

.rw-ere-calculator .rw-ere-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.rw-ere-calculator .rw-ere-metric {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 10px;
}

.rw-ere-calculator .rw-ere-metric span {
  display: block;
  font-size: 12px;
  opacity: 0.9;
}

.rw-ere-calculator .rw-ere-metric strong {
  font-size: 16px;
}

.rw-ere-calculator .rw-ere-form-card {
  border: 1px solid #d9dde8;
  border-radius: 8px;
  padding: 16px;
}

.rw-ere-calculator .rw-ere-form-card h4 {
  margin: 0 0 16px;
  color: var(--rw-ere-primary);
}

.rw-ere-calculator .rw-ere-form-card label {
  display: block;
  font-weight: 700;
  margin: 12px 0 8px;
}

.rw-ere-calculator .rw-ere-form-card input[type='number'] {
  width: 100%;
  border: 1px solid #cfd6e3;
  border-radius: 6px;
  padding: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.rw-ere-calculator .rw-ere-form-card input[type='range'] {
  width: 100%;
  margin-top: 8px;
  transition: all 0.3s ease;
}

.rw-ere-calculator .rw-ere-checkboxes {
  display: grid;
  gap: 6px;
  margin-bottom: 8px;
}

.rw-ere-calculator .rw-ere-checkboxes label {
  font-weight: 400;
  margin: 0;
}

.rw-ere-calculator .rw-ere-note {
  margin: 14px 0;
  color: #5e6779;
  font-size: 14px;
}

.rw-ere-calculator .rw-ere-range-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
  color: #5e6779;
  font-size: 12px;
}

.rw-ere-calculator .rw-ere-slider-value {
  margin: 10px 0 0;
  color: #2f3442;
  font-size: 13px;
}

.rw-ere-calculator .rw-ere-savings-box {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid #d9dde8;
}

.rw-ere-calculator .rw-ere-savings-box span {
  display: block;
  font-size: 13px;
  color: #2f3442;
}

.rw-ere-calculator .rw-ere-savings-box strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  color: var(--rw-ere-primary);
}

.rw-ere-calculator .rw-ere-results-card {
  margin-top: 16px;
  border: 1px solid #d9dde8;
  border-radius: 8px;
  padding: 14px 16px;
  background: #fafbfe;
}

.rw-ere-calculator .rw-ere-result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #e7ebf3;
}

.rw-ere-calculator .rw-ere-result-row:last-child {
  border-bottom: none;
}

.rw-ere-calculator .rw-ere-result-row span {
  font-size: 14px;
  color: #2f3442;
}

.rw-ere-calculator .rw-ere-result-row strong {
  font-size: 15px;
  color: var(--rw-ere-primary);
  text-align: right;
}

.rw-ere-calculator .rw-ere-result-row-total span,
.rw-ere-calculator .rw-ere-result-row-total strong {
  font-weight: 700;
}

.rw-ere-calculator .rw-ere-cta {
  width: 100%;
  margin-top: 20px;
  background: #268a35;
  color: #ffffff;
  border-color: #268a35;
  font-weight: 600;
}

.rw-ere-calculator .rw-ere-next:hover,
.rw-ere-calculator .rw-ere-back:hover {
  background: #f5f7fb;
}

.rw-ere-calculator .rw-ere-cta:hover {
  background: #1f772c;
  border-color: #1f772c;
}

.rw-ere-calculator .rw-ere-sub {
  margin: 8px 0 0;
  text-align: center;
  color: #7a8090;
  font-size: 14px;
}

.rw-ere-calculator .rw-ere-hubspot {
  display: none;
  margin-top: 20px;
}

.rw-ere-calculator .rw-ere-hubspot-visible {
  display: block;
}

.rw-ere-calculator .rw-ere-nav-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.rw-ere-calculator .rw-ere-nav-row-single {
  grid-template-columns: 1fr;
}

.rw-ere-calculator .rw-ere-final-equation {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 12px;
  margin: 8px 0 26px;
}

.rw-ere-calculator .rw-ere-final-item {
  text-align: center;
}

.rw-ere-calculator .rw-ere-final-box {
  border: 1px solid #b8bfcb;
  border-radius: 8px;
  padding: 10px;
  background: #ffffff;
  min-height: 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rw-ere-calculator .rw-ere-final-box strong {
  font-size: 13px;
  color: var(--rw-ere-primary);
}

.rw-ere-calculator .rw-ere-final-box span {
  font-size: 12px;
  color: #2f3442;
}

.rw-ere-calculator .rw-ere-final-box-total {
  border-color: var(--rw-ere-primary);
}

.rw-ere-calculator .rw-ere-final-item p {
  margin: 10px 0 0;
  color: #101010;
}

.rw-ere-calculator .rw-ere-final-op {
  align-self: center;
  font-size: 20px;
  color: #2f3442;
}

.rw-ere-calculator .rw-ere-intro-inner {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #FFF;
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  align-self: stretch;
}

.rw-ere-calculator .rw-ere-intro-progress-wrap {
  width: 100%;
  max-width: 760px;
  display: grid;
  gap: 14px;
}

.rw-ere-calculator .rw-ere-intro-progress {
  display: grid;
  grid-template-columns: 48px 110px 48px 110px 48px;
  align-items: center;
  width: auto;
  gap: 0;
  margin: 0 auto;
}

.rw-ere-calculator .rw-ere-intro-dot {
  margin: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rw-ere-neutral);
  color: #FFF;
  text-align: center;
  font-style: normal;
}

.rw-ere-calculator .rw-ere-intro-dot-active {
  background: var(--rw-ere-primary);
  color: #ffffff;
}

.rw-ere-calculator .rw-ere-intro-line {
  width: 100%;
  height: 1px;
  background: var(--rw-ere-neutral);
}

.rw-ere-calculator .rw-ere-intro .rw-ere-step-title {
  margin: 0;
  color: var(--rw-ere-primary);
  text-align: center;
  font-style: normal;
  letter-spacing: -0.3px;
}

.rw-ere-calculator .rw-ere-intro-description {
  margin: -8px 0 0;
  color: var(--rw-ere-primary);
  text-align: center;
  font-style: normal;
  max-width: 760px;
}

.rw-ere-calculator .rw-ere-intro-progress-labels {
  display: grid;
  grid-template-columns: 48px 110px 48px 110px 48px;
  gap: 0;
  width: auto;
  align-items: start;
  margin: 0 auto;
}

.rw-ere-calculator .rw-ere-intro-progress-labels p {
  margin: 0;
  width: 114px;
  max-width: 114px;
  text-align: center;
  font-style: normal;
  justify-self: center;
}

.rw-ere-calculator .rw-ere-intro-progress-labels p:nth-child(1) {
  grid-column: 1;
}

.rw-ere-calculator .rw-ere-intro-progress-labels p:nth-child(2) {
  grid-column: 3;
}

.rw-ere-calculator .rw-ere-intro-progress-labels p:nth-child(3) {
  grid-column: 5;
}

.rw-ere-calculator .rw-ere-intro-summary {
  width: 100%;
  max-width: 1100px;
  border-radius: 12px;
  background: var(--rw-ere-primary);
  padding: 34px 30px 38px;
  margin-top: 8px;
}

.rw-ere-calculator .rw-ere-intro-summary-title {
  margin: 0 0 24px;
  text-align: center;
  color: #f5f7ff;
  font-style: normal;
}

.rw-ere-calculator .rw-ere-intro-summary-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.rw-ere-calculator .rw-ere-intro-summary-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 12px 16px;
  text-align: center;
}

.rw-ere-calculator .rw-ere-intro-summary-card p {
  margin: 0 0 10px;
  color: var(--rw-ere-primary);
  font-style: normal;
}

.rw-ere-calculator .rw-ere-intro-summary-label-title,
.rw-ere-calculator .rw-ere-intro-summary-label-text {
  display: block;
}

.rw-ere-calculator .rw-ere-intro-summary-label-title {
  font-weight: 700;
}

.rw-ere-calculator .rw-ere-intro-summary-label-text {
  font-weight: 400;
}

.rw-ere-calculator .rw-ere-intro-summary-price {
  margin: 0;
  color: var(--rw-ere-primary);
  font-style: normal;
}

.rw-ere-calculator .rw-ere-intro-disclaimer {
  margin: 6px 0 0;
  max-width: 1120px;
  color: rgba(50, 53, 168, 0.5);
  text-align: center;
  font-size: 14px;
  font-style: italic;
}

.rw-ere-calculator .rw-ere-step-one.rw-ere-step-active {
  padding: 28px;
}

.rw-ere-calculator .rw-ere-step-shell {
  border: 1px solid var(--rw-ere-neutral);
  background: #f1f4f4;
  display: flex;
  padding: 31px 28px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}

.rw-ere-calculator .rw-ere-step-progress {
  display: flex;
  align-items: center;
}

.rw-ere-calculator .rw-ere-step-dot {
  width: 48px;
  height: 48px;
  padding: 9px 0 8px 0;
  border-radius: 999px;
  background: #bcbec0;
  color: #f1f4f4;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rw-ere-calculator .rw-ere-step-dot-active {
  background: #000;
}

.rw-ere-calculator .rw-ere-step-line {
  width: 90px;
  height: 1px;
  background: #8f9499;
}

.rw-ere-calculator .rw-ere-step-title {
  margin: 0;
  color: #000;
  text-align: center;
  font-style: normal;
}

.rw-ere-calculator .rw-ere-summary-hidden-total {
  display: none;
}

.rw-ere-calculator .rw-ere-step-one-disclaimer {
  width: 100%;
  margin: 0;
  color: #6f747b;
  text-align: center;
  font-style: normal;
  max-width: 1000px;
}

.rw-ere-calculator .rw-ere-step-divider {
  width: 100%;
  height: 1px;
  background: #8f9499;
}

.rw-ere-calculator .rw-ere-step-one-form {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
}

.rw-ere-calculator .rw-ere-step-one-form h6 {
  margin: 0 0 24px 0;
  text-align: center;
  color: #000;
  font-style: normal;
}

.rw-ere-calculator .rw-ere-step-one-form label {
  margin: 16px 0 8px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

.rw-ere-calculator .rw-ere-input-with-suffix {
  position: relative;
}

.rw-ere-calculator .rw-ere-input-with-suffix span {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(50, 53, 168, 0.5);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.rw-ere-calculator .rw-ere-step-one-form input[type='number'] {
  background: #fff;
  border: 1px solid var(--rw-ere-neutral);
  color: var(--rw-ere-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  min-height: 46px;
  padding: 10px 17px 10px 18px;
}

.rw-ere-calculator .rw-ere-step-one .rw-ere-checkboxes {
  gap: 8px;
  margin-bottom: 10px;
}

.rw-ere-calculator .rw-ere-step-one .rw-ere-checkboxes label {
  margin: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.rw-ere-calculator .rw-ere-step-one .rw-ere-checkboxes input[type='checkbox'],
.rw-ere-calculator .rw-ere-step-one .rw-ere-checkboxes input[type='radio'] {
  appearance: none;
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--rw-ere-primary);
  border-radius: 3px;
  background: #fff;
  position: relative;
  margin: 0 6px 0 0;
  vertical-align: middle;
  cursor: pointer;
}

.rw-ere-calculator .rw-ere-step-one .rw-ere-checkboxes input[type='checkbox']::after,
.rw-ere-calculator .rw-ere-step-one .rw-ere-checkboxes input[type='radio']::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: var(--rw-ere-primary);
  opacity: 0;
}

.rw-ere-calculator .rw-ere-step-one .rw-ere-checkboxes input[type='checkbox']:checked::after,
.rw-ere-calculator .rw-ere-step-one .rw-ere-checkboxes input[type='radio']:checked::after {
  opacity: 1;
}

.rw-ere-calculator .rw-ere-step-one .rw-ere-note {
  margin: 10px 0 0;
  color: #000;
  opacity: 0.3;
  font-style: italic;
}

.rw-ere-calculator .rw-ere-warning-box {
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--rw-ere-neutral);
  background: #f1f4f4;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.rw-ere-calculator .rw-ere-warning-box,
.rw-ere-calculator .rw-ere-warning-box p,
.rw-ere-calculator .rw-ere-warning-box ul,
.rw-ere-calculator .rw-ere-warning-box li {
  font-size: 14px;
  line-height: 150%;
}

.rw-ere-calculator .rw-ere-warning-box > p {
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rw-ere-calculator .rw-ere-warning-box .rw-ere-warning-icon {
  display: block;
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
}

.rw-ere-calculator .rw-ere-warning-box p strong {
  font-weight: 700;
}

.rw-ere-calculator .rw-ere-warning-box ul {
  margin: 0;
  padding: 0 0 0 40px;
}

.rw-ere-calculator .rw-ere-hidden-field {
  display: none;
}

.rw-ere-calculator .rw-ere-step-one-next {
  border-color: #000;
  background: #000;
  color: #f1f4f4;
}

.rw-ere-calculator .rw-ere-step-one .rw-ere-nav-row .rw-ere-back,
.rw-ere-calculator .rw-ere-step-one .rw-ere-nav-row .rw-ere-next {
  width: 100%;
  border: 1px solid #000;
  border-radius: 0;
  background: #000;
  color: #f1f4f4;
}

.rw-ere-calculator .rw-ere-step-one .rw-ere-nav-row {
  width: 100%;
}

.rw-ere-calculator .rw-ere-step-one .rw-ere-nav-row .rw-ere-back:hover,
.rw-ere-calculator .rw-ere-step-one .rw-ere-nav-row .rw-ere-next:hover {
  background: #000;
  border-color: #000;
  color: #f1f4f4;
}

.rw-ere-calculator .rw-ere-step-one .rw-ere-step-one-shell {
  align-items: stretch;
  gap: 26px;
}

.rw-ere-calculator .rw-ere-step-one .rw-ere-step-progress-label-active {
  color: var(--rw-ere-primary);
}

.rw-ere-calculator .rw-ere-step-one-main {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 48%);
  gap: 48px;
  align-items: start;
}

.rw-ere-calculator .rw-ere-step-one-main-left,
.rw-ere-calculator .rw-ere-step-one-main-right {
  min-width: 0;
}

.rw-ere-calculator .rw-ere-step-one-main-left .rw-ere-step-title {
  margin-top: 24px;
  color: var(--rw-ere-primary);
}

.rw-ere-calculator .rw-ere-step-one-main-left .rw-ere-step-divider {
  margin: 24px 0;
  background: var(--rw-ere-neutral);
}

.rw-ere-calculator .rw-ere-step-one-main-left .rw-ere-step-one-form h6 {
  color: var(--rw-ere-primary);
}

.rw-ere-calculator .rw-ere-step-one-main-left .rw-ere-step-one-form label,
.rw-ere-calculator .rw-ere-step-one-main-left .rw-ere-checkboxes label {
  color: var(--rw-ere-primary);
}

.rw-ere-calculator .rw-ere-step-one-main-left .rw-ere-step-one-form input[type='number'] {
  border-color: var(--rw-ere-neutral);
  border-radius: 10px;
}

.rw-ere-calculator .rw-ere-step-one-main-left .rw-ere-input-with-suffix span {
  color: rgba(50, 53, 168, 0.5);
}

.rw-ere-calculator .rw-ere-step-one-main-left .rw-ere-warning-box {
  background: #f1f4f4;
  border-color: var(--rw-ere-neutral);
  border-radius: 8px;
}

.rw-ere-calculator .rw-ere-step-one-main-left .rw-ere-warning-box,
.rw-ere-calculator .rw-ere-step-one-main-left .rw-ere-warning-box p,
.rw-ere-calculator .rw-ere-step-one-main-left .rw-ere-warning-box ul,
.rw-ere-calculator .rw-ere-step-one-main-left .rw-ere-warning-box li {
  color: var(--rw-ere-primary);
}

.rw-ere-calculator .rw-ere-step-one-main-right .rw-ere-intro-summary {
  margin-top: 0;
  max-width: none;
  padding: 24px;
}

.rw-ere-calculator .rw-ere-step-one-main-right .rw-ere-intro-summary-cards {
  grid-template-columns: 1fr;
  gap: 14px;
}

.rw-ere-calculator .rw-ere-step-one-main-right .rw-ere-intro-summary-card {
  min-height: 100px;
}

.rw-ere-calculator .rw-ere-step-one-main-right .rw-ere-intro-summary-label-title,
.rw-ere-calculator .rw-ere-step-one-main-right .rw-ere-intro-summary-label-text {
  display: inline;
}

.rw-ere-calculator .rw-ere-step-one-main-right .rw-ere-intro-summary-label-title {
  margin-right: 4px;
}

.rw-ere-calculator .rw-ere-step-one-main-right .rw-ere-step-one-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.rw-ere-calculator .rw-ere-step-one-main-right .rw-ere-step-one-metric {
  border-radius: 16px;
  background: #5B5DB9;
  padding: 12px 16px;
  text-align: center;
}

.rw-ere-calculator .rw-ere-step-one-main-right .rw-ere-step-one-metric p {
  margin: 0 0 6px;
  color: #f5f7ff;
  font-size: 12px;
  line-height: 150%;
}

.rw-ere-calculator .rw-ere-step-one-main-right .rw-ere-step-one-metric h6 {
  margin: 0;
  color: #f5f7ff;
}

.rw-ere-calculator .rw-ere-step-one-main-right .rw-ere-step-one-disclaimer {
  margin: 18px 0 0;
  max-width: none;
  color: rgba(50, 53, 168, 0.5);
  text-align: left;
  font-size: 14px;
  line-height: 150%;
  font-style: italic;
}

.rw-ere-calculator .rw-ere-step-one-divider-bottom {
  background: var(--rw-ere-neutral);
}

.rw-ere-calculator .rw-ere-step-one .rw-ere-nav-row {
  display: flex;
  justify-content: space-between;
  margin-top: 0;
}

.rw-ere-calculator .rw-ere-step-one .rw-ere-nav-row .rw-ere-back {
  display: inline-flex;
}

.rw-ere-calculator .rw-ere-step-one .rw-ere-nav-row .rw-ere-back,
.rw-ere-calculator .rw-ere-step-one .rw-ere-nav-row .rw-ere-next {
  width: auto;
  min-width: 160px;
  background: var(--rw-ere-accent);
  border-color: var(--rw-ere-accent);
  border-radius: 999px;
}

.rw-ere-calculator .rw-ere-step-one .rw-ere-nav-row .rw-ere-back:hover,
.rw-ere-calculator .rw-ere-step-one .rw-ere-nav-row .rw-ere-next:hover {
  background: var(--rw-ere-accent-hover);
  border-color: var(--rw-ere-accent-hover);
  color: #ffffff;
}

.rw-ere-calculator .rw-ere-step-subtitle {
  margin: -16px 0 0;
  color: #000;
  text-align: center;
  font-style: normal;
}

.rw-ere-calculator .rw-ere-step-two .rw-ere-step-title {
  margin-top: 6px;
}

.rw-ere-calculator .rw-ere-step-two .rw-ere-step-shell {
  gap: 24px;
}

.rw-ere-calculator .rw-ere-step-two-form {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
}

.rw-ere-calculator .rw-ere-step-two-form h4 {
  margin: 0 0 18px;
  text-align: center;
  color: #000;
  font-style: normal;
}

.rw-ere-calculator .rw-ere-step-two-form h6 {
  margin: 0 0 18px;
  text-align: center;
  color: var(--rw-ere-primary);
  font-style: normal;
}

.rw-ere-calculator .rw-ere-not-applicable {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.rw-ere-calculator .rw-ere-step-two-form .rw-ere-not-applicable {
  font-weight: 400;
}

.rw-ere-calculator .rw-ere-not-applicable input[type='checkbox'] {
  appearance: none;
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border: 1px solid #000;
  background: #fff;
  margin: 0;
  position: relative;
  cursor: pointer;
}

.rw-ere-calculator .rw-ere-not-applicable input[type='checkbox']::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: var(--rw-ere-primary);
  opacity: 0;
}

.rw-ere-calculator .rw-ere-not-applicable input[type='checkbox']:checked::after {
  opacity: 1;
}

.rw-ere-calculator .rw-ere-optional-content {
  transition: all 0.3s ease;
}

.rw-ere-calculator .rw-ere-step-two-form.rw-ere-is-not-applicable .rw-ere-optional-content,
.rw-ere-calculator .rw-ere-step-three-form.rw-ere-is-not-applicable .rw-ere-optional-content {
  margin-top: 8px;
  padding: 14px;
  border: 1px solid var(--rw-ere-neutral);
  background: #fff;
  opacity: 0.3;
}

.rw-ere-calculator .rw-ere-step-two-form label {
  margin: 10px 0 8px;
  color: var(--rw-ere-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

.rw-ere-calculator .rw-ere-step-two-form input[type='number'] {
  background: #fff;
  border: 1px solid var(--rw-ere-neutral);
  color: var(--rw-ere-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  min-height: 46px;
  padding: 10px 17px 10px 18px;
}

.rw-ere-calculator .rw-ere-step-two-slider-wrap {
  margin-top: 18px;
  position: relative;
  padding-bottom: 54px;
}

.rw-ere-calculator .rw-ere-step-two-range-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 8px;
}

.rw-ere-calculator .rw-ere-step-two-range-head span {
  color: var(--rw-ere-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.rw-ere-calculator .rw-ere-step-two-form input[type='range'] {
  width: 100%;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
}

.rw-ere-calculator .rw-ere-step-two-form input[type='range']::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: var(--rw-ere-primary);
}

.rw-ere-calculator .rw-ere-step-two-form input[type='range']::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: var(--rw-ere-primary);
}

.rw-ere-calculator .rw-ere-step-two-form input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f1f4f4;
  border: 2px solid var(--rw-ere-primary);
  margin-top: -5px;
}

.rw-ere-calculator .rw-ere-step-two-form input[type='range']::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f1f4f4;
  border: 2px solid var(--rw-ere-primary);
}

.rw-ere-calculator .rw-ere-step-two-slider-value {
  margin: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateX(-50%);
  color: var(--rw-ere-primary);
  text-align: center;
  font-style: normal;
  pointer-events: none;
  white-space: nowrap;
}

.rw-ere-calculator .rw-ere-step-two-slider-value span {
  font: inherit;
}

.rw-ere-calculator .rw-ere-step-two-total {
  margin-top: 16px;
}

.rw-ere-calculator .rw-ere-step-two-total > span {
  display: block;
  color: var(--rw-ere-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.rw-ere-calculator .rw-ere-step-two-total strong {
  display: block;
  margin-top: 4px;
  color: var(--rw-ere-primary);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  white-space: nowrap;
}

.rw-ere-calculator .rw-ere-step-two-total strong span {
  display: inline;
  font: inherit;
  white-space: inherit;
}

.rw-ere-calculator .rw-ere-step-two .rw-ere-step-progress-label-active {
  color: var(--rw-ere-primary);
}

.rw-ere-calculator .rw-ere-step-two .rw-ere-step-two-shell {
  align-items: stretch;
  gap: 26px;
}

.rw-ere-calculator .rw-ere-step-two-main {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 48%);
  gap: 48px;
  align-items: start;
}

.rw-ere-calculator .rw-ere-step-two-main-left,
.rw-ere-calculator .rw-ere-step-two-main-right {
  min-width: 0;
}

.rw-ere-calculator .rw-ere-step-two-main-left .rw-ere-step-title {
  margin-top: 24px;
  color: var(--rw-ere-primary);
  text-align: center;
}

.rw-ere-calculator .rw-ere-step-two-main-left .rw-ere-step-subtitle {
  margin-top: 6px;
  color: var(--rw-ere-primary);
  text-align: center;
}

.rw-ere-calculator .rw-ere-step-two-main-left .rw-ere-step-divider {
  margin: 24px 0;
  background: var(--rw-ere-neutral);
}

.rw-ere-calculator .rw-ere-step-two-main-right .rw-ere-intro-summary {
  margin-top: 0;
  max-width: none;
  padding: 24px;
}

.rw-ere-calculator .rw-ere-step-two-main-right .rw-ere-intro-summary-cards {
  grid-template-columns: 1fr;
  gap: 14px;
}

.rw-ere-calculator .rw-ere-step-two-main-right .rw-ere-intro-summary-card {
  min-height: 100px;
}

.rw-ere-calculator .rw-ere-step-two-main-right .rw-ere-intro-summary-label-title,
.rw-ere-calculator .rw-ere-step-two-main-right .rw-ere-intro-summary-label-text {
  display: inline;
}

.rw-ere-calculator .rw-ere-step-two-main-right .rw-ere-intro-summary-label-title {
  margin-right: 4px;
}

.rw-ere-calculator .rw-ere-step-two-main-right .rw-ere-step-two-disclaimer {
  margin: 18px 0 0;
  max-width: none;
  color: rgba(50, 53, 168, 0.5);
  text-align: left;
  font-size: 14px;
  line-height: 150%;
  font-style: italic;
}

.rw-ere-calculator .rw-ere-step-two-divider-bottom {
  background: var(--rw-ere-neutral);
}

.rw-ere-calculator .rw-ere-step-two .rw-ere-nav-row {
  display: flex;
  justify-content: space-between;
  margin-top: 0;
}

.rw-ere-calculator .rw-ere-step-two .rw-ere-nav-row .rw-ere-back {
  display: inline-flex;
}

.rw-ere-calculator .rw-ere-step-two .rw-ere-nav-row .rw-ere-back,
.rw-ere-calculator .rw-ere-step-two .rw-ere-nav-row .rw-ere-next {
  width: auto;
  min-width: 160px;
  background: var(--rw-ere-accent);
  border-color: var(--rw-ere-accent);
  border-radius: 999px;
}

.rw-ere-calculator .rw-ere-step-two .rw-ere-nav-row .rw-ere-back:hover,
.rw-ere-calculator .rw-ere-step-two .rw-ere-nav-row .rw-ere-next:hover {
  background: var(--rw-ere-accent-hover);
  border-color: var(--rw-ere-accent-hover);
  color: #ffffff;
}

.rw-ere-calculator .rw-ere-step-three .rw-ere-step-title {
  margin-top: 6px;
}

.rw-ere-calculator .rw-ere-step-three .rw-ere-step-shell {
  gap: 24px;
}

.rw-ere-calculator .rw-ere-step-three-form {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
}

.rw-ere-calculator .rw-ere-step-three-form h4 {
  margin: 0 0 18px;
  text-align: center;
  color: #000;
  font-style: normal;
}

.rw-ere-calculator .rw-ere-step-three-form label {
  margin: 30px 0 10px 0;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

.rw-ere-calculator .rw-ere-step-three-form input[type='number'] {
  background: #fff;
  border: 1px solid var(--rw-ere-neutral);
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  min-height: 46px;
  padding: 10px 17px 10px 18px;
}

.rw-ere-calculator .rw-ere-step-three-slider-wrap {
  margin-top: 6px;
  position: relative;
  padding-bottom: 28px;
}

.rw-ere-calculator .rw-ere-step-three-range-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 8px;
}

.rw-ere-calculator .rw-ere-step-three-range-head span {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.rw-ere-calculator .rw-ere-step-three-form input[type='range'] {
  width: 100%;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
}

.rw-ere-calculator .rw-ere-step-three-form input[type='range']::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 999px;
  background: #000;
}

.rw-ere-calculator .rw-ere-step-three-form input[type='range']::-moz-range-track {
  height: 5px;
  border-radius: 999px;
  background: #000;
}

.rw-ere-calculator .rw-ere-step-three-form input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f1f4f4;
  border: 2px solid #000;
  margin-top: -5px;
}

.rw-ere-calculator .rw-ere-step-three-form input[type='range']::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f1f4f4;
  border: 2px solid #000;
}

.rw-ere-calculator .rw-ere-step-three-slider-value {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateX(-50%);
  margin: 0;
  color: #000;
  text-align: center;
  font-style: normal;
  pointer-events: none;
  white-space: nowrap;
}

.rw-ere-calculator .rw-ere-step-three-results {
  margin-top: 20px;
}

.rw-ere-calculator .rw-ere-step-three-result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 8px;
}

.rw-ere-calculator .rw-ere-step-three-result-row:last-child {
  margin-bottom: 0;
}

.rw-ere-calculator .rw-ere-step-three-result-row span,
.rw-ere-calculator .rw-ere-step-three-result-row strong {
  color: #000;
  font-size: 16px;
  font-style: normal;
  line-height: 150%;
}

.rw-ere-calculator .rw-ere-step-three-result-row span {
  font-weight: 400;
}

.rw-ere-calculator .rw-ere-step-three-result-row strong {
  text-align: right;
  font-weight: 600;
}

.rw-ere-calculator .rw-ere-step-three-result-row-total span,
.rw-ere-calculator .rw-ere-step-three-result-row-total strong {
  font-weight: 700;
}

.rw-ere-calculator .rw-ere-step-three .rw-ere-step-divider {
  margin: 30px 0;
}

.rw-ere-calculator .rw-ere-step-three .rw-ere-nav-row {
  width: 100%;
  align-self: stretch;
}

.rw-ere-calculator .rw-ere-step-three-next {
  width: 100%;
  min-width: 100%;
  border: 1px solid #000;
  border-radius: 0;
  background: #000;
  color: #f1f4f4;
}

.rw-ere-calculator .rw-ere-step-three-next:hover {
  background: #000;
  border-color: #000;
  color: #f1f4f4;
}

.rw-ere-calculator .rw-ere-step-three .rw-ere-step-progress-label-active {
  color: var(--rw-ere-primary);
}

.rw-ere-calculator .rw-ere-step-three .rw-ere-step-three-shell {
  align-items: stretch;
  gap: 26px;
}

.rw-ere-calculator .rw-ere-step-three-main {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 48%);
  gap: 48px;
  align-items: start;
}

.rw-ere-calculator .rw-ere-step-three-main-left,
.rw-ere-calculator .rw-ere-step-three-main-right {
  min-width: 0;
}

.rw-ere-calculator .rw-ere-step-three-main-left .rw-ere-step-title {
  margin-top: 24px;
  color: var(--rw-ere-primary);
  text-align: center;
}

.rw-ere-calculator .rw-ere-step-three-main-left .rw-ere-step-subtitle {
  margin-top: 6px;
  color: var(--rw-ere-primary);
  text-align: center;
}

.rw-ere-calculator .rw-ere-step-three-main-left .rw-ere-step-divider {
  margin: 24px 0;
  background: var(--rw-ere-neutral);
}

.rw-ere-calculator .rw-ere-step-three-form h6 {
  margin: 0 0 18px;
  text-align: center;
  color: var(--rw-ere-primary);
  font-style: normal;
}

.rw-ere-calculator .rw-ere-step-three-form .rw-ere-not-applicable {
  font-weight: 400;
  color: var(--rw-ere-primary);
}

.rw-ere-calculator .rw-ere-step-three-form label {
  margin: 16px 0 8px;
  color: var(--rw-ere-primary);
}

.rw-ere-calculator .rw-ere-step-three-range-head span,
.rw-ere-calculator .rw-ere-step-three-slider-value {
  color: var(--rw-ere-primary);
}

.rw-ere-calculator .rw-ere-step-three-form input[type='range']::-webkit-slider-runnable-track {
  background: var(--rw-ere-primary) !important;
}

.rw-ere-calculator .rw-ere-step-three-form input[type='range']::-moz-range-track {
  background: var(--rw-ere-primary) !important;
}

.rw-ere-calculator .rw-ere-step-three-form input[type='range']::-webkit-slider-thumb {
  border-color: var(--rw-ere-primary) !important;
}

.rw-ere-calculator .rw-ere-step-three-form input[type='range']::-moz-range-thumb {
  border-color: var(--rw-ere-primary) !important;
}

.rw-ere-calculator .rw-ere-step-three-results {
  margin-top: 0;
}

.rw-ere-calculator .rw-ere-step-three-result-row span,
.rw-ere-calculator .rw-ere-step-three-result-row strong {
  color: var(--rw-ere-primary);
}

.rw-ere-calculator .rw-ere-step-three-main-right .rw-ere-intro-summary {
  margin-top: 0;
  max-width: none;
  padding: 24px;
}

.rw-ere-calculator .rw-ere-step-three-main-right .rw-ere-intro-summary-cards {
  grid-template-columns: 1fr;
  gap: 14px;
}

.rw-ere-calculator .rw-ere-step-three-main-right .rw-ere-intro-summary-card {
  min-height: 100px;
}

.rw-ere-calculator .rw-ere-step-three-main-right .rw-ere-intro-summary-label-title,
.rw-ere-calculator .rw-ere-step-three-main-right .rw-ere-intro-summary-label-text {
  display: inline;
}

.rw-ere-calculator .rw-ere-step-three-main-right .rw-ere-intro-summary-label-title {
  margin-right: 4px;
}

.rw-ere-calculator .rw-ere-step-three-main-right .rw-ere-step-three-disclaimer {
  margin: 18px 0 0;
  max-width: none;
  color: rgba(50, 53, 168, 0.5);
  text-align: left;
  font-size: 14px;
  line-height: 150%;
  font-style: italic;
}

.rw-ere-calculator .rw-ere-step-three-divider-bottom {
  background: var(--rw-ere-neutral);
}

.rw-ere-calculator .rw-ere-step-three .rw-ere-nav-row {
  display: flex;
  justify-content: space-between;
  margin-top: 0;
}

.rw-ere-calculator .rw-ere-step-three .rw-ere-nav-row .rw-ere-back {
  display: inline-flex;
}

.rw-ere-calculator .rw-ere-step-three .rw-ere-nav-row .rw-ere-back,
.rw-ere-calculator .rw-ere-step-three .rw-ere-nav-row .rw-ere-next {
  width: auto;
  min-width: 160px;
  background: var(--rw-ere-accent);
  border-color: var(--rw-ere-accent);
  border-radius: 999px;
}

.rw-ere-calculator .rw-ere-step-three .rw-ere-nav-row .rw-ere-back:hover,
.rw-ere-calculator .rw-ere-step-three .rw-ere-nav-row .rw-ere-next:hover {
  background: var(--rw-ere-accent-hover);
  border-color: var(--rw-ere-accent-hover);
  color: #ffffff;
}

.rw-ere-calculator .rw-ere-step-contact .rw-ere-step-progress-label-active {
  color: var(--rw-ere-primary);
}

.rw-ere-calculator .rw-ere-step-contact .rw-ere-step-contact-shell {
  align-items: stretch;
  gap: 26px;
}

.rw-ere-calculator .rw-ere-step-contact-main {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 48%);
  gap: 48px;
  align-items: start;
}

.rw-ere-calculator .rw-ere-step-contact-main-left,
.rw-ere-calculator .rw-ere-step-contact-main-right {
  min-width: 0;
}

.rw-ere-calculator .rw-ere-step-contact-main-left .rw-ere-step-title {
  margin-top: 24px;
  color: var(--rw-ere-primary);
  text-align: center;
}

.rw-ere-calculator .rw-ere-step-contact-main-left .rw-ere-step-subtitle {
  margin-top: 6px;
  color: var(--rw-ere-primary);
  text-align: center;
}

.rw-ere-calculator .rw-ere-step-contact-main-left .rw-ere-step-divider {
  margin: 24px 0;
  background: var(--rw-ere-neutral);
}

.rw-ere-calculator .rw-ere-step-contact .rw-ere-contact-form {
  width: 100%;
  max-width: none;
  align-self: stretch;
  border: 0;
  padding: 0;
  background: transparent;
}

.rw-ere-calculator .rw-ere-step-contact .rw-ere-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.rw-ere-calculator .rw-ere-step-contact .rw-ere-contact-form label {
  display: block;
  margin: 10px 0 8px;
  color: var(--rw-ere-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

.rw-ere-calculator .rw-ere-step-contact .rw-ere-contact-form > label,
.rw-ere-calculator .rw-ere-step-contact .rw-ere-contact-form > input[type='url'],
.rw-ere-calculator .rw-ere-step-contact .rw-ere-contact-form > input[type='tel'],
.rw-ere-calculator .rw-ere-step-contact .rw-ere-contact-form > input[type='email'] {
  width: 100%;
}

.rw-ere-calculator .rw-ere-step-contact .rw-ere-contact-form input[type='text'],
.rw-ere-calculator .rw-ere-step-contact .rw-ere-contact-form input[type='url'],
.rw-ere-calculator .rw-ere-step-contact .rw-ere-contact-form input[type='tel'],
.rw-ere-calculator .rw-ere-step-contact .rw-ere-contact-form input[type='email'] {
  display: block;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid var(--rw-ere-neutral);
  border-radius: 10px;
  color: var(--rw-ere-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  min-height: 46px;
  padding: 10px 17px 10px 18px;
}

.rw-ere-calculator .rw-ere-step-contact-main-right .rw-ere-intro-summary {
  margin-top: 0;
  max-width: none;
  padding: 24px;
}

.rw-ere-calculator .rw-ere-step-contact-main-right .rw-ere-intro-summary-cards {
  grid-template-columns: 1fr;
  gap: 14px;
}

.rw-ere-calculator .rw-ere-step-contact-main-right .rw-ere-intro-summary-card {
  min-height: 100px;
}

.rw-ere-calculator .rw-ere-step-contact-main-right .rw-ere-intro-summary-label-title,
.rw-ere-calculator .rw-ere-step-contact-main-right .rw-ere-intro-summary-label-text {
  display: inline;
}

.rw-ere-calculator .rw-ere-step-contact-main-right .rw-ere-intro-summary-label-title {
  margin-right: 4px;
}

.rw-ere-calculator .rw-ere-step-contact-main-right .rw-ere-step-contact-disclaimer {
  margin: 18px 0 0;
  max-width: none;
  color: rgba(50, 53, 168, 0.5);
  text-align: left;
  font-size: 14px;
  line-height: 150%;
  font-style: italic;
}

.rw-ere-calculator .rw-ere-step-contact-divider-bottom {
  background: var(--rw-ere-neutral);
}

.rw-ere-calculator .rw-ere-step-contact .rw-ere-nav-row {
  display: flex;
  justify-content: space-between;
  margin-top: 0;
}

.rw-ere-calculator .rw-ere-step-contact .rw-ere-nav-row .rw-ere-back {
  display: inline-flex;
}

.rw-ere-calculator .rw-ere-step-contact .rw-ere-nav-row .rw-ere-back,
.rw-ere-calculator .rw-ere-step-contact .rw-ere-nav-row .rw-ere-next {
  width: auto;
  min-width: 160px;
  background: var(--rw-ere-accent);
  border-color: var(--rw-ere-accent);
  border-radius: 999px;
}

.rw-ere-calculator .rw-ere-step-contact .rw-ere-nav-row .rw-ere-back:hover,
.rw-ere-calculator .rw-ere-step-contact .rw-ere-nav-row .rw-ere-next:hover {
  background: var(--rw-ere-accent-hover);
  border-color: var(--rw-ere-accent-hover);
  color: #ffffff;
}

.rw-ere-calculator .rw-ere-step-one .rw-ere-nav-row .rw-ere-back,
.rw-ere-calculator .rw-ere-step-two .rw-ere-nav-row .rw-ere-back,
.rw-ere-calculator .rw-ere-step-three .rw-ere-nav-row .rw-ere-back,
.rw-ere-calculator .rw-ere-step-contact .rw-ere-nav-row .rw-ere-back {
  background: #ffffff;
  border: 1px solid var(--rw-ere-primary);
  color: var(--rw-ere-primary);
}

.rw-ere-calculator .rw-ere-step-one .rw-ere-nav-row .rw-ere-back:hover,
.rw-ere-calculator .rw-ere-step-two .rw-ere-nav-row .rw-ere-back:hover,
.rw-ere-calculator .rw-ere-step-three .rw-ere-nav-row .rw-ere-back:hover,
.rw-ere-calculator .rw-ere-step-one .rw-ere-nav-row .rw-ere-back:focus,
.rw-ere-calculator .rw-ere-step-two .rw-ere-nav-row .rw-ere-back:focus,
.rw-ere-calculator .rw-ere-step-three .rw-ere-nav-row .rw-ere-back:focus,
.rw-ere-calculator .rw-ere-step-one .rw-ere-nav-row .rw-ere-back:focus-visible,
.rw-ere-calculator .rw-ere-step-two .rw-ere-nav-row .rw-ere-back:focus-visible,
.rw-ere-calculator .rw-ere-step-three .rw-ere-nav-row .rw-ere-back:focus-visible,
.rw-ere-calculator .rw-ere-step-one .rw-ere-nav-row .rw-ere-back:active,
.rw-ere-calculator .rw-ere-step-two .rw-ere-nav-row .rw-ere-back:active,
.rw-ere-calculator .rw-ere-step-three .rw-ere-nav-row .rw-ere-back:active,
.rw-ere-calculator .rw-ere-step-contact .rw-ere-nav-row .rw-ere-back:focus,
.rw-ere-calculator .rw-ere-step-contact .rw-ere-nav-row .rw-ere-back:focus-visible,
.rw-ere-calculator .rw-ere-step-contact .rw-ere-nav-row .rw-ere-back:active,
.rw-ere-calculator .rw-ere-step-contact .rw-ere-nav-row .rw-ere-back:hover {
  background: var(--rw-ere-primary) !important;
  border-color: var(--rw-ere-primary) !important;
  color: #ffffff !important;
}

.rw-ere-calculator .rw-ere-step-result .rw-ere-result-shell {
  gap: 22px;
  align-items: center;
}

.rw-ere-calculator .rw-ere-step-result .rw-ere-step-title {
  color: var(--rw-ere-primary);
  text-align: center;
}

.rw-ere-calculator .rw-ere-result-summary {
  margin-top: 0;
}

.rw-ere-calculator .rw-ere-result-total {
  margin-top: 2px;
  text-align: center;
}

.rw-ere-calculator .rw-ere-result-total p {
  margin: 0 0 8px 0;
  color: var(--rw-ere-primary);
  text-align: center;
  font-style: normal;
}

.rw-ere-calculator .rw-ere-result-total strong {
  color: var(--rw-ere-primary);
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  white-space: nowrap;
}

.rw-ere-calculator .rw-ere-result-total strong span {
  font: inherit;
}

.rw-ere-calculator .rw-ere-result-disclaimer {
  margin-top: 8px;
  text-align: left;
}

.rw-ere-calculator .rw-ere-result-divider {
  background: var(--rw-ere-neutral);
}

.rw-ere-calculator .rw-ere-result-mail-text {
  margin: 0;
  color: var(--rw-ere-primary);
  text-align: center;
  font-weight: 600;
}

.rw-ere-calculator .rw-ere-result-cta {
  width: 100%;
  border-radius: 999px;
  border-color: var(--rw-ere-accent);
  background: var(--rw-ere-accent);
  color: #f1f4f4;
}

.rw-ere-calculator .rw-ere-result-cta:hover {
  border-color: var(--rw-ere-accent-hover);
  background: var(--rw-ere-accent-hover);
  color: #ffffff;
}

.rw-ere-calculator .rw-ere-result-cta.rw-ere-btn-loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.rw-ere-calculator .rw-ere-result-cta.rw-ere-btn-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(0, 0, 0, 0.35);
  border-top-color: #000;
  border-radius: 50%;
  animation: rw-ere-spin 0.7s linear infinite;
}

.rw-ere-calculator .rw-ere-result-sub {
  margin: -4px 0 0;
  color: var(--rw-ere-primary);
  opacity: 1;
  text-align: center;
  font-style: italic;
}

.rw-ere-calculator .rw-ere-submit-feedback {
  margin: 0;
  min-height: 22px;
  color: #111827;
  text-align: center;
  font-style: normal;
  opacity: 0;
  transition: all 0.3s ease;
}

.rw-ere-calculator .rw-ere-submit-feedback-visible {
  opacity: 1;
}

.rw-ere-calculator .rw-ere-submit-feedback-error {
  color: #b91c1c;
}

@keyframes rw-ere-spin {
  to {
    transform: rotate(360deg);
  }
}

.rw-ere-calculator .rw-ere-step-submitted .rw-ere-step-shell {
  gap: 24px;
}

.rw-ere-calculator .rw-ere-step-submitted .rw-ere-step-line {
  background: #000;
}

.rw-ere-calculator .rw-ere-step-submitted-text {
  margin: 0;
  max-width: 620px;
  color: #000;
  text-align: center;
  font-style: normal;
}

.rw-ere-calculator .rw-ere-step-submitted .rw-ere-nav-row {
  width: 100%;
}

.rw-ere-calculator .rw-ere-step-submitted-btn {
  width: 100%;
  border: 1px solid #000;
  border-radius: 0;
  background: #000;
  color: #f1f4f4;
}

.rw-ere-calculator .rw-ere-step-submitted-btn:hover {
  background: #000;
  border-color: #000;
  color: #f1f4f4;
}

@media (max-width: 1024px) {
  .rw-ere-calculator .rw-ere-intro-inner {
    padding: 28px 24px;
    gap: 20px;
  }

  .rw-ere-calculator .rw-ere-step-one-main,
  .rw-ere-calculator .rw-ere-step-two-main,
  .rw-ere-calculator .rw-ere-step-three-main,
  .rw-ere-calculator .rw-ere-step-contact-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .rw-ere-calculator .rw-ere-step-one-main-right .rw-ere-step-one-disclaimer,
  .rw-ere-calculator .rw-ere-step-two-main-right .rw-ere-step-two-disclaimer,
  .rw-ere-calculator .rw-ere-step-three-main-right .rw-ere-step-three-disclaimer,
  .rw-ere-calculator .rw-ere-step-contact-main-right .rw-ere-step-contact-disclaimer,
  .rw-ere-calculator .rw-ere-result-disclaimer {
    text-align: center;
  }

  .rw-ere-calculator .rw-ere-result-shell {
    gap: 20px;
  }

  .rw-ere-calculator .rw-ere-result-total strong {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .rw-ere-calculator .rw-ere-intro-inner {
    padding: 20px 16px;
    gap: 18px;
  }

  .rw-ere-calculator .rw-ere-intro-progress {
    grid-template-columns: 40px 68px 40px 68px 40px;
  }

  .rw-ere-calculator .rw-ere-intro-progress-labels {
    grid-template-columns: 40px 68px 40px 68px 40px;
  }

  .rw-ere-calculator .rw-ere-intro-dot {
    width: 40px;
    height: 40px;
  }

  .rw-ere-calculator .rw-ere-intro-progress-labels p {
    width: 88px;
    max-width: 88px;
    font-size: 13px;
  }

  .rw-ere-calculator .rw-ere-intro-summary {
    padding: 20px 12px 16px;
  }

  .rw-ere-calculator .rw-ere-intro-summary-title {
    margin-bottom: 14px;
  }

  .rw-ere-calculator .rw-ere-intro-summary-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .rw-ere-calculator .rw-ere-intro-summary-card {
    border-radius: 14px;
    padding: 14px 12px 12px;
  }

  .rw-ere-calculator .rw-ere-intro-button {
    width: 100%;
    max-width: 311px;
  }

  .rw-ere-calculator .rw-ere-step-one .rw-ere-nav-row,
  .rw-ere-calculator .rw-ere-step-two .rw-ere-nav-row,
  .rw-ere-calculator .rw-ere-step-three .rw-ere-nav-row,
  .rw-ere-calculator .rw-ere-step-contact .rw-ere-nav-row {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .rw-ere-calculator .rw-ere-step-one .rw-ere-nav-row .rw-ere-back,
  .rw-ere-calculator .rw-ere-step-one .rw-ere-nav-row .rw-ere-next,
  .rw-ere-calculator .rw-ere-step-two .rw-ere-nav-row .rw-ere-back,
  .rw-ere-calculator .rw-ere-step-two .rw-ere-nav-row .rw-ere-next,
  .rw-ere-calculator .rw-ere-step-three .rw-ere-nav-row .rw-ere-back,
  .rw-ere-calculator .rw-ere-step-three .rw-ere-nav-row .rw-ere-next,
  .rw-ere-calculator .rw-ere-step-contact .rw-ere-nav-row .rw-ere-back,
  .rw-ere-calculator .rw-ere-step-contact .rw-ere-nav-row .rw-ere-next {
    width: 100%;
    min-width: 100%;
  }

  .rw-ere-calculator .rw-ere-step-three-result-row {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .rw-ere-calculator .rw-ere-step-three-result-row strong {
    text-align: left;
  }

  .rw-ere-calculator .rw-ere-contact-grid {
    grid-template-columns: 1fr;
  }

  .rw-ere-calculator .rw-ere-step-one-main-right .rw-ere-step-one-metrics {
    grid-template-columns: 1fr;
  }

  .rw-ere-calculator .rw-ere-result-total strong {
    font-size: 36px;
    white-space: normal;
  }
}
