/* Pagination (based on Plugin “WP-Paginate” but also needed for standard fallback pagination) start */ .archive .pagination {

text-align: center;
margin-top: 30px;
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
li {
  background: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  .title {
    display: none;
  }
  .current {
    font-weight: normal !important;
    background-color: whiteSmoke;
    color: #999;
  }
  .gap {
    font-weight: normal !important;
  }
  a:hover {
    text-decoration: none;
    background-color: whiteSmoke;
    color: #34570a;
  }
}
li > * {
  font-size: 13px;
  display: inline-block;
  padding: 0 14px;
  line-height: 34px;
  border: 1px solid #DDD;
  border-right-width: 0px;
}
ol li:last-child > * {
  border-right-width: 1px;
}
.prev {
  -moz-border-radius-topleft: 5px;
  -webkit-border-top-left-radius: 5px;
  -o-border-top-left-radius: 5px;
  -ms-border-top-left-radius: 5px;
  -khtml-border-top-left-radius: 5px;
  border-top-left-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -o-border-bottom-left-radius: 5px;
  -ms-border-bottom-left-radius: 5px;
  -khtml-border-bottom-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.next {
  -moz-border-radius-topright: 5px;
  -webkit-border-top-right-radius: 5px;
  -o-border-top-right-radius: 5px;
  -ms-border-top-right-radius: 5px;
  -khtml-border-top-right-radius: 5px;
  border-top-right-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -o-border-bottom-right-radius: 5px;
  -ms-border-bottom-right-radius: 5px;
  -khtml-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.fallback .prev {
  border-right-width: 1px !important;
  float: left;
}
.fallback .prev > * {
  border-right-width: 1px !important;
}
.fallback .next {
  float: right;
}

}