.lvc-dispatch {
  position: relative;
  margin: 0 0 12px;
  font-family: "PT Sans", Arial, sans-serif;
  color: #292929;
}

.lvc-dispatch__line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 14px;
  line-height: 1.45;
}

.lvc-dispatch__countdown {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.lvc-dispatch__countdown.is-red {
  color: #c62828;
}

.lvc-dispatch__countdown.is-orange {
  color: #d97706;
}

.lvc-dispatch__countdown.is-green {
  color: #2e7d32;
}

.lvc-dispatch__hint-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 2px;
  vertical-align: middle;
}

.lvc-dispatch .lvc-dispatch__hint {
  all: unset !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 21px !important;
  height: 21px !important;
  min-width: 21px !important;
  min-height: 21px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #f2f2f0 !important;
  color: #4f4f4f !important;
  cursor: pointer !important;
  line-height: 1 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  box-shadow: inset 0 0 0 1px #c8c8c4 !important;
  transition: background-color .14s ease, color .14s ease, box-shadow .14s ease, transform .14s ease !important;
}

.lvc-dispatch__hint-icon {
  display: block;
  width: 17px;
  height: 17px;
  overflow: visible;
  pointer-events: none;
}

.lvc-dispatch__hint-icon circle,
.lvc-dispatch__hint-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lvc-dispatch__hint-icon .lvc-dispatch__hint-dot {
  fill: currentColor;
  stroke: none;
}

.lvc-dispatch .lvc-dispatch__hint:hover,
.lvc-dispatch .lvc-dispatch__hint:focus-visible {
  background: #222 !important;
  color: #fff !important;
  box-shadow: inset 0 0 0 1px #222, 0 0 0 3px rgba(34, 34, 34, .10) !important;
  transform: translateY(-1px) !important;
  outline: none !important;
}

.lvc-dispatch__hint-tooltip {
  position: absolute;
  z-index: 100001;
  left: 50%;
  bottom: calc(100% + 7px);
  transform: translateX(-50%) translateY(2px);
  width: max-content;
  max-width: 150px;
  padding: 5px 7px;
  border-radius: 6px;
  background: #222;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .12s ease, transform .12s ease, visibility .12s ease;
}

.lvc-dispatch__hint-wrap:hover .lvc-dispatch__hint-tooltip,
.lvc-dispatch__hint-wrap:focus-within .lvc-dispatch__hint-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.lvc-dispatch__popover[hidden] {
  display: none !important;
}

.lvc-dispatch__popover {
  position: fixed;
  z-index: 2147483000;
  inset: 0;
  display: grid;
  place-items: center;
  width: auto;
  padding: 18px;
  background: rgba(16, 15, 15, .38);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  font-family: "PT Sans", Arial, sans-serif;
}

.lvc-dispatch__dialog {
  position: relative;
  width: min(410px, calc(100vw - 36px));
  max-height: calc(100dvh - 36px);
  overflow: auto;
  padding: 22px;
  border: 1px solid #dedede;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 72px rgba(0, 0, 0, .22);
  color: #222;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.lvc-dispatch__dialog h3 {
  margin: 0 42px 18px 0;
  color: #1b1b1b;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.lvc-dispatch__close {
  position: absolute;
  top: 11px;
  right: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid #e4e4e4;
  border-radius: 999px;
  background: #fafafa;
  color: #454545;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.lvc-dispatch__close:hover,
.lvc-dispatch__close:focus-visible {
  border-color: #bdbdbd;
  background: #f1f1f1;
  color: #111;
  outline: 2px solid rgba(25, 25, 25, .18);
  outline-offset: 2px;
}

.lvc-dispatch__info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
}

.lvc-dispatch__info + .lvc-dispatch__info,
.lvc-dispatch__help {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #ececec;
}

.lvc-dispatch__info strong,
.lvc-dispatch__help strong {
  display: block;
  font-size: 14px;
}

.lvc-dispatch__info p,
.lvc-dispatch__help p {
  margin: 4px 0 0;
  color: #686868;
  font-size: 13px;
  line-height: 1.45;
}

.lvc-dispatch__fee {
  color: #202020;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.lvc-dispatch__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 13px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #191919;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 700;
}

.lvc-dispatch__whatsapp:hover,
.lvc-dispatch__whatsapp:focus-visible {
  background: #000;
  color: #fff !important;
}

.lvc-search-form {
  position: relative;
}

.lvc-search-panel[hidden] {
  display: none !important;
}

.lvc-search-panel {
  position: absolute;
  z-index: 99999;
  top: calc(100% + 8px);
  left: 0;
  width: min(520px, 92vw);
  max-height: min(68vh, 590px);
  overflow: auto;
  border: 1px solid rgba(20, 20, 20, .11);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .14);
  color: #1c1c1c;
  font-family: "PT Sans", Arial, sans-serif;
  text-align: left;
  -webkit-overflow-scrolling: touch;
}

.lvc-search-loading,
.lvc-search-empty {
  padding: 18px;
  color: #737373;
  font-size: 14px;
}

.lvc-search-result {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 70px;
  padding: 8px 10px;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  color: inherit !important;
  text-decoration: none !important;
}

.lvc-search-result:hover,
.lvc-search-result.is-active {
  background: #f8f8f6;
}

.lvc-search-thumb {
  display: block;
  width: 44px;
  height: 56px;
  border-radius: 7px;
  background: #f1f1f1;
  object-fit: cover;
}

.lvc-search-thumb--empty {
  display: block;
}

.lvc-search-result__body {
  min-width: 0;
}

.lvc-search-result__shade {
  display: block;
  overflow: hidden;
  color: #75475a;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .075em;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.lvc-search-result__title {
  display: block;
  overflow: hidden;
  margin-top: 4px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lvc-search-price {
  min-width: 84px;
  color: #1f1f1f;
  font-size: 12.5px;
  text-align: right;
  white-space: nowrap;
}

.lvc-search-price__current {
  display: block;
  font-weight: 700;
}

.lvc-search-price__regular {
  display: block;
  margin-top: 2px;
  color: #8a8a8a;
  font-size: 11px;
  font-weight: 400;
}

@media (max-width: 767px) {
  .lvc-dispatch__line {
    font-size: 13.5px;
  }

  .lvc-dispatch__hint-tooltip {
    display: none;
  }

  .lvc-dispatch__popover {
    padding: 14px;
  }

  .lvc-dispatch__dialog {
    width: min(410px, calc(100vw - 28px));
    max-height: calc(100dvh - 28px);
    padding: 20px;
  }

  .lvc-search-panel {
    left: 0;
    right: 0;
    width: min(94vw, 520px);
    max-height: 58vh;
  }

  .lvc-search-thumb {
    width: 42px;
    height: 54px;
  }

  .lvc-search-result {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    min-height: 68px;
  }

  .lvc-search-price {
    min-width: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lvc-search-result {
    scroll-behavior: auto;
  }
}
