@charset "UTF-8";
.ltl-launchpad {
  padding: 100px 0 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  border-bottom: 1px solid rgba(0, 11, 40, 0.06);
}

.ltl-mode-rail {
  display: flex;
  justify-content: safe center;
  gap: 42px;
  overflow-x: auto;
  padding: 0 0 10px;
  scrollbar-width: none;
}
.ltl-mode-rail::-webkit-scrollbar {
  display: none;
}

.ltl-mode {
  appearance: none;
  border: 0;
  background: transparent;
  color: #6b7280;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 4px 9px;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.ltl-mode:hover, .ltl-mode.is-active {
  color: #102447;
  border-bottom-color: #ff7a1a;
}
.ltl-mode .ltl-mode-icon {
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.ltl-mode:hover .ltl-mode-icon, .ltl-mode.is-active .ltl-mode-icon {
  opacity: 1;
}

.ltl-mode-icon {
  position: relative;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ltl-mode-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  background: #eef4ff;
  border-radius: 50%;
  z-index: 0;
}
.ltl-mode-icon img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ltl-search-card {
  max-width: 1040px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(0, 11, 40, 0.09);
  border-radius: 30px;
  box-shadow: 0 14px 42px rgba(0, 26, 85, 0.11);
  padding: 6px;
}
.ltl-search-card .ltl-field-input.is-invalid,
.ltl-search-card .ltl-field-input.is-valid {
  border: 0 !important;
  outline: 0 !important;
  border-radius: 5px;
  background-color: transparent !important;
  box-shadow: none;
}
.ltl-search-card .mensaje-alerta {
  top: calc(100% + 8px);
  bottom: auto;
  left: 0;
  width: max-content;
  max-width: 210px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #fffaf5;
  color: #c85f08;
  border: 1px solid rgba(255, 122, 26, 0.55);
  box-shadow: 0 10px 24px rgba(102, 54, 15, 0.12);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.35;
  transform: translateY(-4px);
  z-index: 30;
  pointer-events: none;
}
.ltl-search-card .mensaje-alerta.visible {
  transform: translateY(0);
}
.ltl-search-card .mensaje-alerta::after {
  top: auto;
  bottom: 100%;
  left: 18px;
  border: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ff7a1a;
}
.ltl-search-card .position-relative:has(.ltl-ac-menu:not([hidden])) .mensaje-alerta {
  visibility: hidden !important;
  opacity: 0 !important;
}

.ltl-search-heading {
  display: none;
}

.ltl-eyebrow {
  color: #006afe;
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 700;
}

.ltl-search-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr auto;
  align-items: stretch;
  gap: 0;
}

.ltl-search-field {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0px 18px;
  border-right: 1px solid #e5e7eb;
  position: relative;
  z-index: 1;
}
.ltl-search-field:focus-within {
  z-index: 50;
}
.ltl-search-field:has(.ltl-ac-menu:not([hidden])), .ltl-search-field:has(.ltl-cat-menu:not([hidden])) {
  z-index: 60;
}
.ltl-search-field:first-child {
  border-radius: 24px 0 0 24px;
}
.ltl-search-field:hover, .ltl-search-field:focus-within {
  background: #f8fbff;
}
.ltl-search-field label {
  display: block;
  color: #102447;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0px;
}

.ltl-field-load {
  min-width: 0;
}
.ltl-field-load .ltl-field-value {
  width: auto;
  min-width: 0;
  flex: 1;
  height: auto;
}

.ltl-load-content {
  width: 100%;
  min-width: 0;
  position: relative;
  padding-right: 58px;
}

.ltl-load-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.ltl-load-line > label {
  flex: 0 0 auto;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}
.ltl-load-line .ltl-field-value,
.ltl-load-line .ltl-inline-edit {
  line-height: 1;
}

.ltl-inline-edit {
  border: 0;
  background: transparent;
  color: #006afe;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 5px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.ltl-inline-edit:hover, .ltl-inline-edit.is-open {
  color: #ff7a1a;
}

.ltl-inline-summary {
  appearance: none;
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  margin-top: 3px;
  border: 0;
  background: transparent;
  color: #6a758b;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  padding: 2px 0 0;
  text-align: left;
  cursor: pointer;
}
.ltl-inline-summary span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.ltl-inline-summary span + span::before {
  content: "·";
  color: #a6afbf;
  margin-right: 5px;
}
.ltl-inline-summary:hover {
  color: #006afe;
}

.ltl-field-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #006afe;
  background: #eef4ff;
  flex: 0 0 32px;
}
.ltl-field-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.ltl-field-icon.ltl-field-icon-cat {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
}
.ltl-field-icon.ltl-field-icon-cat img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.ltl-measure-field label {
  display: block;
  color: #102447;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 2px;
}

