/* ============================================================
   LH Inventory Widget — Frontend Styles
   ============================================================ */

/* ── Condition badge ─────────────────────────────────────── */
.irbri-badge {
  font-size: 10px;
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 7px 15px;
  border-radius: 154px;
  background: #e5e7eb;
  color: #374151;
}

.irbri-badge--in_stock {
  background: #d1fae5;
  color: #065f46;
}
.irbri-badge--available {
  background: #dbeafe;
  color: #1e40af;
}
.irbri-badge--sold {
  background: #fee2e2;
  color: #991b1b;
}

/* ── Sale price display ──────────────────────────────────── */
.irbri-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.irbri-price__sale {
  font-size: 20px;
  font-weight: 800;
  color: #b91c1c;
}

.irbri-price__was {
  font-size: 14px;
  font-weight: 500;
  color: #9ca3af;
  text-decoration: line-through;
}

.irbri-price--call {
  font-size: 16px;
  font-weight: 700;
  color: #374151;
  font-style: italic;
}

/* Layout */
.lh-inventory-wrap {
  width: 100%;
}

.inventory-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* ── Sidebar ──────────────────────────────────────────────── */
.ir-sidebar {
  flex: 0 0 260px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  position: sticky;
  top: 90px;
}

.irs-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
}

.irs-head svg {
  width: 20px;
  height: 20px;
  color: #111;
}

.irs-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.irs-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.irsc-title {
  padding: 10px 14px;
  font-weight: 600;
  font-size: 13px;
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.irsc-title .irsc-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: #9ca3af;
  pointer-events: none;
}

.irs-card.is-collapsed .irsc-title .irsc-chevron {
  transform: rotate(-90deg);
}

.irs-card.is-collapsed .irsc-body {
  display: none !important;
}

.irsc-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.irscb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #374151;
}

.irscb-item input[type="checkbox"] {
  accent-color: #111;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.irscb-item label {
  cursor: pointer;
}

/* Price / year inputs */
.irsc-price-inputs {
  display: flex;
  align-items: center;
  gap: 6px;
}

.irsc-price-inputs input[type="number"] {
  flex: 1;
  padding: 6px 8px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 13px;
  color: #111;
  width: 0;
  -moz-appearance: textfield;
}

.irsc-price-inputs input[type="number"]::-webkit-inner-spin-button,
.irsc-price-inputs input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.irsc-price-inputs span {
  color: #9ca3af;
  font-size: 13px;
  flex-shrink: 0;
}

.irsc-price-inputs select {
  flex: 1;
  padding: 6px 24px 6px 8px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 13px;
  color: #111;
  background: #fff
    url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20"><path stroke="%23717680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.667" d="m5 7.5 5 5 5-5"/></svg>')
    right 4px center / 16px no-repeat;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  min-width: 0;
}

/* Sidebar buttons */
.irs-btn {
  padding: 14px 16px;
  display: flex;
  gap: 8px;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
}

.irs-btn button {
  flex: 1;
  padding: 9px 12px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition:
    background 0.18s,
    color 0.18s;
}

.lh-apply-filter {
  background: #111;
  color: #fff;
}

.lh-apply-filter:hover {
  background: #333;
}

.lh-reset-filter {
  background: #e5e7eb;
  color: #374151;
}

.lh-reset-filter:hover {
  background: #d1d5db;
}

/* ── Main Body ────────────────────────────────────────────── */
.ir-body {
  flex: 1;
  min-width: 0;
}

.irb-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.irbh-count {
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

.irbh-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
}

.irbh-sort select {
  padding: 7px 10px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: #202020;
  cursor: pointer;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20"><path stroke="%23717680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.667" d="m5 7.5 5 5 5-5"/></svg>');
  background-position: right 5px center;
  background-repeat: no-repeat;
  background-size: 20px;
  outline: 0;
}

/* Grid */
.irb-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* Card */
.irbr-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  height: 100%;
}

.irbr-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.irbri-img {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f3f4f6;
}

.irbri-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.irbr-item:hover .irbri-img img {
  transform: scale(1.04);
}

.irbri-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
}

.irbri-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.irbri-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  flex: 1;
}

.irbri-title a {
  color: #111;
  text-decoration: none;
}
.irbri-title a:hover {
  color: #b8922a;
}

/* Feature grid */
.irbri-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
}

