	/* Pagination */
    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .pagination a {
        color: black;
        text-decoration: none;
    }

    .pagination .prev,
    .pagination .next {
        width: 50px;
        height: 30px;
        box-sizing: border-box;
    }

    .pagination .prev a,
    .pagination .next a {
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .pagination .prev .notSelected,
    .pagination .next .notSelected {
        background-color: rgba(255, 255, 255, 0.4);
    }

    .pagination .number {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .pagination .number a {
        width: 30px;
        height: 30px;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.4);
        border-right: 0;
        margin: 0 5px;
        border-radius: 4px;
    }

    .pagination .number a:hover,
    .pagination .number a:active {
        background-color: rgba(255, 255, 255, 0.7);
    }

    /* .pagination .number .selected {
        background-color: #fff;
    } */

    .pagination .number .notSelected {
        background-color: rgba(255, 255, 255, 0.4);
    }