/* quotes.css (FULL UPDATED FILE) */

/* =========================================================
   QUOTE PAGE
   ========================================================= */

*{ box-sizing: border-box; }

.quotePage{
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(800px 260px at 50% -100px,
      rgba(var(--brand-rgb), .12),
      rgba(var(--brand-rgb), 0)
    ),
    var(--bg);
  overflow-x: hidden;
}

/* =========================================================
   BACKGROUND SHOVEL PATTERN
   ========================================================= */

.quotePage::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url("/images/newShovel.png");
  background-size: 160px auto;
  background-repeat: repeat;
  background-position: center 30px;
  background-origin: content-box;
  padding-top: 40px;
  pointer-events:none;
  z-index: 1;
}

.quoteShell{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

/* =========================================================
   LOGO BACKPLATE
   ========================================================= */

.quoteBrand{
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  padding: 14px 18px 28px;
}

.quoteBrand::before{
  content:"";
  position:absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(680px, 92vw);
  height: 162px;
  background: var(--brand);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  pointer-events:none;
}

.quoteBrand img{
  position: relative;
  z-index: 1;
  width: 420px;
  max-width: 70%;
  height: auto;
  filter:
    drop-shadow(0 10px 18px rgba(0,0,0,.10))
    drop-shadow(0 2px 0 rgba(255,255,255,.45));
}

/* =========================================================
   CARD
   ========================================================= */

.quoteCard{
  width: 100%;
  max-width: 680px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  overflow: visible;
  border: 1px solid rgba(0,0,0,.06);
}

/* =========================================================
   HEADER
   ========================================================= */

.quoteTop{
  background: var(--brand);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
}

.quoteTop::after{
  content:"";
  position:absolute;
  bottom:-8px;
  left:0;
  right:0;
  height:16px;
  background: linear-gradient(to bottom, rgba(0,0,0,.12), rgba(0,0,0,0));
  opacity:.25;
  pointer-events:none;
}

.quoteTop h1{
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 950;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow:
    -1.5px -1.5px 0 #3D5A78,
     1.5px -1.5px 0 #3D5A78,
    -1.5px  1.5px 0 #3D5A78,
     1.5px  1.5px 0 #3D5A78;
}

.quoteSub{
  margin: 0;
  font-size: 15px;
  font-weight: 650;
  color: rgba(255,255,255,.9);
}

/* =========================================================
   BONUS STRIP
   ========================================================= */

.quoteBonus{
  display:flex;
  justify-content:center;
  padding: 22px 20px 10px;
  background: #ffffff;
}

.quoteBonusBox{
  width: 100%;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  background: rgba(var(--brand-rgb), 0.15);
  border: 3px solid var(--brand);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

.quoteBonusBox::before{
  content:"";
  position:absolute;
  opacity: 0;
}

.quoteBonusIcon{
  font-size: 25px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--brand);
  flex: 0 0 auto;
}

.quoteBonusHeadline{
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(15,15,15,.90);
  line-height: 1.15;
  text-align: center;
  flex: 1;
}

.quoteBonusStrong{
  font-weight: 950;
}

/* =========================================================
   FORM (Quote Form)
   ========================================================= */

.quoteForm{
  padding: 26px 28px 26px;
  display: grid;
  gap: 22px;
  transition: opacity .18s ease;
}

.formRow{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quoteForm .formRow > label{
  font-size: 13px;
  font-weight: 800;
  color: black;
  margin-bottom: 4px;
  text-align: left;
}

/* =========================================================
   ZIP VERIFICATION STATUS
   ========================================================= */

#quoteZipStatus{
  margin-top: 4px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  background: rgba(15,15,15,.04);
  border: 1px solid rgba(15,15,15,.08);
  color: rgba(45,46,46,.72);
}

/* =========================================================
   LOCKED / PRE-VERIFICATION STATE

   KEY FIX: tc-range-slider is excluded from the opacity/filter
   rule. The dog head and shovel PNGs rendered at 0.48 opacity
   on a white background become nearly invisible. Instead, slider
   rows are blocked via pointer-events on the .formRow — the
   sliders remain fully visible but uninteractable.
   ========================================================= */

/* Dim standard locked fields — tc-range-slider intentionally excluded */
.quoteForm input[data-zip-lock-disabled="true"],
.quoteForm select[data-zip-lock-disabled="true"],
.quoteForm textarea[data-zip-lock-disabled="true"],
.quoteForm button[data-zip-lock-disabled="true"]{
  opacity: .48;
  pointer-events: none;
  filter: grayscale(.08);
}

/* Block slider row interactions via pointer-events on the row itself */
.quoteForm .formRow:has(tc-range-slider[data-zip-lock-disabled="true"]){
  position: relative;
  pointer-events: none;
}

/* Invisible overlay — just catches any stray pointer events */
.quoteForm .formRow:has(tc-range-slider[data-zip-lock-disabled="true"])::after{
  content: "";
  position: absolute;
  inset: 0;
  top: -40px;
  pointer-events: all;
  z-index: 10;
}

/* Submit button locked state */
.quoteForm button[data-zip-lock-disabled="true"],
.quoteForm .formSubmit[data-zip-lock-disabled="true"]{
  opacity: .52;
  cursor: not-allowed;
}

/* =========================================================
   INPUTS
   ========================================================= */

.quoteForm input:not([type="checkbox"]):not([type="radio"]),
.quoteForm select,
.quoteForm textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15,15,15,.12);
  font-size: 14px;
  font-weight: 550;
  background: rgba(255,255,255,.98);
  transition: border-color .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.quoteForm input:not([type="checkbox"]):not([type="radio"]):focus,
