/* --------------- pagination ------------ */
.pagination {
  margin: 20px 0;
  padding-top: 25px;
  text-align: center;
  width: 100%;
  clear: both;
  ul {
    list-style: none;
    display: inline-block;
    text-align: center;
    margin-bottom: 0;
    margin-left: 0px;
    & > li {
      display: inline;
      & > a {
        color: white;
        background: @accent;
        .transition(all 0.4s ease);
      }
      & > a:hover {
        color: white;
        background: @accent;
      }
    }
  }
  .current {
    background: @accent;
    color: white;
  }
}
.pagination ul &>li &>a, .pagination ul &>li &>span {
  float: left;
  padding: 4px 12px;
  line-height: 20px;
  text-decoration: none;
  border-radius: 3px;
  margin-right: 5px;
  background-color: #fff;
  border: 1px solid darken(@background,5%);
  display: inline-block;
  color: @content;
  font-weight: normal;

}