.section {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0;
  padding: 1rem 0;
  width: 100%;
}
@media (max-width: 40rem) {
  .section {
    align-items: center;
 }
  .section > * {
    width: 100%;
 }
  .section > * + * {
    margin-top: 1rem;
 }
}
@media (min-width: 41rem) {
  .section {
    flex-direction: row;
    margin: 0 auto;
 }
  .section > * + * {
    margin-left: 1rem;
 }
}
.product-list {
  display: flex;
  position: relative;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 1;
}
.product-list .products {
  width: 100%;
}
.product-list .loader__products {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  margin-left: 0px;
  background-color: #fff;
  user-select: none;
  pointer-events: none;
  z-index: 1020;
}
@media (min-width: 40rem) {
  .product-list .loader__products {
    position: absolute;
    top: -140px;
    margin-left: 0;
    z-index: 110;
 }
}
/* Animation for loader */
@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  7%, 70% {
    fill: rgb(191, 161, 99);
  }
  80%, 100% {
    fill: transparent;
  }
}

@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  7%, 70% {
    fill: rgb(191, 161, 99);
  }
  80%, 100% {
    fill: transparent;
  }
}

.svg-elem-1 {
  -webkit-animation: animate-svg-fill-1 4s ease-in-out infinite;
  animation: animate-svg-fill-1 4s ease-in-out infinite;
}

@-webkit-keyframes animate-svg-fill-2 {
  0%, 3.5% {
    fill: transparent;
  }
  10.5%, 70% {
    fill: rgb(191, 161, 99);
  }
  80%, 100% {
    fill: transparent;
  }
}

@keyframes animate-svg-fill-2 {
  0%, 3.5% {
    fill: transparent;
  }
  10.5%, 70% {
    fill: rgb(191, 161, 99);
  }
  80%, 100% {
    fill: transparent;
  }
}

.svg-elem-2 {
  -webkit-animation: animate-svg-fill-2 4s ease-in-out infinite;
  animation: animate-svg-fill-2 4s ease-in-out infinite;
}

@-webkit-keyframes animate-svg-fill-3 {
  0%, 7% {
    fill: transparent;
  }
  14%, 70% {
    fill: rgb(59, 59, 84);
  }
  80%, 100% {
    fill: transparent;
  }
}

@keyframes animate-svg-fill-3 {
  0%, 7% {
    fill: transparent;
  }
  14%, 70% {
    fill: rgb(59, 59, 84);
  }
  80%, 100% {
    fill: transparent;
  }
}

.svg-elem-3 {
  -webkit-animation: animate-svg-fill-3 4s ease-in-out infinite;
  animation: animate-svg-fill-3 4s ease-in-out infinite;
}

@-webkit-keyframes animate-svg-fill-4 {
  0%, 10.5% {
    fill: transparent;
  }
  17.5%, 70% {
    fill: rgb(59, 59, 84);
  }
  80%, 100% {
    fill: transparent;
  }
}

@keyframes animate-svg-fill-4 {
  0%, 10.5% {
    fill: transparent;
  }
  17.5%, 70% {
    fill: rgb(59, 59, 84);
  }
  80%, 100% {
    fill: transparent;
  }
}

.svg-elem-4 {
  -webkit-animation: animate-svg-fill-4 4s ease-in-out infinite;
  animation: animate-svg-fill-4 4s ease-in-out infinite;
}

@-webkit-keyframes animate-svg-fill-5 {
  0%, 14% {
    fill: transparent;
  }
  21%, 70% {
    fill: rgb(59, 59, 84);
  }
  80%, 100% {
    fill: transparent;
  }
}

@keyframes animate-svg-fill-5 {
  0%, 14% {
    fill: transparent;
  }
  21%, 70% {
    fill: rgb(59, 59, 84);
  }
  80%, 100% {
    fill: transparent;
  }
}

.svg-elem-5 {
  -webkit-animation: animate-svg-fill-5 4s ease-in-out infinite;
  animation: animate-svg-fill-5 4s ease-in-out infinite;
}

@-webkit-keyframes animate-svg-fill-6 {
  0%, 17.5% {
    fill: transparent;
  }
  24.5%, 70% {
    fill: rgb(59, 59, 84);
  }
  80%, 100% {
    fill: transparent;
  }
}

