/* STEP-05 production layout. */

.step05-workspace #step-5 {
  --step05-workspace-ready: 1;
}

.step05-workspace #step-5 .quote-main-title {
  position: relative;
  font-family: 'Urbanist', sans-serif;
  font-size: 27px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.15;
}

.step05-workspace #step-5 .quote-main-title .quote-title-info {
  position: relative;
  top: -0.1em;
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  margin-left: 9px;
  border-radius: 50%;
  background: #232323;
  color: #fff;
  cursor: help;
  font-family: 'Source Code Pro', 'Google Sans Code', monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  vertical-align: middle;
}

.step05-workspace #step-5 .quote-title-tooltip {
  position: absolute;
  left: auto;
  right: 0;
  bottom: calc(100% + 9px);
  z-index: 60;
  width: 280px;
  max-width: min(280px, calc(100vw - 48px));
  padding: 11px 13px;
  background: #232323;
  color: #fff;
  font-family: 'Source Code Pro', 'Google Sans Code', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
  visibility: hidden;
}

.step05-workspace #step-5 .quote-title-tooltip strong {
  color: inherit;
  font: inherit;
  font-weight: 800;
}

.step05-workspace #step-5 .quote-title-info:hover .quote-title-tooltip,
.step05-workspace #step-5 .quote-title-info:focus-visible .quote-title-tooltip {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.step05-workspace #step-5 .quote-form-header > .quote-important-note {
  display: none;
}

.step05-workspace #step-5 .quote-form-scroll-shell {
  margin-top: 0;
}

.step05-workspace #step-5 .quote-summary-shell {
  flex: 0 0 auto;
}

.step05-workspace #step-5 .quote-form .quote-form-header {
  width: 100%;
  max-width: none;
  margin: 16px auto 18px;
  padding: 0 5px;
}

.step05-workspace #step-5 .quote-summary-back {
  flex: 0 0 auto;
  width: 100%;
  max-width: none;
  min-height: 40px;
  margin: 17px 0 0;
  padding: 12px 18px;
  gap: 10px;
  justify-content: center;
}

.step05-workspace #step-5 .quote-summary-back::before {
  content: '';
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background: currentColor;
  -webkit-mask: url('../assets/icons/button-arrow-left.svg') center / contain no-repeat;
  mask: url('../assets/icons/button-arrow-left.svg') center / contain no-repeat;
}

.step05-workspace #step-5 .quote-summary-icon-set {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 100%;
  margin: auto 0 0;
  padding: 0;
  overflow: hidden;
}

.step05-workspace #step-5 .quote-summary-icon-set img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.step05-workspace #step-5 .quote-summary-tds-grid {
  --tds-gap: 7px;
  --tds-icon-size: 64px;
  flex: 0 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, var(--tds-icon-size)));
  grid-auto-rows: var(--tds-icon-size);
  align-content: start;
  justify-content: center;
  gap: var(--tds-gap);
  width: 100%;
  min-height: calc((var(--tds-icon-size) * 2) + var(--tds-gap));
  margin: 17px 0 0;
  padding: 0;
}

.step05-workspace #step-5 .tds-icon-cell {
  position: relative;
  min-width: 0;
  width: var(--tds-icon-size);
  height: var(--tds-icon-size);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 0;
  background: #fff;
  color: #232323;
  cursor: help;
}

.step05-workspace #step-5 .tds-icon-cell:not(:nth-child(6n))::after {
  content: '';
  position: absolute;
  left: calc(100% + (var(--tds-gap) / 2));
  top: 50%;
  width: 1px;
  height: 35%;
  background: #d9d9d9;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.step05-workspace #step-5 .tds-icon-cell:nth-child(n + 7)::before {
  content: '';
  position: absolute;
  left: 50%;
  top: calc(var(--tds-gap) / -2);
  width: 35%;
  height: 1px;
  background: #d9d9d9;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.step05-workspace #step-5 .tds-icon-cell img {
  display: block;
  width: var(--tds-icon-size);
  height: var(--tds-icon-size);
  object-fit: contain;
  object-position: center;
}

.step05-workspace #step-5 .tds-icon-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  z-index: 40;
  width: max-content;
  max-width: 220px;
  padding: 9px 11px;
  background: var(--accent);
  color: #fff;
  display: grid;
  gap: 4px;
  font-family: 'Source Code Pro', 'Google Sans Code', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35px;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  text-transform: none;
  transform: translate(-50%, 4px);
  transition: opacity 160ms ease, transform 160ms ease;
  visibility: hidden;
}

.step05-workspace #step-5 .tds-icon-tooltip strong {
  color: inherit;
  font: inherit;
  font-weight: 800;
}

.step05-workspace #step-5 .tds-icon-tooltip span {
  color: inherit;
  font: inherit;
  font-weight: 500;
}

.step05-workspace #step-5 .tds-icon-tooltip::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-top-color: var(--accent);
  transform: translateX(-50%);
}

.step05-workspace #step-5 .tds-icon-cell:hover .tds-icon-tooltip,
.step05-workspace #step-5 .tds-icon-cell:focus-visible .tds-icon-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}