.ltl-field-input,
.ltl-field-value {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #1f2937;
  font-size: 15px;
  font-weight: 500;
  padding: 0;
  height: 26px;
}

.ltl-field-value {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  cursor: pointer;
  text-align: left;
}
.ltl-field-value i {
  font-size: 11px;
  color: #9aa4b6;
  flex: 0 0 auto;
}

.ltl-cat {
  position: relative;
  display: inline-flex;
  min-width: 0;
  max-width: 100%;
}

.ltl-cat-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: #1f2937;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}
.ltl-cat-trigger .ltl-cat-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ltl-cat-trigger i {
  flex: 0 0 auto;
  font-size: 11px;
  color: #9aa4b6;
  transition: transform 0.2s ease;
}
.ltl-cat-trigger[aria-expanded=true] i {
  transform: rotate(180deg);
}

.ltl-cat-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 250px;
  max-width: 320px;
  max-height: 320px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid rgba(0, 11, 40, 0.1);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0, 26, 85, 0.16);
  padding: 5px;
  z-index: 90;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #c7d0e0 transparent;
}
.ltl-cat-menu::-webkit-scrollbar {
  width: 10px;
}
.ltl-cat-menu::-webkit-scrollbar-track {
  background: transparent;
  margin: 8px 0;
}
.ltl-cat-menu::-webkit-scrollbar-thumb {
  background: #c7d0e0;
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: padding-box;
}
.ltl-cat-menu::-webkit-scrollbar-thumb:hover {
  background: #aab6cc;
}
.ltl-cat-menu[hidden] {
  display: none;
}

.ltl-cat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 9px 12px;
  border-radius: 10px;
  cursor: pointer;
  color: #102447;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  transition: background-color 0.12s ease;
}
.ltl-cat-item img {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.ltl-cat-item span {
  min-width: 0;
}
.ltl-cat-item:hover {
  background: #f8fbff;
}
.ltl-cat-item.is-active {
  background: #eef4ff;
  color: #006afe;
}

.ltl-field-input::placeholder {
  color: #7b8497;
}

.ltl-search-button {
  border: 0;
  min-width: 128px;
  margin: 3px;
  border-radius: 30px;
  background: #ff7a1a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}
.ltl-search-button:hover {
  background: #f26909;
  color: #ffffff;
  transform: translateY(-1px);
}

.ltl-assist-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 22px 0;
}

.ltl-average-copy {
  margin: 0;
  color: #526078;
  font-size: 13px;
}

.ltl-edit-measures {
  border: 1px solid rgba(0, 106, 254, 0.16);
  background: #f4f8ff;
  color: #006afe;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.ltl-edit-measures:hover {
  background: #ffffff;
  border-color: rgba(255, 122, 26, 0.28);
  color: #ff7a1a;
}

.ltl-measure-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px 22px 0;
  cursor: pointer;
}
.ltl-measure-summary span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f4f7fb;
  color: #526078;
  font-size: 12px;
  font-weight: 600;
}
.ltl-measure-summary span:hover {
  color: #006afe;
  background: #eef4ff;
}

.ltl-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
  padding: 0 22px;
}
.ltl-details.is-open {
  max-height: 320px;
  opacity: 1;
  padding: 14px 12px 6px;
  border-top: 1px solid #edf0f5;
  margin-top: 8px;
}

.ltl-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ltl-measure-field {
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 7px 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  cursor: text;
}
.ltl-measure-field input {
  width: 100%;
  height: 30px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #102447;
  font-size: 18px;
  font-weight: 600;
}
.ltl-measure-field:hover {
  border-color: #cdd7ea;
}
.ltl-measure-field:focus-within {
  border-color: #006afe;
  box-shadow: 0 0 0 3px rgba(0, 106, 254, 0.12);
}

.ltl-max {
  color: #778197;
  font-size: 12px;
  margin: 10px 0 0;
}

.ltl-ac-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  max-width: 340px;
  width: max-content;
  max-height: 260px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid rgba(0, 11, 40, 0.1);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0, 26, 85, 0.16);
  padding: 4px;
  z-index: 80;
  overscroll-behavior: contain;
}
.ltl-ac-menu[hidden] {
  display: none;
}

.ltl-ac-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 10px;
  cursor: pointer;
  color: #102447;
  font-size: 13.5px;
  line-height: 1.25;
  transition: background-color 0.12s ease;
}
.ltl-ac-item.is-active {
  background: #eef4ff;
}
.ltl-ac-item .ltl-ac-item-zip {
  font-weight: 700;
  flex: 0 0 auto;
}
.ltl-ac-item .ltl-ac-item-zip b {
  color: #006afe;
}
.ltl-ac-item .ltl-ac-item-name {
  color: #526078;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ltl-ac-state {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 12px;
  font-size: 13px;
  color: #526078;
}

