.shop-controls{
  padding: 10px;
  background: #333;
  margin: 0 auto 20px;
  border-radius: 8px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.lrc-sort-wrap{
  display: flex;
  align-items: center;
  gap: 8px;
}
.lrc-sort-wrap,
.lrc-search-wrap{
  width: 100%;
  padding: 10px;
}
@media screen and (min-width: 767px){
  .shop-controls{
    padding: 30px;
  }
  .lrc-sort-wrap,
  .lrc-search-wrap{
    width: 50%;
    padding: 0;
  }
  .lrc-sort-wrap{
    justify-content: flex-end;
  }
}

.lrc-search-wrap input[type="search"]{
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: none;
  font-size: 16px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  background: #1a1a1a;
  color: #fff;
}
.lrc-search-wrap input[type="search"]::placeholder{
  color: #999;
}
.lrc-sort-wrap select{
  background: #222;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 4px;
  font-size: 16px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  margin-left: 10px;
}
/* remove and replace default select arrow */
.lrc-sort-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 36px; /* space for arrow */
}

.lab-rats-sort{
  display: block;
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}
.lrc-price {
  display: grid;
  gap: .5rem;
}

.lrc-price-readout {
  font-weight: 600;
}

.lrc-price-slider {
  position: relative;
  padding: 18px 0 8px;
}

.lrc-price-slider .lrc-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 22px;
  height: 4px;
  background: #333;
  border-radius: 999px;
}

.lrc-price-slider .lrc-fill {
  position: absolute;
  height: 4px;
  top: 0;
  left: 0;
  width: 0;
  background: #4bff00;
  opacity: .5;
  border-radius: 999px;
}

.lrc-range {
  position: relative;
  width: 100%;
  appearance: none;
  background: transparent;
  pointer-events: auto;
}

.lrc-range::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #4bff00;
  cursor: pointer;
}

.lrc-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #4bff00;
  cursor: pointer;
  border: none;
}

.lrc-range::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
}

.lrc-range::-moz-range-track {
  height: 4px;
  background: transparent;
}