@keyframes loadingSpin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*
	p {
		font-size: 1.4em;

		//	Tablet
	    .minWidth(768px, {
	    	font-size: 1.6em;
	    });

	    //	Desktop
	    .minWidth(1280px, {
	    	font-size: 1.8em;
	    });
	}
*/
.c-category__filters {
  background-color: #EDE9E4;
}
.c-category__filters__inner {
  display: flex;
  padding: 2rem 0;
  align-items: center;
  flex-wrap: wrap;
}
.c-category__filters__inner .e-select-wrapper {
  width: 100%;
}
@media all and (min-width: 600px) {
  .c-category__filters__inner .e-select-wrapper {
    display: none;
  }
}
.c-category__filters__label {
  margin: 0 2rem 1rem 0;
  color: black;
  font-family: "Solway", Gotham, Georgia, serif;
  font-weight: 400;
  font-size: 1.6rem;
}
@media all and (min-width: 600px) {
  .c-category__filters__label {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .c-category__filters__label--mobile {
    display: none;
  }
}
@media all and (max-width: 599px) {
  .c-category__filters__label--non-mobile {
    display: none;
  }
}
@media all and (min-width: 768px) {
  .c-category__filters__label {
    flex: 0 1 auto;
    margin-bottom: 0;
  }
}
@media all and (min-width: 1280px) {
  .c-category__filters__label {
    font-size: 2rem;
  }
}
.c-category__filters__list {
  list-style: none;
  display: none;
  align-items: center;
  margin: 0 -1.5rem;
}
@media all and (min-width: 600px) {
  .c-category__filters__list {
    display: flex;
    margin-right: 1.5rem;
  }
}
.c-category__filters__list__item {
  margin: 0;
  padding: 0 1.5rem;
  max-width: 17rem;
}
.c-category__filters__list__link {
  display: inline-block;
  position: relative;
  padding-left: 5rem;
  text-transform: uppercase;
  color: black;
  font-family: "Jost", Futura, Verdana, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
}
.c-category__filters__list__link .e-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  fill: #F0634F;
  font-size: 4rem;
}
.c-category__filters__list__link:hover,
.c-category__filters__list__link:active,
.c-category__filters__list__link:focus,
.c-category__filters__list__link--selected {
  color: #F0634F;
}
.c-category__filters__select {
  border-radius: 2rem;
  font-weight: 400;
  color: black;
  text-transform: capitalize;
  flex: 1 1 100%;
}
@media all and (min-width: 600px) {
  .c-category__filters__select {
    display: none;
  }
}
.c-category__filters__select:focus {
  outline: none;
}
.c-category__filters__option {
  font-family: "Jost", Futura, Verdana, Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: black;
}
.c-category__filters__clear-wrapper {
  flex-basis: 100%;
}
@media all and (min-width: 900px) {
  .c-category__filters__clear-wrapper {
    flex-basis: auto;
  }
}
.c-category__filters__clear {
  margin-top: 2rem;
}
@media all and (min-width: 900px) {
  .c-category__filters__clear {
    margin-top: 0;
  }
}
