/***Pagination***/
.page-item {
    padding-right: 5px;
}
.page-link {
    border-radius: 50% !important;
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color:black;
    font-weight: 600;
    .pagination-prev {
        width: 48px;
        height: 48px;
        rotate: 180deg;
    }
    .pagination-next {
        width: 48px;
        height: 48px;
    }
}

.page-link:hover {
    color:black;
}
.page-link:focus {
    box-shadow: unset;
}

.page-link.page-link__active {
    background-color: #C4161C;
    color: white;
}


@media (max-width: 768px) {
    .page-link {
        font-size: 18px;
        width: 36px;
        height: 36px;
        .pagination-prev {
            width: 36px;
            height: 36px;
        }
        .pagination-next {
            width: 36px;
            height: 36px;
        }
    }
}
