/* Bullet proof Screen Reader Only text */
.searchwp-live-search-instructions {
	border: 0 !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	-webkit-clip-path: inset(50%) !important;
		clip-path: inset(50%) !important;
	height: 1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important;
}

@keyframes searchwp-spinner-line-fade-more {
  0%, 100% {
    opacity: 0; /* minimum opacity */
  }
  1% {
    opacity: 1;
  }
}

@keyframes searchwp-spinner-line-fade-quick {
  0%, 39%, 100% {
    opacity: 0.25; /* minimum opacity */
  }
  40% {
    opacity: 1;
  }
}

@keyframes searchwp-spinner-line-fade-default {
  0%, 100% {
    opacity: 0.22; /* minimum opacity */
  }
  1% {
    opacity: 1;
  }
}

.searchwp-live-search-results.spinner {
    position:relative;
    padding:80px;
}

/*Results*/
.search-results-area {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  box-sizing: border-box;
}

.talon-lsr-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  box-sizing: border-box;
}

/* < 1200px: 4 equal columns */
@media (max-width: 1199px) {
  .talon-lsr-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* < 978px: 3 equal columns */
@media (max-width: 977px) {
  .talon-lsr-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* < 766px: fluid 2 columns, but shrink responsively */
@media (max-width: 765px) {
  .talon-lsr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



.talon-lsr-item {
  width: 100%;
  box-sizing: border-box;
}
.talon-lsr-product-container {
    overflow-x: hidden;
    overflow-y: hidden;
    align-items: stretch;
    align-content: stretch;
    height: 100%;
  }
  .talon-lsr-product-flex-col {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
    flex-grow: 1;
    flex-shrink: 0;
  }
  .talon-lsr-product-flex-center {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    align-content: center;
    background-image: radial-gradient(#ffffff, #e8e8e8);
    aspect-ratio: 1 / 1;
    position: relative;
  }
  .talon-lsr-product-abs-box {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    row-gap: 15px;
    column-gap: 15px;
  }
  .talon-lsr-product-padding {
    padding: 15px 0;
  }

  /* Text styles */
  .talon-lsr-product-feature-label {
    font-family: "Onest", sans-serif;
    font-size: 16px;
    color: #fff;
    background-color: #ed1c24;
    border-radius: 5px;
    padding: 5px 10px;
    font-weight: 600;
    line-height: 1.2;
  }
  .talon-lsr-product-price-block {
    display: flex;
    flex-wrap: wrap;
    row-gap: 5px;
    column-gap: 5px;
    align-items: center;
  }
  .talon-lsr-product-discounted-price {
    font-family: "Onest", sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.04em;
    line-height: 1.2;
    font-style: italic;
    color: #ed1c24;
  }
  .talon-lsr-product-discount-label {
    font-family: "Onest", sans-serif;
    font-size: 15px;
    margin-left: 5px;
    line-height: 1.2;
    border: 1px solid #e7e7e7;
    padding: 2px 8px 2px 5px;
    font-weight: 600;
    font-style: italic;
  }
  .talon-lsr-product-original-price {
    font-family: "Onest", sans-serif;
    font-weight: 200;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: line-through;
    color: #000;
    font-style: italic;
  }
 .talon-lsr-product-price {
    font-family: "Onest", sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.04em;
    line-height: 1.2;
    color: #000;
    font-style: italic;
  }
  .talon-lsr-product-title {
    margin-top: 10px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: -0.04em;
    font-family: "Onest", sans-serif;
    color: #000;
    font-size: 18px;
  }

  /* Image */
  .talon-lsr-product-image {
    font-size: 1em;
    width: 100%;
  }
  .talon-lsr-product-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }
  
.talon-lsr-bike {
    background: #e7e7e7;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.talon-lsr-bike-name {
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.04em;
}
