@import url('https://fonts.googleapis.com/css2?family=Beiruti:wght@200..900&display=swap');
.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;
    
}
body.sidebar-open{
    overflow:hidden;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.app_name_div{
    margin-left:5px;
}
.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;
   
}
.sponser_slider .job_box_div{
    border:2px solid #33334e;
}
.refresh_page{
    position:fixed;
    bottom:115px;
    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: #1f1f2a;
    color: #fff;
    position:relative;

}
.location_drop_div{
    display:flex;
    align-items:center;
    column-gap:5px
} 
.location_drop_div img{
    height:28px;
    border-radius: 15px;
    /*padding:10px;*/
} 
.location_drop_div .menu_toggle_btn{
    height:42px;
    background:#33334e;
    padding: 8px;
    border-radius: 10px;
}
.location_drop{
    display:flex;
    align-items:center;
    justify-content:space-between;
    column-gap:5px
}
.location_drop img{
    height:35px;
}
.location_drop_div span{
       font-size: 25px;
    color: #fff;
    font-family: "Beiruti", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

}
.notification_img{
    height:40px;
    width:40px;
    background:#33334e;
    padding:10px;
    border-radius:15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    cursor:pointer;
    margin-left:5px;
}
.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;
        left:50%;
        height:100%;
        width:min(100vw, 430px);
        max-width:430px;
        background:#f3f5fb;
        z-index:9999;
        transform:translateX(55%);
        opacity:0;
        visibility:hidden;
        overflow:hidden;
        transition:transform .28s cubic-bezier(.2,.8,.2,1), opacity .22s ease, visibility .22s ease;
    }
    .notification_div.active{
        transform:translateX(-50%);
        opacity:1;
        visibility:visible;
    }
    .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;
        min-height:78px;
        padding:12px 14px;
        box-shadow:0 8px 24px rgba(15,23,42,.14);
        background:#1f1f2a;
        z-index:5;
    }
    .notification_div .back_with_title_div i{
        position:static;
        display:flex;
        align-items:center;
        justify-content:center;
        width:54px;
        height:54px;
        min-width:54px;
        border-radius:17px;
        background:#33334e;
        color:#fff;
        cursor:pointer;
        font-size:0;
    }
    .notification_div .back_with_title_div i::before{
        font-size:24px;
    }
    .notification_div .back_with_title_div span{
        position:absolute;
        top:50%;
        left:82px;
        right:14px;
        transform:translateY(-50%);
        display:block;
        text-align:left;
        font-weight:bold;
        color:#fff;
        font-size:21px;
        line-height:26px;
        font-weight:850;
    }
    .notification_main_div{
        overflow-y:auto;
        height: calc(100% - 78px);
        padding:12px 10px 98px;
        scrollbar-width:thin;
        scrollbar-color:#9ca3af transparent;
    }
    .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:8px;
    }
    .notification_main_div::-webkit-scrollbar-thumb,.slider_menu_div::-webkit-scrollbar-thumb{
        background:#9ca3af;
        border-radius:999px;
        border:2px solid transparent;
        background-clip:content-box;
    }
    .notification_div .notification_li{
        min-height:112px;
        padding:12px;
        box-shadow:0 12px 28px rgba(15,23,42,.08);
        margin:0 0 12px;
        border:1px solid #e5eaf2;
        border-radius:18px;
        position:relative;
        background:#fff;
        display:grid;
        grid-template-columns:92px minmax(0, 1fr);
        column-gap:12px;
        align-items:start;
        overflow:hidden;
        cursor:pointer;
        
    }
    .notification_content_div{
        display:flex;
        flex-direction:column;
    }
    .notification_content_div .notification_description{
        display:-webkit-box;
        -webkit-line-clamp:2;
        -webkit-box-orient:vertical;
        overflow:hidden;
        color:#475569;
        font-size: 12px;
        line-height: 17px;
        margin-top: 5px;
        font-weight:500;
    }
    
    .notification_div .notification_title{
        display: block;
        color:#111827;
        line-height: 19px;
        font-size: 14px;
        font-weight:850;
        max-height:40px;
        display:-webkit-box;
        -webkit-line-clamp:2;
        -webkit-box-orient:vertical;
        overflow:hidden;
    }
    .notification_div .notification_date{
        position: absolute;
        bottom:10px;
        right:12px;
        max-width:190px;
        font-size:10px;
        line-height:14px;
        color:#8a94a6;
        font-weight:650;
        text-align:right;
    }
    .notification_div .image_div{
        height:88px;
        width:92px;
        overflow:hidden;
        border-radius:15px;
        position:relative;
        box-shadow:none;
        background:#101828;
    }
    .notification_div .image_div img{
        position:absolute;
        top:50%;
        left:50%;
        transform:translate(-50%,-50%);
        height:100%;
        width:100%;
        max-height:100%;
        max-width:100%;
        object-fit:cover;
    }
    .notification_category{
        color: #fff;
        font-weight:800;
        font-size:10px;
        line-height:14px;
        padding:5px 8px;
        display: inline-block;
        position: absolute;
        top:12px;
        right:12px;
        z-index:2;
        width:auto;
        min-width:50px;
        border-radius:999px;
        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;
    }
    @media (max-width:380px){
        .notification_div .notification_li{
            grid-template-columns:80px minmax(0, 1fr);
        }
        .notification_div .image_div{
            width:80px;
            height:80px;
        }
        .notification_div .notification_date{
            max-width:150px;
        }
    }



