/*!
 *   ficsantarem v1.0.0
 *   Author: ficsantarem
 *   Website: ficsantarem.pt <https://ficsantarem.pt>
 */

/*!
***************   Pagination
 */
    .pagination_container {
        padding: 0;
        margin: 0;
        flex-shrink: 0;
    }

    .pagination {
        flex-shrink: 0;
        height: 57px;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        font-family: "DM Sans";
        font-size: 27px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        color: black;
        margin-top: 94px;
    }

        .pagination .item {
            flex-shrink: 0;
            margin: 0 5px;
            padding: 0px 20px;
            background-color: #d3503c;
            color: #000;
            border-radius: 50%;
            text-decoration: none;
            height: 100%;
            display: flex;
            width: 40px;
            flex: 0 1 1%;
            justify-content: center;
            align-items: center;
        }

            .pagination .item svg {
                height: 27px;
                width: 14px;
                margin: auto;
                color: #000;
            }

        .pagination .selected {
            background-color: black;
            color: #d3503c;
        }

        .pagination .item:hover,
        .pagination .item:hover svg {
            background-color: black;
            color: #EAEAEA;
        }

            .pagination .item:hover svg {
                background-color: transparent;
                color: #EAEAEA;
            }


    @media only screen and (max-width: 1280px) {
        .pagination {
            height: 35px;
            font-size: 15px;
            line-height: 35px;
            margin-top: 29px;
        }

            .pagination .item {
                margin: 0 2px;
                padding: 0px 12px;
                width: 35px;
            } 

                .pagination .item svg {
                    height: 12px;
                    width: 9px;
                }
    }