.ltl-ac-error {
  color: #c85f08;
}
.ltl-ac-error .ltl-ac-retry {
  margin-left: auto;
  border: 1px solid rgba(255, 122, 26, 0.5);
  background: #fff6ed;
  color: #c85f08;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
}
.ltl-ac-error .ltl-ac-retry:hover {
  background: #ff7a1a;
  color: #ffffff;
  border-color: #ff7a1a;
}

.ltl-ac-spinner {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 2px solid rgba(0, 106, 254, 0.25);
  border-top-color: #006afe;
  border-radius: 50%;
  animation: ltl-ac-spin 0.6s linear infinite;
}

@keyframes ltl-ac-spin {
  to {
    transform: rotate(360deg);
  }
}
.ltl-hero {
  padding: 64px 0 26px;
  background: #ffffff;
}
.ltl-hero .prototype_content {
  padding-top: 8px;
}
.ltl-hero h1 {
  color: #1f2937;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  margin: 22px 0 18px;
}
.ltl-hero h1 span {
  color: #ff7a1a;
}

.ltl-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 106, 254, 0.2);
  background: #f6f9ff;
  color: #006afe;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.ltl-hero-copy {
  color: #66708a;
  font-size: 18px;
  line-height: 1.75;
  max-width: 600px;
}

.ltl-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.ltl-proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e7edf7;
  border-radius: 999px;
  padding: 9px 13px;
  color: #25324b;
  background: #ffffff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(0, 26, 85, 0.06);
}
.ltl-proof-pill i {
  color: #006afe;
}

.ltl-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ltl-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #006afe;
  color: #ffffff;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 106, 254, 0.22);
}
.ltl-hero-primary:hover {
  color: #ffffff;
  background: #0057d1;
}

.ltl-hero-secondary {
  color: #102447;
  font-weight: 800;
}

.ltl-hero-visual {
  position: relative;
}
.ltl-hero-visual picture,
.ltl-hero-visual img {
  display: block;
  width: 100%;
}
.ltl-hero-visual img {
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 26, 85, 0.14);
}

.ltl-floating-card {
  position: absolute;
  left: -22px;
  bottom: 26px;
  width: min(280px, 72%);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 26, 85, 0.14);
  padding: 16px;
}
.ltl-floating-card strong {
  color: #102447;
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}
.ltl-floating-card span {
  color: #66708a;
  font-size: 13px;
}

.ltl-loading {
  padding: 56px 0;
}

.ltl-loading-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.ltl-loading-spinner {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 4px solid rgba(0, 106, 254, 0.15);
  border-top-color: #006afe;
  animation: ltl-spin 0.8s linear infinite;
}

@keyframes ltl-spin {
  to {
    transform: rotate(360deg);
  }
}
.ltl-loading-text {
  margin: 4px 0 0;
  color: #102447;
  font-size: 18px;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.ltl-loading-sub {
  margin: 0;
  color: #66708a;
  font-size: 14px;
}

.ltl-results-section {
  background: #ffffff;
}

#quoterResultsLtl {
  scroll-margin-top: 110px;
}

.ltl-coverage-note {
  padding: 12px 18px;
  line-height: 1.4;
}
.ltl-coverage-note .ltl-note-line {
  display: block;
  color: inherit;
}
.ltl-coverage-note .ltl-note-line + .ltl-note-line {
  margin-top: 4px;
}
@media (max-width: 767px) {
  .ltl-coverage-note {
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.4;
  }
  .ltl-coverage-note .ltl-note-line + .ltl-note-line {
    margin-top: 3px;
  }
}

.ltl-search-button.is-loading {
  opacity: 0.7;
  cursor: wait;
  pointer-events: none;
}

.ltl-nocover {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: #fff7ed;
  border: 1px solid #fdba74;
  border-radius: 12px;
  padding: 10px 18px;
  text-align: center;
}

.ltl-nocover-title {
  color: #b45309;
  font-weight: 700;
  font-size: 15px;
}

.ltl-nocover-sub {
  color: #526078;
  font-size: 12px;
  line-height: 1.35;
}

.ltl-result-help {
  display: block;
  margin-top: 10px;
  color: #006afe;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
}
.ltl-result-help:hover {
  color: #0057d1;
  text-decoration: underline;
}
.ltl-result-help i {
  color: #25d366;
  margin-right: 5px;
}