.irbrif-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.irbrifi-label {
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.irbrifi-value {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

/* Price */
.irbri-price {
  font-size: 20px;
  font-weight: 800;
  color: #111;
}

/* Desc */
.irbri-desc {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.5;
}
.irbri-desc p {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* CTA button */
.irbri-btn {
  margin-top: auto;
}

.irbri-btn a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  border: 1px solid #111;
  border-radius: 6px;
  transition:
    background 0.18s,
    color 0.18s;
  width: 100%;
  justify-content: center;
  padding: 15px 15px 15px 15px;
}

.irbri-btn a:hover {
  background: #111;
  color: #fff;
}

/* ── Footer / Pagination ──────────────────────────────────── */
.irb-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.irbf-count {
  font-size: 13px;
  color: #6b7280;
}

.irbf-pagination {
  display: flex;
  align-items: center;
  gap: 4px;
}

.irbf-pagination button {
  min-width: 34px;
  height: 34px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
  padding: 0;
}

.irbf-pagination button:hover {
  background: #f3f4f6;
}

.irbf-pagination button.lh-page-active {
  background: #111;
  border-color: #111;
  color: #fff;
}

.irbf-pagination button:disabled {
  opacity: 0.4;
  cursor: default;
}

.irbf-pagination button svg {
  width: 18px;
  height: 18px;
}

.irbf-pagination span {
  padding: 0 4px;
  color: #9ca3af;
  font-size: 14px;
  line-height: 34px;
}

/* ── Loading overlay ──────────────────────────────────────── */
.lh-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.5;
}

.lh-no-results {
  grid-column: 1 / -1;
  padding: 40px;
  text-align: center;
  color: #6b7280;
  font-size: 15px;
}

.irbri-pb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 10px;
  border-bottom: 1px solid #f5f5f5;
}

.irbri-pb:has(.irbri-price) {
  justify-content: space-between;
}

.irbh-sort > label {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  color: #000;
  font-family: "Rubik";
  margin: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .inventory-row {
    flex-direction: column;
  }
  .ir-sidebar {
    flex: none;
    width: 100%;
    position: static;
  }
}

@media (max-width: 600px) {
  .irb-row {
    grid-template-columns: 1fr;
  }
  .irbh-count,
  .irbh-sort {
    font-size: 13px;
  }
}

/* ============================================================
   LH Filter Widget — Standalone Hero / Sidebar Styles
   ============================================================ */

.lh-filter-wrap {
  width: 100%;
}

/* ── Shared field styles ──────────────────────────────────── */
.lhf-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 5px;
}

.lhf-input,
.lhf-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  color: #111;
  background: #fff;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  box-sizing: border-box;
  outline: 0 !important;
  box-shadow: unset !important;
}

.lhf-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20"><path stroke="%23717680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.667" d="m5 7.5 5 5 5-5"/></svg>');
  background-position: right 5px center;
  background-repeat: no-repeat;
  background-size: 20px;
}

.lhf-input:focus,
.lhf-select:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.lhf-range-pair {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lhf-input-half {
  flex: 1;
  min-width: 0;
}

.lhf-select-half {
  flex: 1;
  min-width: 0;
  padding-right: 28px; /* leave room for the arrow */
}

.lhf-range-sep {
  color: #9ca3af;
  font-size: 13px;
  flex-shrink: 0;
}

/* Remove number spinners */
.lhf-input[type="number"]::-webkit-inner-spin-button,
.lhf-input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.lhf-input[type="number"] {
  -moz-appearance: textfield;
}

/* ── Submit button ────────────────────────────────────────── */
.lh-filter-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s;
  width: 100%;
}

.lh-filter-submit:hover {
  background: #333;
}
.lh-filter-submit svg {
  flex-shrink: 0;
}

