@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Lexend;
    user-select: none;
}
html,body
{
    width: 100%;
}

body
{
    background-color: #f7f7f7;
}

::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

::-webkit-scrollbar
{
	width: 6px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
	background-color: #000000;
}

.body_main_admin
{
    width: 100%;
    position: relative;
    overflow: hidden;
}

.container
{
    margin: 0 auto;
    /* max-width: 1600px; */
}

/* 0 Result */
.zero_result_found_msg
{
  padding: 15px 30px;
  border: 2px solid #fd335f;
  color: #fd335f;
  background-color: #fff;
  border-radius: 5px;
  margin: 0 auto;
  margin-top: 50px;
}

@media only screen and (max-width: 767px)
{
    .container
    {
        padding: 0 10px;
    }
}

a
{
    color: inherit;
    text-decoration: none;
}

li
{
    list-style: none;
}

hr
{
    border: 1px solid #F44336;
}

/* ===================== */
/* PreLoader Style Start */
/* ===================== */

.preloader
{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f7f7f7;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
}

.loader-demo-box {
    border-radius: 0.25rem !important;
}

.loader-demo-box {
    width: 100%;
    height: 200px;
}

.jumping-dots-loader {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto;
}

.jumping-dots-loader span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    /* background-color: rgba(24, 57, 103, 1); */
    margin: 35px 5px;
}

.jumping-dots-loader span:nth-child(1) {
    background-color: rgba(83, 215, 145, 1);
    animation: bounce 1s ease-in-out infinite;
}

.jumping-dots-loader span:nth-child(2) {
    background-color: rgba(24, 57, 103, 1);
    animation: bounce 1s ease-in-out 0.33s infinite;
}

.jumping-dots-loader span:nth-child(3) {
    background-color: rgba(83, 215, 145, 1);
    animation: bounce 1s ease-in-out 0.66s infinite;
}

