.chp-lf,
.chp-lf * {
  box-sizing: border-box;
}

.chacha-loop-grid-results .e-loop__load-more [data-chp-lf-owned-load-more="1"] {
  pointer-events: auto !important;
  opacity: 1 !important;
  cursor: pointer !important;
}

.chacha-loop-grid-results .e-loop__load-more a {
  pointer-events: auto !important;
  opacity: 1 !important;
  cursor: pointer !important;
}

.chp-lf-form, .chp-lf{
	--chp-lf-accent: #d9ec00;
  --chp-lf-ink: #142417;
  --chp-lf-muted: #6b6f76;
  --chp-lf-line: #7f858c;
  --chp-lf-radius: 4px;
}

form.chp-lf{
	display: flex !important;
	flex-direction: column;
	gap: 24px;
	align-items: end;
}

.chp-lf-form.chp-lf-search > div {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) minmax(160px, .9fr) minmax(160px, .9fr) minmax(150px, .8fr) auto;
  gap: 18px;
  align-items: end;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--chp-lf-ink);
}


.chp-lf-form .chp-lf-field {
  position: relative;
  min-width: 0;
}

.chp-lf-form .chp-lf-label {
  position: absolute;
  top: -10px;
  left: 14px;
  z-index: 2;
  display: inline-block;
  max-width: calc(100% - 28px);
  padding: 0 5px;
  margin: 0;
  background: #fff;
  color: var(--chp-lf-ink);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chp-lf-form .chp-lf-input,
.chp-lf-form input.chp-lf-input[type="text"],
.chp-lf-form input.chp-lf-input[type="date"],
.chp-lf-form input.chp-lf-input[type="number"] {
  width: 100% !important;
  min-height: 54px !important;
  height: 54px !important;
  margin: 0 !important;
  padding: 13px 18px !important;
  border: 1px solid var(--chp-lf-line) !important;
  border-radius: var(--chp-lf-radius) !important;
  background: #fff !important;
  color: var(--chp-lf-ink) !important;
  box-shadow: none !important;
  font-family: inherit !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  outline: none !important;
  appearance: none;
}

.chp-lf-form .chp-lf-input:focus {
  border-color: var(--chp-lf-ink) !important;
  box-shadow: 0 0 0 2px rgba(217, 236, 0, .3) !important;
}

.chp-lf-form .chp-lf-combobox {
  position: relative;
}

.chp-lf-form .chp-lf-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 9999;
  max-height: 280px;
  overflow: auto;
  border: 1px solid #d8dce0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .12);
  padding: 6px;
}

.chp-lf-form .chp-lf-suggestion,
.chp-lf-form button.chp-lf-suggestion[type="button"] {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 10px 12px !important;
  border: 0 !important;
  border-radius: 7px !important;
  background: #fff !important;
  color: var(--chp-lf-ink) !important;
  text-align: left !important;
  font: inherit !important;
  cursor: pointer !important;
  box-shadow: none !important;
}

.chp-lf-form .chp-lf-suggestion:hover,
.chp-lf-form .chp-lf-suggestion.is-active {
  background: rgba(217, 236, 0, .25) !important;
}

.chp-lf-form .chp-lf-suggestion-empty {
  padding: 10px 12px;
  color: var(--chp-lf-muted);
  font-size: 14px;
}

.chp-lf-form .chp-lf-button.chp-lf-submit,
.chp-lf-form button.chp-lf-button.chp-lf-submit[type="submit"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-width: 72px !important;
  min-height: 54px !important;
  height: 54px !important;
  margin: 0 !important;
  padding: 0 24px !important;
  border: 0 !important;
  border-radius: 4px !important;
  background: var(--chp-lf-accent) !important;
  color: var(--chp-lf-ink) !important;
  box-shadow: none !important;
  font-family: inherit !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: transform .18s ease, filter .18s ease !important;
}

.chp-lf-form.chp-lf-search--internal .chp-lf-button.chp-lf-submit {
  width: 72px !important;
  padding: 0 !important;
}

.chp-lf-form.chp-lf-search--internal .chp-lf-button-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.chp-lf-form .chp-lf-button.chp-lf-submit:hover,
.chp-lf-form .chp-lf-button.chp-lf-submit:focus {
  transform: translateY(-1px);
  filter: brightness(.98);
}

.chp-lf-form .chp-lf-button-icon {
  font-size: 24px;
  line-height: 1;
}

.chp-lf-filters {
  --chp-lf-accent: #d9ec00;
  --chp-lf-ink: #142417;
  --chp-lf-muted: #746489;
  --chp-lf-border: #d8d8d8;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--chp-lf-ink);
}

.chp-lf-filters .chp-lf-clear,
.chp-lf-filters button.chp-lf-clear[type="button"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 38px !important;
  margin: 0 0 18px !important;
  padding: 8px 14px !important;
  border: 1px solid var(--chp-lf-ink) !important;
  border-radius: 6px !important;
  background: transparent !important;
  color: var(--chp-lf-ink) !important;
  box-shadow: none !important;
  font: inherit !important;
  font-weight: 600 !important;
  cursor: pointer !important;
}

.chp-lf-filters .chp-lf-filter-group {
  margin: 0;
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid var(--chp-lf-border);
}

.chp-lf-filters .chp-lf-filter-group:first-of-type {
  padding-top: 0;
}

.chp-lf-filters .chp-lf-filter-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  margin: 0 0 24px;
  color: var(--chp-lf-ink);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
}

.chp-lf-filters .chp-lf-filter-title::-webkit-details-marker {
  display: none;
}

