/* Style the single of catalogs (THE PAGINATION) */
.SingleCatalogsPagination {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 1200px;

    padding-left: 17px;
    padding-right: 17px;
    margin-bottom: 77px;
}

@media screen and (max-width: 550px){
    .SingleCatalogsPagination > .page-numbers {
        display: none !important;
    }

    .SingleCatalogsPagination > .prev,
    .SingleCatalogsPagination > .next {
        display: flex !important;
    }
    
}

    .SingleCatalogsPagination > .current {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;

        background: rgb(60, 64, 68);
        border: unset;
        border-radius: 3px;

        outline: none;

        width: 50px;
        height: 50px;
        color: rgb(97, 107, 117);
        font-size: 18px;
        font-weight: 700;

        margin-right: 17px;

        cursor: default !important;
        box-shadow: -4px 4px 17px rgba(255, 237, 177, 0.3);
    }

    .SingleCatalogsPagination > .dots {
        background: unset !important;
        cursor: default !important;
    }

        .SingleCatalogsPagination > .dots:hover {
            background: unset !important;
            cursor: default !important;
            box-shadow: unset !important;
        }

    .SingleCatalogsPagination > .page-numbers {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;

        background: rgb(60, 64, 68);
        border: unset;
        border-radius: 3px;

        outline: none;

        min-width: 50px;
        height: 50px;

        color: rgb(97, 107, 117);
        font-size: 18px;
        font-weight: 700;

        margin-right: 17px;

        cursor: pointer;
        transition: 0.4s;
    }

        .SingleCatalogsPagination > .page-numbers:hover {
            transition: 0.2s;
            color: rgb(107, 117, 127);
            box-shadow: -4px 4px 17px rgba(255, 237, 177, 0.3);
        }

    .SingleCatalogsPagination > .prev {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;

        background: rgb(60, 64, 68);
        border: unset;
        border-top-left-radius: 3px;
        border-bottom-left-radius: 17px;
        border-top-right-radius: 3px;
        border-bottom-right-radius: 3px;

        outline: none;

        color: rgb(97, 107, 117);
        font-size: 18px;
        font-weight: 700;

        height: 50px;

        padding-left: 17px;
        padding-right: 17px;

        cursor: pointer;
        transition: 0.4s;
    }

        .SingleCatalogsPagination > .prev:hover {
            transition: 0.2s;
            color: rgb(107, 117, 127);
            box-shadow: -4px 4px 17px rgba(255, 237, 177, 0.3);
        }

    .SingleCatalogsPagination > .next {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;

        background: rgb(60, 64, 68);
        border: unset;
        border-top-left-radius: 3px;
        border-bottom-left-radius: 3px;
        border-top-right-radius: 3px;
        border-bottom-right-radius: 17px;

        outline: none;

        color: rgb(97, 107, 117);
        font-size: 18px;
        font-weight: 700;

        height: 50px;

        padding-left: 17px;
        padding-right: 17px;

        cursor: pointer;
        transition: 0.4s;
    }

        .SingleCatalogsPagination > .next:hover {
            transition: 0.2s;
            color: rgb(107, 117, 127);
            box-shadow: -4px 4px 17px rgba(255, 237, 177, 0.3);
        }