/*btn */
    .notification_div2{
        position:fixed;
        top:0;
        left:50%;
        height:100%;
        width:min(100vw, 430px);
        max-width:430px;
        transform:translateX(-50%);
        background:rgba(15, 23, 42, 0);
        backdrop-filter:blur(0);
        -webkit-backdrop-filter:blur(0);
        z-index:999999;
        opacity:0;
        visibility:hidden;
        pointer-events:none;
        overflow:hidden;
        transition:opacity .22s ease, visibility .22s ease;
    }
    .notification_div2.active{
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        background:rgba(15, 23, 42, .42);
        backdrop-filter:blur(7px);
        -webkit-backdrop-filter:blur(7px);
    }
    .notification_div2 .notification_div_child{
        position:absolute;
        top:0;
        left:0;
        height:100%;
        width:min(84%, 368px);
        background:#fff;
        border-radius:0 22px 22px 0;
        overflow:hidden;
        box-shadow:18px 0 42px rgba(15,23,42,.18);
        transform:translateX(-105%);
        transition:transform .28s cubic-bezier(.2,.8,.2,1);
        z-index:1;
    }
    .notification_div2.active .notification_div_child{
        transform:translateX(0);
    }
    .notification_div2 .back_with_title_div{
        position:sticky;
        top:0;
        box-shadow:none;
        background:#1f1f2a;
        z-index:2;
    }
    .notification_div2 .back_with_title_div_2{
        position:relative;
        min-height:60px;
        padding:9px 12px;
        width:100%;
        background: #1f1f2a;
        display:flex;
        align-items:center;
    }
    .notification_div2 .back_with_title_div_2 span{
        height:auto;
        max-width:calc(100% - 52px);
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
    }
    .notification_div2 .back_with_title_div_2 span img{
        width:auto;
        height:34px;
        max-width:150px;
        max-height:34px;
        object-fit:contain;
    }
    .notification_div2 .back_with_title_div .close_sidebar_btn{
        position:absolute;
        top:50%;
        right:10px;
        height:40px!important;
        width:40px!important;
        padding:10px;
        border-radius:14px;
        transform:translateY(-50%);
        cursor:pointer;
        background:#33334e;

    }
    .notification_div2 .back_with_title_div span{
        display:flex;
        align-items:center;
        font-weight:bold;
    }
    .notification_div2 .slider_menu_div{
        height:calc(100% - 60px);
        padding:10px 10px 18px;
        gap:2px;
        background:#fff;
    }
    .notification_div2 .notification_ul{
        margin:0!important;
    }
    .notification_div2 .notification_li{
        min-height:48px;
        padding:9px 12px;
        margin:0;
        position: relative;
        background: #fff;
        display: grid;
        grid-template-columns: 34px 1fr;
        align-items:center;
        column-gap: 10px;
        border-radius:14px;
        cursor:pointer;
        transition:background .18s ease, transform .18s ease;
     
    }
    .notification_div2 .notification_li:active{
        transform:scale(.98);
        background:#f3f7fb;
    }
    .notification_li .gap_div{
        float: right;
        width: 50px;
        height: 14px;
        margin: 0;
    }
    .notification_div2 .notification_title{
        display:block;
        color:#1f1f2a;
        line-height:20px;
        font-size:18px;
        font-weight: 600;
        letter-spacing:0;
    }
    .notification_div2 .notification_date{
        position:absolute;
        top:4px;
        right:10px;
        font-size:10px;
        color:#686868;
    }
    .notification_div2 .image_div{
        height:34px;
        width:34px;
        overflow:hidden;
        border-radius:11px;
        position:relative;
        background:#f5f7fb;
    }
    .notification_div2 .image_div img{
        position:absolute;
        top:50%;
        left:50%;
        transform:translate(-50%,-50%);
        height:auto;
        width:auto;
        max-height:70%;
        max-width:70%;
    }


#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);
  }
}
