.main-container {
  background-image: url("/img/main/photo-1518134401586-70feb7eea215.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ads-section > .outer {
  border-radius: 15px;
  overflow: hidden;
}

.ads-section > .outer:before {
  padding-top: 25%;
}

.filter-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.filter-list-row {
  min-height: 56px;
  max-height: 56px;
  position: relative;
  z-index: 1;
  background: white;
  border-radius: 50px;
}

.filter-list select {
  width: 100%;
  height: 56px;
  padding: .5rem 1rem;
  background: transparent;
  border: 0;
  color: black;
  font-weight: bold;
  border: 1px solid white;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 50px;
}

.filter-list-row:after {
  content: '\f0ab';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
  color: black;
}

.filter-list-row:last-of-type::after {
  display: none;
}

.filter-list select option {
  color: black;
}

.filter-list input {
  width: 100%;
  height: 56px;
  border-radius: 50px;
  border: 0;
  background: linear-gradient(120deg, rgba(131, 58, 180, 0.8) 0%, rgba(253, 29, 29, 0.8) 50%, rgba(252, 176, 69, 0.8) 100%);
  background-size: 200%;
  -webkit-animation: gradient 5s ease-in-out infinite;
          animation: gradient 5s ease-in-out infinite;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}

.filter-list input:hover {
  text-decoration: none;
  color: white;
}
/*# sourceMappingURL=shop.css.map */