@import 'https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:wght@400;700&family=Patrick+Hand&family=Road+Rage&display=swap';

:root {
  --blacktop: #0d1113;
  --asphalt: #1d2627;
  --asphalt-soft: #283434;
  --paper: #fbf5e7;
  --paper-2: #f0e4cd;
  --line: #f6c318;
  --sign: #087633;
  --sign-dark: #045321;
  --brake: #d82222;
  --ink: #141817;
  --muted: #5f675f;
  --table-line: #cfc3ac;
  --clip: #3c4142;
  --wood: #8b552c;
  --shadow: 0 16px 36px rgba(25, 21, 13, 0.22);
  --ring: rgba(246, 195, 24, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Atkinson Hyperlegible", ui-sans-serif, system-ui, sans-serif;
  background: linear-gradient(180deg, #fffaf0 0%, #efe3ca 100%);
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.login-body {
  background:
    linear-gradient(180deg, rgba(8, 13, 15, 0.18), rgba(8, 13, 15, 0.32)),
    url("/static/assets/permitpal-splash-road.png") center / cover no-repeat;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 36px 20px;
}

.login-panel {
  width: min(620px, 92vw);
  padding: 24px 34px 34px;
  text-align: center;
  background: transparent;
}

.road-sign-logo {
  display: block;
  width: min(460px, 100%);
  margin: 0 auto 18px;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.42));
}

.tagline {
  margin: 0 auto 26px;
  max-width: 520px;
  color: #fff7df;
  font-family: "Patrick Hand", cursive;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.15;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.85), 0 0 18px rgba(0, 0, 0, 0.45);
}

.login-form {
  width: min(360px, 100%);
  display: grid;
  gap: 10px;
  margin: 0 auto;
  text-align: left;
}

.login-form label,
.progress-form label {
  font-size: 0.84rem;
  font-weight: 700;
}

.login-form label {
  color: #fff7df;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.75);
}

input {
  width: 100%;
  min-height: 38px;
  border: 1px solid #b9ad98;
  border-radius: 4px;
  padding: 8px 10px;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.94);
}

.login-form input {
  border: 2px solid rgba(20, 24, 23, 0.32);
  background: rgba(255, 253, 247, 0.92);
}

.login-form button,
.progress-form button {
  min-height: 42px;
  border: 0;
  border-radius: 4px;
  color: white;
  font-weight: 700;
  background: #1857d6;
  box-shadow: inset 0 -2px rgba(0, 0, 0, 0.2);
}

.form-error {
  margin: 0;
  padding: 10px;
  border-radius: 4px;
  color: white;
  background: var(--brake);
}

.dash-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 clamp(18px, 3vw, 36px);
  color: white;
  background: linear-gradient(180deg, #111719, #070a0b);
  border-bottom: 3px solid #2e3232;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.dash-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
}

.dash-brand strong {
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1;
}

.car-mark {
  position: relative;
  width: 35px;
  height: 24px;
  display: inline-block;
}

.car-mark::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 7px;
  height: 11px;
  border-radius: 7px 7px 3px 3px;
  background: var(--line);
}

.car-mark::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 1px;
  height: 9px;
  border-radius: 7px 7px 1px 1px;
  background: var(--line);
}

.car-mark span::before,
.car-mark span::after {
  content: "";
  position: absolute;
  bottom: 1px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #080a0b;
  border: 2px solid var(--line);
  z-index: 2;
}

.car-mark span::before {
  left: 4px;
}

.car-mark span::after {
  right: 4px;
}

.lane-divider {
  height: 3px;
  flex: 1 1 auto;
  min-width: 80px;
  background: repeating-linear-gradient(90deg, var(--line) 0 18px, transparent 18px 34px);
}

.welcome {
  flex: 0 0 auto;
  font-size: 0.92rem;
}

.logout-button {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  padding: 7px 14px;
  color: white;
  font-weight: 700;
  background: #111719;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.logout-button:hover {
  border-color: rgba(255, 201, 22, 0.75);
  background: #1d2528;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

.logout-button:focus-visible {
  outline: 2px solid var(--line);
  outline-offset: 3px;
}

.logout-button:active {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.22);
}

.app-shell {
  width: min(1360px, 100%);
  margin: 0 auto;
  padding: 16px clamp(12px, 2vw, 28px) 0;
}

.progress-panel {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(220px, 0.62fr);
  gap: 18px;
  align-items: stretch;
  padding: 16px 22px;
  margin-bottom: 10px;
  border: 1px solid #d6cab5;
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.85);
}

.metric {
  padding: 0 26px 0 0;
  border-right: 1px solid #d1c5af;
}

.metric h2,
.estimate-sign h2 {
  margin: 0 0 8px;
  text-align: center;
  font-size: 1rem;
}

