.page-pagination {
    width: calc(100% - 20px);
    height: 55px;
    margin: 0 auto;
    margin-top: 5px;
    background-color: white;
    padding-top: 5px;
    border-radius: 15px 15px 0 0;
    display: flex;
    text-align: center;
    justify-content: center;
}


/* 2560px - Desktops Grandes / Telas 4K */
@media screen and (max-width: 2560px) {
    .page-pagination {}
}

/* 1440px - Laptops/Desktops Médios */
@media screen and (max-width: 1440px) {
    .page-pagination {}
}

/* 1024px - Laptops/Desktops Pequenos */
@media screen and (max-width: 1024px) {
    .page-pagination {}
}

/* 768px - Tablets */
@media screen and (max-width: 768px) {
    .page-pagination {}
}

/* 425px - Celulares Grandes */
@media screen and (max-width: 425px) {
    .page-pagination {}
}

/* 320px - Celulares Pequenos */
@media screen and (max-width: 320px) {
    .page-pagination {}
}