@keyframes bounce {
    0%,
    75%,
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    25% {
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

/* =================== */
/* PreLoader Style End */
/* =================== */

/* ======================== */
/* Admin Header Style Start */
/* ======================== */

header.admin_header
{
    width: 100%;
    padding: 10px 1%;
    background-color: rgb(255, 255, 255);
    position: fixed;
    top: 0;
    z-index: 9999;
    /* box-shadow: 5px 5px 10px rgb(0, 0, 0, 0.15); */
}

.header_admin_box
{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_right
{
    width: 100%;
    padding-left: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_admin_box .admin_logo
{
    width: 100%;
    max-width: 185px;
    visibility: hidden;
}

.header_admin_box .admin_logo a
{
    display: inline-block;
    height: auto;
}

.header_admin_box .admin_logo img
{
    width: 100%;
}

.header_admin_box .profile_details_box
{
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 15px;
}

.header_admin_box .profile_details_box .icons
{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #fff;
}

.header_admin_box .profile_details_box .icons img
{
    width: 100%;
    margin-bottom: -5px;
}


.header_admin_box .profile_details_box .menu_icons
{
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ====================== */
/* Admin Header Style End */
/* ====================== */

/* ======================= */
/* Nav Section Style Start */
/* ======================= */

.nav_main_container
{
    width: 250px;
    height: 100vh;
    background-color: #ffffff;
    border-radius: 0 25px 25px 0;
    padding: 25px;
    border: 1px dashed #d8d8d8;
    box-shadow: 2px 2px 2px #d5d5d5;
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}


.nav_main_container nav
{
    width: 100%;
    height: calc(100% - 40px);
}

.nav_main_container ul.nav_item_box
{
    width: 100%;
    height: 100%;
}

.nav_main_container ul.nav_item_box .admin_nav_logo
{
    width: 100%;
    padding: 10px 0;
    margin-bottom: 30px;
    background-color: #fff;
    text-align: center;
    border-radius: 5px;
}

.nav_main_container ul.nav_item_box .admin_nav_logo a
{
    display: inline-block;
    height: auto;
}

.nav_main_container ul.nav_item_box .admin_nav_logo img
{
    width: 100%;
    max-width: 185px;
}

.nav_main_container ul.nav_item_box li
{
    width: 100%;
    margin: 10px 0;
    font-size: 21px;
    border-bottom: 1px solid rgb(180, 180, 180);
}

.nav_main_container ul.nav_item_box li a
{
    display: block;
    width: 100%;
    padding: 15px 5px;
}

.active_nav_item
{
    color: rgb(230, 70, 36) !important;
}

.close_menu_icon
{
    visibility: hidden;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 22px;
    cursor: pointer;
}

@media screen and (max-width: 767px)
{
    .admin_header
    {
        display: block !important;
    }
    .header_admin_box .profile_details_box .menu_icons
    {
        display: block;
    }

    .header_admin_box .admin_logo
    {
        visibility: unset;
    }

    .tm_mode
    {
        width: 100%;
        left: unset;
        padding: 0;
        right: -100%;
        transition: all 0.1s ease-in-out;
        background-color: transparent;
        overflow-y: unset;
    }

    .tm_mode .bg_layer_nav
    {
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .tm_mode ul.nav_item_box .admin_nav_logo
    {
        text-align: left;
    }
    
    .tm_mode ul
    {
        width: 300px !important;
        height: 100%;
        background-color: #ffffff;
        border-radius: 25px 0 0 25px;
        padding: 25px;
        border: 1px dashed #d8d8d8;
        box-shadow: 2px 2px 2px #d5d5d5;
        position: absolute;
        overflow-y: auto;
        top: 0;
        right: 0;
        z-index: 2;
    }

    .active_toggle
    {
        right: 0 !important;
    }
    .close_menu_icon
    {
        visibility: unset;
    }

}


/* ================================ */
/* Main COntent Section Style Start */
/* ================================ */
.main_content_body_container
{
    width: 100%;
    height: 100%;
    padding: 50px 0 0;
    padding-bottom: 50px;
}

.main_content_body_box
{
    width: 100%;
    padding-left: 280px;
    padding-right: 20px;
}


@media screen and (max-width: 767px)
{
    .main_content_body_box
    {
        padding-left: 0;
        padding-right: 0;
    }
}


.pagination
{
  width: 100%;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination_link,
.pagination_link_gallery,
.pagination_link_category,
.pagination_link_subcategory,
.pagination_link_review,
.pagination_link_filtersubcategory,
.pagination_link_userlist,
.pagination_link_Introuserlist,
.pagination_link_search_item_user,
.pagination_link_all_leads,
.pagination_link_search_lead,
.pagination_link_filter_lead,
.pagination_link_credithistoryadmin,
.pagination_link_credithistoryadmin_search,
.pagination_link_filtercategory,
.pagination_link_Introfiltercategory,
.pagination_link_Introcityclient,
.pagination_link_planactivefiltercategory,
.pagination_link_search_item_intro_user,
.pagination_link_client_all_leads
{
  padding: 2px 6px;
  border-radius: 100px;
  cursor: pointer;
}

.active_pagination_link
{
  color: #FFF;
  height: 25px;
  width: 40px;
  text-align: center;
  background-color: rgb(241 141 22);
}


/* ===================== */
/* Nav Section Style End */
/* ===================== */




/* Main-category.html */

.services_main_box_container,
.questions_main_box_container
{
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    /* display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    flex-wrap: wrap; */
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
}

.bg_services_main_box_container,
.bg_subcategory_main_box_container,
.bg_gallery_main_box_container,
.bg_review_main_box_container,
.bg_questions_main_box_container
{
    width: 100%;
    height: 100%;
}

#maincategory_cross,
#subcategory_cross,
#gallery_cross,
#review_cross,
#questionall_cross
{
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}


.service_description_main_box {
    width: 100%;
    /* max-width: 800px; */
}

.overview_heading
{
    font-weight: 400;
    padding-bottom: 10px;
}

.service_description_main_box button
{
    padding: 8px 12px;
    font-size: 18px;
    margin-bottom: 5px;
    background: #fff;
    border-radius: 25px;
    border: 1px dashed #d8d8d8;
    box-shadow: 2px 2px 2px #d5d5d5;
    cursor: pointer;
}

.active_btn
{
    border: 1px dashed rgb(230, 70, 36) !important;
    color: rgb(230, 70, 36);
}

.service_description_main_box img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
}
.editor
{
    border: 1px solid #ccc;
    border-radius: 25px;
    min-height: 250px;
    padding: 10px;
    background: #fff;
    border-radius: 25px;
    padding: 25px;
    border: 2px solid #ccc;
    outline: none;
}

.editor li
{
    list-style: unset;
}
.editor img
{
    width: 100%;
}

.mainform_container
{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

.form_main_box
{
    width: 100%;
    max-width: 350px;
    height: 100%;
    padding: 50px 25px;
    background: #fff;
    border-radius: 25px 0 0 25px;
    border: 1px dashed #d8d8d8;
    box-shadow: 2px 2px 2px #d5d5d5;
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: 0;
}

#resertform
{
    padding: 5px 25px;
    background: #fff;
    border-radius: 15px;
    background-color: #fd335f;
    color: #fff;
    border: 1px dashed #d8d8d8;
    box-shadow: 2px 2px 2px #d5d5d5;
    cursor: pointer;
    position: absolute;
    top: 40px;
    right: 10px;
}

#resertform:active
{
    box-shadow: 2px 2px 2px #333;
}

.input_box_main
{
    width: 100%;
    margin-bottom: 10px;
}

.input_box_main label
{
    width: 100%;
    padding: 5px 0;
    display: block;
}

.input_box_main input, textarea, select
{
    width: 100%;
    border-radius: 25px;
    border: 2px solid #ccc;
    padding: 15px;
    background: transparent;
    color: #333;
}

.input_box_main textarea
{
    min-width: 100%;
    max-width: 100%;
    min-height: 100px;
    max-height: 200px;
}

.error_message_form
{
    padding: 5px 0;
}

.form_btns_box
{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form_btns_box button
{
    flex-grow: 1;
    padding: 15px 20px !important;
    background-color: rgb(230, 70, 36) !important;
    color: #fff !important;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
}

.all_services_list_main_box
{
    /* margin-top: 15px; */
    width: 100%;
    /* max-width: 600px; */
    display: flex;
    justify-content: flex-start;
    align-items: flex-start ;
    flex-wrap: wrap;
    gap: 15px;
}

.service_list_box
{
    flex: 0 0 calc(33% - 10px);
    padding: 25px;
    background: #fff;
    border-radius: 25px;
    border: 1px dashed #d8d8d8;
    box-shadow: 2px 2px 2px #d5d5d5;
    position: relative;
}

.service_name_box
{
    display: block;
    width: 60%;
    font-size: 18px;
}

.icons_action_icons_box
{
    /* width: 100%; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
}

.icons_action_icons_box span
{
    width: 50px;
    height: 50px;
    display: block;
    color: #fff;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 2px #d5d5d5;
    cursor: pointer;
}
.icons_action_icons_box span:hover
{
    box-shadow: inset 2px 2px 2px #fff;
}

.icons_action_icons_box span.edit_icon
{
    background: #007bff;
}

.icons_action_icons_box span.delete_icon
{
    background: rgb(230, 70, 36);
}

@media screen and (max-width: 767px)
{
    .service_list_box
    {
        flex: 0 0 calc(100% - 10px);
    }
    .mainform_container
    {
        justify-content: center;
    }
}



/* Custom Popup Style */
#popup{
    display: none;
}
.popup-container{
    height: 100vh;
    width: 100%;
    z-index: 10000;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: rgba(230, 70, 36, 0.3);
    position: fixed;
    top: 0;
    left: 0;
}
.bg_layer
{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.model{
    width: 100%;
    max-width: 400px;
    position: absolute;
    padding: 25px;
    background: #fff;
    border-radius: 25px;
    background-color: #ffffff;
    border: 1px dashed #d8d8d8;
    box-shadow: 2px 2px 2px #d5d5d5;
}
.close-popup{
    display: flex;
    justify-content: flex-end;
    cursor: pointer;
}
.close-popup a{
    font-size: 1.2rem;
    background-color: rgba(24, 57, 103, 1);
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    display: inline-block;
}
.model > h2{
    font-size: 1.6rem;
    margin-bottom: 10px;
}
.model > p{
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.popup-btn{
    display: inline-block;
    margin: 10px 0px;
    transition: .2s all ease-in;
    padding: 15px 20px !important;
    background-color: rgb(230, 70, 36) !important;
    color: #fff !important;
    border: none;
    border-radius: 25px;
    font-size: 18px;
}
.popup-btn:hover{
    background-color: rgba(230, 70, 36, 0.8);
    color: #fff;
}



/* Gallery.html */
.page_header
{
    width: 100%;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


.select_box select
{
    display: block;
    width: 100%;
    margin-top: 5px;
    padding: 5px;
    border: none;
    outline: none;
    border-radius: 25px;
    cursor: pointer;
    background: #fff;
}

.page_header .page_header_right_section
{
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.page_header .page_header_right_section #search_btn
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.page_header .page_header_right_section #search_btn input
{
    padding: 10px 10px;
    border-radius: 5px 0 0 5px;
    border: none;
    outline: none;
}


.page_header .page_header_right_section #search_btn button
{
    padding: 8px 10px;
    border: none;
    background-color: rgb(230, 70, 36);
    color: #fff;
    font-size: 16px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.page_header .page_header_right_section .page_header_right_btn
{
    padding: 8px 10px;
    border: none;
    background-color: rgb(230, 70, 36);
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.sbtn
{
    padding: 8px 10px;
    border: none;
    background-color: rgb(230, 70, 36);
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}


@media screen and (max-width: 767px)
{
    .main_content_body_box
    {
        padding-left: 0;
        padding-right: 0;
        padding-top: 30px;
    }
    .page_header .page_header_right_section
    {
        width: 100%;
    }
}

.main_gallery_form_container
{
    width: 100%;
}

.all_gallery_data,
.all_reviews_services_items,
.all_category_data,
.all_subcategory_data
{
    width: 100%;
}


#form_box_container
{
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
}

.bg_category_form_container
{
    width: 100%;
    height: 100%;
}
#categorycross
{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 1;
}

.category_data_form_box
{
    width: 100%;
    height: 100%;
}

.gallery_box_heading,
.reviews_box_heading,
.category_box_heading,
.subcategory_box_heading
{
    padding-bottom: 10px;
    font-weight: 500;
}

.gallery_item_show_container,
.reviews_item_show_container,
.category_item_show_container,
.subcategory_item_show_container,
.all_questions_list_main_box
{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start ;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
}

.gallery_service_item,
.reviews_service_item,
.category_service_item,
.subcategory_service_item,
.question_service_item
{
    flex: 1 0 calc(24.5% - 10px);
    font-size: 18px;
    margin: 5px 0;
    padding: 25px;
    background: #fff;
    border-radius: 25px;
    border: 1px dashed #d8d8d8;
    box-shadow: 2px 2px 2px #d5d5d5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

/* Custom Popup Box */
.gallery_popup_main_model,
.review_popup_main_model,
.category_popup_main_model,
.subcategory_popup_main_model,
.question_popup_main_model,
.plans_popup_main_model,
.userslist_popup_main_model,
.leads_popup_main_model
{
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.gallery_popup_bg_layer,
.review_popup_bg_layer,
.category_popup_bg_layer,
.subcategory_popup_bg_layer,
.question_popup_bg_layer,
.plans_popup_bg_layer,
.userslist_popup_bg_layer,
.leads_popup_bg_layer
{
    width: 100%;
    height: 100%;
}

.gallery_popup_main_box,
.review_popup_main_box,
.category_popup_main_box,
.subcategory_popup_main_box,
.question_popup_main_box,
.plans_popup_main_box,
.userslist_popup_main_box,
.leads_popup_main_box
{
    width: 95%;
    height: 100%;
    max-width: 350px;
    overflow-y: auto;
    padding: 25px;
    background: #fff;
    border-radius: 25px 0 0 25px;
    background-color: #ffffff;
    border: 1px dashed #d8d8d8;
    box-shadow: 2px 2px 2px #d5d5d5;
    position: absolute;
    top: 0;
    right: 0;
}

.cross_gallery_pop,
.cross_review_pop,
.cross_category_pop,
.cross_subcategory_pop,
.cross_question_pop,
.cross_plans_pop,
.cross_userslist_pop,
.cross_leads_pop
{
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 21px;
    cursor: pointer;
}

.gallery_image_popup,
.review_image_popup,
.category_image_popup,
.subcategory_image_popup,
.question_image_popup,
.plans_image_popup,
.userslist_image_popup
{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 25px;
}

.gallery_box_image
{
    width: calc(50% - 10px);
    border: 1px dashed #d8d8d8;
    position: relative;
}

.gallery_box_image img
{
    width: 100%;
}

.gallery_image_delete_btn
{
    width: 25px;
    height: 25px;
    font-size: 14px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #fd335f;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
}


/* Review.htm; */
.main_reviews_box_container
{
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
}

.main_reviews_box
{
    width: 100%;
    height: 100%;
}

.addmorefieldbox
{
    padding: 5px;
    font-size: 21px;
    margin-bottom: 5px;
    background: #fff;
    border-radius: 25px;
    border: 1px dashed #d8d8d8;
    box-shadow: 2px 2px 2px #d5d5d5;
    cursor: pointer;
    position: absolute;
    right: 0;
    bottom: 100px;
}

.addmorefieldbox:hover
{
    border: 1px dashed rgb(230, 70, 36) !important;
    color: rgb(230, 70, 36);
}


.review_box_image,
.category_box_image,
.subcategory_box_image,
.question_box_image
{
    width: calc(100% - 10px);
    border-radius: 25px;
    border: 1px dashed #d8d8d8;
    padding: 10px;
    position: relative;
}

.review__btn,
.category__btn,
.subcategory__btn,
.question__btn
{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    position: absolute;
    top: -8px;
    right: 0;
}

.review__btn span,
.category__btn span,
.subcategory__btn span,
.question__btn span
{
    width: 25px;
    height: 25px;
    font-size: 14px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #fd335f;
    cursor: pointer;
}

.review_edit_btn,
.category_edit_btn,
.subcategory_edit_btn,
.question_edit_btn
{
    background: #007bff !important;
}

@media screen and (max-width: 767px)
{
    .gallery_service_item,
    .reviews_service_item,
    .category_service_item,
    .subcategory_service_item
    {
        flex: 1 0 calc(100% - 10px);
    }
    
}



/* Import-lead.html */
.import_leads_main_container
{
    display: none;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
}
.bg_layer_import_leads_container
{
    width: 100%;
    height: 100%;
}
.import_leads_main_box_pop_up
{
    width: 100%;
    max-width: 330px;
    height: 100vh;
    background-color: #ffffff;
    border-radius: 25px 0 0 25px;
    padding: 25px;
    position: absolute;
    top: 0;
    right: 0;
    border: 1px dashed #d8d8d8;
    box-shadow: -2px -2px 10px #d5d5d566;
    padding-bottom: 100px;
    transition: all 0.3s cubic-bezier(0, 0, 0, 0.99);
    overflow-y: auto;
}

.cross_import_leads_popup
{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.import_leads_main_box_content
{
    width: 100%;
}
.import_leads_main_box_content form
{
    width: 100%;
    display: none;
}

.import_leads_main_box_content form h2
{
    font-size: 22px;
    color: #F44336;
    margin-bottom: 10px;
}

.import_leads_main_box_content form label
{
    display: block;
    padding: 5px 0;
}
.import_leads_main_box_content form input,
.import_leads_main_box_content form select,
.import_leads_main_box_content form textarea
{
    width: 100%;
    padding: 15px 20px;
    background-color: transparent;  
    color: #333;
    border: 2px solid #ccc;
    border-radius: 100px;
    font-size: 18px;
}
.import_leads_main_box_content form textarea
{
    min-width: 100%;
    max-width: 100%;
    min-height: 100px;
    max-height: 200px;
    border-radius: 25px;
}
.import_leads_main_box_content form button
{
    margin-top: 15px;
    padding: 15px 25px;
    font-size: 21px;
    border-radius: 100px;
    background: #007BFF;
    color: #fff;
    border: 2px solid #007bff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.1s linear;
    cursor: pointer;
}

.instructions_box
{
    width: 100%;
    padding: 20px 0;
}
.instructions_box>h3
{
    font-size: 24px;
}
.instructions_box ul
{
    padding: 10px 0;
    padding-left: 15px;
}
.instructions_box ul li
{
    list-style: disc !important;
    line-height: 24px;
}
.instructions_box img
{
    width: 100%;
}

/* ============ */
.impory_way_main_container
{
    width: 100%;
    padding: 0 25px;
    padding-top: 50px;
}
.impory_way_main_box
{
    width: 100%;
}
.main_impory_way_card_box
{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.main_impory_way_card
{
    flex: 0 0 calc(40.5% - 10px);
    background: #ffffff;
    border-radius: 25px;
    padding: 25px;
    position: relative;
    border: 1px dashed #d8d8d8;
    box-shadow: 2px 2px 2px #d5d5d5;
}
.leads_way_name
{
    width: 100%;
    text-align: center;
    color: #1a003b;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
}
.lead_info_icon
{
    width: 100%;
    text-align: center;
    padding-top: 25px;
}
.lead_info_icon button
{
    margin-top: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    color: #007bff;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    background: #fff;
    cursor: pointer;
    border: 2px solid #007bff;
}
.lead_info_icon button:hover
{
    background-color: #007bff;
    color: #fff;
}
@media screen and (max-width: 767px)
{
    .impory_way_main_container
    {
        padding: 0;
        padding-top: 25px;
    }
    .main_impory_way_card
    {
        flex: 0 0 calc(100% - 10px);
    }
}


/* credit-plans.html */
.all_plans_list_main_box
{
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 25px;
}

.plan_box
{
    width: 32%;
    padding: 35px 30px;
    border-radius: 25px;
    border: 3px solid rgba(0, 0, 0, 0.20);
    background: #FFF;
    padding: 25px;
    border-style: dashed!important;
    border-width: 1px!important;
    position: relative;
    border: 2px solid #d8d8d8;
    box-shadow: 5px 5px 5px #d5d5d5;
}

.plan_box:hover
{
  background-color: #fbfdff;
}


.plan_image_icon
{
  width: 100%;
  max-width: 92px;
  margin: 0 auto;
  display: none;
}

.plan_image_icon img
{
  width: 100%;
}

.payment_image
{
  width: 100%;
  padding: 10px 0;
  text-align: center;
}

.payment_image img
{
  width: 100%;
  max-width: 175px;
  margin: 0 auto;
}
  
.list_plan_details
{
  list-style-type: none;
  margin: 0;
  padding: 20px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_plan
{
  width: 100%;
  padding: 10px 0;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
}


.price_box
{
  width: 100%;
  text-align: center;
  color: #1a003b;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
}

.list_plan_details li
{
  padding: 10px 0;
  color: rgba(0, 0, 0, 0.70);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

.list_plan_details li span
{
  margin-right: 50px;
}

.list_plan_details .button_box
{
  text-align: center;
}


.list_plan_details li button
{
  margin-top: 10px;
  padding: 15px 35px;
  border-radius: 50px;
  color: #007bff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  background: #fff;
  cursor: pointer;
  border: 2px solid #007bff;
}

.plan_box:hover .list_plan_details li button
{
  background: #007bff;
  color: #FFF;
  border: 2px solid transparent;
}

.plan_delete_btn,
.lead_delete_btn
{
    width: 25px;
    height: 25px;
    color: #ffffff;
    background: #e52323;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 25px;
    right: 25px;
}

.color_1
{
  color: #c95d57;
}
.color_2
{
  color: #54d997;
}
.color_3
{
  color: #ed0c8c;
}

@media only screen and (max-width: 600px) {
  .plan_box
  {
    width: 100%;
  }
  .plan_main_box 
  {
    max-width: 90%;
    gap: 40px;
  }
}


/* User All */

.stars
{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stars i
{
    color: #ffb71c;
    font-size: 25px;
    align-items: center;
    justify-content: space-evenly;
    /* text-shadow: 1px 1px 0.2px black; */
    cursor: pointer;
}

.active
{
    color: #ffb71c !important;
    transform: scale(1.1) !important;
}



.all_userlist_list_main_box
{
    width: 100%;
    max-height: 92%;
    padding: 10px 15px;
    padding-bottom: 100px;
    margin: 0 auto;
    overflow-y: auto;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}
.all_userlist_list_main_box .card_box
{
  flex: 0 0 calc(24.5% - 10px);
  background-color: #ffffff;
  border-radius: 25px;
  padding: 25px;
  border-style: dashed!important;
  border-width: 1px!important;
  position: relative;
  border: 2px solid #d8d8d8;
  box-shadow: 2px 2px 2px #d5d5d5;
}

.all_userlist_list_main_box .card_top_icons_box
{
  width: auto !important;
  position: absolute;
  top: 5px;
  right: 10px;
}
.all_userlist_list_main_box .card_top_icons_box .icons
{
  width: 25px !important;
  height: 25px !important;
  background: #333 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px !important;
  padding: 0 !important;
  font-size: 14px;
}

.all_userlist_list_main_box .card_box .card_date_time
{
  font-size: 12px;
  margin-right: 35px;
  text-transform: uppercase;
}

.all_userlist_list_main_box .card_box .client_name
{
    padding-top: 5px;
    font-size: 21px;
    font-weight: 500;
    color: #11143c;
    text-align: center;
    position: relative;
}

.all_userlist_list_main_box .card_box .client_name>span
{
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
}
.all_userlist_list_main_box .card_box .client_name>span img
{
    width: 30px;
}
.all_userlist_list_main_box .card_box .client_service
{
  font-size: 14px;
  padding: 10px 0;
  text-align: center;
}

.all_userlist_list_main_box .card_box_image
{
    width: 75px;
    height: 75px;
    margin: 0 auto;
    border-radius: 100%;
    border-style: dotted;
    border-width: 1px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.all_userlist_list_main_box .card_box_image span
{
    width: 100%;
    height: 100%;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 42px;
}

.all_userlist_list_main_box .card_box_image img
{
    width: 100%;
}

.all_userlist_list_main_box .card_box .client_btns
{
  padding-top: 10px;
}

.all_userlist_list_main_box .card_box .client_btns button
{
  border-radius: 50px;
  font-size: 16px;
  padding: 10px 20px;
  transition: all 0.1s linear;
}

.all_userlist_list_main_box .card_box:hover .client_btns button
{
  background: #007bff;
  color: #FFF;
  border-color: #007bff;
}

.all_userlist_list_main_box .card_box .client_name b
{
    height: 26px;
    text-align: center;
    background-color: lime;
    padding: 0px 2px;
    border-radius: 0px;
    position: absolute;
    left: -30px;
    top: 0;
}

.rating_star_box
{
    width: 100%;
    padding-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    color: #d9cc54;
}

.all_userlist_list_main_box .card_box ul
{
  list-style: none;
}

.all_userlist_list_main_box .icons_box
{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.all_userlist_list_main_box .icons_box .icons
{
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff45;
  font-size: 16px;
  border-radius: 100px;
  border: 1px solid #007bff;
  color: #007bff;
  cursor: pointer;
  position: relative;
  z-index: 0;
}

.all_userlist_list_main_box .icons_box .icons:hover
{
  background-color: #007bff;
  color: white;
}
.card_box .icons_box button.icons,.all_userlist_list_main_box .card_box .icons_box b.icons
{
  padding: 11px 15px;
  border: none;
  font-size: 14px;
  color: #f18d16;
  border: 1px solid #f18d16;
  background-color: #fff !important;
}

/* Landing-page.html */
.all_landing_page_link_box
{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
}

.landing_page_link_box
{
    flex: 1 0 calc(24.5% - 10px);
    font-size: 18px;
    margin: 5px 0;
    padding: 25px;
    background: #fff;
    border-radius: 25px;
    border: 1px dashed #d8d8d8;
    box-shadow: 2px 2px 2px #d5d5d5;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px)
{
  .card_box
  {
    flex: 0 0 calc(49.5% - 10px) !important;
  }
  .landing_page_link_box
    {
        flex: 1 0 calc(100% - 10px);
    }
}

@media screen and (max-width: 425px)
{
    .card_box
    {
        flex: 0 0 calc(99.5% - 10px) !important;
        margin: 0 auto;
    }
}
/* leads.html */
.all_leads_list_main_box
{
    width: 100%;
    max-height: 92%;
    padding: 10px 15px;
    padding-bottom: 100px;
    margin: 0 auto;
    overflow-y: auto;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}

.all_leads_list_main_box .card_box
{
  flex: 0 0 calc(24.5% - 10px);
  background-color: #ffffff;
  border-radius: 25px;
  padding: 25px;
  border-style: dashed!important;
  border-width: 1px!important;
  position: relative;
  border: 2px solid #d8d8d8;
  box-shadow: 2px 2px 2px #d5d5d5;
}

.all_leads_list_main_box .card_top_icons_box
{
  width: auto !important;
  position: absolute;
  top: 5px;
  right: 10px;
}
.all_leads_list_main_box .card_top_icons_box .icons
{
  width: 25px !important;
  height: 25px !important;
  background: #333 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px !important;
  padding: 0 !important;
  font-size: 14px;
}

.all_leads_list_main_box .card_box .card_date_time
{
  font-size: 12px;
  margin-right: 35px;
  text-transform: uppercase;
}

.all_leads_list_main_box .card_box .client_name
{
    font-size: 21px;
    font-weight: 500;
    margin-left: -30px;
    color: #11143c;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-transform: capitalize;
}

.all_leads_list_main_box .card_box .client_service
{
  font-size: 14px;
  margin-bottom: -5px;
}

.all_leads_list_main_box .card_box .client_btns
{
  padding-top: 10px;
}

.all_leads_list_main_box .card_box .client_btns button
{
  border-radius: 50px;
  font-size: 16px;
  padding: 10px 20px;
  transition: all 0.1s linear;
}

.all_leads_list_main_box .card_box:hover .client_btns button
{
  background: #007bff;
  color: #FFF;
  border-color: #007bff;
}

.all_leads_list_main_box .card_box .client_name b
{
    display: block;
    width: 2px;
    height: 30px;
    background-color: lime;
    padding: 0px 2px;
    margin-right: 25px;
    border-radius: 0px;
}

.all_leads_list_main_box .card_box .status_bar
{
  width: auto;
  background-color: #5f5f5f;
  color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px;
  font-size: 12px;
  border-radius: 15px 0 23px 0;
}

.all_leads_list_main_box .card_box .imp_status_bar
{
  width: auto;
  background-color: #f5f5f5;
  color: #9E9E9E;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px 10px;
  font-size: 10px;
  border-radius: 0 15px 0 23px;
}

.all_leads_list_main_box .card_box ul
{
  list-style: none;
}

.all_leads_list_main_box .card_box div
{
  padding: 5px 0;
  font-size: 14px;
}

.all_leads_list_main_box .icons_box
{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
}

.admin_icons_box
{
    margin-top: 10px;
}

.all_leads_list_main_box .icons_box .icons
{
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff45;
  font-size: 16px;
  border-radius: 100px;
  border: 1px solid #007bff;
  color: #007bff;
  cursor: pointer;
  position: relative;
  z-index: 0;
}

.all_leads_list_main_box .icons_box .icons:hover
{
  background-color: #007bff;
  color: white;
}
.all_leads_list_main_box .card_box .icons_box button.icons,.all_leads_list_main_box .card_box .icons_box b.icons
{
  padding: 11px 15px;
  border: none;
  font-size: 14px;
  color: #f18d16;
  border: 1px solid #f18d16;
  background-color: #fff !important;
}


.model_plan_activity_status
{
  width: 100%;
}

.model_plan_activity_status_box
{
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
}

.model_plan_activity_status_card
{
  width: 100%;
  border: 1px dotted #d5d5d5;
  padding: 10px 15px;
  border-radius: 25px;
  margin-bottom: 10px;
}

.model_plan_activity_status_date_time
{
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
}


/* Credit-history.html */

.all_credit_history_data_container
{
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}

.card_credit_history_box
{
    flex: 0 0 calc(24.5% - 10px);
    background-color: #ffffff;
    border-radius: 25px;
    padding: 25px;
    border: 1px dashed #d8d8d8;
    box-shadow: 2px 2px 2px #d5d5d5;
    position: relative;
}

.card_details
{
    width: 100%;
    padding: 2px 0;
    font-size: 18px;
}

.status_amount_box
{
    width: auto;
    background: #999;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 25px 0 25px 0;
    position: absolute;
    bottom: 0;
    right: 0;
}
.status_uid_box
{
    font-size: 14px;
}

.status_uid_box
{
    margin-top: 10px;
    /*width: auto;*/
    /*position: absolute;*/
    /*bottom: 10px;*/
    /*left: 10px;*/
    /*font-size: 12px;*/
}
.status_amount_cr
{
    background: #66BB6A;
}
.status_amount_dr
{
    background: #EF5350;
}


.status_datetime_box
{
    font-size: 12px;    
}

@media screen and (max-width: 768px)
{
    .card_credit_history_box
    {
        flex: 0 0 calc(100%) ;
    }
}


footer
{
    display: none !important;
}







.plan_card_item
{
    min-height: 200px;
    flex: 1 0 calc(24.5% - 10px);
    background-color: #ffffff;
    border-radius: 25px;
    padding: 25px;
    position: relative;
    border: 1px dashed #d8d8d8;
    box-shadow: 2px 2px 2px #d5d5d5;
}

.plan_card_item li:before
{
  content: "\2713";
  font-size: 24px;
  font-weight: 700;
  margin-right: 10px;
}

.plan_card_item>h3
{
  width: 100%;
  text-align: center;
  font-size: 26px;
}
.plan_card_item>span
{
  display: block;
  text-align: center;
  font-size: 20px;
  padding: 10px 0;
}
.plan_card_item>p
{
  width: 100%;
  padding: 0 25px;
  line-height: 20px;
}
.plancheckcard_cta_btn  
{
  display: block;
  margin-top: 10px;
  padding: 15px;
  border: 1px solid #007BFF;
  background: #fff;
  color: #007BFF;
  border-radius: 25px;
  text-align: center;
  transition: all 0.3s ease-in;
}

.plancheckcard_cta_btn:hover
{
    background: #007BFF;
    color: #fff;
}

.show_all_plan_box .icons_box .icons
{
  background-color: #fff !important;
  border: 1px solid #f18d16;
  color: #f18d16;
}

#plan_form_error
{
    margin-top: 10px;
}

.buynewplusbtn
{
  color: #c95d57;
  font-size: 80px !important;
  text-align: center;
  cursor: pointer;
}


/* Client Leads */

.client_leads_main_box
{
    width: 100%;
    height: 75lvh;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #f7f7f7;
    overflow: hidden;
}

.status_list_box
{
    min-width: 250px;
    /* height: 100%; */
    padding: 10px;
    background: #f5f5f5;
    border-radius: 15px;
    transition: all 0.3s linear;
    /* overflow-y: auto; */
}

.status_list_box ul
{
  list-style: none;
}

.status_list_box ul li
{
  margin-top: 7px;
  padding: 16px 30px;
  cursor: pointer;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 50px;
  letter-spacing: 1px;
}

.status_list_box ul li:hover{
  background-color:#ffffff;
}

.status_list_box ul li span
{
  font-size:16px;
  font-weight:300;
}

.active_tab
{
  background-color: rgb(230, 70, 36) !important;
  color: #fff;
}




.show_all_data_box
{
  width: 100%;
  height: 100%;
  padding: 10px 15px;
  padding-bottom: 100px;
  margin: 0 auto;
  overflow-y: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}



.show_all_data_box .card_box
{
  flex: 0 0 calc(32.98% - 10px);
  background-color: #ffffff;
  border-radius: 25px;
  padding: 25px;
  border-style: dashed!important;
  border-width: 1px!important;
  position: relative;
  border: 2px solid #d8d8d8;
  box-shadow: 2px 2px 2px #d5d5d5;
}

.show_all_data_box .card_top_icons_box
{
  width: auto !important;
  position: absolute;
  top: 5px;
  right: 10px;
}
.show_all_data_box .card_top_icons_box .icons
{
  width: 25px !important;
  height: 25px !important;
  background: #333 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px !important;
  padding: 0 !important;
  font-size: 14px;
}

.show_all_data_box .card_box .card_date_time
{
  font-size: 12px;
  margin-right: 35px;
  text-transform: uppercase;
}

.show_all_data_box .card_box .client_name
{
    font-size: 21px;
    font-weight: 500;
    margin-left: -30px;
    color: #11143c;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-transform: capitalize;
}

.show_all_data_box .card_box .client_service
{
  font-size: 14px;
  margin-bottom: -5px;
}

.show_all_data_box .card_box .client_btns
{
  padding-top: 10px;
}

.show_all_data_box .card_box .client_btns button
{
  border-radius: 50px;
  font-size: 16px;
  padding: 10px 20px;
  transition: all 0.1s linear;
}

.show_all_data_box .card_box:hover .client_btns button
{
  background: #007bff;
  color: #FFF;
  border-color: #007bff;
}

.show_all_data_box .card_box .client_name b
{
    display: block;
    width: 2px;
    height: 30px;
    background-color: lime;
    padding: 0px 2px;
    margin-right: 25px;
    border-radius: 0px;
}

.show_all_data_box .card_box .status_bar
{
  width: auto;
  background-color: #5f5f5f;
  color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px;
  font-size: 12px;
  border-radius: 15px 0 23px 0;
}

.show_all_data_box .card_box .imp_status_bar
{
  width: auto;
  background-color: #f5f5f5;
  color: #9E9E9E;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px 10px;
  font-size: 10px;
  border-radius: 0 15px 0 23px;
}

.show_all_data_box .card_box ul
{
  list-style: none;
}

.show_all_data_box .card_box div
{
  padding: 5px 0;
  font-size: 14px;
}

.show_all_data_box .icons_box
{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
}

.show_all_data_box .icons_box .icons
{
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff45;
  font-size: 16px;
  border-radius: 100px;
  border: 1px solid #007bff;
  color: #007bff;
  cursor: pointer;
  position: relative;
  z-index: 0;
}

.show_all_data_box .icons_box .icons:hover
{
  background-color: #007bff;
  color: white;
}
.show_all_data_box .card_box .icons_box button.icons,.show_all_data_box .card_box .icons_box b.icons
{
  padding: 11px 15px;
  border: none;
  font-size: 14px;
  color: #f18d16;
  border: 1px solid #f18d16;
  background-color: #fff !important;
}






/* Model Main Style */
.model_leads
{
    width: 100%;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    display: none;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(17, 20, 60, 0.75);
    /*transition: all 0.3s cubic-bezier(0, 0, 0, 0.99);*/
}
.bg_overlay
{
    flex-grow: 1;
    height: 100vh;
}
.model_main_container
{
    width: 25%;
    height: 100vh;
    background-color: #ffffff;
    padding: 25px;
    position: relative;
    padding-bottom: 100px;
    transition: all 0.3s cubic-bezier(0, 0, 0, 0.99);
    overflow-y: auto;
    margin-right: -100%;
}

.active_main_model
{
    display: flex;
}

.active_main_model .model_main_container
{
    margin-right: 0;
}

.model_main_container .close_btn
{
    width: 30px;
    height: 30px;
    font-size: 20px;
    border: 2px solid;
    background-color: #fff !important;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 10px;
    top: 10px;
    cursor: pointer;
}


.model_main_container .client_details div
{
    padding: 7px 0;
}

.model_main_container .client_details div#uid_this_lead_2,.model_main_container .client_details div#uid_this_lead
{
    margin-bottom: 15px !important;
}

.model_main_container form
{
    /* padding: 10px; */
    border-radius: 5px;
    gap: 0;
}

.model_main_container .custom_radio
{
    width: 100%;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.active_radio_button
{
    background-color: rgb(236, 236, 236);
    border-radius: 25px;
    padding: 7px 20px!important;
}

.model_main_container .custom_radio input
{
    width: auto;
    /* display: none; */
}

.model_main_container .custom_radio span
{
    padding: 10px 0px;
    flex-grow: 1;
    margin-left: 5px;
    font-size: 15px;
}

.model_main_container form input, .model_main_container form textarea
{
    width: 100%;
    border-radius: 25px;
    font-size: 18px;
}

.model_main_container form textarea
{
    padding: 10px;
    min-width: 100%;
    max-width: 100%;
    min-height: 225px;
    /* max-height: 300px; */
}

.model_activity_status
{
    width: 100%;
}

.model_activity_status_box
{
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
}

.model_activity_status_card
{
    width: 100%;
    border: 1px dotted #d5d5d5;
    padding: 10px 15px;
    border-radius: 25px;
    margin-bottom: 10px;
}

.model_activity_status_date_time
{
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
}


.model_input_button_prant
{
    position: relative;
}


.model_input_button_prant>input
{
    padding-right: 30%;
}

.model_input_button_prant>button
{
    position: absolute;
    top: 0;
    right: 0;
    background: #9E9E9E;
    border-color: #9E9E9E;
    padding: 14px 15px;
}



.model_leads .icons_box
{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 7px;
}

.model_leads .icons_box .icons
{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff45;
    font-size: 16px;
    border-radius: 100px;
    border: 1px solid #007bff;
    color: #007bff;
    cursor: pointer;
    position: relative;
    z-index: 0;
}

.model_leads .icons_box .icons:hover
{
    background-color: #007bff;
    color: white;
}



@media screen and (max-width:767px)
{
    .client_leads_main_box
    {
        height: 80vh;
        flex-wrap: wrap;
        background-color: unset;
    }

    .status_list_box
    {
        width: 100%;
        padding: 5px 10px;
        flex-basis: unset;
        overflow-x: auto;
        background-color: unset;
    }
    .status_list_box ul
    {
        width: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .status_list_box ul li
    {
        font-size: 11px;
        text-align: center;
        margin-top: 0;
        white-space: nowrap !important;
        padding: 7px 13px;
        border-radius: 35px;
    }
    .status_list_box ul li span
    {
        font-size: 11px;
    }
    .show_all_data_box
    {
        max-height: 85%;
        padding: 0;
    }


    .model_main_container
    {
        width: 75%;
    }
}