.calc {
  display: grid;
  grid-template-columns: 60% 40%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--pink)
}

.calc-left {
  background: var(--pinkbg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 26px
}

.calc-right {
  background: linear-gradient(90deg, var(--magenta), var(--maroon));
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  color: #fff
}

.step-lbl {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 11px
}

.chips {
  display: flex;
  gap: 11px;
  flex-wrap: wrap
}

.chip {
  border-radius: 12px;
  padding: 15px 18px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  line-height: 1.1;
  user-select: none;
}

.chip.on {
  background: var(--maroon);
  color: #fff
}

.chip.off {
  background: #fff;
  color: var(--pink)
}

.step-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px
}

.area-val {
  font-size: 20px;
  font-weight: 700;
  color: var(--maroon)
}

.rtypes {
  display: flex;
  gap: 11px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}

.rtypes.dragging {
  cursor: grabbing;
}

.rtypes::-webkit-scrollbar {
  display: none;
}

.rtype {
  width: 150px;
  flex: none;
  border-radius: 14px;
  border: 2px solid transparent;
  background: var(--maroon);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.rtype:hover {
  border-color: var(--magenta);
}

.rtype.on {
  border-color: var(--magenta);
  background-color: #3a0020;
}

.rtype .thumb {
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center
}

.rtype .thumb .rtimg {
  display: block;
  height: 75px;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 2px
}

.rti-ceramic {
  background-image: url('../img/tile-ceramic.png')
}

.rti-cool {
  background-image: url('../img/tile-cool.png')
}

.rtype .rt-lbl {
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
  text-align: center
}

.est-block {
  padding-bottom: 0
}

.est-block .k {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -.02em;
  margin: 0 0 10px
}

.est-block .v {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0
}

.est-h {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -.02em;
  margin: 0
}

.near {
  background: #270013;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.near .k {
  font-size: 16px;
  margin: 0
}

.near .loc {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.02em
}

.near .loc svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none
}

.calc-note {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -.02em;
  margin: 10px 0;
}

.rrange {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 53px;
  background: linear-gradient(90deg, var(--maroon) var(--pct, 90%), #fff var(--pct, 90%));
  outline: none;
  margin: 8px 0 0;
  cursor: pointer
}

.rrange::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #fefeff 0 40%, var(--maroon) 43% 100%);
  box-shadow: 0 1px 10px rgba(48, 48, 48, .58);
  cursor: pointer
}

.rrange::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: radial-gradient(circle at center, #fefeff 0 40%, var(--maroon) 43% 100%);
  box-shadow: 0 1px 10px rgba(48, 48, 48, .58);
  cursor: pointer
}

.fselect {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  outline: none;
  padding: 0 40px 0 27px;
  font-family: inherit;
  font-size: 14px;
  color: var(--maroon);
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}