.step05-workspace #step-5 .quote-step-panel[data-quote-panel="2"] > .form-divider-experiment + .form-grid.compact {
  margin-top: 17px;
}

.step05-workspace #step-5 .quote-step-panel + .quote-step-panel {
  margin-top: 15px;
}

.step05-workspace #step-5 .quote-step-panel[data-quote-panel="1"] > .form-divider-experiment[data-section-number="02"] {
  margin-top: 20px;
}

.step05-workspace #step-5 .quote-step-panel[data-quote-panel="2"] > .contact-section-guidance {
  margin-bottom: 31px;
}

.step05-workspace #step-5 .quote-step-panel[data-quote-panel="2"] > .form-grid.compact {
  column-gap: 14px;
  row-gap: 10px;
}

.step05-workspace #step-5 .quote-step-panel[data-quote-panel="2"] .form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.step05-workspace #step-5 .wall-dimensions-layout {
  grid-template-columns: minmax(0, 83fr) minmax(108px, 17fr);
  grid-template-rows: auto auto;
  grid-template-areas:
    "unit preview"
    "walls preview";
  column-gap: 24px;
  row-gap: 0;
  align-items: start;
  margin-top: 0;
  position: relative;
  overflow: visible;
}

.step05-workspace #step-5 .wall-dimensions-layout:has(.sample-variant-info:hover),
.step05-workspace #step-5 .wall-dimensions-layout:has(.sample-variant-info:focus-visible) {
  z-index: 5000;
}

.step05-workspace #step-5 .wall-section-guidance {
  margin-bottom: 17px;
  border-bottom: 0;
}

.step05-workspace #step-5 .wall-dimensions-layout > .measurement-unit-toggle {
  position: relative;
  grid-area: unit;
  justify-self: stretch;
  width: auto;
  min-height: 42px;
  height: 42px;
  margin: 0;
  padding: 6px 10px 6px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  overflow: visible;
}

.step05-workspace #step-5 .wall-dimensions-layout > .measurement-unit-toggle:has(.measurement-unit-info:hover),
.step05-workspace #step-5 .wall-dimensions-layout > .measurement-unit-toggle:has(.measurement-unit-info:focus-visible) {
  z-index: 6000;
}

.step05-workspace #step-5 .wall-dimensions-layout > .measurement-unit-toggle > span {
  order: 1;
  width: auto;
  padding: 0;
  background: transparent;
  color: #232323;
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: normal;
  text-align: left;
  white-space: nowrap;
}

.step05-workspace #step-5 .wall-dimensions-layout > .measurement-unit-toggle .unit-switch-track {
  order: 2;
  flex: 0 0 144px;
  width: 144px;
  height: 31px;
  padding: 0 5px;
  justify-self: start;
}

.step05-workspace #step-5 .wall-dimensions-layout > .measurement-unit-toggle .unit-switch-track::after {
  left: 5px;
  top: 5px;
  width: 64px;
  height: 19px;
}

.step05-workspace #step-5 .wall-dimensions-layout > .measurement-unit-toggle .unit-switch-track:has(input[value="INCH"]:checked)::after,
.step05-workspace #step-5 .wall-dimensions-layout > .measurement-unit-toggle.is-inch .unit-switch-track::after {
  transform: translateX(69px);
}

.step05-workspace #step-5 .wall-dimensions-layout > .measurement-unit-toggle b {
  min-width: 64px;
  width: auto;
  height: 31px;
  font-size: 0.58rem;
}

.step05-workspace #step-5 .wall-dimensions-layout > .measurement-unit-toggle .measurement-unit-info {
  order: 3;
  margin-left: auto;
}

.step05-workspace #step-5 .wall-dimensions-layout > .measurement-unit-toggle .measurement-unit-info.sample-variant-info {
  position: relative;
  z-index: 32000;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(35 35 35 / 14%);
  background: #f0f0f0;
  color: #232323;
  font-family: 'Source Code Pro', 'Google Sans Code', monospace;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  cursor: help;
}

.step05-workspace #step-5 .wall-dimensions-layout > .measurement-unit-toggle .measurement-unit-info .sample-variant-info-mark {
  text-transform: none;
}

.step05-workspace #step-5 .wall-dimensions-layout > .measurement-unit-toggle .measurement-unit-info .sample-variant-info-tooltip {
  position: absolute;
  left: auto;
  right: 0;
  top: calc(100% + 9px);
  bottom: auto;
  z-index: 32001;
  width: min(360px, calc(100vw - 48px));
  max-width: min(360px, calc(100vw - 48px));
  padding: 13px 15px;
  background: rgb(35 35 35 / 90%);
  color: #fff;
  font-family: 'Source Code Pro', 'Google Sans Code', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.45;
  text-align: left;
  text-transform: none;
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.step05-workspace #step-5 .wall-dimensions-layout > .measurement-unit-toggle .measurement-unit-info:hover .sample-variant-info-tooltip,
.step05-workspace #step-5 .wall-dimensions-layout > .measurement-unit-toggle .measurement-unit-info:focus-visible .sample-variant-info-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.step05-workspace #step-5 .measurement-inline-note {
  display: none;
  grid-column: 1;
  grid-row: 2;
  margin: 22px 0 0;
  padding: 11px 0 0;
  border-top: 1.5px solid rgb(35 35 35 / 14%);
  color: #232323;
  font-family: 'Urbanist', Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.3;
  text-align: center;
}

