.long-loader-class {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #185DAA;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
    
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.load_more_btn{
    display: block;
    border: 0;
    color: #fff;
    background: #716a6ad9;
    padding: 4px 10px;
    border-radius: 10px;
    margin: auto;
    text-align: center;
    transition:all .2s;
}
.load_more_btn:hover{
    opacity:.8;
}
.sponser_slider .carousel-inner{
    position:relative;
    
}
.sponser_slider .carousel-indicators{
    margin-bottom:0;
}
.sponser_slider .sponsored_title{
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 2px 4px;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 1px;
    font-size: 10px;
    z-index: 999;
}
.sp_type_title{
    background:rgba(0,0,0,.5);
    color:#fff;
    padding:2px 4px;
    border-radius:2px;
    position:absolute;
    bottom:20px;
    right:0px;
    font-size:10px;
    z-index:999;
}
 .carousel-control-next-icon,.sponser_slider .carousel-control-prev-icon{
    /*background-color: rgba(0,0,0,.2);*/
    border-radius: 5px;
    background-size: 50% 50%;
    width: 1.5rem;
    height: 1.5rem;
}
.sponser_slider .job_box_div{
    border:2px solid #000;
}
.refresh_page{
    position:fixed;
    bottom:80px;
    right:30px;
    z-index:999;
    background:#fff;
    border-radius:50%;
    padding:10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height:35px;
    width:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    
}
.refresh_page img{
    filter: invert(0)!important;
}
.content_wrapper{
    padding:0px;
}
.content_wrapper2{
    padding: 5px;
    margin:auto;
    padding-top:0;
}
.location_top_div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 10px 10px;
    background: #fff;

}
.location_drop_div{
    display:flex;
    align-items:center;
    column-gap:5px
} 
.location_drop_div img:nth-child(1){
    height:22px;
    filter: invert(.2);
} 
.location_drop{
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:2px solid #F0EEEF;
    column-gap:5px
}
.location_drop img{
    height:35px;
}
.location_drop_div span{
    font-size:16px;
    color:#4F4F4F;
    font-weight:400;
}
.notification_img{
    height:38px;
    width:38px;
    background:#fff;
    padding:10px;
    border-radius:50%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    cursor:pointer;
}
.serach_button_img{

}
.search_bar_div{
    margin:12px auto;
    background:#fff;
    display:flex;
    align-items:center;
    padding:10px 20px;
    border-radius:15px;
    column-gap:20px;
    box-shadow: rgba(200, 200, 200, 0.2) 0px 2px 8px 0px;
}
.search_bar_div i{
    font-size:20px;
    color:#60666f;
}
.search_bar_div span{
    color:#DADADA;
    font-size:18px;
}
/*category===============*/
.home_category_div{
    display:flex;
    width:100%;
    overflow-y:auto;
     gap:10px;
     margin-top:0px;
     padding:10px;
}
.home_category_div::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}
.home_category_div .category_item{
    display:flex;
    align-items:center;
    padding:10px;
    background:#fff;
    border-radius:10px;
    gap:10px;
    cursor:pointer;
    transition:background .2s;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 0px 8px 0px;
    color:#3E4555;
    width:200px;
}
.home_category_div .category_item:hover,.home_category_div .category_item.active{
     background: linear-gradient(124deg, rgba(66,172,236,1) 0%, rgba(34,127,244,1) 100%);
     transition:background .2s;
     color:#fff;
}

.home_category_div .category_item img{
    height:40px;
    width:40px;
    background:#fff;
    border-radius:50%;
    border:1px solid #fff;
}
.home_category_div .category_item span{
    font-weight:500;
    font-size:17px;
    width:70px;
}