/* ── Horizontal / Hero Layout ─────────────────────────────── */
.lhf-layout-horizontal .lh-filter-form {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.lhf-layout-horizontal .lhf-fields {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex: 1;
  flex-wrap: wrap;
}

.lhf-layout-horizontal .lhf-field {
  flex: 1;
  min-width: 160px;
}

.lhf-layout-horizontal .lhf-actions {
  flex-shrink: 0;
  min-width: 160px;
}

.lhf-layout-horizontal .lh-filter-submit {
  height: 42px;
  padding: 0 20px;
}

/* ── Vertical / Card Layout ───────────────────────────────── */
.lhf-layout-vertical .lh-filter-form {
  padding: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lhf-layout-vertical .lhf-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.lhf-layout-vertical .lhf-field {
  width: 100%;
}

.lhf-layout-vertical .lh-filter-form .lhf-header h2.lhf-heading {
  margin: 0;

  margin-bottom: 10px;
}

.lhf-layout-vertical .lh-filter-form .lhf-header .lhf-subheading {
  margin: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .lhf-layout-horizontal .lh-filter-form {
    flex-direction: column;
    align-items: stretch;
  }
  .lhf-layout-horizontal .lhf-fields {
    flex-direction: column;
  }
  .lhf-layout-horizontal .lhf-field {
    min-width: unset;
  }
  .lhf-layout-horizontal .lhg-actions {
    min-width: unset;
  }
}

/* ============================================================
   Luxe Gallery Widget
   ============================================================ */

.lhg-wrap {
  width: 100%;
}

.lhg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.lhg-item {
  position: relative;
  overflow: hidden;
  padding-bottom: 75%; /* default 4:3 aspect ratio */
  border-radius: 0;
  background: #f3f4f6;
}

/* Hover overlay */
.lhg-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.25s ease;
  pointer-events: none;
  z-index: 1;
}

.lhg-item:hover::after {
  background: rgba(0, 0, 0, 0.3);
}

.lhg-img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.lhg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.lhg-item:hover .lhg-img img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .lhg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .lhg-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Masonry layout (CSS columns — like erikjo.com/work) ────────────────── */

/* CSS multi-column layout: images flow top-to-bottom in each column at
   their natural aspect ratios. Column count + gap are injected by Elementor
   selectors; defaults here match the control defaults. */
.lhg-masonry {
  display: block !important; /* override CSS grid */
  column-count: 3;
  column-gap: 8px;
}

.lhg-masonry .lhg-item {
  break-inside: avoid; /* never split an image across columns */
  display: inline-block; /* required for break-inside to work reliably */
  width: 100%;
  padding-bottom: 0 !important; /* natural height — no aspect-ratio trick */
  margin-bottom: 8px;
  vertical-align: top;
}

.lhg-masonry .lhg-img {
  position: static !important;
  display: block;
  width: 100%;
  height: auto;
}

.lhg-masonry .lhg-img img {
  position: static !important;
  width: 100%;
  height: auto !important;
  display: block;
}

/* ── Swiper-based Slider ─────────────────────────────────────────────────── */

.lhg-slider-wrap {
  width: 100%;
}

/* Ratio wrapper — Elementor targets .lhg-main-ratio for aspect ratio control */
.lhg-main-ratio {
  position: relative;
  width: 100%;
  padding-bottom: 66.67%; /* default ~3:2; overridden by Elementor control */
}

/* Main swiper fills the ratio box */
.lhg-swiper-main {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

.lhg-swiper-main .swiper-slide {
  height: 100%;
}

.lhg-swiper-main .lhg-img {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.lhg-swiper-main .lhg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Thumbnail strip */
.lhg-swiper-thumbs {
  margin-top: 8px;
}

.lhg-swiper-thumbs .swiper-slide {
  width: 80px; /* overridden by Elementor thumb-width control */
  height: 60px; /* overridden by Elementor thumb-height control */
  cursor: pointer;
  overflow: hidden;
  border: 2px solid transparent;
  box-sizing: border-box;
  opacity: 0.6;
  transition:
    opacity 0.2s,
    border-color 0.2s;
}

.lhg-swiper-thumbs .swiper-slide-thumb-active {
  border-color: #d97706;
  opacity: 1;
}

.lhg-swiper-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lhg-img::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,1)'%3E%3Cpath d='M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168ZM16.0247 15.8748C17.2475 14.6146 18 12.8956 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18C12.8956 18 14.6146 17.2475 15.8748 16.0247L16.0247 15.8748ZM10 10V7H12V10H15V12H12V15H10V12H7V10H10Z'%3E%3C/path%3E%3C/svg%3E");
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 34px;
  z-index: 2;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all ease 0.3s;
}

.lhg-item:hover .lhg-img::after {
  opacity: 1;
}

.lhg-swiper-main .swiper-button-prev,
.lhg-swiper-main .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: #f0f0f0;
  border-radius: 100%;
}

.lhg-swiper-main .swiper-button-prev::after,
.lhg-swiper-main .swiper-button-next::after {
  font-size: 20px;
  font-weight: 900;
  margin-top: 2px;
}

/* ── Content Boxes Widget ───────────────────────────────────────────────── */
.lh-cb-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lh-cb-box {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 24px;
}

.lh-cb-box-title {
  margin: 0 0 12px;
  font-size: 1.1em;
  font-weight: 600;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e7eb;
}

.lh-cb-box-content {
  line-height: 1.7;
}

.lh-cb-box-content p:last-child {
  margin-bottom: 0;
}

.lh-cb-box-content ul,
.lh-cb-box-content ol {
  padding-left: 0;
  list-style: none;
}

.lh-cb-box-content > * {
  margin-bottom: 15px;
}

.lh-cb-box-content > *:last-child {
  margin-bottom: 0;
}

.lh-cb-box-content ul > li {
  padding-left: 22px;
  position: relative;
  margin: 10px 0;
}

.lh-cb-box-content ul > li::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 11H8V13H12V16L16 12L12 8V11Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left center;
}

.lh-cb-box-content ul > li {
  padding-left: 22px;
  position: relative;
  margin: 10px 0;
}
.lh-cb-box-content ul > li::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 11H8V13H12V16L16 12L12 8V11Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left center;
}
.lh-cb-box-content ul > li ul {
  margin-bottom: 20px;
}
.lh-cb-box-content ul > li li {
  padding-left: 16px;
}
.lh-cb-box-content ul > li li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22ZM12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z'%3E%3C/path%3E%3C/svg%3E");
  width: 10px;
  height: 10px;
  background-size: 10px;
  top: 5px;
}