.step05-workspace #step-5 .measurement-inline-note img {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 7px;
  vertical-align: -3px;
}

.step05-workspace #step-5 .measurement-inline-note a {
  color: #232323;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.step05-workspace #step-5 .measurement-help {
  position: relative;
  order: 3;
  flex: 0 0 31px;
  width: 31px;
  height: 31px;
  margin-left: auto;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: #232323;
  color: #fff;
  cursor: help;
}

.step05-workspace #step-5 .measurement-help img {
  width: 17px;
  height: 17px;
  display: block;
}

.step05-workspace #step-5 .measurement-help-tooltip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 9px);
  z-index: 80;
  width: 320px;
  max-width: min(320px, calc(100vw - 48px));
  padding: 13px 15px;
  background: rgb(35 35 35 / 90%);
  color: #fff;
  font-family: 'Source Code Pro', 'Google Sans Code', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
  visibility: hidden;
}

.step05-workspace #step-5 .measurement-help-tooltip strong {
  font-weight: 800;
}

.step05-workspace #step-5 .measurement-help-tooltip a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.step05-workspace #step-5 .measurement-help:hover .measurement-help-tooltip,
.step05-workspace #step-5 .measurement-help:focus-visible .measurement-help-tooltip {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.step05-workspace #step-5 .wall-dimensions-layout > .wall-measurements {
  grid-area: walls;
  align-self: start;
  align-content: start;
  height: auto;
  margin-top: 11px !important;
}

.step05-workspace #step-5 .wall-dimensions-layout {
  grid-template-columns: minmax(0, 83fr) minmax(108px, 17fr);
  grid-template-rows: auto auto;
  grid-template-areas:
    "unit preview"
    "walls preview";
  column-gap: 24px;
  row-gap: 0;
  align-items: start;
}

.step05-workspace #step-5 .wall-measurements[data-wall-list] > .wall-row.optional:not(.is-enabled) {
  position: relative;
  display: grid;
  overflow: hidden;
}

.step05-workspace #step-5 .wall-add-panel {
  min-height: 42px;
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr) auto;
  align-items: center;
  justify-content: stretch;
  gap: 7px;
  padding: 7px 0;
  border: 0;
  background: transparent;
}

.step05-workspace #step-5 .wall-add-panel.is-maxed {
  display: grid;
  justify-content: stretch;
  margin-top: 0;
}

.step05-workspace #step-5 .wall-add-panel.is-maxed .wall-add-btn {
  display: none;
}

.step05-workspace #step-5 .wall-add-panel .wall-add-btn {
  display: none;
}

.step05-workspace #step-5 .wall-add-btn,
.step05-workspace #step-5 .wall-next-btn {
  min-height: 28px;
  padding: 0 15px;
  border: 1px solid rgb(35 35 35 / 18%);
  border-radius: 0;
  background: #fff;
  color: #232323;
  cursor: pointer;
  font-family: 'Source Code Pro', 'Google Sans Code', monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.step05-workspace #step-5 .wall-add-btn {
  grid-column: 1;
  justify-self: center;
}

.step05-workspace #step-5 .wall-next-btn {
  grid-column: 3;
  justify-self: end;
  min-width: 220px;
}

.step05-workspace #step-5 .wall-add-btn:hover,
.step05-workspace #step-5 .wall-add-btn:focus-visible,
.step05-workspace #step-5 .wall-next-btn:hover,
.step05-workspace #step-5 .wall-next-btn:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.step05-workspace #step-5 .wall-limit-note {
  grid-column: 1 / 3;
  align-self: center;
  margin: 0;
  color: #232323;
  font-family: 'Urbanist', Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 1.35;
  text-align: left;
}

.step05-workspace #step-5 .wall-limit-note[hidden] {
  display: none;
}

.step05-workspace #step-5 .wall-limit-note a {
  color: #232323;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.step05-workspace #step-5 .wall-dimensions-layout > .selected-material-preview {
  position: relative;
  grid-area: preview;
  align-self: stretch;
  min-height: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0;
  border: 0;
  background: #fff;
  overflow: visible;
}

.step05-workspace #step-5 .wall-dimensions-layout > .selected-material-preview::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -13px;
  width: 2px;
  background: rgb(35 35 35 / 14%);
  pointer-events: none;
}

.step05-workspace #step-5 .selected-material-preview-image {
  display: block;
  position: relative;
  order: 2;
  flex: 1 1 auto;
  width: 90%;
  height: calc(100% - 22px);
  min-height: 0;
  margin: 0 auto;
  border: 0;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
}

.step05-workspace #step-5 .selected-material-preview-card {
  position: relative;
  flex: 0 0 calc((100% - 84px) / 7);
  min-width: 0;
  min-height: 0;
  padding: 7px 14px;
  border: 0;
  border-left: 1px solid rgb(35 35 35 / 14%);
  border-radius: 0;
  background: #fff;
  color: #232323;
  cursor: pointer;
  overflow: visible;
  text-align: center;
}