.chp-lf-filters .chp-lf-filter-title::after {
  content: "⌃";
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.chp-lf-filters details:not([open]) .chp-lf-filter-title::after {
  content: "⌄";
}

.chp-lf-filters .chp-lf-range-wrap {
  position: relative;
  min-height: 38px;
  margin: 10px 0 6px;
}

.chp-lf-filters input[type="range"] {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 30px;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
}

.chp-lf-filters .chp-lf-range-wrap {
  position: relative;
  min-height: 38px;
  margin: 10px 0 6px;
}

.chp-lf-filters .chp-lf-range-wrap::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 12px;
  height: 4px;
  background: var(--chp-lf-ink);
  border-radius: 999px;
  pointer-events: none;
}

.chp-lf-filters .chp-lf-range-wrap {
  position: relative;
  min-height: 38px;
  margin: 10px 0 6px;
}

.chp-lf-filters .chp-lf-range-wrap::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 12px;
  height: 2px;
  background: var(--chp-lf-ink);
  border-radius: 999px;
  pointer-events: none;
}

.chp-lf-filters input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
  border-radius: 999px;
}

.chp-lf-filters input[type="range"]::-moz-range-track {
  height: 4px;
  background: transparent;
  border-radius: 999px;
}

.chp-lf-filters input[type="range"]::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  margin-top: -10px;
  border: 0;
  border-radius: 50%;
  background: var(--chp-lf-accent);
  pointer-events: auto;
  cursor: grab;
  appearance: none;
  -webkit-appearance: none;
	z-index: 2;
}

.chp-lf-filters input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  background: var(--chp-lf-accent);
  pointer-events: auto;
  cursor: grab;
}

.chp-lf-filters .chp-lf-price-values {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--chp-lf-ink);
  font-size: 22px;
  font-weight: 500;
}

.chp-lf-filters .chp-lf-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.chp-lf-filters .chp-lf-rating-pill {
  display: inline-flex;
  margin: 0;
  cursor: pointer;
}

.chp-lf-filters .chp-lf-rating-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chp-lf-filters .chp-lf-rating-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 36px;
  padding: 8px 18px;
  border: 2px solid var(--chp-lf-accent);
  border-radius: 6px;
  background: #fff;
  color: var(--chp-lf-ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.chp-lf-filters .chp-lf-rating-pill input:checked + span,
.chp-lf-filters .chp-lf-rating-pill input:focus + span {
  background: rgba(217, 236, 0, .22);
  box-shadow: 0 0 0 2px rgba(20, 36, 23, .12);
}

.chp-lf-filters .chp-lf-terms {
  display: grid;
  gap: 14px;
}

.chp-lf-filters .chp-lf-term-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  color: var(--chp-lf-ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  cursor: pointer;
}

.chp-lf-filters .chp-lf-term-row input[type="checkbox"] {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  margin: 0 !important;
  border: 3px solid var(--chp-lf-ink) !important;
  border-radius: 4px !important;
  background: #fff !important;
  box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.chp-lf-filters .chp-lf-term-row input[type="checkbox"]:checked {
  background: var(--chp-lf-accent) !important;
  box-shadow: inset 0 0 0 5px #fff !important;
}

.chp-lf-filters .chp-lf-terms-pagination {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--chp-lf-muted);
  font-size: 16px;
  font-weight: 700;
}

.chp-lf-filters .chp-lf-terms-pagination button,
.chp-lf-filters .chp-lf-terms-pagination button[type="button"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  padding: 0 !important;
  border: 1px solid var(--chp-lf-muted) !important;
  border-radius: 50% !important;
  background: transparent !important;
  color: var(--chp-lf-muted) !important;
  box-shadow: none !important;
  font: inherit !important;
  cursor: pointer !important;
}

.chp-lf-filters .chp-lf-terms-pagination button:disabled {
  opacity: .35;
  cursor: not-allowed !important;
}

.chp-lf-empty {
  margin: 0;
  color: var(--chp-lf-muted);
}

.chp-lf-loading {
  position: relative;
  opacity: .55;
  pointer-events: none;
  transition: opacity .2s ease;
}

.chp-lf-no-results,
.chp-lf-no-template {
  grid-column: 1 / -1;
  width: 100%;
  padding: 18px 0;
}

.chp-lf-load-more-fallback,
button.chp-lf-load-more-fallback[type="button"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  margin: 24px auto 0 !important;
  padding: 12px 22px !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: #d9ec00 !important;
  color: #142417 !important;
  font: inherit !important;
  font-weight: 700 !important;
  cursor: pointer !important;
}

.chp-lf-loading {
  opacity: .55;
  pointer-events: none;
}

@media (max-width: 1024px) {
	.chp-lf-form.chp-lf-search > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
	
  .chp-lf-form.chp-lf-search,
  .chp-lf-form.chp-lf-search--external {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chp-lf-form .chp-lf-button.chp-lf-submit,
  .chp-lf-form.chp-lf-search--internal .chp-lf-button.chp-lf-submit {
    width: 100% !important;
  }

  .chp-lf-form.chp-lf-search--internal .chp-lf-button-text {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
  }
}

@media (max-width: 767px) {
	
.chp-lf-form.chp-lf-search > div {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
	
  .chp-lf-form.chp-lf-search,
  .chp-lf-form.chp-lf-search--external {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .chp-lf-form .chp-lf-input,
  .chp-lf-form input.chp-lf-input[type="text"],
  .chp-lf-form input.chp-lf-input[type="date"],
  .chp-lf-form input.chp-lf-input[type="number"],
  .chp-lf-form .chp-lf-button.chp-lf-submit {
    min-height: 52px !important;
    height: 52px !important;
    font-size: 16px !important;
  }

  .chp-lf-filters .chp-lf-filter-group {
    padding: 24px 0;
  }

  .chp-lf-filters .chp-lf-price-values {
    font-size: 18px;
  }

  .chp-lf-filters .chp-lf-term-row input[type="checkbox"] {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
  }
}
