/* =========================================================
   DOTS MEDIA
   STAND BUILDER — PAGE (page-stand-builder.php)
   Desktop styling lives here at the top; every breakpoint/media
   query rule for this page is kept in this SAME file too — see the
   big "RESPONSIVE" block at the very bottom — instead of living in
   responsive.css, matching the Country Pavilion / Double Decker /
   Stand Design page convention: one CSS file per page, nothing
   split out.
   ========================================================= */

.sb-page {
  background: #0a0705;
}

.sb-page .dots-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background-image:
    radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
}


/* =========================================================
   SHARED — tag label, section heading, accent, buttons
   ========================================================= */

.sb-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #cfcfcf !important;

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 2px;
  text-transform: uppercase;

  margin-bottom: 18px;
}

.sb-tag .tag-dot {
  width: 6px;
  height: 6px;
  flex-shrink: 0;

  border-radius: 50%;

  background: #ff7a1a;
}

.sb-heading {
  color: #ffffff;

  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.sb-heading .accent {
  color: #ff7a1a;
}

.sb-btn-primary,
.sb-btn-primary:link,
.sb-btn-primary:visited {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #ff7a1a;
  color: #1a0f08 !important;

  font-weight: 700;
  font-size: 14px;

  padding: 17px 28px;

  border: none;
  border-radius: 999px;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.sb-btn-primary:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 24px rgba(255, 122, 26, 0.35);
}

.sb-btn-secondary,
.sb-btn-secondary:link,
.sb-btn-secondary:visited {
  display: inline-flex;
  align-items: center;

  background: transparent;
  color: #ffffff !important;

  font-weight: 700;
  font-size: 14px;

  padding: 17px 28px;

  border: 1.5px solid #3a3a3a;
  border-radius: 999px;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.sb-btn-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}


/* =========================================================
   HERO
   ========================================================= */

.sb-hero-wrap {
  position: relative;
  overflow: hidden;

  min-height: 620px;

  background: #0a0705;

  padding: 150px 60px 90px;
}

.sb-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  overflow: hidden;
}

.sb-hero-bg img {
  display: block;

  /*
   * The source photo only covers the right side of the hero (the
   * left side is reserved for the heading text), so the image is
   * anchored to the right edge at a moderate width instead of being
   * stretched full-bleed — stretching a near-square crop across the
   * whole wide hero would zoom in far too much.
   */
  position: absolute;
  top: 0;
  right: 0;

  width: 60%;
  height: 100%;
  min-width: 460px;

  object-fit: cover;
  object-position: center 25%;

  opacity: 1;
}

.sb-hero-bg-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(10, 7, 5, 0.25) 0%,
      rgba(10, 7, 5, 0.35) 55%,
      rgba(10, 7, 5, 0.75) 100%
    ),
    linear-gradient(
      90deg,
      rgba(10, 7, 5, 0.97) 0%,
      rgba(10, 7, 5, 0.62) 45%,
      rgba(10, 7, 5, 0.05) 68%,
      rgba(10, 7, 5, 0) 100%
    );
}

.sb-hero {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;
}

.sb-hero-content {
  max-width: 620px;
}

.sb-hero-title {
  color: #ffffff;

  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;

  margin-bottom: 22px;
}

.sb-hero-title .accent {
  color: #ff7a1a;
}

.sb-hero-description {
  color: #c9c9c9;

  font-size: 16px;
  line-height: 1.7;

  max-width: 480px;

  margin-bottom: 40px;
}

.sb-hero-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}


/* =========================================================
   STATEMENT — "Designed To Impress. Built To Deliver."
   ========================================================= */