.step05-workspace #step-5 .selected-material-preview-card:first-child,
.step05-workspace #step-5 .selected-material-preview-card:nth-child(7n + 1) {
  border-left: 0;
}

.step05-workspace #step-5 .selected-material-preview-card.is-active {
  border-left-color: transparent;
  box-shadow: inset 0 0 0 1.5px var(--accent);
}

.step05-workspace #step-5 .selected-material-preview-card .selected-material-preview-image {
  min-height: 0;
}

.step05-workspace #step-5 .material-preview-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step05-workspace #step-5 .material-preview-img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 180ms ease;
}

.step05-workspace #step-5 .selected-material-preview-card .selected-material-preview-title {
  display: block;
  margin: 0 0 6px;
  padding: 0;
  background: transparent;
  color: #232323;
  font-family: 'Source Code Pro', 'Google Sans Code', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.step05-workspace #step-5 .selected-material-preview > .selected-material-preview-title {
  display: block;
  flex: 0 0 auto;
  order: 1;
  align-self: stretch;
  width: 100%;
  margin: 11px 0 0;
  padding: 0;
  position: relative;
  z-index: 2;
  background: #fff;
  color: #232323;
  font-family: 'Source Code Pro', 'Google Sans Code', monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.step05-workspace #step-5 .selected-material-preview-card .selected-material-preview-caption {
  display: block;
  margin: 6px 0 0;
  color: #232323;
  font-family: 'Source Code Pro', 'Google Sans Code', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25px;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.step05-workspace #step-5 .selected-material-preview > .selected-material-preview-caption {
  display: block;
  flex: 0 0 auto;
  order: 3;
  align-self: stretch;
  width: 100%;
  margin: 0 0 11px;
  padding: 0;
  position: relative;
  z-index: 2;
  background: #fff;
  color: #232323;
  font-family: 'Source Code Pro', 'Google Sans Code', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.step05-workspace #step-5 .selected-material-preview-card:hover .material-preview-img-hover,
.step05-workspace #step-5 .selected-material-preview-card:focus-visible .material-preview-img-hover {
  opacity: 1;
}

.step05-workspace #step-5 .selected-material-preview:hover .material-preview-img-hover,
.step05-workspace #step-5 .selected-material-preview:focus-visible .material-preview-img-hover {
  opacity: 1;
}

/* Wall rows: label, width, height, quantity, material */
.step05-workspace #step-5 .wall-measurements[data-wall-list] > .wall-row,
.step05-workspace #step-5 .wall-measurements[data-wall-list] > .wall-row.optional {
  grid-template-columns:
    142px
    minmax(72px, 0.78fr)
    minmax(72px, 0.78fr)
    104px
    minmax(150px, 1.16fr);
}

.step05-workspace #step-5 .wall-measurements[data-wall-list] {
  align-self: start;
  align-content: start;
  grid-auto-rows: minmax(48px, auto);
}

.step05-workspace #step-5 .wall-measurements[data-wall-list] > .wall-row:not(.optional) {
  grid-template-columns:
    142px
    minmax(72px, 0.78fr)
    minmax(72px, 0.78fr)
    104px
    minmax(150px, 1.16fr);
}

.step05-workspace #step-5 .wall-measurements[data-wall-list] > .wall-row > span {
  position: relative;
  padding: 0 31px 0 12px;
  white-space: nowrap;
}

.step05-workspace #step-5 .wall-measurements[data-wall-list] > .wall-row.optional:not(.is-enabled) > :not(.wall-row-add-btn) {
  opacity: 0.2;
  pointer-events: none;
}

.step05-workspace #step-5 .wall-measurements[data-wall-list] > .wall-row.optional:not(.is-enabled) .wall-remove-btn {
  display: none;
}

.step05-workspace #step-5 .wall-row-add-btn {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #232323;
  cursor: pointer;
  font-family: 'Source Code Pro', 'Google Sans Code', monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step05-workspace #step-5 .wall-measurements[data-wall-list] > .wall-row.optional:not(.is-enabled).is-next-add-target .wall-row-add-btn {
  display: inline-flex;
}

.step05-workspace #step-5 .wall-row-add-btn:hover,
.step05-workspace #step-5 .wall-row-add-btn:focus-visible {
  color: var(--accent);
}

.step05-workspace #step-5 .wall-measurements[data-wall-list] > .wall-row.optional.is-enabled .wall-row-add-btn {
  display: none;
}

.step05-workspace #step-5 .wall-measurements[data-wall-list] > .wall-row.optional.is-enabled > span {
  background: #232323;
  color: #fff;
}

.step05-workspace #step-5 .wall-measurements[data-wall-list] > .wall-row.optional .wall-remove-btn {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 19px;
  height: 19px;
  transform: translateY(-50%);
  border: 1px solid currentcolor;
  background: transparent;
  color: currentcolor;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.step05-workspace #step-5 .wall-measurements[data-wall-list] > .wall-row.optional.has-value .wall-remove-btn {
  color: #fff;
}