.odometer-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.odometer {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 5px 8px;
  border: 3px solid #050606;
  border-radius: 4px;
  background: #111;
  box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.16), 0 2px 4px rgba(0, 0, 0, 0.24);
}

.odometer span {
  min-width: 27px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  color: #f8f4e7;
  font-family: "Road Rage", "Atkinson Hyperlegible", sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  background: linear-gradient(180deg, #3a3d3d, #090b0c 48%, #282b2b 51%, #090b0c);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.odometer .odo-dot {
  min-width: 13px;
  background: transparent;
  box-shadow: none;
}

.odometer-line strong {
  font-size: 1.8rem;
}

.road-meter {
  position: relative;
  height: 32px;
  overflow: visible;
  border: 3px solid #0b0d0e;
  border-radius: 8px;
  background: linear-gradient(180deg, #202828, #151b1b);
  box-shadow: inset 0 2px 7px rgba(0, 0, 0, 0.45);
}

.road-fill {
  display: block;
  width: var(--progress);
  height: 100%;
  max-width: 100%;
  border-radius: 5px 0 0 5px;
  background: linear-gradient(180deg, #f8d33a, #d29e09);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.38), inset 0 -4px rgba(99, 74, 0, 0.18);
}

.road-marker {
  position: absolute;
  left: clamp(20px, var(--progress), calc(100% - 20px));
  top: 22px;
  transform: translateX(-50%);
  min-width: 36px;
  padding: 1px 4px;
  border: 2px solid #111;
  border-radius: 4px;
  color: #111;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--line);
}

.estimate-sign {
  display: grid;
  justify-items: center;
  align-content: start;
  position: relative;
  color: white;
}

.estimate-sign h2 {
  color: var(--ink);
}

.estimate-face {
  position: relative;
  width: min(240px, 100%);
  min-height: 112px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 20px 14px 10px;
  overflow: hidden;
}

.estimate-face::before {
  content: "";
  position: absolute;
  inset: 0;
  width: min(230px, 100%);
  height: 108px;
  margin: auto;
  border: 3px solid #e9f4df;
  border-radius: 6px;
  background: linear-gradient(145deg, var(--sign), var(--sign-dark));
  box-shadow: inset 0 0 0 2px rgba(2, 38, 14, 0.42), 0 2px 7px rgba(0, 0, 0, 0.22);
  z-index: 0;
}

.estimate-face::after {
  content: "";
  position: absolute;
  inset: 10px;
  width: min(208px, calc(100% - 20px));
  height: 88px;
  margin: auto;
  background:
    radial-gradient(circle at left top, #dfeee1 0 2px, transparent 3px),
    radial-gradient(circle at right top, #dfeee1 0 2px, transparent 3px),
    radial-gradient(circle at left bottom, #dfeee1 0 2px, transparent 3px),
    radial-gradient(circle at right bottom, #dfeee1 0 2px, transparent 3px);
  z-index: 1;
}

.calendar-icon,
.estimate-sign span,
.estimate-sign strong {
  position: relative;
  z-index: 2;
}

.calendar-icon {
  width: 22px;
  height: 22px;
  margin: 0 0 7px;
  border: 2px solid #f5fff2;
  border-radius: 3px;
}

.calendar-icon::before {
  content: "";
  display: block;
  height: 5px;
  background: #f5fff2;
}

.estimate-sign span {
  display: block;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.1;
}

.estimate-sign strong {
  display: block;
  width: 100%;
  margin-top: 3px;
  text-align: center;
  font-size: clamp(1.1rem, 1.55vw, 1.38rem);
  line-height: 1.08;
}

.estimate-sign .estimate-date {
  white-space: nowrap;
}

.save-feedback {
  margin: 6px 0 0;
  color: var(--sign-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.content-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.content-grid > *,
.dashboard-main,
.clipboard-shell,
.checklist-table {
  min-width: 0;
}

.dashboard-side {
  display: grid;
  gap: 14px;
}

.side-panel {
  border: 1px solid #d6cab5;
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 5px 12px rgba(48, 37, 21, 0.12);
}

.side-panel h2 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.progress-form {
  display: grid;
  gap: 9px;
}

.progress-form button {
  margin-top: clamp(14px, 3vw, 28px);
}

.inline-unit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.inline-unit span {
  font-weight: 700;
}

.practice-heading {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
}

.traffic-cone-icon {
  width: 44px;
  height: 56px;
  display: block;
  justify-self: center;
  position: relative;
  background: url("/static/assets/permitpal-traffic-cone.png") center / contain no-repeat;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.22));
}

.traffic-cone-icon::before {
  content: none;
}

.traffic-cone-icon::after {
  content: none;
}

.practice-heading h2 {
  margin: 0;
  font-family: "Patrick Hand", cursive;
  font-size: 1.72rem;
  line-height: 1;
}

.practice-note {
  margin: 2px 0 0;
  color: #343a36;
  font-size: 0.86rem;
}

.practice-panel ol {
  margin: 16px 0 12px;
  padding: 0;
  list-style: none;
  counter-reset: focus;
}

.practice-panel li {
  counter-increment: focus;
  position: relative;
  min-height: 35px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
  padding-left: 48px;
  font-weight: 700;
}

.practice-panel li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: center;
  border: 2px solid #111;
  border-radius: 4px;
  background: var(--line);
}

.practice-panel li::after {
  content: counter(focus);
  position: absolute;
  left: 5px;
  top: 50%;
  width: 29px;
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(3px, -50%);
  color: #111;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.practice-panel li:first-child::after {
  transform: translate(2px, -50%);
}

.clipboard-shell {
  position: relative;
  overflow: hidden;
  padding: 96px 18px 46px;
  border: 12px solid var(--wood);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(40, 30, 15, 0.08) 1px, transparent 1px) 0 0 / 28px 28px,
    #fffaf0;
  box-shadow: var(--shadow), inset 0 0 0 3px rgba(61, 33, 12, 0.32);
}

.clipboard-clip {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: min(360px, 46%);
  height: 46px;
  border: 5px solid #2f3333;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, #f4f5ee, #aeb4ad 45%, #2f3333 45%, #171a1b 100%);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.28);
}

.sheet-title {
  position: absolute;
  top: 42px;
  left: 18px;
  right: 18px;
  text-align: center;
}

.sheet-title h1 {
  margin: 0;
  font-family: "Patrick Hand", cursive;
  font-size: clamp(2.1rem, 3.35vw, 3.5rem);
  font-weight: 400;
  line-height: 0.95;
}

.checklist-table {
  contain: inline-size;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--table-line);
  background: rgba(255, 253, 247, 0.82);
}

.checklist-reference {
  position: absolute;
  right: 22px;
  bottom: 14px;
  font-size: 0.72rem;
  font-weight: 400;
  text-align: right;
  color: #4f584f;
}

.checklist-reference span {
  margin-right: 6px;
}

.checklist-reference a {
  color: #174f9f;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checklist-reference a::after {
  content: "↗";
  margin-left: 4px;
  font-size: 0.7em;
  vertical-align: text-top;
}

.checklist-reference a:hover {
  color: #0b3170;
}

.checklist-head,
.checklist-row {
  display: grid;
  grid-template-columns: 30px minmax(112px, 0.75fr) 82px 82px 170px minmax(200px, 1.5fr) 44px;
  width: max(760px, 100%);
  min-width: 0;
}

.checklist-head {
  color: #222;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  background: #f6efe2;
}

.checklist-head span,
.checklist-row > * {
  border-right: 1px solid var(--table-line);
  border-bottom: 1px solid var(--table-line);
}

.checklist-head span {
  display: grid;
  place-items: center;
  padding: 9px 8px;
  text-align: center;
}

.checklist-head span:nth-child(3) {
  color: var(--brake);
}

.checklist-head span:nth-child(4) {
  color: var(--sign);
}

.checklist-row {
  margin: 0;
  background: rgba(255, 252, 245, 0.72);
}

.row-number {
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 700;
}

.skill-title {
  display: flex;
  align-items: center;
  padding: 6px 8px;
}

.skill-title h3 {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.2;
}

.status-cell {
  display: grid;
  place-items: center;
  padding: 0;
}

.status-cell input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--sign);
}

.status-cell--practice input {
  accent-color: var(--brake);
}

.date-field,
.notes-field {
  display: grid;
  align-items: center;
  padding: 4px 6px;
  min-width: 0;
}

.notes-field {
  padding-left: 6px;
}

.date-field input,
.notes-field input {
  min-width: 0;
  min-height: 30px;
  border-color: #d8ceb9;
  border-radius: 4px;
  padding: 5px 7px;
  font-size: 0.76rem;
  background: rgba(255, 255, 255, 0.64);
}

.date-field input {
  width: 100%;
  max-width: 100%;
  min-inline-size: 0;
  padding-right: 4px;
  overflow: hidden;
}

.date-field input::-webkit-date-and-time-value {
  min-width: 0;
}

.notes-field input {
  width: 100%;
}

.row-save {
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100%;
  border: 0;
  border-right: 1px solid var(--table-line);
  border-bottom: 1px solid var(--table-line);
  border-radius: 0;
  color: #26302a;
  font-size: 0.62rem;
  font-weight: 700;
  background: transparent;
  box-shadow: none;
}

.row-save::before {
  content: "";
  position: absolute;
  inset: 6px 5px;
  border: 1px solid #c4b38d;
  border-radius: 4px;
  background: linear-gradient(180deg, #fffefa, #fff2c3);
  z-index: -1;
}

.row-save:hover {
  color: #000;
}

.row-save:hover::before {
  border-color: #88785d;
  background: linear-gradient(180deg, #fff8d8, #f6d64b);
}

.row-save-feedback {
  color: var(--sign-dark);
  font-size: 0.58rem;
}

.encouragement-banner {
  position: relative;
  z-index: 0;
  width: 100vw;
  min-height: 178px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(12px, 2.4vw, 28px);
  margin: -56px calc(50% - 50vw) 0;
  padding-top: 96px;
  padding-right: clamp(52px, 7vw, 104px);
  padding-bottom: 24px;
  padding-left: clamp(52px, 7vw, 104px);
  color: white;
  background: #15191a;
}

.road-dashes {
  position: absolute;
  z-index: 0;
  top: 82px;
  right: 0;
  left: 0;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--line) 0 22px, transparent 22px 42px);
}

.encouragement-banner span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 76px;
  min-height: 48px;
  padding: 6px 8px;
  border: 3px solid #e4e8ef;
  border-radius: 8px 8px 18px 18px;
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  background: #245b92;
}

.encouragement-banner p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Patrick Hand", cursive;
  font-size: clamp(1.35rem, 2.7vw, 1.9rem);
  line-height: 1.05;
  white-space: nowrap;
}

