
.pagination_custom {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin-bottom: 0px;
}

.pagination_custom li {
    cursor: pointer;
    display: inline-block;
    border-radius: 3px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px !important;
    font-weight: 400;
    margin: 7px;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.pagination_custom li:hover {
    color:  #FFFFFF;
    background: rgba(255,255,255,0.15);
    -moz-transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.pagination_custom li.active {
    color: #FFFFFF !important;
    background: linear-gradient(180deg, #4192D6 0%, #195D95 100%) !important;
    border-radius: 2px;
    font-weight: bold;
    -moz-transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.pagination_custom li:first-child {
    content: url(../icons/previousIcon.svg);
}

.pagination_custom li:last-child {
    content: url(../icons/lastIcon.svg);
}

.pagination_custom li:first-child,
.pagination_custom li:last-child {
    background-color: transparent;
    position: relative;
    /* top: 0.3em; */
    border: 0;
    vertical-align: 0;
    color: #5280E2;
    font-size: 14pt;
    width: 25px;
    height: 25px;
}
.pagination_custom li:first-child:hover, .pagination_custom li:last-child:hover, .pagination_custom li:hover{
    color: #ffffff;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
}

@media(max-width:1280px) {
    .pagination_custom li:first-child,
    .pagination_custom li:last-child {
        width: 20px;
        height: 20px;
    }
}