.step05-workspace #step-5 .wall-measurements[data-wall-list] input[name$="_width"]::placeholder,
.step05-workspace #step-5 .wall-measurements[data-wall-list] input[name$="_height"]::placeholder {
  font-size: 85%;
  text-transform: uppercase;
}

/* CSV-controlled Material Sample selector */
.step05-workspace #step-5 .quote-step-panel[data-quote-panel="1"] > .form-divider:first-child,
.step05-workspace #step-5 .quote-step-panel[data-quote-panel="1"] > #quote-sample-options,
.step05-workspace #step-5 .quote-step-panel[data-quote-panel="1"] > .sample-shared-note:not(.sample-dropdown-shared-note) {
  display: none;
}

.step05-workspace #step-5 .sample-dropdown-prototype {
  position: relative;
  z-index: 12;
  margin: 0 0 10px;
  padding: 0;
}

.step05-workspace #step-5 .sample-dropdown-prototype .form-divider {
  margin-bottom: 9px;
}

.step05-workspace #step-5 .sample-section-guidance {
  margin: 0 0 24px;
  color: #232323;
  font-family: 'Open Sans Pro', 'Open Sans', Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.35;
  text-align: center;
  text-transform: none;
}

.step05-workspace #step-5 .sample-dropdown-layout {
  display: grid;
  align-items: stretch;
  gap: 7px;
  width: 100%;
}

.step05-workspace #step-5 .sample-dropdown-icon-panel,
.step05-workspace #step-5 .sample-dropdown-visual,
.step05-workspace #step-5 .sample-dropdown-trigger {
  height: 154px;
  min-height: 154px;
  box-sizing: border-box;
}

.step05-workspace #step-5 .sample-dropdown-icon-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--accent);
}

.step05-workspace #step-5 .sample-dropdown-display-icon {
  width: 45%;
  max-height: 45%;
  aspect-ratio: 1;
  background: #fff;
  -webkit-mask: var(--sample-icon) center / contain no-repeat;
  mask: var(--sample-icon) center / contain no-repeat;
}

/* Active 01: icon, visual and selection columns. */
.step05-workspace #step-5 #sample-dropdown-prototype .sample-dropdown-layout {
  position: relative;
  grid-template-columns: minmax(0, 7fr) minmax(0, 55fr) minmax(0, 38fr);
  grid-template-rows: 280px;
}

.step05-workspace #step-5 #sample-dropdown-prototype .sample-dropdown-visual {
  grid-column: 2;
  grid-row: 1;
  height: 280px;
  min-height: 280px;
}

.step05-workspace #step-5 #sample-dropdown-prototype .sample-dropdown-icon-panel {
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  height: 280px;
  min-height: 280px;
  margin: 0;
  padding: 0 9px 9px;
  border: 0;
  box-sizing: border-box;
  align-items: flex-end;
}

.step05-workspace #step-5 #sample-dropdown-prototype .sample-dropdown-display-icon {
  width: 100%;
  height: auto;
  max-height: none;
}

.step05-workspace #step-5 #sample-dropdown-prototype .sample-dropdown-control {
  grid-column: 3;
  grid-row: 1;
  height: 280px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  border: 1px dashed rgb(35 35 35 / 22%);
  background: #fff;
}

.step05-workspace #step-5 #sample-dropdown-prototype.has-selection .sample-dropdown-control {
  border: 3px solid var(--accent);
}

.step05-workspace #step-5 #sample-dropdown-prototype .sample-dropdown-trigger {
  flex: 0 0 46px;
  height: 46px;
  min-height: 46px;
  padding: 0 48px 0 15px;
  border: 0;
  border-bottom: 1px solid rgb(35 35 35 / 16%);
}

.step05-workspace #step-5 #sample-dropdown-prototype .sample-dropdown-trigger[aria-expanded="true"] {
  border: 0;
  box-shadow: inset 0 0 0 1px var(--accent);
}

.step05-workspace #step-5 #sample-dropdown-prototype .sample-dropdown-trigger-label {
  display: block;
  overflow: hidden;
  color: #232323;
  font-family: 'Source Code Pro', 'Google Sans Code', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.step05-workspace #step-5 #sample-dropdown-prototype .sample-dropdown-selection-details {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  padding: 20px 15px 26px;
  overflow: hidden;
}

.step05-workspace #step-5 #sample-dropdown-prototype .sample-dropdown-selection-details[hidden] {
  display: none;
}

.step05-workspace #step-5 #sample-dropdown-prototype .sample-dropdown-detail-title {
  width: 100%;
  overflow: hidden;
  color: #232323;
  font-family: 'Indie Flower', cursive;
  font-size: clamp(15px, 0.94vw, 18px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.step05-workspace #step-5 #sample-dropdown-prototype .sample-dropdown-current-size {
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: left;
  text-transform: none;
}

.step05-workspace #step-5 #sample-dropdown-prototype .sample-dropdown-selection-details .sample-dropdown-current-description {
  max-width: 100%;
  font-family: 'Source Code Pro', 'Google Sans Code', monospace;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.25px;
  line-height: 1.5;
  margin-bottom: 0;
  text-transform: uppercase;
}

.step05-workspace #step-5 #sample-dropdown-prototype.is-quote-request-only .sample-dropdown-selection-details .sample-dropdown-current-description {
  width: auto;
  max-width: 100%;
  margin-left: 11px;
  text-align: left;
}