.checkers {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  background:
    conic-gradient(#fff 25%, #111 0 50%, #fff 0 75%, #111 0) 0 0 / 14.6667px 14.6667px;
  transform: skew(-10deg);
}

@media (max-width: 1050px) {
  .progress-panel,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    padding-right: 0;
  }

  .dashboard-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .practice-panel {
    display: grid;
    grid-template-rows: auto auto auto;
    align-content: start;
    padding: 28px 36px;
  }

  .practice-heading {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    width: min(540px, 100%);
    margin: 0 auto;
  }

  .traffic-cone-icon {
    width: 52px;
    height: 68px;
  }

  .practice-heading h2 {
    font-size: 2.15rem;
  }

  .practice-note {
    font-size: 1rem;
  }

  .practice-panel ol {
    display: grid;
    align-content: center;
    gap: clamp(18px, 3.2vw, 30px);
    width: min(540px, 100%);
    margin: 20px auto 18px;
  }

  .practice-panel li {
    min-height: 50px;
    margin: 0;
    padding-left: 66px;
    font-size: 1.12rem;
  }

  .practice-panel li::before,
  .practice-panel li::after {
    left: 7px;
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
  }

  .practice-note {
    width: min(540px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }

  .dash-header {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 16px;
  }

  .lane-divider {
    order: 4;
    flex-basis: 100%;
  }

  .welcome {
    display: none;
  }

  .app-shell {
    width: 100%;
    padding: 12px;
  }

  .dashboard-side {
    grid-template-columns: 1fr;
  }

  .practice-panel {
    padding: 22px 18px;
  }

  .practice-heading {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
  }

  .traffic-cone-icon {
    width: 42px;
    height: 54px;
  }

  .practice-heading h2 {
    font-size: 1.8rem;
  }

  .practice-note {
    font-size: 0.9rem;
  }

  .practice-panel ol {
    gap: 14px;
    margin: 18px auto 16px;
  }

  .practice-panel li {
    min-height: 38px;
    padding-left: 50px;
    font-size: 0.95rem;
  }

  .practice-panel li::before,
  .practice-panel li::after {
    left: 5px;
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .progress-panel {
    padding: 14px;
  }

  .clipboard-shell {
    padding: 86px 8px 10px;
    border-width: 7px;
  }

  .checklist-reference {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 3px 6px;
    margin-top: 8px;
    text-align: right;
  }

  .checklist-reference span {
    margin-right: 0;
  }

  .clipboard-clip {
    width: 58%;
  }

  .encouragement-banner {
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    gap: 8px;
    min-height: 166px;
    margin-top: -42px;
    padding-top: 88px;
    padding-right: 12px;
    padding-bottom: 18px;
    padding-left: 12px;
    text-align: center;
  }

  .encouragement-banner span {
    width: 62px;
    min-height: 42px;
    padding: 5px 6px;
    border-width: 2px;
    font-size: 0.52rem;
  }

  .encouragement-banner p {
    font-size: clamp(1.02rem, 4.6vw, 1.28rem);
    line-height: 1;
    white-space: normal;
  }

  .checkers {
    width: 34px;
    height: 34px;
    background-size: 11.3333px 11.3333px;
  }

  .road-dashes {
    width: 100%;
    top: 74px;
    bottom: auto;
  }
}

@media (min-width: 721px) {
  .progress-form button {
    margin-top: 6px;
  }
}