.btn_three.ltl-buy-disabled {
  position: relative;
  background: #e5e7eb !important;
  border-color: #e5e7eb !important;
  color: #9ca3af !important;
  box-shadow: none !important;
  cursor: not-allowed;
}
.btn_three.ltl-buy-disabled:hover {
  background: #e5e7eb !important;
  border-color: #e5e7eb !important;
  color: #9ca3af !important;
}
.btn_three.ltl-buy-disabled::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 220px;
  white-space: normal;
  text-align: center;
  background: #102447;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(16, 36, 71, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease;
  z-index: 20;
  pointer-events: none;
}
.btn_three.ltl-buy-disabled::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #102447;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease;
  z-index: 20;
  pointer-events: none;
}
.btn_three.ltl-buy-disabled:hover::after, .btn_three.ltl-buy-disabled:hover::before {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .ltl-card-nocover .ltl-price-cell {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 6px;
  }
  .ltl-card-nocover .ltl-nocover {
    width: 100%;
    align-items: center;
    padding: 12px 16px;
  }
  .ltl-card-nocover .ltl-nocover-title {
    font-size: 14px;
    line-height: 1.25;
  }
  .ltl-card-nocover .btn_three.ltl-buy-disabled::after,
  .ltl-card-nocover .btn_three.ltl-buy-disabled::before {
    display: none;
  }
}
@media (max-width: 1199px) {
  .ltl-search-row {
    grid-template-columns: 1fr 1fr;
  }
  .ltl-search-field {
    border-right: 0;
    border-bottom: 1px solid #e5e7eb;
  }
  .ltl-field-load {
    grid-column: 1/-1;
  }
  .ltl-field-load + .ltl-search-field {
    border-right: 1px solid #e5e7eb;
  }
  .ltl-search-button {
    grid-column: 1/-1;
    height: 56px;
  }
}
@media (max-width: 767px) {
  .ltl-launchpad {
    padding-top: 92px;
  }
  .ltl-mode-rail {
    justify-content: space-evenly;
    gap: 0px;
    padding: 0 6px 12px;
  }
  .ltl-mode {
    font-size: 12px;
    padding: 4px 2px 9px;
  }
  .ltl-mode span:last-child {
    max-width: 90px;
    white-space: normal;
    line-height: 1.15;
    overflow: visible;
    text-overflow: clip;
  }
  .ltl-mode-icon {
    width: 52px;
    height: 52px;
  }
  .ltl-mode-icon::before {
    width: 42px;
    height: 42px;
  }
  .ltl-search-card {
    border-radius: 24px;
  }
  .ltl-search-card .mensaje-alerta {
    max-width: min(260px, 100vw - 56px);
    top: auto;
    bottom: calc(100% + 6px);
    transform: translateY(6px);
  }
  .ltl-search-card .mensaje-alerta.visible {
    transform: translateY(0);
  }
  .ltl-search-card .mensaje-alerta::after {
    top: 100%;
    bottom: auto;
    border-top: 6px solid #ff7a1a;
    border-bottom: 0;
  }
  .ltl-ac-menu {
    min-width: 0;
    max-width: none;
    width: 100%;
  }
  .ltl-cat {
    position: static;
  }
  .ltl-cat-menu {
    left: 0;
    right: 0;
    width: auto;
    min-width: 0;
    max-width: none;
  }
  .ltl-search-heading {
    display: block;
    padding: 8px 12px 12px;
  }
  .ltl-search-heading strong {
    display: block;
    color: #102447;
    font-size: 13px;
    line-height: 1.25;
  }
  .ltl-search-form {
    display: flex;
    flex-direction: column;
  }
  .ltl-search-row {
    display: contents;
  }
  .ltl-search-field {
    order: 1;
    min-height: 68px;
    padding: 12px 14px;
  }
  .ltl-search-field:first-child {
    border-radius: 16px 16px 0 0;
  }
  .ltl-field-load + .ltl-search-field {
    border-right: 0;
  }
  .ltl-details {
    order: 2;
  }
  .ltl-search-button {
    order: 3;
    grid-column: auto;
    width: auto;
    min-width: 0;
    height: 54px;
    margin: 10px 0 0;
  }
  .ltl-assist-row {
    display: block;
    padding: 12px 12px 0;
  }
  .ltl-edit-measures {
    margin-top: 8px;
  }
  .ltl-measure-summary,
  .ltl-details {
    padding-left: 12px;
    padding-right: 12px;
  }
  .ltl-details-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ltl-hero {
    padding-top: 42px;
  }
  .ltl-hero h1 {
    font-size: 38px;
  }
  .ltl-hero-copy {
    font-size: 16px;
  }
  .ltl-hero-visual {
    margin-top: 30px;
  }
  .ltl-floating-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }
}/*# sourceMappingURL=envios-ltl.css.map */