.step05-workspace #step-5 #sample-dropdown-prototype.is-quote-request-only .sample-dropdown-selection-details {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
  column-gap: 11px;
}

.step05-workspace #step-5 #sample-dropdown-prototype.is-quote-request-only .sample-dropdown-current-meta,
.step05-workspace #step-5 #sample-dropdown-prototype.is-quote-request-only .sample-dropdown-current-size {
  display: none;
}

.step05-workspace #step-5 #sample-dropdown-prototype.is-quote-request-only .sample-dropdown-selection-details .sample-dropdown-detail-title {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}

.step05-workspace #step-5 #sample-dropdown-prototype.is-quote-request-only .sample-dropdown-selection-details .sample-dropdown-current-description {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}

.step05-workspace #step-5 #sample-dropdown-prototype .sample-dropdown-menu {
  top: 50px;
}

.step05-workspace #step-5 .sample-dropdown-visual {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgb(35 35 35 / 18%);
  background: #f3f3f3;
}

.step05-workspace #step-5 .sample-dropdown-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.step05-workspace #step-5 .sample-dropdown-control {
  position: relative;
  min-width: 0;
  width: 100%;
}

.step05-workspace #step-5 .sample-dropdown-trigger {
  position: relative;
  width: 100%;
  display: block;
  padding: 14px 56px 12px 17px;
  border: 1px solid rgb(35 35 35 / 22%);
  border-radius: 0;
  background: #fff;
  color: #232323;
  text-align: left;
  cursor: pointer;
}

.step05-workspace #step-5 .sample-dropdown-trigger[aria-expanded="true"] {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.step05-workspace #step-5 .sample-dropdown-current {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}

.step05-workspace #step-5 .sample-dropdown-current strong {
  width: 100%;
  overflow: hidden;
  color: #232323;
  font-family: 'Indie Flower', cursive;
  font-size: clamp(15px, 0.94vw, 18px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  text-align: left;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.step05-workspace #step-5 .sample-dropdown-current-meta {
  width: 100%;
  overflow: hidden;
  color: var(--accent);
  font-family: 'Urbanist', Arial, sans-serif;
  font-size: clamp(14px, 1.04vw, 20px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-align: left;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.step05-workspace #step-5 .sample-dropdown-current-size {
  width: 100%;
  color: #232323;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: left;
  text-transform: none;
}

.step05-workspace #step-5 .sample-dropdown-current-description {
  display: block;
  width: 100%;
  margin-top: 3px;
  color: rgb(35 35 35 / 72%);
  font-family: 'Urbanist', Arial, sans-serif;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.15px;
  line-height: 1.3;
  text-align: left;
}

.step05-workspace #step-5 .sample-dropdown-prototype:not(.has-selection) .sample-dropdown-current-meta,
.step05-workspace #step-5 .sample-dropdown-prototype:not(.has-selection) .sample-dropdown-current-description {
  display: none;
}

.step05-workspace #step-5 .sample-dropdown-prototype:not(.has-selection) .sample-dropdown-current-size {
  margin-top: 3px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.35;
  text-transform: none;
}

.step05-workspace #step-5 .sample-dropdown-chevron {
  position: absolute;
  right: 17px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: translateY(-70%) rotate(45deg);
  transform-origin: center;
  transition: transform 160ms ease;
}

.step05-workspace #step-5 .sample-dropdown-trigger[aria-expanded="true"] .sample-dropdown-chevron {
  transform: translateY(-30%) rotate(225deg);
}

.step05-workspace #step-5 .sample-dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  z-index: 40;
  max-height: 150px;
  display: grid;
  overflow-y: auto;
  border: 1px solid rgb(35 35 35 / 24%);
  background: #fff;
  box-shadow: 0 12px 28px rgb(35 35 35 / 12%);
}

.step05-workspace #step-5 .sample-dropdown-menu[hidden] {
  display: none;
}

.step05-workspace #step-5 .sample-dropdown-option {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 0;
  border-bottom: 1px solid rgb(35 35 35 / 10%);
  border-radius: 0;
  background: #fff;
  color: #232323;
  text-align: left;
  cursor: pointer;
}

.step05-workspace #step-5 .sample-dropdown-option:last-child {
  border-bottom: 0;
}

.step05-workspace #step-5 .sample-dropdown-option:hover,
.step05-workspace #step-5 .sample-dropdown-option:focus-visible,
.step05-workspace #step-5 .sample-dropdown-option.is-selected {
  background: color-mix(in srgb, var(--accent) 10%, #fff);
  outline: none;
}

.step05-workspace #step-5 .sample-dropdown-option::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
}

.step05-workspace #step-5 .sample-dropdown-option:hover::before,
.step05-workspace #step-5 .sample-dropdown-option:focus-visible::before,
.step05-workspace #step-5 .sample-dropdown-option.is-selected::before {
  background: var(--accent);
}

.step05-workspace #step-5 .sample-dropdown-option > span {
  overflow: hidden;
  color: #232323;
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.step05-workspace #step-5 .sample-dropdown-shared-note {
  margin-top: 11px;
  text-align: center;
}