.quoteForm select:focus,
.quoteForm textarea:focus{
  outline: none;
  border-color: rgba(var(--brand-rgb), .45);
  box-shadow: 0 0 0 4px rgba(var(--brand-rgb), .12);
}

#zip{
  position: relative;
  z-index: 2;
}

.quoteForm input[type="checkbox"],
.quoteForm input[type="radio"],
.signupForm input[type="checkbox"],
.signupForm input[type="radio"]{
  width: 18px;
  height: 18px;
  padding: 0;
  border: 1px solid rgba(15,15,15,.25);
  background: #fff;
  accent-color: var(--brand);
  -webkit-appearance: auto;
  appearance: auto;
}

.quoteForm input[type="radio"],
.signupForm input[type="radio"]{
  border-radius: 999px;
}

.quoteForm input[type="checkbox"]:focus-visible,
.quoteForm input[type="radio"]:focus-visible,
.signupForm input[type="checkbox"]:focus-visible,
.signupForm input[type="radio"]:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(var(--brand-rgb), .14);
}

/* =========================================================
   TOOLCOOL SLIDER
   ========================================================= */

tc-range-slider.tcs{
  width: 100%;
  max-width: none;
  display: block;
  margin-top: 20px;
  box-sizing: border-box;
  overflow: visible;
}

tc-range-slider::part(pointer),
tc-range-slider::part(pointer):hover,
tc-range-slider::part(pointer):focus,
tc-range-slider::part(pointer):active{
  outline: none;
  box-shadow: none;
  border: none;
  background-color: transparent;
}

tc-range-slider:focus,
tc-range-slider:focus-visible{
  outline: none;
  box-shadow: none;
}

tc-range-slider .tcrs-marks,
tc-range-slider .tcrs-labels,
tc-range-slider .tcrs-label,
tc-range-slider .tcrs-mark-label,
tc-range-slider .tcrs-mark-value{
  display: none;
}

/* =========================================================
   CLEANUP FREQUENCY
   ========================================================= */

.freqSlider{
  margin-top: 22px;
  margin-bottom: 16px;
}

.rangeTicks4{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 18px;
  font-size: 11.5px;
  font-weight: 750;
  color: rgba(45,46,46,.65);
  width: 100%;
}

.rangeTicks4 span{
  flex: 0 0 25%;
  white-space: nowrap;
}

.rangeTicks4 span:first-child{ text-align: left; }
.rangeTicks4 span:nth-child(2){ text-align: center; }
.rangeTicks4 span:nth-child(3){ text-align: center; }
.rangeTicks4 span:last-child{ text-align: right; }

/* =========================================================
   DOG TICKS
   ========================================================= */

.rangeTicks{
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 750;
  color: rgba(45,46,46,.65);
}

.rangeValue{
  font-weight: 900;
  color: rgba(45,46,46,.9);
}