/*notification */
    .notification_div{
        position:fixed;
        top:0;
        right:-100%;
        height:100%;
        width:100%;
        background:#F4F4F4;
        z-index:9999;
        transition:.3s;
    }
    .notification_div.active{
        right:0;
        transition:.3s;
    }
    .notification_div .notification_div_child{
        position:relative;
        top:0;
        left:0;
        height:100%;
        width:100%;
    }
    .notification_div .back_with_title_div{
        position:sticky;
        top:0;
        padding:10px 20px;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        background:#fff;
    }
    .notification_div .back_with_title_div i{
        position:absolute;
        top:50%;
        left:20px;
        transform:translateY(-50%);
        cursor:pointer;
        padding:auto 10px;
    }
    .notification_div .back_with_title_div span{
        display:block;
        text-align:center;
        font-weight:bold;
    }
    .notification_main_div{
        overflow-y:auto;
        height: calc(100% - 120px);
    }
    .slider_menu_div{
        overflow-y:auto;
        height: calc(100% - 115px);
        display:flex;
        flex-direction:column;
    }
    .notification_main_div::-webkit-scrollbar,.slider_menu_div::-webkit-scrollbar{
        width:5px;
    }
    .notification_main_div::-webkit-scrollbar-thumb,.slider_menu_div::-webkit-scrollbar-thumb{
        background:gray;
    }
    .notification_div .notification_li{
        padding:5px;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        margin:10px;
        border-radius:5px;
        position:relative;
        background:#fff;
        margin-top:10px;
        display:grid;
        grid-template-columns:auto 1fr;
        column-gap:10px;
        overflow:hidden;
        
    }
    .notification_content_div{
        display:flex;
        flex-direction:column;
    }
    .notification_content_div .notification_description{
        font-size: 11px;
        line-height: 11px;
        margin-top: 4px;
    }
    
    .notification_div .notification_title{
        display: block;
        color: #686868;
        line-height: 16px;
        font-size: 13px;
        font-weight: bold;
        max-height: 38px;
    }
    .notification_div .notification_date{
        position: absolute;
        bottom: 0px;
        right: 10px;
        font-size: 10px;
        color: #686868;
    }
    .notification_div .image_div{
        height:75px;
        width:100px;
        overflow:hidden;
        border-radius:2px;
        position:relative;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        background:#f7f7f7;
    }
    .notification_div .image_div img{
        position:absolute;
        top:50%;
        left:50%;
        transform:translate(-50%,-50%);
        height:auto;
        width:auto;
        max-height:95%;
        max-width:95%;
    }
    .notification_category{
        color: #fff;
        font-weight: bold;
        font-size: 10px;
        padding: 2px 3px;
        display: inline-block;
        position: absolute;
        top: 0px;
        right: 0px;
        z-index: 999;
        width:50px;
        text-align:center;
    }
    .notification_category.news_cat_noti{
        background:#d21818;
    }
    .notification_category.business_cat_noti{
        background:#185DAA;
    }
    .notification_category.property_cat_noti{
        background:rgb(11 131 131);
    }
    .notification_category.job_cat_noti{
        background:#0c7005;
    }



/*btn */
    .notification_div2{
        position:fixed;
        top:0;
        left:-100%;
        height:100%;
        width:100%;
        background:rgba(0,0,0,.5);
        z-index:9999;
        transition:.3s;
    }
    .notification_div2.active{
        left:0;
        transition:.3s;
    }
    .notification_div2 .notification_div_child{
        position:absolute;
        top:0;
        left:0;
        height:100%;
        width:80%;
        background:#fff;
    }
    .notification_div2 .back_with_title_div{
        position:sticky;
        top:0;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        background:#fff;
    }
    .notification_div2 .back_with_title_div_2{
        position:relative;
        height:100%;
        padding:15px 20px;
        width:100%;
    }
    .notification_div2 .back_with_title_div i{
        position:absolute;
        top:50%;
        right:20px;
        font-size:30px!important;
        transform:translateY(-50%);
        cursor:pointer;
        padding:auto 10px;
        transform: translateY(-50%);
        font-size: 18px;

    }
    .notification_div2 .back_with_title_div span{
        display:block;
        text-align:center;
        font-weight:bold;
    }
    .notification_div2 .notification_li{
 padding: 5px 10px 5px 10px;
    margin: 0 0px;
    border-bottom: 1px solid #d4d4d4;
    position: relative;
    background: #fff;
    display: grid;
    grid-template-columns: 25px 1fr;
    column-gap: 5px;
    margin: 5px 10px;
     
    }
    .notification_li .gap_div{
        float: right;
        width: 50px;
        height: 14px;
        margin: 0;
    }
    .notification_div2 .notification_title{
        display:block;
        color:#3E4555;
        line-height:16px;
        font-size:17px;
        font-weight: bold;
    }
    .notification_div2 .notification_date{
        position:absolute;
        top:4px;
        right:10px;
        font-size:10px;
        color:#686868;
    }
    .notification_div2 .image_div{
        height:20px;
        width:20px;
        overflow:hidden;
        border-radius:2px;
        position:relative;
        /*box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;*/
        /*background:rgba(0,0,0,.2);*/
    }
    .notification_div2 .image_div img{
        position:absolute;
        top:50%;
        left:50%;
        transform:translate(-50%,-50%);
        height:auto;
        width:auto;
        max-height:95%;
        max-width:95%;
    }


#spinningImage {
  animation-name: spin;
  animation-duration: 2s; /* Change the duration as needed */
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}




