.joblisting_paginate{max-width:1700px;width:100%;margin:0 auto;margin-top:2rem;grid-column: 1 / -1; display: flex;
    justify-content: center;}
.pagination-conatiner {
    width: 100%;
    margin-bottom: 2rem;
}

.pagination {
    font-size: .875rem;
    line-height: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    text-align: center;
    color: #b9bfcb;
}

.pagination li.page-item {
    display: inline-block;
    vertical-align: middle;
}

.pagination .page-item a,
.pagination .page-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 12px 24px;
    margin: 0 1px;
    font-size: .875rem;
    line-height: 1;
    border-radius: 4px;
    border: 0;
    color: #b9bfcb;
}
.pagination .page-item a:focus{
    box-shadow: none;
}

.pagination li.page-item.prev-button a, .pagination li.page-item.next-button a{
    padding: 12px 19px;
}

.lang_ar .pagination li.page-item.prev-button a, .lang_ar .pagination li.page-item.next-button a{
    transform: rotate(180deg);
}

.pagination .page-button.active a,
.pagination .page-button.active span {
    color: #1a1a1a;
    background-color: #a5c5e5;
}

.pagination>li>a:hover {
    background-color: #eaeaea;
}

.load_more_btn{
    display: none;
}
@media screen and (max-width:768px) {
    .joblisting_paginate{
        display: none;
    }
    .pagination .page-item a,
    .pagination .page-item span,
    .pagination li.page-item.prev-button a, .pagination li.page-item.next-button a{
        padding: 12px 15px;
    }
    .load_more_btn {
        padding: 10px 0;
        display: block;
    }

    .text-center {
        text-align: center !important
    }

    .load_more_btn .btn {
        background: #a5c5e5;
        font-size: 14px;
        color: #1a1a1a;
        min-width: 210px;
        height: 44px;
        border-radius: 4px;
        display: inline-block;
        border: 0;
        border-radius: 2rem;
        font-weight: bold;
    }
}
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity .3s ease-in-out
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #a5c5e5;
    border-radius: 50%;
    animation: spin 1s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}