/* =========================================================
   EXPAND AREA
   ========================================================= */

.quoteExpand[hidden]{ display:none; }

.quoteExpand{
  padding: 0 28px 28px;
  display: grid;
  gap: 14px;
}

.estimateCard, .signupCard{
  background: #ffffff;
  border: 1px solid rgba(15,15,15,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(15,15,15,.08);
  text-align: left;
}

.estimateCard h2,
.signupCard h2{
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.estimateLine{ margin: 6px 0 12px; }

.dot{ margin: 0 8px; opacity: .45; }

.muted{ opacity: .75; }

.tinyMuted{
  opacity: .65;
  font-size: 13px;
}

.estimatePrice{
  padding: 14px;
  border-radius: 14px;
  background: rgba(var(--brand-rgb), .10);
  border: 1px solid rgba(var(--brand-rgb), .18);
}

.bigPrice{
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.02em;
  margin: 6px 0;
}

/* =========================================================
   ESTIMATE CARD
   ========================================================= */

.estimateCard{
  background: linear-gradient(
    180deg,
    rgba(var(--brand-rgb), .18),
    rgba(var(--brand-rgb), .10)
  );
  border: 2px solid rgba(15,15,15,.85);
  border-radius: 18px;
  padding: 18px 16px 16px;
  box-shadow:
    0 14px 34px rgba(15,15,15,.10),
    0 2px 0 rgba(255,255,255,.55) inset;
  position: relative;
  overflow: visible;
}

.estimateCard::before{
  content:"";
  position:absolute;
  inset:-40px;
  background:
    radial-gradient(520px 220px at 20% 0%,
      rgba(255,255,255,.55),
      rgba(255,255,255,0)
    );
  opacity: .9;
  pointer-events:none;
}

.estimateCard > *{
  position: relative;
  z-index: 1;
}

.estHeader{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding-left: 70px;
  min-height: 44px;
}

.estMascot{
  position: absolute;
  top: -30px;
  left: -26px;
  width: 96px;
  height: 96px;
  background: transparent;
  border: none;
  border-radius: 0;
  background-image: url("/images/dogFace.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter:
    drop-shadow(0 14px 22px rgba(0,0,0,.18))
    drop-shadow(0 2px 0 rgba(255,255,255,.35));
  pointer-events: none;
}

.estTitle{
  margin: 0;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(15,15,15,.92);
}

.estPriceRow{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 16px 16px;
  min-height: 170px;
  border-radius: 18px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(15,15,15,.12);
  box-shadow: 0 10px 18px rgba(0,0,0,.06);
  margin-bottom: 12px;
  text-align: center;
}

.estPriceMain{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.estBig{
  font-size: clamp(46px, 8vw, 74px);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: .95;
  color:  #3D5A78;
  margin: 0;
}

.estUnit{
  margin-top: 10px;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 900;
  color:  #3D5A78;
  letter-spacing: -0.02em;
}

.estRegularLine{
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 500;
  color: rgba(55,60,70,.72);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(55,60,70,.72);
  line-height: 1.2;
}

.estRegularLine[hidden]{
  display: none;
}

.estRegularLine span{
  font-weight: 500;
}

.estCTA{
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(var(--brand-rgb), .18);
  border: 1px dashed rgba(15,15,15,.28);
  font-weight: 850;
  color: rgba(15,15,15,.86);
  margin-bottom: 10px;
}

.estPromo{
  border-top: 1px solid rgba(15,15,15,.12);
  padding-top: 10px;
  margin-top: 8px;
}

.estPromoTitle{
  font-size: x-large;
  font-weight: 950;
  color: rgba(15,15,15,.90);
  line-height: 1.25;
  margin-bottom: 8px;
}

.estPromoTitle .fire{
  font-weight: 950;
  opacity: .9;
}

.estDisclaimer{
  margin: 0;
  font-size: 12.5px;
  line-height: 1.35;
  color: rgba(15,15,15,.68);
}

/* =========================================================
   Billing Promotion Upsell
   ========================================================= */

.estUpsell{
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.estUpsellHeading{
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.01em;
  color: rgba(15,15,15,.92);
}

.estUpsellBox{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(255, 232, 120, .55);
  border: 1px solid rgba(15,15,15,.14);
  box-shadow: 0 10px 18px rgba(0,0,0,.06);
  cursor: pointer;
  user-select: none;
}

.estUpsellCheck{
  margin-top: 2px;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  accent-color: rgba(var(--brand-rgb), .95);
}

.estUpsellTextWrap{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.estUpsellTitle{
  font-weight: 950;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: rgba(15,15,15,.92);
  line-height: 1.1;
}

.estUpsellText{
  font-size: 13px;
  line-height: 1.35;
  color: rgba(15,15,15,.74);
}

/* =========================================================
   SIGNUP FORM STYLES
   ========================================================= */

.signupForm{
  margin-top: 12px;
  text-align: left;
}

.signupGrid{
  display: grid;
  gap: 16px;
  justify-items: stretch;
  align-items: start;
}

.fieldRow{
  display:flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  align-items: stretch;
  justify-content: flex-start;
  text-align: left;
}

.fieldRow > label{
  font-size: 13px;
  font-weight: 800;
  color: rgba(45,46,46,.85);
  text-align: left;
}

.signupForm input:not([type="checkbox"]):not([type="radio"]),
.signupForm select,
.signupForm textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15,15,15,.12);
  font-size: 14px;
  font-weight: 550;
  background: rgba(255,255,255,.98);
  transition: border-color .15s ease, box-shadow .15s ease;
}

.signupForm input:not([type="checkbox"]):not([type="radio"]):focus,
.signupForm select:focus,
.signupForm textarea:focus{
  outline: none;
  border-color: rgba(var(--brand-rgb), .45);
  box-shadow: 0 0 0 4px rgba(var(--brand-rgb), .12);
}

.fieldLabel{
  text-align: left;
  width: 100%;
  font-size: 13px;
  font-weight: 800;
  color: rgba(45,46,46,.85);
}

.quoteForm .fieldError,
.signupForm .fieldError{
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: #d12f2f !important;
  line-height: 1.35;
}

.signupCard h2{
  color: black; /* or whatever color you want */
}
/* =========================================================
   RADIO GROUPS
   ========================================================= */

.radioStack{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.radioOption{
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 10px;
  align-items: start;
  text-align: left;
}

.radioOption input{
  margin-top: 3px;
}

.radioOption span{
  line-height: 1.35;
}

.cardOnFileRow{
  width: 100%;
  align-items: stretch;
}


/* =========================================================
   CHECKLINE
   ========================================================= */

.checkLine{
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 10px;
  align-items: start;
  font-weight: 750;
  color: rgba(45,46,46,.85);
  text-align: left;
}

.checkLine input{
  margin-top: 3px;
}

.checkLine a{
  color: inherit;
  text-decoration: underline;
}

/* =========================================================
   Additional Services
   ========================================================= */

.addonsBox{
  position: relative;
  border: 2px solid rgba(15,15,15,.85);
  border-radius: 14px;
  padding: 18px 12px 12px;
  background: var(--brand);
}

.addonsBadge{
  position: absolute;
  top: -40px;
  left: -30px;
  width: 110px;
  height: 110px;
  object-fit: contain;
  background: none;
  padding: 0;
  border-radius: 0;
  filter:
    drop-shadow(0 14px 22px rgba(0,0,0,.18))
    drop-shadow(0 2px 0 rgba(255,255,255,.35));
}

.addonsHeader{
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(15,15,15,.92);
  margin: 0 2px 12px;
  padding-left: 74px;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.addonRow{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(15,15,15,.18);
  border-radius: 12px;
  background: white;
  padding: 12px;
  cursor: pointer;
}

.addonRow + .addonRow{ margin-top: 10px; }

.addonRow input{ margin-top: 3px; }

.addonText{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
}

.addonName{
  font-weight: 650;
  color: rgba(15,15,15,.88);
}

.addonPrice{
  font-weight: 950;
  color: rgba(15,15,15,.95);
  margin-top: 4px;
}

.fieldRow .addonsBox{
  margin-top: 28px;
  margin-bottom: 24px;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 520px){

  .quoteTop{ padding: 28px 18px; }
  .quoteForm{ padding: 22px 18px 18px; }

  .quoteExpand{ padding: 0 18px 22px; }

  .quoteBrand{ padding: 12px 14px 24px; }

  .quoteBrand::before{
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(520px, 94vw);
    height: auto;
    min-height: 92px;
    padding: 18px 0;
  }

  .quoteBrand img{
    max-width: 82%;
    max-height: 80px;
  }

  .quoteBonus{ padding: 18px 18px 8px; }

  .quoteBonusBox{
    padding: 14px 14px;
    border-radius: 14px;
  }

  .quoteBonusHeadline{
    font-size: 17px;
  }

  tc-range-slider.tcs{ margin-top: 30px; }

  .rangeTicks4 span{ white-space: normal; }

  .addonsBadge{
    top: -24px;
    width: 58px;
    height: 58px;
    left: -14px;
  }

  .addonsHeader{
    padding-left: 68px;
    min-height: 42px;
  }

  .radioOption span{
    max-width: 260px;
  }

  .estBig{ font-size: 38px; }

  .estHeader{
    padding-left: 64px;
    min-height: 42px;
  }

  .estMascot{
    top: -22px;
    left: -18px;
    width: 72px;
    height: 72px;
  }

  .estPriceRow{
    min-height: 148px;
    padding: 16px 12px 14px;
  }

  .estUnit{
    margin-top: 8px;
    font-size: 17px;
  }

  .estRegularLine{
    font-size: 14px;
  }

  #quoteZipStatus{
    font-size: 12.5px;
    padding: 9px 11px;
  }
}

.formSubmit:disabled,
.signupSubmit:disabled,
button[disabled]{
  opacity: .6;
  cursor: not-allowed;
  pointer-events: none;
}

/* =========================================================
   iOS + CONSISTENT CHECKBOX/RADIO RENDERING
   (covers quoteForm, signupForm, and the expand area)
   ========================================================= */

.quoteForm input[type="checkbox"],
.signupForm input[type="checkbox"],
.quoteExpand input[type="checkbox"],
.estimateCard input[type="checkbox"],
.signupCard input[type="checkbox"],
.quoteForm input[type="radio"],
.signupForm input[type="radio"],
.quoteExpand input[type="radio"],
.estimateCard input[type="radio"],
.signupCard input[type="radio"]{
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 0;
  border: 2px solid rgba(15,15,15,.35);
  background: #fff;
  display: grid;
  place-content: center;
  box-shadow: none;
}

.quoteForm input[type="checkbox"],
.signupForm input[type="checkbox"],
.quoteExpand input[type="checkbox"],
.estimateCard input[type="checkbox"],
.signupCard input[type="checkbox"]{
  border-radius: 6px;
}

.quoteForm input[type="radio"],
.signupForm input[type="radio"],
.quoteExpand input[type="radio"],
.estimateCard input[type="radio"],
.signupCard input[type="radio"]{
  border-radius: 999px;
}

.quoteForm input[type="checkbox"]:checked::after,
.signupForm input[type="checkbox"]:checked::after,
.quoteExpand input[type="checkbox"]:checked::after,
.estimateCard input[type="checkbox"]:checked::after,
.signupCard input[type="checkbox"]:checked::after{
  content: "";
  width: 9px;
  height: 5px;
  border-left: 3px solid var(--brand);
  border-bottom: 3px solid var(--brand);
  transform: rotate(-45deg);
  margin-top: -1px;
}

.quoteForm input[type="radio"]:checked::after,
.signupForm input[type="radio"]:checked::after,
.quoteExpand input[type="radio"]:checked::after,
.estimateCard input[type="radio"]:checked::after,
.signupCard input[type="radio"]:checked::after{
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brand);
}

.quoteForm input[type="checkbox"]:focus-visible,
.signupForm input[type="checkbox"]:focus-visible,
.quoteExpand input[type="checkbox"]:focus-visible,
.estimateCard input[type="checkbox"]:focus-visible,
.signupCard input[type="checkbox"]:focus-visible,
.quoteForm input[type="radio"]:focus-visible,
.signupForm input[type="radio"]:focus-visible,
.quoteExpand input[type="radio"]:focus-visible,
.estimateCard input[type="radio"]:focus-visible,
.signupCard input[type="radio"]:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(var(--brand-rgb), .14);
}

.checkLine,
.radioOption{
  grid-template-columns: 22px 1fr;
}