@keyframes animate-svg-fill-6 {
  0%, 17.5% {
    fill: transparent;
  }
  24.5%, 70% {
    fill: rgb(59, 59, 84);
  }
  80%, 100% {
    fill: transparent;
  }
}

.svg-elem-6 {
  -webkit-animation: animate-svg-fill-6 4s ease-in-out infinite;
  animation: animate-svg-fill-6 4s ease-in-out infinite;
}
/* End animation for loader */
.loader {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 1rem;
  width: 100%;
  height: calc(100% - 260px);
  margin-left: -40px;
  user-select: none;
  pointer-events: none;
  opacity: 1;
  transition: opacity 1s ease-in-out;
  background-color: #fff;
  z-index: 1000;
}
.loader.hidden {
  opacity: 0;
}
.no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
  padding: 0 1rem;
}
.no-results__graphic {
  width: 24rem;
}
.no-results__text {
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
  max-width: 60%;
}
@media (min-width: 40rem) {
  .no-results__text {
    font-size: 3rem;
 }
}
.pagination {
  display: flex;
  margin: 0 0 2rem;
  padding: 0.25rem 0.125rem;
}
@media (min-width: 40rem) {
  .pagination {
    padding: 0.5rem 0.25rem;
 }
}
.pagination__button {
  margin: 0.25rem 0.125rem;
  padding: 0.25rem 0.75rem;
  background-color: #eee;
}
@media (min-width: 40rem) {
  .pagination__button {
    margin: 0.25rem 0.25rem;
    padding: 0.5rem 1rem;
 }
}
.pagination__button.active {
  background-color: #c89f4d;
  color: #fff;
}
.pagination__button img {
  min-width: 1rem;
}
.pagination__ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.25rem;
  padding: 0 0.125rem;
}
@media (min-width: 40rem) {
  .pagination__ellipsis {
    padding: 0 0.5rem;
 }
}
.actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  white-space: nowrap;
  margin: 2rem;
}
@media (min-width: 40rem) {
  .actions {
    justify-content: flex-end;
 }
}
.actions .action {
  display: flex;
  flex-direction: row;
  margin: 0 0.125rem;
  font-family: "Roboto Condensed", sans-serif;
    font-size: 0.75rem;
  line-height: 1.5rem;
  letter-spacing: -1px;
}
@media (min-width: 40rem) {
  .actions {
    margin: 0 1rem 0 0;
 }
}
.actions .action--label {
  display: flex;
  flex-direction: row;
  margin: 0 0.25rem 0 0;
  padding: 0.25rem 0;
  letter-spacing: 0px;
}
.actions .action--button {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #c89f4d;
  margin: 0 0 0 auto;
  padding: 0.25rem 0.5rem;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.actions .action--button img {
  margin: 0 0 0 0.25rem;
}
.product-list-actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  white-space: nowrap;
  margin: 2rem;
}
@media (min-width: 40rem) {
  .product-list-actions {
    justify-content: flex-end;
 }
}
.product-list-actions__action {
  display: flex;
  flex-direction: row;
  margin: 0 0.125rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.75rem;
  line-height: 1.5rem;
  letter-spacing: -1px;
}
@media (min-width: 40rem) {
  .product-list-actions__action {
    margin: 0 1rem 0 0;
 }
}
.product-list-actions__action .show-filters {
  display: flex;
  position: relative;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0.125rem 0.5rem 0.125rem 0.25rem;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 3px;
}
@media (min-width: 40rem) {
  .product-list-actions__action .show-filters {
    display: none;
 }
}
.product-list-actions__action .show-filters img {
  margin: 0 0.25rem 0;
}
.product-list-actions__action--label {
  display: flex;
  flex-direction: row;
  margin: 0 0.25rem 0 0;
  padding: 0.25rem 0;
  letter-spacing: 0px;
}
.product-list-actions__action--button {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #000;
  border-radius: 0.25rem;
  margin: 0 0 0 auto;
  padding: 0.25rem 0.5rem;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.product-list-actions__action--button img {
  margin: 0 0 0 0.25rem;
}
.product-list-actions__action--button#clear-filters {
  display: none;
  background-color: #ff6a33;
  color: #fff;
}
@media (max-width: 40rem) {
  .product-list-actions__action--button#clear-filters {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3rem;
    border: 0;
    border-radius: 0;
    z-index: 1020;
 }
}
.product-list-actions__action--button#clear-filters img {
  filter: invert(1);
}
