:root {
  --bg: #f7f7f7;
  --text: #000000;
  --body: #030303cc;
  --spring: cubic-bezier(0.22, 1.28, 0.36, 1);
  --spring-soft: cubic-bezier(0.2, 0.9, 0.25, 1.15);
  --font-display: Helvetica, Arial, sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --type-hero-title-size: 25px;
  --type-hero-title-line: 25px;
  --type-hero-body-size: 13px;
  --type-hero-body-line: 20px;
  --type-ui-size: 13px;
  --type-ui-line: 20px;
  --type-ui-compact-size: 13px;
  --type-ui-compact-line: 19px;
  --type-small-size: 11px;
  --type-small-line: 12px;
  --type-heading-md-size: 16px;
  --type-heading-md-line: 20px;
  --type-stat-size: 26px;
  --type-stat-line: 26px;
  --type-mobile-search-size: 16px;
  --type-mobile-search-line: 24px;
  --type-mobile-ui-size: 12px;
  --type-mobile-ui-line: 18px;
  --type-mobile-hero-title-size: 22px;
  --type-mobile-hero-title-line: 22px;
  --type-mobile-stat-size: 21px;
  --type-mobile-stat-line: 21px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  font-family: var(--font-display);
  color: var(--text);
}

.desktop-frame {
  width: 100%;
  max-width: 1440px;
  height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.top-strip {
  width: 100%;
  height: 60px;
  flex-shrink: 0;
  border-bottom: 1px solid #00000033;
  background-image: url("https://workers.paper.design/file-assets/01KJSQMF8GMGGSH5YZFP35JV6F/2R47Q3ZB4NCBSK06866W2CVPNB.png");
  background-size: cover;
  background-position: center;
}

.content-area {
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 15px;
}

.center-column {
  --module-width: 650px;
  width: 650px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.hero-stack {
  width: 650px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.desktop-frame[data-state="selected"] .hero-stack,
.desktop-frame[data-state="second-selected"] .hero-stack,
.desktop-frame[data-state="quote-contact"] .hero-stack {
  gap: 50px;
}

.desktop-frame[data-state="quote-review"] .hero-stack {
  gap: 32px;
}

.desktop-frame[data-state="one-confirmed"] .hero-stack {
  gap: 32px;
}

.hero-copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-stack h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-hero-title-size);
  line-height: var(--type-hero-title-line);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  text-align: center;
}

.hero-stack p {
  margin: 0;
  width: 650px;
  color: var(--body);
  font-family: var(--font-body);
  font-size: var(--type-hero-body-size);
  line-height: var(--type-hero-body-line);
  text-align: center;
}

.desktop-frame[data-state="default"] .hero-stack p {
  width: 490px;
}

.desktop-frame[data-state="selected"] .hero-stack p {
  width: 474px;
}

.desktop-frame[data-state="one-confirmed"] .hero-stack p {
  width: 100%;
}

.desktop-frame[data-state="second-search"] .hero-stack p,
.desktop-frame[data-state="second-selected"] .hero-stack p,
.desktop-frame[data-state="quote-review"] .hero-stack p,
.desktop-frame[data-state="quote-contact"] .hero-stack p {
  width: 650px;
}

.search-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.search-mode {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.search-box {
  width: 100%;
  min-height: 42px;
  border: 1px solid #00000066;
  background: #ffffff;
  padding: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-box input {
  width: 100%;
  text-align: center;
  color: var(--body);
  font-family: var(--font-body);
  font-size: var(--type-ui-size);
  line-height: var(--type-ui-line);
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 22px 0 0;
}

.search-box input::placeholder {
  color: var(--body);
}

.search-box svg {
  position: absolute;
  right: 12px;
  top: 12px;
  pointer-events: none;
}

.search-dropdown {
  width: 100%;
  max-height: 220px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #00000040;
  margin-top: -1px;
  opacity: 1;
  transform: translateY(0);
  transform-origin: top center;
  transition: max-height 280ms var(--spring), opacity 220ms var(--spring-soft),
    transform 280ms var(--spring), margin-top 220ms var(--spring),
    border-color 220ms var(--spring);
}

.search-dropdown.is-switching {
  opacity: 0.7;
  transform: translateY(-2px) scaleY(0.985);
}

.search-option {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #00000014;
  background: #ffffff;
  text-align: left;
  padding: 10px 12px;
  cursor: pointer;
  transition: background-color 180ms var(--spring), transform 180ms var(--spring);
}

.search-option:last-child {
  border-bottom: 0;
}

.search-option:hover,
.search-option.active {
  background: #f1f1f1;
  transform: translateY(-1px);
}

.search-option .name {
  display: block;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: #111111;
}

.search-option .value {
  display: block;
  margin-top: 2px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #6b6b6b;
}

.selected-mode {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.one-confirmed-mode {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.one-confirmed-card {
  width: 100%;
  border: 1px solid #00000066;
  background: transparent;
  padding: 10px;
}

.one-confirmed-card .selected-row {
  align-items: center;
}

.one-confirmed-add {
  width: 100%;
  border: 1px solid #00000066;
  background: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: #030303cc;
  text-align: left;
  cursor: pointer;
}

.one-confirmed-add span {
  display: block;
  width: 100%;
}

.one-confirmed-add svg {
  flex-shrink: 0;
}

.one-confirmed-how {
  width: 100%;
  display: flex;
  justify-content: center;
}

.second-mode {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.second-selected-mode {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.second-selected-mode.is-collapsed .second-selected-panel {
  display: none;
}

.confirm-open-btn {
  width: 100%;
}

.camera-summary-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.camera-summary-list .second-first-row + .second-first-row {
  margin-top: 12px;
}

.second-first-row {
  width: 100%;
  border: 1px solid #00000066;
  background: transparent;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.second-first-name {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #000;
}

.second-first-condition {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: #030303cc;
}

.second-first-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.second-link-btn {
  border: 0;
  background: transparent;
  padding: 0;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: #030303cc;
  cursor: pointer;
}

.second-search-box {
  width: 100%;
  border: 1px solid #00000066;
  background: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.second-search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: #030303cc;
}

.second-mode .search-dropdown {
  width: 100%;
  max-width: 100%;
  margin-top: -13px;
}

.second-selected-panel {
  width: 100%;
}

.selected-panel {
  width: 100%;
  border: 1px solid #00000066;
  background: #ffffff;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.selected-row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.selected-name {
  font-family: var(--font-display);
  font-size: var(--type-heading-md-size);
  line-height: var(--type-heading-md-line);
  font-weight: var(--fw-medium);
  color: #000;
}

.selected-value {
  font-family: var(--font-body);
  font-size: var(--type-ui-size);
  line-height: var(--type-ui-line);
  color: #030303cc;
}

.selected-clear {
  border: 0;
  background: transparent;
  cursor: pointer;
  width: 23px;
  height: 23px;
  padding: 0;
  position: relative;
}

.selected-clear::before,
.selected-clear::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 3px;
  width: 1px;
  height: 16px;
  background: #000;
}

.selected-clear::before {
  transform: rotate(45deg);
}

.selected-clear::after {
  transform: rotate(-45deg);
}

.selected-divider {
  width: 100%;
  height: 21px;
  border-bottom: 1px solid #00000033;
}

.upload-divider {
  margin-top: 0;
}

.upload-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.upload-title {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: #030303;
}

.upload-dropzone {
  width: 100%;
  min-height: 75px;
  border: 1px dashed #00000033;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  cursor: pointer;
  transition: border-color 180ms var(--spring-soft), background-color 180ms var(--spring-soft);
  position: relative;
}

.upload-dropzone:hover {
  border-color: #00000055;
}

.upload-dropzone.is-dragging {
  border-color: #000;
  background: #f8f8f8;
}

.upload-drop-label {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 11px;
  line-height: 16px;
  color: #030303;
}

.upload-drop-meta {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 11px;
  line-height: 12px;
  color: #03030399;
}

.upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-preview-modal {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 11px);
  transform: translateX(-50%);
  width: 310px;
  height: 205px;
  background: #fff;
  border: 1px solid #00000033;
  opacity: 0;
  pointer-events: none;
  z-index: 35;
  transition: opacity 160ms var(--spring-soft);
}

.upload-preview-modal.is-open {
  opacity: 1;
}

.upload-preview-pointer {
  position: absolute;
  width: 8px;
  height: 8px;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) rotate(315deg);
  background: #ffffff;
  border-left: 1px solid #00000033;
  border-bottom: 1px solid #00000033;
}

.upload-preview-progress {
  position: absolute;
  left: 9px;
  top: 9px;
  width: 289px;
  display: flex;
  gap: 5px;
}

.upload-preview-track {
  display: block;
  flex: 1 1 0;
  height: 1px;
  background: #eaeaea;
  overflow: hidden;
}

.upload-preview-fill {
  display: block;
  width: 0%;
  height: 1px;
  background: #000;
}

.upload-preview-image {
  position: absolute;
  left: 8px;
  top: 19px;
  width: 290px;
  height: 174px;
  object-fit: cover;
}

.condition-title {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: #030303;
  margin-bottom: 18px;
}

.condition-row {
  width: 100%;
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.condition-btn {
  flex: 1 1 103px;
  min-width: 103px;
  height: 66px;
  border: 1px solid #00000033;
  background: #fff;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  line-height: 15px;
  color: #000;
  cursor: pointer;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  text-align: center;
  overflow: hidden;
  position: relative;
  transition: border-color 220ms var(--spring), transform 180ms var(--spring-soft),
    background-color 220ms var(--spring), box-shadow 220ms var(--spring),
    flex-basis 280ms var(--spring), min-width 280ms var(--spring),
    padding 220ms var(--spring), gap 220ms var(--spring);
  will-change: flex-basis, min-width, transform;
}

.condition-btn.has-story {
  overflow: visible;
}

.condition-story-modal {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 11px);
  transform: translateX(-50%);
  width: 310px;
  height: 205px;
  background: #ffffff;
  border: 1px solid #00000033;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms var(--spring-soft);
}

.condition-story-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.condition-story-pointer {
  position: absolute;
  width: 8px;
  height: 8px;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) rotate(315deg);
  background: #ffffff;
  border-left: 1px solid #00000033;
  border-bottom: 1px solid #00000033;
}

.condition-story-progress {
  position: absolute;
  left: 9px;
  top: 9px;
  width: 289px;
  display: flex;
  gap: 5px;
}

.condition-story-track {
  display: block;
  flex: 1 1 0;
  height: 1px;
  background: #00000026;
  overflow: hidden;
}

.condition-story-fill {
  display: block;
  width: 0%;
  height: 1px;
  background: #000000;
  transition: width 0ms linear;
}

.condition-story-image {
  position: absolute;
  left: 8px;
  top: 19px;
  width: 290px;
  height: 150px;
  object-fit: cover;
}

.condition-story-caption {
  position: absolute;
  left: 8px;
  top: 179px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 11px;
  line-height: 12px;
  color: #030303;
  opacity: 0.6;
}

.condition-story-hit {
  position: absolute;
  top: 19px;
  width: 50%;
  height: 150px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.condition-story-hit.is-left {
  left: 0;
}

.condition-story-hit.is-right {
  right: 0;
}

.condition-btn.is-active {
  border-color: #000;
  flex: 0 0 179px;
  min-width: 179px;
  align-items: flex-start;
  text-align: left;
  transform: translateY(-1px) scale(1.005);
  box-shadow: 0 1px 0 #0000000d;
}

.condition-btn:not(.is-active):not(.is-disabled):hover {
  border-color: #0000004d;
}

.condition-btn.is-disabled {
  cursor: not-allowed;
  background: transparent;
}

.condition-label {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  line-height: 14px;
  color: #030303;
  width: 100%;
  transition: transform 220ms var(--spring-soft), opacity 180ms var(--spring);
}

.condition-desc {
  display: block;
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 11px;
  line-height: 12px;
  color: #030303;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms var(--spring), transform 220ms var(--spring-soft);
  pointer-events: none;
}

.condition-btn.is-active .condition-desc {
  opacity: 0.6;
  transform: translateY(0);
}

.condition-btn.is-active .condition-label {
  transform: translateY(-10px);
}

.quote-btn {
  width: 100%;
  border: 1px solid transparent;
  background: #000;
  color: #fff;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  line-height: 19px;
  padding: 10px;
  cursor: pointer;
  transition: transform 180ms var(--spring-soft), opacity 180ms var(--spring),
    filter 220ms var(--spring);
}

.quote-btn:hover {
  transform: translateY(-1px) scale(1.002);
  filter: brightness(1.04);
}

.quote-btn:active {
  transform: translateY(0) scale(0.997);
}

.selected-links {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

#add-another-camera {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  opacity: 0.7;
}

#add-another-camera::before {
  content: "";
  width: 11px;
  height: 11px;
  display: inline-block;
  background:
    linear-gradient(#000, #000) center/1px 11px no-repeat,
    linear-gradient(#000, #000) center/11px 1px no-repeat;
}

.selected-link {
  border: 0;
  background: transparent;
  padding: 0;
  font-family: var(--font-body);
  font-size: var(--type-ui-size);
  line-height: var(--type-ui-line);
  color: #030303cc;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms var(--spring-soft), opacity 180ms var(--spring);
}

.selected-link:hover {
  transform: translateY(-1px);
}

.selected-link.muted {
  color: #000;
  opacity: 0.7;
}

.selected-links.is-single-link {
  justify-content: center;
}

.selected-links.is-end {
  justify-content: flex-end;
}

.quote-review-mode {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-review-panel {
  gap: 9px;
}

.quote-review-panel .selected-name {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.quote-contact-mode {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-submitted-mode {
  width: 352px;
  display: flex;
  flex-direction: column;
}

.submitted-card {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 3px #00000033;
  padding: 30px 27px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.submitted-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.submitted-title {
  margin: 0;
  width: 100%;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 25px;
  line-height: 25px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  text-align: left;
}

.submitted-offer-id {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: #030303;
}

.submitted-offer-id span:last-child {
  color: #03030399;
}

.submitted-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.submitted-rows {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.submitted-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 20px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: #030303;
}

.submitted-row-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.submitted-condition {
  color: #03030399;
}

.submitted-total-row span {
  font-weight: 600;
}

.submitted-copy {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.submitted-copy p {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  text-align: left;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.submitted-primary {
  color: #030303;
  font-weight: 600;
  line-height: 40px;
}

.submitted-secondary {
  color: #030303cc;
  line-height: 40px;
}

.quote-contact-panel {
  gap: 10px;
}

.quote-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote-list-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 20px;
}

.quote-list-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: #030303;
}

.quote-list-name {
  color: #030303;
}

.quote-list-condition {
  color: #03030399;
}

.quote-list-price {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: #030303;
}

.quote-total-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: #030303;
  margin-top: 2px;
}

.quote-total-row strong {
  font-weight: 600;
}

.quote-total-row span {
  font-weight: 600;
}

.quote-list-divider {
  width: 100%;
  height: 1px;
  background: #00000033;
}

.quote-contact-title {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: #030303;
}

.quote-input-row {
  width: 100%;
  display: flex;
  gap: 10px;
}

.quote-input-full {
  width: 100%;
}

.quote-input-row input,
.quote-input-full input {
  width: 100%;
  min-height: 40px;
  border: 1px solid #00000066;
  background: #ffffff;
  color: #030303cc;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  line-height: 20px;
  padding: 10px 14px;
  outline: 0;
}

.quote-input-row input::placeholder,
.quote-input-full input::placeholder {
  color: #03030399;
}

.quote-submit-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.quote-submit-btn {
  width: auto;
  flex: 1 1 auto;
}

.quote-review-action {
  width: 100%;
  border: 1px solid transparent;
  background: #000000;
  color: #ffffff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 180ms var(--spring-soft), filter 220ms var(--spring);
}

.quote-submit-action {
  padding: 10px;
  justify-content: center;
}

.quote-submit-action .quote-review-label {
  font-size: 13px;
  line-height: 19px;
  font-weight: 600;
  text-align: center;
  flex: 0 1 auto;
}

.quote-review-action:hover {
  transform: translateY(-1px) scale(1.002);
  filter: brightness(1.04);
}

.quote-review-action:active {
  transform: translateY(0) scale(0.997);
}

.quote-review-action:disabled {
  cursor: not-allowed;
  opacity: 0.78;
  filter: grayscale(0.05);
  transform: none;
}

.quote-review-label {
  flex: 1 1 auto;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--type-ui-compact-size);
  line-height: var(--type-ui-compact-line);
  font-weight: var(--fw-semibold);
}

.quote-validity-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: #24b34f;
  white-space: nowrap;
}

.quote-submit-status {
  min-height: 20px;
  font-family: var(--font-body);
  font-size: var(--type-ui-size);
  line-height: var(--type-ui-line);
  color: #008734;
  text-align: center;
}

.quote-submit-status.is-error {
  color: #9d1e1e;
}

.quote-submit-status.is-success {
  color: #1f7a37;
}

.quote-validity-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.quote-validity {
  flex: 0 0 auto;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: #030303cc;
  white-space: nowrap;
}

.condition-btn.is-disabled .condition-label {
  color: #030303cc;
  opacity: 0.3;
}

.how-link {
  margin-top: 12px;
  display: inline-block;
  color: #000000;
  opacity: 0.7;
  font-family: var(--font-body);
  font-size: var(--type-ui-size);
  line-height: var(--type-ui-line);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-position: from-font;
  transition: opacity 180ms var(--spring);
}

.how-link:hover,
.how-link:focus-visible {
  opacity: 1;
}

@media (min-width: 769px) {
  .search-mode .how-link-wrap {
    width: 310px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .search-mode .how-link-wrap .how-link {
    margin-top: 0;
  }

  .search-mode .how-tooltip {
    position: absolute;
    left: 50%;
    top: -112px;
    transform: translateX(-50%) translateY(4px);
    width: 220px;
    height: 106px;
    border: 1px solid #00000033;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 18px 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms var(--spring), transform 180ms var(--spring-soft);
    z-index: 30;
  }

  .search-mode .how-tooltip::after {
    content: "";
    position: absolute;
    left: calc(50% - 1px);
    top: calc(100% - 1px);
    width: 8px;
    height: 8px;
    border-left: 1px solid #00000033;
    border-bottom: 1px solid #00000033;
    background: #ffffff;
    transform: translateX(-50%) rotate(-45deg);
  }

  .search-mode .how-tooltip p {
    margin: 0;
    color: #030303;
    font-family: var(--font-body);
    font-size: 11px;
    line-height: 12px;
    text-align: center;
    white-space: nowrap;
  }

  .search-mode .how-link-wrap:hover .how-tooltip,
  .search-mode .how-link-wrap:focus-within .how-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.how-modal-overlay {
  position: fixed;
  inset: 0;
  background: #000000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--spring);
  z-index: 70;
}

.how-modal-overlay.is-open {
  opacity: 0.3;
  pointer-events: auto;
}

.how-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 290px;
  min-height: 144px;
  transform: translate(-50%, -50%) scale(0.98);
  padding: 16px 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--spring), transform 180ms var(--spring-soft);
  z-index: 80;
}

.how-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.how-modal-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.how-modal-title {
  color: #030303;
  font-family: var(--font-body);
  font-size: var(--type-ui-size);
  line-height: 14px;
  font-weight: var(--fw-semibold);
}

.how-modal-close {
  width: 23px;
  height: 23px;
  border: 0;
  background: transparent;
  padding: 0;
  position: relative;
  cursor: pointer;
}

.how-modal-close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 1px;
  background: #030303;
  transform-origin: center;
}

.how-modal-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.how-modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.how-modal-steps {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.how-modal-steps p {
  margin: 0;
  color: #030303;
  font-family: var(--font-body);
  font-size: var(--type-ui-size);
  line-height: 14px;
  text-align: left;
  white-space: nowrap;
}

.second-mode .selected-links {
  margin-top: 12px;
}

.trust-block {
  width: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.desktop-frame[data-state="submitted"] .hero-copy,
.desktop-frame[data-state="submitted"] .trust-block {
  display: none;
}

.desktop-frame[data-state="submitted"] .hero-stack {
  gap: 0;
}

.trust-title-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.trust-title-row .line {
  flex: 1 1 0;
  min-width: 0;
  height: 1px;
  background: #000000;
  opacity: 0.3;
}

.trust-title-row .title {
  color: var(--body);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  line-height: 20px;
  white-space: nowrap;
}

.stats-row {
  width: 100%;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat {
  flex: 0 0 217px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.stat h3 {
  margin: 0;
  text-align: center;
  color: #030303;
  font-family: var(--font-display);
  font-size: var(--type-stat-size);
  line-height: var(--type-stat-line);
  font-weight: var(--fw-regular);
}

.stat p {
  margin: 0;
  text-align: center;
  color: var(--body);
  font-family: var(--font-body);
  font-size: var(--type-ui-size);
  line-height: var(--type-ui-line);
}

.is-hidden {
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  margin-top: 0;
  border-color: transparent;
  pointer-events: none;
  overflow: hidden;
}

.u-hidden {
  display: none;
}

@media (max-width: 768px) {
  :root {
    --mobile-edge-gutter: 15px;
    --type-hero-title-size: var(--type-mobile-hero-title-size);
    --type-hero-title-line: var(--type-mobile-hero-title-line);
    --type-hero-body-size: var(--type-mobile-ui-size);
    --type-hero-body-line: var(--type-mobile-ui-line);
    --type-ui-size: var(--type-mobile-ui-size);
    --type-ui-line: var(--type-mobile-ui-line);
    --type-stat-size: var(--type-mobile-stat-size);
    --type-stat-line: var(--type-mobile-stat-line);
  }

  .desktop-frame {
    width: 100%;
    max-width: none;
    height: 760px;
    min-height: 760px;
    margin: 0 auto;
    justify-content: space-between;
  }

  .top-strip {
    height: 49px;
    background-image: url("https://workers.paper.design/file-assets/01KJSQMF8GMGGSH5YZFP35JV6F/01KJSZ6ATNG3H1X387B4PG7F65.png");
  }

  .content-area {
    padding: var(--mobile-edge-gutter);
    align-items: stretch;
    justify-content: center;
  }

  .center-column {
    width: 100%;
    max-width: none;
    min-height: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .hero-stack {
    width: 100%;
    flex: 1 1 auto;
    justify-content: center;
    gap: 30px;
  }

  .hero-stack h1 {
    width: 100%;
    font-size: var(--type-hero-title-size);
    line-height: var(--type-hero-title-line);
  }

  .hero-stack p {
    width: 100%;
    font-size: var(--type-hero-body-size);
    line-height: var(--type-hero-body-line);
  }

  .desktop-frame[data-state="default"] .hero-stack p,
  .desktop-frame[data-state="selected"] .hero-stack p,
  .desktop-frame[data-state="one-confirmed"] .hero-stack p,
  .desktop-frame[data-state="second-search"] .hero-stack p,
  .desktop-frame[data-state="second-selected"] .hero-stack p,
  .desktop-frame[data-state="quote-review"] .hero-stack p,
  .desktop-frame[data-state="quote-contact"] .hero-stack p {
    width: 100%;
  }

  .search-stack {
    width: 100%;
    gap: 15px;
  }

  .search-mode {
    width: 100%;
  }

  .search-box {
    width: 100%;
    min-height: 45px;
    padding: 12px 10px;
  }

  .search-box input {
    font-size: var(--type-mobile-search-size);
    line-height: var(--type-mobile-search-line);
    text-align: left;
    padding-right: 28px;
  }

  .second-search-box input,
  .quote-input-row input,
  .quote-input-full input {
    font-size: var(--type-mobile-search-size);
    line-height: var(--type-mobile-search-line);
  }

  .search-box svg {
    top: 14px;
    right: 10px;
  }

  .search-dropdown {
    width: 100%;
    margin-top: -1px;
  }

  .how-link {
    font-size: var(--type-ui-size);
    line-height: var(--type-ui-line);
    opacity: 0.67;
  }

  .selected-mode {
    width: 100%;
  }

  .one-confirmed-mode {
    width: 100%;
    gap: 12px;
  }

  .one-confirmed-card {
    padding: 10px;
  }

  .one-confirmed-add {
    min-height: 45px;
    padding: 10px;
    font-size: var(--type-ui-size);
    line-height: var(--type-ui-line);
  }

  .one-confirmed-add svg {
    width: 16px;
    height: 16px;
  }

  .one-confirmed-how .selected-link {
    font-size: var(--type-ui-size);
    line-height: var(--type-ui-line);
    opacity: 0.7;
  }

  .confirm-open-btn {
    display: none;
  }

  .second-mode {
    width: 100%;
  }

  .second-selected-mode {
    width: 100%;
  }

  .selected-panel {
    padding: 10px;
  }

  .selected-name {
    font-size: 14px;
    line-height: 18px;
  }

  .selected-value {
    font-size: var(--type-ui-size);
    line-height: var(--type-ui-line);
  }

  .selected-clear {
    width: 23px;
    height: 23px;
  }

  .condition-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    align-items: stretch;
  }

  .condition-btn {
    font-size: var(--type-ui-size);
    padding: 8px 6px;
    min-width: 0;
    width: 100%;
    flex: 0 0 auto;
    height: 56px;
    min-height: 56px;
  }

  .condition-btn.is-active {
    grid-column: 1 / -1;
    height: auto;
    min-height: 56px;
  }

  .condition-btn.is-disabled {
    grid-column: 1 / -1;
  }

  .selected-link,
  .quote-btn,
  .condition-title {
    font-size: var(--type-ui-size);
    line-height: var(--type-ui-line);
  }

  .trust-block {
    width: 100%;
    flex: 0 0 auto;
    margin-top: auto;
    gap: 18px;
  }

  .trust-title-row {
    width: 100%;
    gap: 16px;
  }

  .trust-title-row .line {
    width: 65px;
  }

  .trust-title-row .title {
    font-size: var(--type-ui-size);
    line-height: var(--type-ui-line);
  }

  .stats-row {
    width: 100%;
    padding: 0;
    gap: 8px;
  }

  .stat {
    flex: 1 1 0;
    min-width: 0;
  }

  .stat h3 {
    font-size: var(--type-stat-size);
    line-height: var(--type-stat-line);
    text-align: center;
  }

  .stat p {
    font-size: var(--type-ui-size);
    line-height: var(--type-ui-line);
    text-align: center;
    white-space: nowrap;
  }

  .search-option .name {
    font-size: 13px;
  }

  .search-option .value {
    font-size: 11px;
  }

  .upload-dropzone {
    padding-top: 5px;
    padding-bottom: 15px;
    padding-left: 0;
    padding-right: 0;
    gap: 13px;
    min-height: 75px;
    justify-content: center;
    align-items: center;
  }

  .upload-dropzone:not(.has-mobile-thumbs) {
    padding-top: 0;
    padding-bottom: 0;
  }

  .upload-dropzone.has-mobile-thumbs {
    justify-content: flex-start;
  }

  .upload-mobile-strip {
    width: 100%;
    height: 112px;
    display: flex;
    gap: 5px;
    padding: 0 5px;
  }

  .upload-mobile-thumb {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    height: 112px;
    object-fit: cover;
    display: block;
  }

  .upload-drop-label {
    width: 100%;
    display: block;
    font-size: 13px;
    line-height: 16px;
    text-align: center;
  }

  .upload-drop-meta {
    display: none;
  }

  .desktop-frame[data-state="quote-contact"] {
    height: auto;
    min-height: 760px;
  }

  .desktop-frame[data-state="quote-contact"] .content-area {
    padding-bottom: 15px;
  }

  .desktop-frame[data-state="submitted"] {
    height: 760px;
    min-height: 760px;
  }

  .desktop-frame[data-state="submitted"] .content-area {
    padding: 15px;
    align-items: stretch;
  }

  .desktop-frame[data-state="submitted"] .center-column {
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
  }

  .desktop-frame[data-state="submitted"] .hero-stack {
    width: 100%;
    flex: 1 1 auto;
    justify-content: center;
  }

  .desktop-frame[data-state="submitted"] .search-stack {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .desktop-frame[data-state="submitted"] .quote-submitted-mode {
    width: 100%;
  }

  .desktop-frame[data-state="submitted"] .submitted-card {
    width: 100%;
    padding: 30px 27px;
    gap: 70px;
  }

  .desktop-frame[data-state="submitted"] .submitted-primary,
  .desktop-frame[data-state="submitted"] .submitted-secondary {
    line-height: 20px;
  }

  .desktop-frame[data-state="quote-review"] .center-column,
  .desktop-frame[data-state="quote-contact"] .center-column {
    height: auto;
    min-height: 100%;
    gap: 20px;
  }

  .desktop-frame[data-state="quote-review"] .hero-stack,
  .desktop-frame[data-state="quote-contact"] .hero-stack {
    flex: 0 0 auto;
    justify-content: flex-start;
    gap: 20px;
  }

  .desktop-frame[data-state="quote-review"] .center-column {
    height: 100%;
    min-height: 100%;
    gap: 0;
    justify-content: space-between;
  }

  .desktop-frame[data-state="quote-review"] .hero-stack {
    flex: 1 1 auto;
    justify-content: center;
    gap: 30px;
  }

  .desktop-frame[data-state="quote-review"] .trust-block,
  .desktop-frame[data-state="quote-contact"] .trust-block {
    margin-top: 8px;
  }

  .desktop-frame.mobile-config-open {
    height: 100dvh;
    min-height: 100dvh;
  }

  .desktop-frame.mobile-config-open .top-strip,
  .desktop-frame.mobile-config-open .hero-copy,
  .desktop-frame.mobile-config-open .trust-block {
    display: none;
  }

  .desktop-frame.mobile-config-open .content-area {
    height: 100%;
    padding: var(--mobile-edge-gutter);
    align-items: stretch;
  }

  .desktop-frame.mobile-config-open .center-column,
  .desktop-frame.mobile-config-open .hero-stack,
  .desktop-frame.mobile-config-open .search-stack {
    height: 100%;
  }

  .desktop-frame.mobile-config-open .hero-stack {
    gap: 0;
    justify-content: flex-start;
  }

  .selected-mode.is-mobile-config,
  .second-selected-mode.is-mobile-config {
    height: 100%;
    gap: 12px;
  }

  .selected-mode.is-mobile-config .selected-panel,
  .second-selected-mode.is-mobile-config .selected-panel {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 0;
    gap: 9px;
    border: 0;
    background: transparent;
  }

  .selected-mode.is-mobile-config .selected-meta,
  .second-selected-mode.is-mobile-config .selected-meta {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .selected-mode.is-mobile-config .selected-name,
  .second-selected-mode.is-mobile-config .selected-name {
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
  }

  .selected-mode.is-mobile-config .selected-value,
  .second-selected-mode.is-mobile-config .selected-value {
    font-size: 12px;
    line-height: 18px;
  }

  .selected-mode.is-mobile-config .selected-panel > .selected-divider:not(.upload-divider),
  .second-selected-mode.is-mobile-config .selected-panel > .selected-divider:not(.upload-divider) {
    height: 57px;
    border: 0;
    background: transparent;
  }

  .selected-mode.is-mobile-config .selected-panel > .upload-divider,
  .second-selected-mode.is-mobile-config .selected-panel > .upload-divider {
    height: 0;
    border: 0;
    margin: 0;
  }

  .selected-mode.is-mobile-config .condition-title,
  .second-selected-mode.is-mobile-config .condition-title {
    margin-bottom: 0;
  }

  .selected-mode.is-mobile-config .condition-row,
  .second-selected-mode.is-mobile-config .condition-row {
    display: flex;
    flex-direction: column;
    gap: 9px;
    align-items: stretch;
  }

  .selected-mode.is-mobile-config .condition-btn,
  .second-selected-mode.is-mobile-config .condition-btn {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    height: 56px;
    flex: 0 0 auto;
    padding: 8px 6px;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
    transform: none;
    box-shadow: none;
  }

  .selected-mode.is-mobile-config .condition-btn.is-disabled,
  .second-selected-mode.is-mobile-config .condition-btn.is-disabled {
    opacity: 0.5;
  }

  .selected-mode.is-mobile-config .condition-btn .condition-desc,
  .second-selected-mode.is-mobile-config .condition-btn .condition-desc {
    display: none;
  }

  .selected-mode.is-mobile-config .condition-btn.is-active,
  .second-selected-mode.is-mobile-config .condition-btn.is-active {
    height: auto;
    min-height: 56px;
    padding: 0;
    align-items: stretch;
    justify-content: flex-end;
    text-align: left;
    border-color: #00000099;
  }

  .selected-mode.is-mobile-config .condition-btn.is-active .condition-label,
  .second-selected-mode.is-mobile-config .condition-btn.is-active .condition-label {
    transform: none;
    font-weight: 500;
    padding: 20px 20px 3px 20px;
    line-height: 14px;
  }

  .selected-mode.is-mobile-config .condition-btn.is-active .condition-desc,
  .second-selected-mode.is-mobile-config .condition-btn.is-active .condition-desc {
    display: block;
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    opacity: 0.6;
    transform: none;
    padding: 0 20px 20px 20px;
    font-size: 11px;
    line-height: 12px;
  }

  .selected-mode.is-mobile-config .condition-btn .condition-story-modal,
  .second-selected-mode.is-mobile-config .condition-btn .condition-story-modal {
    display: none;
  }

  .selected-mode.is-mobile-config .condition-btn.is-active .condition-story-modal,
  .second-selected-mode.is-mobile-config .condition-btn.is-active .condition-story-modal {
    display: block;
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    height: 240px;
    border: 0;
    border-bottom: 1px solid #00000026;
    opacity: 1;
    pointer-events: auto;
    margin: 0;
  }

  .selected-mode.is-mobile-config .condition-btn.is-active .condition-story-pointer,
  .second-selected-mode.is-mobile-config .condition-btn.is-active .condition-story-pointer {
    display: none;
  }

  .selected-mode.is-mobile-config .condition-btn.is-active .condition-story-progress,
  .second-selected-mode.is-mobile-config .condition-btn.is-active .condition-story-progress {
    left: 8px;
    top: 8px;
    width: calc(100% - 16px);
    gap: 11px;
    z-index: 2;
  }

  .selected-mode.is-mobile-config .condition-btn.is-active .condition-story-track,
  .second-selected-mode.is-mobile-config .condition-btn.is-active .condition-story-track {
    height: 2px;
    background: #ffffff80;
  }

  .selected-mode.is-mobile-config .condition-btn.is-active .condition-story-fill,
  .second-selected-mode.is-mobile-config .condition-btn.is-active .condition-story-fill {
    height: 2px;
    background: #ffffff;
  }

  .selected-mode.is-mobile-config .condition-btn.is-active .condition-story-image,
  .second-selected-mode.is-mobile-config .condition-btn.is-active .condition-story-image {
    left: 0;
    top: 0;
    width: 100%;
    height: 240px;
  }

  .selected-mode.is-mobile-config .condition-btn.is-active .condition-story-caption,
  .second-selected-mode.is-mobile-config .condition-btn.is-active .condition-story-caption {
    left: 8px;
    bottom: 8px;
    top: auto;
    background: #fff;
    padding: 5px;
    opacity: 0.6;
  }

  .selected-mode.is-mobile-config .condition-btn.is-active .condition-story-hit,
  .second-selected-mode.is-mobile-config .condition-btn.is-active .condition-story-hit {
    top: 0;
    height: 240px;
  }

  .selected-mode.is-mobile-config .upload-title,
  .second-selected-mode.is-mobile-config .upload-title {
    font-size: 12px;
    line-height: 18px;
    min-height: 36px;
    display: flex;
    align-items: flex-end;
  }

  .selected-mode.is-mobile-config .selected-links,
  .second-selected-mode.is-mobile-config #second-selected-summary-before,
  .second-selected-mode.is-mobile-config #second-selected-summary-after,
  .second-selected-mode.is-mobile-config #second-selected-links {
    display: none;
  }

  .quote-review-mode,
  .quote-contact-mode {
    gap: 10px;
  }

  .quote-review-panel,
  .quote-contact-panel {
    gap: 8px;
    padding: 10px;
  }

  .quote-contact-panel {
    gap: 10px;
  }

  .upload-preview-modal {
    width: 252px;
    height: 168px;
    bottom: calc(100% + 8px);
  }

  .upload-preview-progress {
    left: 7px;
    top: 7px;
    width: 238px;
    gap: 4px;
  }

  .upload-preview-image {
    left: 6px;
    top: 16px;
    width: 240px;
    height: 146px;
  }

  .upload-preview-pointer {
    bottom: -5px;
  }

  .quote-list-left,
  .quote-list-price,
  .quote-total-row,
  .quote-contact-title {
    font-size: 12px;
    line-height: 18px;
  }

  .quote-review-panel .selected-name {
    font-size: 16px;
    line-height: 20px;
  }

  .quote-review-mode .quote-total-row {
    font-size: 13px;
    line-height: 20px;
  }

  .quote-input-row {
    flex-direction: column;
    gap: 8px;
  }

  .quote-input-row input,
  .quote-input-full input {
    min-height: 40px;
    font-size: 12px;
    line-height: 18px;
    padding: 10px 12px;
  }

  .quote-submit-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .quote-review-action {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .quote-review-mode .quote-review-action {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .quote-contact-mode .quote-review-action {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
  }

  .quote-review-label {
    font-size: 12px;
    line-height: 18px;
  }

  .quote-review-mode .quote-review-label {
    font-size: 13px;
    line-height: 20px;
  }

  .quote-contact-mode .quote-review-label {
    font-size: 13px;
    line-height: 19px;
    font-weight: 400;
    text-align: center;
  }

  .quote-validity-badge {
    font-size: 12px;
    line-height: 18px;
    justify-content: flex-end;
  }

  .quote-contact-mode .quote-validity-badge {
    font-size: 13px;
    line-height: 20px;
  }

  .quote-contact-mode .quote-submit-status {
    text-align: center;
  }

  .quote-submit-btn {
    width: 100%;
  }

  .quote-validity {
    font-size: 12px;
    line-height: 18px;
    text-align: right;
  }
}
