.filter-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin-bottom: 3rem;
}

.filter-list-row {
  min-height: 56px;
  max-height: 56px;
  position: relative;
  z-index: 1;
}

.filter-list select {
  width: 100%;
  height: 56px;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 0;
  color: white;
  border: 1px solid white;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.filter-list-row:after {
  content: "\f0ab";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  z-index: -1;
  color: white;
}

.filter-list-row:last-of-type::after {
  display: none;
}

.filter-list select option {
  color: black;
}

.filter-list input {
  width: 100%;
  height: 56px;
  background: transparent;
  border: 1px solid white;
  color: white;
  border-radius: 0;
}
.filter-list input[type=submit] {
  border: 0;
}

.inventory-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-row-gap: 2rem;
  grid-column-gap: 2rem;
  transition: all 0.7s ease;
}

.inventories, .artists {
  padding: 3rem;
  padding-bottom: 0;
}

.artists .inventory_row:last-of-type {
  position: initial;
}

.inventoryPager {
  margin-top: 3rem;
  text-align: center;
}

.inventoryPager .r-white-transparent-btn {
  padding: 5px 10px;
}

.inventoryPager .r-white-transparent-btn:disabled {
  color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3) !important;
  border-radius: 0;
}

.inventory_box {
  position: relative;
  transition: all 0.7s ease;
  max-width: 600px;
  text-align: left;
  color: white;
}

.inventory_row {
  margin-bottom: 0.5rem;
}
.inventory_row h3 {
  color: white;
  margin-bottom: 1rem;
}

.inventory_row:last-of-type {
  position: absolute;
  bottom: 0;
  right: 0;
}

.inventory_row:last-of-type a {
  padding: 5px 10px 5px 10px;
  border: 1px solid white;
  font-size: 1rem;
  color: white;
  border-radius: 0 !important;
}

.inventory_like {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  z-index: 10;
  color: white;
}

.art-item-btn {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.soldTagOverlay {
  font-size: 3em;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  text-align: center;
  z-index: 5;
  width: 100%;
  bottom: 0;
  position: absolute;
}

@media screen and (max-width: 360px) {
  .inventory-container {
    grid-template-columns: 1fr;
    width: 100%;
  }
}/*# sourceMappingURL=art.css.map */