/*
 * module-button-link.css
 *
 * Default CSS Manifest modified from Snook's
 * Scalable and Modular Architecture for CSS
 * http://smacss.com/book/
 */

/* ===============================================================================================
   MODULES - Discrete, reusable, modular components,
             e.g. navigation bars, product lists, contact forms...
   ============================================================================================ */


.button {
  display: inline-block;
  margin: 1rem 0 0; /*padding: 0;*/
  min-width: 0; width: auto;
  line-height: 1.75rem;
} @media screen and (min-width: 64em) {
  .filter__button {
    display: none;
  }
}

.button > a {
  display: inline-block;
  padding: .8rem 1rem;
  text-decoration: none;
  color: inherit;
  border: solid .125rem;
  border-radius: .1875rem;
}.button > a:after {
  content: '';
  display: inline-block;
  float: right;
  width: 1.5rem; height: 1.5rem; line-height: 1.25rem;
  border-style: solid; border-radius: 50%;
  margin-left: .75rem;

  background-image: url(../icons/arrow-right-white.svg);
  background-size: 80% 80%;
  background-position: center center;
  background-repeat: no-repeat;
}
