﻿/*Pagination*/
.page-item {
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 14px;
    color: #b2b2b2;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
    margin-right: 16px;
    -webkit-transition: all, 0.3s;
    -moz-transition: all, 0.3s;
    -ms-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
    text-decoration: none;
    background-color: transparent;
    cursor: pointer;
    border: 1px solid #ff91af;
}

    .page-item.active {
        background-color: #ff91af;
        color: #fff;
    }

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    z-index: 2;
    color: #fff;
    background-color: #ff91af;
    border-color: #ff91af;
    cursor: default;
}

.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
    color: #ff91af;
    background-color: #eee;
    border-color: #ddd;
}
