/* Shared classes */

.all-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

a {
  text-decoration: none;
}

.filter a {
  color: #fff;
  cursor: pointer;
}

.center-text {
  text-align: center;
}

.right-text {
  text-align: right;
}

.sm-show {
  display: none;
}

.show {
  display: block !important;
}

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}

.section-title {
  font-weight: 300;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid #CCCCCC;
  color: #999;
}

.text-muted {
  color: #777;
}

@media screen and (max-width: 48em) {
  .sm-hide {
    display: none;
  }

  .sm-show {
    display: block;
  }

  .sm-center-text {
    text-align: center;
  }
}