@keyframes statusIconAnimation {
  0% {
    background-position: 0 100%;
  }
  100% {
    background-position: 0 0;
  }
}
.sortList {
  margin: auto;
  margin-bottom: 1rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.2rem;
  align-items: flex-start;
  font-size: 1.2rem;
}
.sortList > li {
  box-sizing: border-box;
  padding: 0.5rem 0;
  text-align: center;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  transition: 300ms;
  background: #f2f2f8;
}
.sortList > li > a {
  text-decoration: underline;
  color: #000000;
}
.sortList > li.selected {
  background: #f2f2f8;
}
@media screen and (max-width: 767px) {
  .sortList {
    width: 100%;
    margin-bottom: 2rem;
  }
  .sortList > li {
    min-width: 100px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sortList {
    width: 100%;
    margin-bottom: 2rem;
  }
  .sortList > li {
    min-width: 300px;
  }
}
@media screen and (min-width: 1025px) {
  .sortList {
    width: 100%;
  }
  .sortList > li {
    min-width: 400px;
    font-size: 1.4rem;
  }
}
/*# sourceMappingURL=sortForm.css.map */