
.pagination {
  display: inline-block;
    background-color: white;
    padding-right: 22px;
    margin-bottom: 22px;
}

.pagination
{
  display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: center;
  -webkit-justify-content: center;
  flex-wrap : wrap;
  -webkit-flex-wrap: wrap;
}

.pagination a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
}


.page {
    display: inline-block;
    padding: 1px 9px;
    margin-right: 14px;
	margin-bottom: 14px;
    border-radius: 5px;
    border: solid 1px #c0c0c0;
    background: #fefefe;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    color: #717171;
}

.page:hover, .page.gradient:hover {
    background: #e9e9e9;
}

.page.active {
    border: none;
    background: #616161;
    color: #f0f0f0;
}