.step05-workspace #step-5 .sample-variant-note,
.step05-workspace #step-5 .sample-dropdown-shared-note {
  text-align: center;
  font-weight: 500;
}

/* STEP-05 design sandbox alternatives for Wallpaper Print Sample. */
.step05-design-workspace #step-5 #sample-dropdown-prototype {
  display: none;
}

.step05-design-workspace #step-5 .sample-design-variants {
  display: grid;
  gap: 22px;
  margin: 0 0 24px;
}

.step05-design-workspace #step-5 .sample-design-variant {
  display: grid;
  gap: 0;
}

.step05-design-workspace #step-5 .sample-design-variant .form-divider {
  margin-bottom: 9px;
}

.step05-design-workspace #step-5 .sample-design-variant .sample-section-guidance {
  margin-bottom: 9px;
}

.step05-design-workspace #step-5 .sample-variant-b-layout,
.step05-design-workspace #step-5 .sample-variant-c-layout {
  display: grid;
  gap: 7px;
  min-height: 214px;
  position: relative;
  overflow: visible;
}

.step05-design-workspace #step-5 .sample-variant-b-layout:has(.sample-variant-info:hover),
.step05-design-workspace #step-5 .sample-variant-b-layout:has(.sample-variant-info:focus-visible),
.step05-design-workspace #step-5 .sample-variant-c-layout:has(.sample-variant-info:hover),
.step05-design-workspace #step-5 .sample-variant-c-layout:has(.sample-variant-info:focus-visible) {
  z-index: 7000;
}

.step05-design-workspace #step-5 .sample-variant-b-layout {
  align-items: stretch;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: minmax(181px, auto) 54px;
}

.step05-design-workspace #step-5 .sample-variant-c-layout {
  grid-template-columns: minmax(0, 8fr) minmax(0, 42fr) minmax(0, 50fr);
}

.step05-design-workspace #step-5 .sample-variant-visual {
  grid-column: 4;
  grid-row: 1;
  min-width: 0;
  height: 100%;
  min-height: 181px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(35 35 35 / 18%);
  background: #f3f3f3;
}

.step05-design-workspace #step-5 .sample-variant-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.step05-design-workspace #step-5 .sample-variant-card-grid {
  display: grid;
  grid-column: 1 / 4;
  grid-row: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  grid-template-rows: minmax(0, 1fr);
  position: relative;
  overflow: visible;
}

.step05-design-workspace #step-5 .sample-variant-card-grid:has(.sample-variant-info:hover),
.step05-design-workspace #step-5 .sample-variant-card-grid:has(.sample-variant-info:focus-visible) {
  z-index: 8000;
}

.step05-design-workspace #step-5 .sample-variant-card {
  position: relative;
  min-width: 0;
  min-height: 161px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
  padding: 14px 14px 15px;
  border: 1px solid rgb(35 35 35 / 16%);
  border-radius: 0;
  background: #fff;
  color: #232323;
  cursor: pointer;
  text-align: left;
  overflow: visible;
}

.step05-design-workspace #step-5 .sample-variant-card:not(.sample-variant-quote-card) > :not(.sample-variant-free-badge) {
  transform: translateY(4px);
}

.step05-design-workspace #step-5 .sample-variant-free-badge {
  position: absolute;
  top: 9px;
  right: 9px;
  left: auto;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 7px;
  background: var(--accent);
  color: #fff;
  font-family: 'Source Code Pro', 'Google Sans Code', monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

.step05-design-workspace #step-5 .sample-variant-card:hover,
.step05-design-workspace #step-5 .sample-variant-card:focus-visible {
  z-index: 200;
  border-color: var(--accent);
  outline: none;
}

.step05-design-workspace #step-5 .sample-variant-card:has(.sample-variant-info:hover),
.step05-design-workspace #step-5 .sample-variant-card:has(.sample-variant-info:focus-visible) {
  z-index: 9000;
}

.step05-design-workspace #step-5 .sample-variant-card.is-selected {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.step05-design-workspace #step-5 .sample-variant-card-icon {
  display: block;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  background: #232323;
  -webkit-mask: var(--sample-icon) center / contain no-repeat;
  mask: var(--sample-icon) center / contain no-repeat;
}

.step05-design-workspace #step-5 .sample-variant-card strong,
.step05-design-workspace #step-5 .sample-variant-c-row strong {
  color: #232323;
  font-family: 'Indie Flower', cursive;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.05;
}

.step05-design-workspace #step-5 .sample-variant-card b {
  color: var(--accent);
  font-family: 'Urbanist', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
}

.step05-design-workspace #step-5 .sample-variant-quote-card {
  grid-column: 1 / -1;
  grid-row: 2;
  min-height: 54px;
  display: grid;
  grid-template-columns: 28px max-content minmax(0, 1fr);
  align-items: center;
  justify-content: flex-start;
  column-gap: 11px;
  padding: 9px 14px;
  white-space: nowrap;
}

