@charset "UTF-8";

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

nav li {
  list-style: none;
}

nav a,
a.button {
  text-decoration: none;
}

[class*="fx-"] {
  display: flex;
}

[class*="-sb"] {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

[class*="-sa"] {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

[class*="-jcc"] {
  -webkit-justify-content: center;
  justify-content: center;
}

[class*="-jcs"] {
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}

[class*="-jce"] {
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}

[class*="-aic"] {
  -webkit-align-items: center;
  align-items: center;
}

[class*="-ais"] {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

[class*="-aie"] {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

[class*="-c-"] {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

[class*="-ww"] {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

[class*="-ctr"] {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

[class*="-asfe"] {
  -webkit-align-self: flex-end;
          align-self: flex-end;
}

[class*="-gr"] {
  -webkit-flex-grow: 1;
          flex-grow: 1;
}