﻿.custom-pagination-wrapper
{
    display: flex;
    width: 100%;
    justify-content: center;
}
.custom-pagination-wrapper .custom-pagination
{
    display: flex;
    justify-content: center;
    width: 95%!important;
    margin-left: 2.5%!important;
    margin-right: 2.5%!important;
    padding-bottom: 25px;
}
.custom-pagination-wrapper .custom-pagination .page-numbers
{
    padding: 10px;
    background-color: #5c6d7f;
    color: #fff;
    margin-left: 5px;
    margin-right: 5px;
    display: flex;
    align-items: center;
    height: 50px!important;
    width: 50px!important;
    min-width: 50px!important;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}
.custom-pagination-wrapper .custom-pagination .page-numbers.current
{
    background-color: #8cb0d4!important;
}
.custom-pagination-wrapper .custom-pagination .page-numbers.prev, .custom-pagination-wrapper .custom-pagination .page-numbers.next
{
    display: flex;
    width: 130px!important;
    min-width: 130px!important;
}
.custom-pagination-wrapper .custom-pagination .page-numbers.dots
{
    background-color: #e3e4e5;
}
.custom-pagination-wrapper .custom-pagination .page-numbers:hover
{
    text-decoration: none;
    opacity: .8;
}
@media(max-width: 768px)
{
    .custom-pagination-wrapper .custom-pagination
    {
        overflow-x: scroll;
    }
}
@media(max-width: 576px)
{
    .custom-pagination-wrapper .custom-pagination
    {
        position: absolute;
        left: 0;
        justify-content: start;
    }
}
@media(max-width: 576px)
{
    .custom-pagination-wrapper:after
    {
        content: " ";
        padding: 50px;
        width: 100%;
        display: block;
    }
}