.sb-statement-wrap {
  position: relative;

  background: #0a0705;

  padding: 110px 60px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sb-statement {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;

  align-items: start;
}

.sb-statement-left .sb-heading {
  font-size: 38px;
}

.sb-statement-right p {
  color: #a9a9a9;

  font-size: 16px;
  line-height: 1.75;

  max-width: 620px;

  margin-bottom: 18px;
}

.sb-statement-tagline {
  display: block;

  margin-top: 28px;
  padding-top: 24px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  color: #ff7a1a;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1.5px;
  text-transform: uppercase;
}


/* =========================================================
   OUR EXPERTISE — "Built For Every Kind Of Show." numbered list
   ========================================================= */

.sb-expertise-wrap {
  position: relative;

  background: #0a0705;

  padding: 110px 60px;
}

.sb-expertise-header {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto 10px;
}

.sb-expertise-list {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;
}

.sb-expertise-row {
  display: grid;
  grid-template-columns: 70px 320px 1fr;
  align-items: center;
  gap: 40px;

  padding: 28px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sb-expertise-num {
  color: #ff7a1a;

  font-size: 22px;
  font-weight: 800;
}

.sb-expertise-title {
  color: #ffffff;

  font-size: 15.5px;
  font-weight: 700;

  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.sb-expertise-desc {
  color: #9a9a9a;

  font-size: 14.5px;
  line-height: 1.7;

  max-width: 560px;
}


/* =========================================================
   FABRICATION — "Precision Behind The Experience."
   image + 4-item feature list
   ========================================================= */

.sb-fabrication-wrap {
  position: relative;

  background: #0a0705;

  padding: 110px 60px;

  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sb-fabrication {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;

  align-items: start;
}

.sb-fabrication-image {
  margin-top: 30px;

  border-radius: 14px;
  overflow: hidden;

  aspect-ratio: 7 / 6;
}

.sb-fabrication-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.sb-fabrication-list {
  margin-top: 4px;
}

.sb-fabrication-item {
  padding: 24px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sb-fabrication-item:first-child {
  padding-top: 0;
}

.sb-fabrication-item-title {
  color: #ffffff;

  font-size: 15px;
  font-weight: 700;

  letter-spacing: 0.3px;
  text-transform: uppercase;

  margin-bottom: 8px;
}

.sb-fabrication-item-desc {
  color: #9a9a9a;

  font-size: 14px;
  line-height: 1.65;
}


/* =========================================================
   THE JOURNEY — "From Factory To Floor." 4 steps
   ========================================================= */

.sb-journey-wrap {
  position: relative;

  background: #0a0705;

  padding: 110px 60px;

  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sb-journey-header {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto 50px;
}

.sb-journey-row {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;

  display: flex;
  align-items: flex-start;

  gap: 24px;
}

.sb-journey-step {
  flex: 1;
  min-width: 0;
}

.sb-journey-image {
  border-radius: 12px;
  overflow: hidden;

  aspect-ratio: 1 / 1;

  background: #111111;
}

.sb-journey-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.sb-journey-step:hover .sb-journey-image img {
  transform: scale(1.06);
}

.sb-journey-caption {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-top: 16px;
}

.sb-journey-num {
  color: #ff7a1a;

  font-size: 13px;
  font-weight: 800;
}

.sb-journey-title {
  color: #ffffff;

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.sb-journey-desc {
  color: #8a8a8a;

  font-size: 13px;
  line-height: 1.6;

  margin-top: 8px;
}


/* =========================================================
   SELECTED WORK — "Built By Dots Media." gallery
   ========================================================= */

.sb-gallery-wrap {
  position: relative;

  background: #0a0705;

  padding: 110px 60px;

  border-top: 1px solid rgba(255, 255, 255, 0.06);

  overflow: hidden;
}

.sb-gallery-header {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto 50px;
}

.sb-gallery-header .sb-heading {
  margin-bottom: 16px;
}

.sb-gallery-description {
  color: #a9a9a9;

  font-size: 16px;
  line-height: 1.7;

  max-width: 620px;
}

.sb-gallery {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 16px;
}

.sb-gallery-item {
  position: relative;

  border-radius: 14px;
  overflow: hidden;

  background: #111111;
}

.sb-gallery-item img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.sb-gallery-item:hover img {
  transform: scale(1.06);
}

.sb-gallery-item-1 { grid-column: span 8; grid-row: span 3; }
.sb-gallery-item-2 { grid-column: span 4; grid-row: span 3; }
.sb-gallery-item-3 { grid-column: span 4; grid-row: span 3; }
.sb-gallery-item-4 { grid-column: span 8; grid-row: span 3; }
.sb-gallery-item-5 { grid-column: span 12; grid-row: span 2; }
.sb-gallery-item-6 { grid-column: span 4; grid-row: span 2; }
.sb-gallery-item-7 { grid-column: span 4; grid-row: span 2; }
.sb-gallery-item-8 { grid-column: span 4; grid-row: span 2; }


/* =========================================================
   FULL SERVICE — "One Team. Every Detail." dotted timeline
   ========================================================= */

.sb-service-wrap {
  position: relative;

  background: #0a0705;

  padding: 110px 60px 90px;

  border-top: 1px solid rgba(255, 255, 255, 0.06);

  text-align: center;
}

.sb-service-header {
  position: relative;
  z-index: 2;

  max-width: 700px;
  margin: 0 auto;
}

.sb-service-header .sb-tag {
  justify-content: center;
}

.sb-service-description {
  color: #a9a9a9;

  font-size: 15px;
  line-height: 1.7;

  margin-top: 18px;
}

.sb-service-timeline {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 60px auto 0;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.sb-service-timeline::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;

  height: 1px;

  background: rgba(255, 255, 255, 0.15);

  z-index: 1;
}

.sb-service-step {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;

  flex: 1;
}

.sb-service-dot {
  width: 10px;
  height: 10px;
  flex-shrink: 0;

  border-radius: 50%;

  background: #ff7a1a;
  box-shadow: 0 0 0 6px #0a0705;
}

.sb-service-label {
  color: #ffffff;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 1px;
  text-transform: uppercase;

  white-space: nowrap;
}


/* =========================================================
   WORLDWIDE — "Built Here. Delivered Worldwide."
   ========================================================= */

.sb-worldwide-wrap {
  position: relative;
  overflow: hidden;

  background: #0a0705 radial-gradient(ellipse 70% 60% at 50% 30%, rgba(255, 122, 26, 0.05), transparent 70%);

  padding: 110px 60px 130px;

  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sb-worldwide-header {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;
}

.sb-worldwide-description {
  color: #a9a9a9;

  font-size: 16px;
  line-height: 1.7;

  max-width: 620px;

  margin-top: 16px;
}

.sb-worldwide-regions {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 50px auto 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sb-worldwide-region {
  padding: 30px 28px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;

  transition: border-color 0.25s ease, background 0.25s ease;
}

.sb-worldwide-region:hover {
  border-color: rgba(255, 122, 26, 0.4);
  background: rgba(255, 122, 26, 0.05);
}

.sb-worldwide-region-rule {
  display: block;

  width: 32px;
  height: 2px;

  margin-bottom: 16px;

  background: #ff7a1a;
}

.sb-worldwide-region-name {
  color: #ffffff;

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 0.6px;
  text-transform: uppercase;
}


/* =========================================================
   CONTACT — "Ready To Build Your Stand?"
   ========================================================= */

.sb-contact-wrap {
  position: relative;

  background: #0a0705;

  padding: 110px 60px 130px;

  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sb-contact {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 70px;

  align-items: start;
}

.sb-contact-intro {
  margin-bottom: 40px;
}

.sb-contact-intro .sb-heading {
  max-width: 560px;
  margin-bottom: 14px;
}

.sb-contact-subtitle {
  color: #a9a9a9;

  font-size: 15px;
  line-height: 1.7;

  max-width: 500px;
}


/* --- FORM --- */

.sb-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 20px;
}

.sb-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.sb-field.sb-field-full {
  grid-column: 1 / -1;
}

.sb-field label {
  color: #cfcfcf;

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.sb-field input,
.sb-field textarea {
  width: 100%;

  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;

  font-family: inherit;
  font-size: 14px;

  padding: 13px 16px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;

  transition: border-color 0.25s ease, background 0.25s ease;
}

.sb-field input::placeholder,
.sb-field textarea::placeholder {
  color: #6a6a6a;
}

.sb-field input:focus,
.sb-field textarea:focus {
  outline: none;

  border-color: #ff7a1a;
  background: rgba(255, 122, 26, 0.05);
}

.sb-field textarea {
  min-height: 120px;
  resize: vertical;
}

.sb-services-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sb-service-option {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 10px 16px;

  color: #c9c9c9;

  font-size: 13px;
  font-weight: 500;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;

  cursor: pointer;

  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.sb-service-option input {
  appearance: none;
  -webkit-appearance: none;

  width: 14px;
  height: 14px;
  flex-shrink: 0;

  border: 1.5px solid #6a6a6a;
  border-radius: 3px;

  cursor: pointer;

  transition: background 0.2s ease, border-color 0.2s ease;
}

.sb-service-option input:checked {
  background: #ff7a1a;
  border-color: #ff7a1a;
}

.sb-service-option:has(input:checked) {
  color: #ffffff;

  border-color: rgba(255, 122, 26, 0.5);
  background: rgba(255, 122, 26, 0.08);
}

.sb-form-submit {
  width: 100%;
  justify-content: center;

  margin-top: 6px;
}


/* --- SIDE PANEL --- */

.sb-contact-side {
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);

  padding: 34px 30px;
}

.sb-contact-side .sb-heading {
  font-size: 26px;

  margin-bottom: 14px;
}

.sb-contact-side-subtitle {
  color: #9a9a9a;

  font-size: 14px;
  line-height: 1.7;

  margin-bottom: 34px;
}

.sb-contact-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.sb-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;

  padding-top: 24px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sb-contact-info-item:first-child {
  padding-top: 0;
  border-top: none;
}

.sb-contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  width: 38px;
  height: 38px;

  border-radius: 50%;

  background: rgba(255, 122, 26, 0.1);
  color: #ff7a1a;
}

.sb-contact-info-icon svg {
  width: 16px;
  height: 16px;
}

.sb-contact-info-label {
  color: #7a7a7a;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 1.2px;
  text-transform: uppercase;

  margin-bottom: 5px;
}

.sb-contact-info-value {
  color: #ffffff;

  font-size: 14.5px;
  font-weight: 600;
}


/* =========================================================================
   RESPONSIVE
   Everything below this line is the responsive (media-query) CSS for
   the Stand Builder page — kept in this same file on purpose, instead
   of in responsive.css (same convention as every other page on this
   theme).
   ========================================================================= */

/* --- TABLET — max-width: 1100px --- */

@media (max-width: 1100px) {

    .sb-hero-wrap,
    .sb-statement-wrap,
    .sb-expertise-wrap,
    .sb-fabrication-wrap,
    .sb-journey-wrap,
    .sb-gallery-wrap,
    .sb-service-wrap,
    .sb-worldwide-wrap,
    .sb-contact-wrap {
        padding-left: 40px;
        padding-right: 40px;
    }

    .sb-hero-content {
        max-width: 560px;
    }

    .sb-statement {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sb-expertise-row {
        grid-template-columns: 50px 1fr;
        row-gap: 10px;
    }

    .sb-expertise-desc {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .sb-fabrication {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sb-fabrication-image {
        max-width: 480px;
    }

    .sb-journey-row {
        flex-wrap: wrap;
    }

    .sb-journey-step {
        flex: 1 1 calc(50% - 12px);
    }

    .sb-gallery-item-1,
    .sb-gallery-item-2,
    .sb-gallery-item-3,
    .sb-gallery-item-4 {
        grid-column: span 6;
    }

    .sb-service-timeline {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 34px;
    }

    .sb-service-timeline::before {
        display: none;
    }

    .sb-service-step {
        flex: 1 1 30%;
    }

    .sb-worldwide-regions {
        grid-template-columns: 1fr;
    }

    .sb-contact {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sb-form {
        grid-template-columns: 1fr;
    }

    .sb-field.sb-field-full {
        grid-column: auto;
    }

}


/* --- MOBILE — max-width: 768px --- */

@media (max-width: 768px) {

    .sb-hero-wrap,
    .sb-statement-wrap,
    .sb-expertise-wrap,
    .sb-fabrication-wrap,
    .sb-journey-wrap,
    .sb-gallery-wrap,
    .sb-service-wrap,
    .sb-worldwide-wrap,
    .sb-contact-wrap {
        padding-left: 24px;
        padding-right: 24px;
    }

    .sb-hero-wrap {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .sb-hero-content {
        max-width: 100%;
    }

    .sb-hero-title {
        font-size: 34px;
    }

    .sb-hero-description {
        max-width: 100%;
    }

    .sb-heading {
        font-size: 28px;
    }

    .sb-statement-left .sb-heading {
        font-size: 26px;
    }

    .sb-statement-right p {
        font-size: 14px;
        max-width: 100%;
    }

    .sb-expertise-row {
        grid-template-columns: 40px 1fr;
    }

    .sb-journey-step {
        flex: 1 1 100%;
    }

    .sb-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }

    .sb-gallery-item-1,
    .sb-gallery-item-2,
    .sb-gallery-item-3,
    .sb-gallery-item-4,
    .sb-gallery-item-6,
    .sb-gallery-item-7,
    .sb-gallery-item-8 {
        grid-column: span 1;
        grid-row: span 2;
    }

    .sb-gallery-item-5 {
        grid-column: span 2;
        grid-row: span 2;
    }

    .sb-service-step {
        flex: 1 1 45%;
    }

    .sb-worldwide-regions {
        grid-template-columns: 1fr;
    }

}


/* --- SMALL MOBILE — max-width: 480px --- */

@media (max-width: 480px) {

    .sb-hero-wrap,
    .sb-statement-wrap,
    .sb-expertise-wrap,
    .sb-fabrication-wrap,
    .sb-journey-wrap,
    .sb-gallery-wrap,
    .sb-service-wrap,
    .sb-worldwide-wrap,
    .sb-contact-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .sb-hero-title {
        font-size: 28px;
    }

    .sb-heading {
        font-size: 24px;
    }

    .sb-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .sb-hero-buttons a {
        justify-content: center;
    }

    .sb-journey-step {
        flex: 1 1 100%;
    }

    .sb-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .sb-gallery-item-1,
    .sb-gallery-item-2,
    .sb-gallery-item-3,
    .sb-gallery-item-4,
    .sb-gallery-item-5,
    .sb-gallery-item-6,
    .sb-gallery-item-7,
    .sb-gallery-item-8 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .sb-service-step {
        flex: 1 1 100%;
    }

    .sb-fabrication-item-title {
        font-size: 14px;
    }

}