.step05-design-workspace #step-5 .sample-variant-quote-card .sample-variant-card-icon {
  grid-column: 1;
  grid-row: 1;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.step05-design-workspace #step-5 .sample-variant-quote-card strong {
  grid-column: 2;
  grid-row: 1;
  flex: 0 0 auto;
  font-family: 'Source Code Pro', 'Google Sans Code', monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.step05-design-workspace #step-5 .sample-variant-quote-card b,
.step05-design-workspace #step-5 .sample-variant-quote-card small {
  display: none;
}

.step05-design-workspace #step-5 .sample-variant-quote-card .sample-variant-size-line {
  display: none;
}

.step05-design-workspace #step-5 .sample-variant-quote-card p {
  display: block;
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  width: auto;
  max-width: 100%;
  margin: 0;
  padding-left: 0;
  color: rgb(35 35 35 / 72%);
  font-family: 'Urbanist', Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
  transform: none;
}

.step05-design-workspace #step-5 .sample-variant-card small,
.step05-design-workspace #step-5 .sample-variant-c-row small {
  color: #232323;
  font-family: 'Urbanist', Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.75px;
  line-height: 1.2;
  text-transform: uppercase;
}

.step05-design-workspace #step-5 .sample-variant-size-line {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 7px;
  width: 100%;
  min-width: 0;
  margin-top: 1px;
  padding-bottom: 17px;
}

.step05-design-workspace #step-5 .sample-variant-card:has(.sample-variant-info:hover) .sample-variant-size-line,
.step05-design-workspace #step-5 .sample-variant-card:has(.sample-variant-info:focus-visible) .sample-variant-size-line {
  z-index: 12000;
}

.step05-design-workspace #step-5 .sample-variant-card:has(.sample-variant-info:hover) .sample-variant-free-badge,
.step05-design-workspace #step-5 .sample-variant-card:has(.sample-variant-info:focus-visible) .sample-variant-free-badge {
  z-index: 0;
}

.step05-design-workspace #step-5 .sample-variant-info {
  position: relative;
  z-index: 10000;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(35 35 35 / 14%);
  background: #f0f0f0;
  color: #232323;
  font-family: 'Source Code Pro', 'Google Sans Code', monospace;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.step05-design-workspace #step-5 .sample-variant-info-tooltip {
  position: absolute;
  left: calc(100% + 9px);
  top: 50%;
  right: auto;
  bottom: auto;
  z-index: 30000;
  width: min(300px, 31vw);
  padding: 13px 15px;
  background: rgb(35 35 35 / 90%);
  color: #fff;
  font-family: 'Source Code Pro', 'Google Sans Code', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.45;
  text-align: left;
  text-transform: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(4px, -50%);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.step05-design-workspace #step-5 .sample-variant-info:hover .sample-variant-info-tooltip,
.step05-design-workspace #step-5 .sample-variant-info:focus-visible .sample-variant-info-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}

.step05-design-workspace #step-5 .measurement-unit-info .sample-variant-info-tooltip {
  left: auto;
  right: 0;
  top: calc(100% + 9px);
  bottom: auto;
  width: min(360px, calc(100vw - 48px));
  max-width: min(360px, calc(100vw - 48px));
  transform: translateY(-4px);
  white-space: normal;
}

.step05-design-workspace #step-5 .measurement-unit-info:hover .sample-variant-info-tooltip,
.step05-design-workspace #step-5 .measurement-unit-info:focus-visible .sample-variant-info-tooltip {
  transform: translateY(0);
}

.step05-design-workspace #step-5 .sample-variant-card p {
  margin: 4px 0 0;
  color: rgb(35 35 35 / 74%);
  font-family: 'Source Code Pro', 'Google Sans Code', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25px;
  line-height: 1.45;
  text-transform: uppercase;
}

.step05-design-workspace #step-5 .sample-variant-card:not(.sample-variant-quote-card) p {
  margin-bottom: 0;
}

.step05-design-workspace #step-5 .sample-variant-c-rail {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 9px 9px;
  background: var(--accent);
}

.step05-design-workspace #step-5 .sample-variant-c-rail .sample-variant-card-icon {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  background: #fff;
}

.step05-design-workspace #step-5 .sample-variant-c-menu {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: 50px 1fr;
  border: 1px solid rgb(35 35 35 / 22%);
  background: #fff;
}

.step05-design-workspace #step-5 .sample-variant-c-menu > button {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgb(35 35 35 / 16%);
  border-radius: 0;
  background: #fff;
  color: #232323;
  font-family: 'Source Code Pro', 'Google Sans Code', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
  padding: 0 15px;
}

.step05-design-workspace #step-5 .sample-variant-c-list {
  display: grid;
  align-content: start;
  gap: 0;
}

.step05-design-workspace #step-5 .sample-variant-c-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-height: 54px;
  padding: 9px 13px;
  border-bottom: 1px solid rgb(35 35 35 / 10%);
}

.step05-design-workspace #step-5 .sample-variant-c-row:last-child {
  border-bottom: 0;
}

.step05-design-workspace #step-5 .sample-variant-c-row .sample-variant-card-icon {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
}

.step05-design-workspace #step-5 .sample-variant-c-row > div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.step05-design-workspace #step-5 .sample-variant-note {
  margin: 0;
  text-align: center;
  font-weight: 500;
}
