@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');
:root {
    --clr_light: #524a4a;
    --clr_blue: #085B93;
    --clr_pureblue : #2a90f4;
    --clr_red: #c90404;
    --clr_silver: #eef0f4;
    --clr_white: #ffffff;
    --filter_white : invert(100%) sepia(0%) saturate(2%) hue-rotate(65deg) brightness(106%) contrast(101%);
}

body {
    background: #EDF0F4;
    font-family: 'Inter', sans-serif;
}

.page_main {
    display: flex;
}

aside {
    width: 240px;
    background: #012136;
    height: 100vh;
    position: fixed;
    z-index: 99;
}

article {
    padding-left: 240px;
    padding-top: 50px;
    flex: 1 auto;
    /* padding-left: 15px; */
    /* padding-bottom: 15px; */
}

header {
    background: #fff;
    position: fixed;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9;
    padding: 10px;
    padding-left: 250px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu {
    width: 30px;
    cursor: pointer;
}

.logo_white {
    text-align: center;
    background: #03284d;
    padding-top: 14px;
    padding-bottom: 13px;
    display: inline-block;
    width: 100%;
}

.logo_white img {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(241deg) brightness(150%) contrast(103%);
    height: 40px;
}

.logo_color img {
    height: 40px;
}

.nav_left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav_right {
    display: flex;
    align-items: center;
    gap: 15px;
}

#sideBarOverlay {
    transition: 0.3s;
}

.menuOverlay {
    content: "";
    width: 100%;
    height: 100vh;
    background: #12121acc;
    position: fixed;
    z-index: 9999;
    transition: 0.3s;
}

.drop_profile {
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #eef0f4;
    padding: 5px 10px;
    border-radius: 10px;
    position: relative;
    transition: 0.3s;
}
.drop_profile.show{
    background: #1b1b1b21;
    transition: 0.3s;
}
.text_Profile {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #275a8f;
    color: #ffffff;
    font-size: 12px;
    border-radius: 50px;
    font-weight: 500;
}

.drop_profile p {
    margin: 0;
    font-size: 12px;
    color: #9b9b9b;
}

.drop_profile h5 {
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    color: #3e3e3e;
}

.fullscreen_btn {
    border: 0;
    background: transparent;
    margin: 0;
    border-radius: 50px;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.fullscreen_btn:hover {
    background: var(--clr_silver);
    transition: 0.3s;
}

.fullscreen_btn img {
    width: 20px;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


/* side_menu  */











/* scroll bar  */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: #6b6b6b;
    border-radius: 10px;
    transition: 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: #085B93;
    transition: 0.3s;
}















/* SideMenu CSS  */
  
.sub_menu {
    display: none;
    border-top: none;
    margin-left: 27px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.menu_title {
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}
.menu_item {
    transition: 0.3s;
    padding: 7px 15px;
    margin: 6px;
    /* background: #ffffff12; */
    border-radius: 18px;
}
.menu_item:hover{
    transition: 0.3s;
    padding: 7px 15px;
    margin: 6px;
    background: #ffffff12;
    border-radius: 18px;
}
/* .menu_item:hover {
    background-color: #09436a;
    transition: 0.3s;
} */
.menu_item a{
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 300;
    padding: 4px 0;
    opacity: 0.7;
    transition: 0.3s;
}
.menu_item a:hover{
    opacity: 1;
    transition: 0.3s;
}
.menu_item a img{
    width: 25px;
    filter: var(--filter_white);
}
.menu_title:after {
    content: "\f105";
    position: absolute;
    /* top: 50%; */
    right: 0;
    transition: all 0.3s ease;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 13px;
    color: #fff;    
    top: 5px;
}

.menu_title.active:after {
    transform: rotateZ(90deg);
}  
.menu_item {
}  
.menu_title h2 {
    font-size: 22px;
    font-weight: 600;
    padding: 10px 15px;
    margin: 0;
}
.sub_menu a{
    position: relative;
}
.sub_menu a::after{
    content: "";
    position: absolute;
    left: -25px;
    top: 12px;
    width: 15px;
    height: 5px;
    background: #ffffff2e;
    border-radius: 16px;
    transition: 0.3s;
}
.sub_menu a:hover::after{
    background: yellow;
    transition: 0.3s;
    box-shadow: 0 0 4px yellow;
}
.sub_menu a:hover{
    color: #fff;
}
.nav_search{
    border: 1px solid #c0c0c04f;
    padding: 10px 10px;
    border-radius: 5px;
    font-size: 13px;
}
.nav_search img{
    width: 20px;
    opacity: 0.6;
}
.nav_search form{
    display: flex;
    gap: 15px;
    margin: 0;
}
.nav_search input{
    background: #fff;
    border: 0;
}
.nav_search input:focus{
    outline: none;
}
.stand_drop{
    border: 0;
    width: 350px;
    padding: 15px;
    border-radius: 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.sd_menu{
    display: flex;
    flex-direction: column;
}
.sd_menu a{
    display: inline-block;
    /* background: var(--clr_silver); */
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    /* margin-bottom: 10px; */
    text-decoration: none;
    color: #000000c4;
    transition: 0.3s;
}
.sd_menu a img{
    width: 25px;
    /* opacity: 0.6; */
}
.sd_setting:hover{
    color: #4D6AEA !important;
}
.sd_signout:hover{
    color: #DB6E61 !important;
}
.sd_setting:hover{
    background: #4d6aea29 !important;
}
.sd_signout:hover{
    background: #DB6E6129 !important;
}

.quick_menu{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: var(--clr_silver);
    border-radius: 15px;
    margin-bottom: 15px;
    padding: 10px;
}
.quick_menu a{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 30%;
    text-align: center;
    text-decoration: none;
    color: #000;
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 13px;
    transition: 0.3s;
}
.quick_menu a img{
    width: 25px;
    margin: 0 auto;
    margin-bottom: 5px;
    filter: invert(56%) sepia(84%) saturate(5349%) hue-rotate(217deg) brightness(95%) contrast(94%);
}
.quick_menu a:hover{
    background: #fff;
    transition: 0.3s;
}
.noti_green{
    position: relative;
}
.noti_green::after{
    content: "";
    width: 9px;
    height: 9px;
    position: absolute;
    right: 9px;
    top: 13px;
    background: #4CAF50;
    border-radius: 50px;
    border: 2px solid #fff;
}
.notification_drop{    
    border: 0;
    width: 320px;
    padding-bottom: 0;
    border-radius: 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.noti_main{
    height: 500px;
    overflow-y: scroll;    
}
.noti_main::-webkit-scrollbar {
    width: 4px;
}
.noti_view_all a{
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    justify-content: center;
    border-top: 1px solid var(--clr_silver);
}
.noti_view_all a:hover{
    background: #fff !important;
}
.noti_item{
    display: inline-block;
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid var(--clr_silver);
    text-decoration: none;
    color: unset;
    transition: 0.3s;
}
.noti_item:hover{
    color: unset;
    background: var(--clr_silver);
    transition: 0.3s;
}
.noti_item img{
    height: 15px;
    margin-right: 5px;
    opacity: 0.5;
}
.noti_item h5{
    font-size: 14px;
}
.noti_item p{
    text-transform: capitalize;
    font-size: 13px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}
.noti_content{
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.page_container{
    margin-top: 33px;
}
.count_box{
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    border-left: 5px solid var(--clr_blue);
    text-decoration: none;
    display: inline-block;
    width: 100%;
    position: relative;
}
a.count_box::after{
    content: "\f101";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 26px;
    right: 20px;
    color: var(--clr_blue);
    opacity: 0;
    transition: 0.3s;
}
a.count_box:hover::after{
    opacity: 1;
    transition: 0.3s;
}
.count_box i{
    font-size: 21px;
    margin-right: 5px;
}
.count_box h4{
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--clr_blue);
}
.count_box p{
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    color: #616161;
    
}
.count_main{
    margin-bottom: 15px;
}
.section_filter{
    background: #fff;
    margin-top: 16px;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.section_filter p {
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    color: #275a8f;
    margin-bottom: 0;

}
.section_filter p img{
    width: 25px;
    margin-right: 8px;
}

.our_btn{
    background: #eef0f4;
    display: inline-block;
    text-decoration: none;
    padding: 8px 24px;
    border-radius: 3px;
    color: #565656;
    align-items: center;
    transition: 0.3s;
    border: 0;
}
.our_btn i{
    margin-right: 8px;
}
.our_btn:hover{
    background: #012136;
    transition: 0.3s;
    color: #fff;
}
.our_btn img{
    width: 10px;
    filter: var(--filter_white);
    position: relative;
    top: -1px;
}
.btn_black{
    background: #03284d;
    color: #fff;
    
}
.btn_silver{
    background: var(--clr_silver);
    filter: --;
}
.btn_silver img{
    filter: unset;
}
.btn_silver:hover{
    background: var(--clr_pureblue);
}
.btn_silver:hover img{
    filter: var(--filter_white);
}
.btn_red{
    background: var(--clr_red);
    color: #fff;
}
.btn_blue{
    background: #2a90f4;
    color: #fff;
}
.btn_sm{
    padding: 5px 12px;
    font-size: 14px;
}
.form-control{
    border-radius: 6px;
    /* font-size: 14px; */
}
.form-control:focus{
    box-shadow: unset;
}
.form-select{
    border-radius: 6px;
    font-size: 14px;
    padding: 8px 16px;
}
.form-select:focus{
    box-shadow: unset;
}

/* select 2 */
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 6px;
    height: 35px;
}
.select2-container--default .select2-selection--single:focus{
    background: #fff;
    border-color: #86b7fe;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #92929E;
    padding: 9px 15px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 4px;
    right: 8px;
    width: 20px;
}
.select2-dropdown {
    background-color: #fff;
    border: 0;
    box-shadow: 1px 10px 30px rgb(0 0 0 / 30%);
}
.select2-results__option{
    font-size: 13px;
    color: #92929f;
    padding: 9px 15px;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #EDF0F4;
    background: #EDF0F4;
    border-radius: 6px;
    font-size: 13px;
    color: #575757;
    padding: 8px 8px;
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus{
    outline: none;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--clr_blue);
    color: #fff;
}
.select2-container--default .select2-results__option[aria-selected=true]{
    background-color: var(--clr_blue);
    color: #fff;
}
.select2-search--dropdown {
    display: block;
    padding: 13px;
}
/* end of select 2  */

.table_section{
    background: #fff;
    border-radius: 5px;
    padding: 24px;
    margin-bottom: 15px;
}
.table .dropdown{
    width: 30px;
}
.our_dropdown{
    border: 0;
    border-radius: 7px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    font-size: 14px;
   
}
.our_dropdown a{
    font-weight: 500;
    padding-top: 8px;
    padding-bottom: 8px;
}
.dropdown-item img{
    width: 20px;
}
.dropdown-item{
    display: flex;
    align-items: center;
    gap: 10px;
}
.table_img{
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}
.table{
    vertical-align: middle;
}
.table_footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.page-link{
    color: var(--clr_blue);
}
.table-responsive{
    margin-bottom: 15px;
}
/* 12/30  */
.page_title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 15px;
    padding-left: 20px;
    border-radius: 5px;
    margin-bottom: 15px;
}
.page_title h3{
    margin: 0;
    font-size: 18px;
}
.page_title h3 small{
    font-size: 12px;
    color: #939393;
}
.our_card{
    background: #fff;
    border-radius: 5px;
    margin-bottom: 15px;
}
.card_title h5{
    font-size: 18px;
    margin: 0;
}
.card_top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
    border-bottom: 1px solid #eef0f4;
}
.card_body{
    padding: 15px;
}
.card_footer{
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 8px 15px;
    border-top: 1px solid #eef0f4;
}
.wp-select-sm .select2-container--default .select2-selection--single .select2-selection__rendered{
    padding: 6px 15px !important;
}
.wp-select-sm .select2-container--default .select2-selection--single{
    height: 31px !important;
}
.form-check-input:focus{
    box-shadow: none;
}
.form-check-input:checked{
    background-color: var(--clr_blue);
    border-color: var(--clr_blue);
}
/* login page css  */
.login_section{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.main_login{
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    max-width: 800px;
    width: 100%;
    display: flex;
    overflow: hidden;
}
.ml_left{
    min-width: 300px;
    min-height: 100%;
    background: var(--clr_blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ml_right{
    padding: 60px 40px;
    background: #fff;
    width: 100%;
    height: 100%;
}
.ml_right h5{
    margin-bottom: 40px;
    color: var(--clr_blue);
    position: relative;
}
.ml_right h5::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 27px;
    height: 4px;
    background: var(--clr_blue);
}
.ml_right h6{
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--clr_light);
}
.ml_right .form-control{
    padding: 14px 20px;
    position: relative;
}
.btn_login{
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding: 14px 0;
}
.log_input{
    position: relative;
}
.log_input i{
    position: absolute;
    right: 15px;
    top: 16px;
    color: #275a8f;
    font-size: 18px;
}
.toggle-password{
    cursor: pointer;
}
.input_footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.forgt_password a{
    color: var(--clr_light);
}
.forgt_password a:hover{
    color: var(--clr_pureblue);
}
.chart-legend{
    font-size: 14px;
}
.a_link{
    text-decoration: none;
    color: var(--clr_blue);
    transition: 0.3s;
}
.a_link:hover{
    color: var(--clr_pureblue);
    transition: 0.3s;
}
.dash_footer{
    background: var(--clr_white);
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    color: var(--clr_light);
}
.dash_footer p{
    margin: 0;
    font-size: 14px;
}
.new_count{
    margin-bottom: 15px;
}
.nc_box{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px;
    color: #fff;
    min-height: 180px;
    position: relative;
    text-decoration: none;
    margin-bottom: 10px;
}
a.nc_box:hover{
    color: #fff;
}
.nc_icon{
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgb(255 255 255 / 10%) 0%, rgb(255 255 255 / 4%) 100%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 25px;
    margin-bottom: 7px;
}
.nc_box p{
    margin-bottom: 4px;
    margin-top: 4px;
    font-size: 13px;
    letter-spacing: 1.1px;
    color: #ffffffc7;
}
.nc_box h4{
    margin-bottom: 0;
    font-weight: 700;
    font-size: 32px;
}
.nc_color1{
    background: rgb(107,93,228);
    background: linear-gradient(117deg, rgba(107,93,228,1) 0%, rgba(70,56,194,1) 80%);
}
.nc_color2{
    background: rgb(225,143,108);
    background: linear-gradient(128deg, rgba(225,143,108,1) 0%, rgba(217,106,73,1) 80%);
}
.nc_color3{
    background: rgb(230,121,203);
    background: linear-gradient(128deg, rgba(230,121,203,1) 0%, rgba(164,106,215,1) 80%);
}
.nc_color4{
    background: rgb(98,182,146);
    background: linear-gradient(128deg, rgba(98,182,146,1) 0%, rgba(70,140,109,1) 80%);
}
.nc_color5{
    background: rgb(243,170,151);
    background: linear-gradient(128deg, rgba(243,170,151,1) 0%, rgba(198,65,90,1) 80%);
}
.nc_color6{
    background: rgb(243,212,79);
    background: linear-gradient(128deg, rgba(243,212,79,1) 0%, rgba(194,68,49,1) 80%);
}
.nc_color7{
    background: rgb(131,215,210);
    background: linear-gradient(128deg, rgba(131,215,210,1) 0%, rgba(79,145,212,1) 80%);
}
a.nc_box::after{
    content: "\f08e";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 16px;
    color: var(--clr_white);
    opacity: 0;
    transition: 0.3s;
}
a.nc_box:hover::after{
    opacity: 1;
    transition: 0.3s;
}
.progressbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: 30px;
}
.progressbar li{
    width: 20%;
    text-align: center;
    position: relative;
}
.progressbar li a{
    padding: 7px 7px;
    display: inline-block;
    width: 100%;
    text-decoration: none;
    color: unset;
}
.progressbar li a p{
    margin-top: 15px;
    color: #787878;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
}
.progressbar .line{
    width: 100%;
    height: 3px;
    background: #787878;
    position: absolute;
    top: 32px;
    left: 0;
    z-index: -1;    
}
.prog_icon{
    background: #787878;
    color: var(--clr_white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin: 0 auto;
}
.progressbar .active .line{
    background: #4CAF50;
}
.progressbar .active .prog_icon{
    background: #4CAF50;
    color: var(--clr_white);
}
/* .progressbar .active .line{
    background: var(--clr_pureblue);
}
.progressbar .active .prog_icon{
    background: var(--clr_pureblue);
    color: var(--clr_white);
} */
/* .progressbar .active a p{
    color: #4CAF50;
} */
.form_card{
    background: #fff;
    border-radius: 5px;
    margin-bottom: 15px;
}
.form_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-bottom: 1px solid #eef0f4;
}
.form_body {
    padding: 15px;
}
.form_header h4 {
    font-size: 18px;
    margin: 0;
}
.form-label {
    font-size: 14px;
}
.submit_btn{
    background: #2a90f4;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    padding: 8px 24px;
    border-radius: 3px;
    align-items: center;
    transition: 0.3s;
    border: 0;
}
.bg_blue{
    background: var(--clr_blue);
    color: var(--clr_white);
    border-radius: 5px;
}
.required.form-label::after{
    content: '*';
    color: #f80000;
    font-weight: 600;
}
.c_profile{
    width: 100%;
    height: 200px;
    object-fit: contain;
    border: 2px solid var(--clr_silver);
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}
.c_banner{
    width: 100%;
    height: 200px;
    object-fit: contain;
    border: 2px solid var(--clr_silver);
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}
.cl_list_menu .nav{
    margin: 0 !important;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--clr_blue);
}
.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--clr_light);
}
.admin_notification{
    background:  var(--clr_white);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    display: flex;
    position: relative;
    overflow: hidden;
}
.noti_page_content{
   width: 100%;
}
.noti_page_content a{
    color: var(--clr_blue);
    text-decoration: none;
    transition: 0.3s;
}
.noti_page_content a:hover{
    color: var(--clr_red);
    transition: 0.3s;
}
.noti_delete a{
    color: var(--clr_red);
    transition: 0.3s;
    
}

.noti_delete a::after{
    content: '';
    width: 100px;
    height: 100px;
    background: #d73b3344;
    position: absolute;
    border-radius: 50%;
    top: -47px;
    right: -47px;
    z-index: 0;
}
.leads_sm{
    border: 1px solid #eef0f4;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    background: #eef0f4;
    padding: 10px;
    text-decoration: none;
    transition: 0.3s;
}
.leads_sm h2{
    margin-bottom: 5px;
    color: var(--clr_blue);
}
.leads_sm p{
    margin: 0;
}
.card_body .col-lg-2 a{
    text-decoration: none;
    color: var(--clr_blue);
}
.leads_sm:hover{
    border-color: #d7d7d8;
    transition: 0.3s;
}
.tab_header{
    display: flex;
    align-items: center;
    justify-content: end;
}
.ws_box{
    background: #012136;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    position: relative;
}

.ws_box:hover{
    color: #fff;
}
.ws_box p {
    margin-bottom: 4px;
    margin-top: 4px;
    font-size: 13px;
    letter-spacing: 1.1px;
    color: #ffffffc7;
}
.ws_box h4 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 32px;
}
.ws_icon i{
    transform: rotate(345deg);
    font-size: 50px;
    opacity: 0.2;
}
a.ws_box::after{
    content: "\f08e";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 16px;
    color: var(--clr_white);
    opacity: 0;
    transition: 0.3s;
}
a.ws_box:hover::after{
    opacity: 1;
    transition: 0.3s;
}
.ws_white{
    background: var(--clr_white);
}
.ws_white p {
    color: var(--clr_light);
}
.ws_white h4 {    
    color: var(--clr_blue);
}
.ws_white .ws_icon i{
    color: #000;
}
a.ws_white::after{
    color: var(--clr_pureblue);
}
.min_height{
    min-height: 450px;
}

/* table design  */
.table-responsive {
    margin-bottom: 15px;
    padding-bottom: 20px;
}
.new_table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    /* box-shadow: rgba(185, 188, 191, 0.2) 0px 0px 24px 5px; */
    /* border-radius: 5px; */
    font-family: arial;
    overflow: auto;
  }
  .new_table thead th {
    padding: 10px 16px;
    text-align: left;
    background-color: #c90404;
    color: #fff;
    /* min-width: 150px; */
  }
  .new_table tbody tr td {
    padding: 10px 16px;
    border-bottom: 1px solid #eee;
  }
  .new_table tbody tr .action {
    /* display: flex; */
  }
  .new_table tbody tr .action button {
    margin-right: 10px;
    cursor: pointer;
    background-color: #f3f3f5;
    border: none;
    padding: 5px 10px;
    border-radius: 2px;
  }
  .new_table tbody tr .action button:last-child {
    margin-right: 0;
  }
  .new_table .res-head {
    display: none;
  }
  @media screen and (max-width: 767px) {
    .new_table {
      background-color: transparent;
      box-shadow: none;
    }
    .new_table thead {
      display: none;
    }
    .new_table tbody tr {
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      margin-bottom: 10px;
      background-color: #fff;
      padding: 50px 10px 10px 10px;
      position: relative;
      border-radius: 10px;
      background-color: #fff;
      border: 1px solid #efefef;
      /* box-shadow: rgba(185, 188, 191, 0.2) 0px 0px 24px 5px; */
    }
    .new_table tbody tr td {
      display: flex;
      background-color: transparent;
      padding: 0;
      margin-bottom: 5px;
      margin-right: 16px;
      border: none;
      flex-wrap: wrap;
    }
    .new_table tbody tr td .res-head {
      display: block;
      font-weight: 700;
      margin-right: 5px;
    }
    .new_table tbody tr td:first-child {
      position: absolute;
      top: 10px;
      left: 10px;
    }
    .new_table tbody tr .action {
      position: absolute;
      top: 10px;
      right: 10px;
    }
  }
  article{
    width: 100%;
  }

/* enf table design  */

/* enf table design  */

/* lead view  */

.circle_icon_btn{
    border: 2px solid var(--clr_pureblue);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin: 0 3px;
    text-decoration: none;
    color: var(--clr_pureblue);
    transition: 0.3s;
    font-size: 12px;
}
.circle_icon_btn:hover{
    background: var(--clr_pureblue);
    color: var(--clr_white);
    transition: 0.3s;
}
.ml_details{
    display: flex;
    gap: 2px;
}
.ml_details>div{
    width: 25%;
    background: #fff;
    padding: 15px;
}
.mld_box{
    display: flex;
    justify-content: space-between;
}
.mld_box a{
    text-decoration: none;
    font-weight: 600;
}

.mld_box p{
    font-size: 13px;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.status_unactive{
    background: #607D8B;
    font-size: 13px;
    color: #fff;
    border-radius: 50px;
    padding: 2px 8px;
}
.status_active{
    background: green;
    font-size: 13px;
    color: #fff;
    border-radius: 50px;
    padding: 2px 8px;
}
.mld_box>div{
    width: 50%;
}
.status_blue{
    background: var(--clr_pureblue);
    font-size: 13px;
    color: #fff;
    border-radius: 50px;
    padding: 2px 8px;
}
.status_red{
    background: #dd1c1c;
    font-size: 13px;
    color: #fff;
    border-radius: 50px;
    padding: 2px 8px;
}
.status_orange{
    background: #FF5722;
    font-size: 13px;
    color: #fff;
    border-radius: 50px;
    padding: 2px 8px;
}
.status_green{
    background: #009632;
    font-size: 13px;
    color: #fff;
    border-radius: 50px;
    padding: 2px 8px;
}
.progress-bar{
    background: #198754;
}
/* progress bar  */
.progress-circle {
	font-size: 20px;
	margin: 20px auto;
    margin-bottom: 5px;
	position: relative;
	padding: 0;
	width: 5em;
	height: 5em;
	background-color: #f2e9e1;
	border-radius: 50%;
	line-height: 5em
}

.progress-circle:after {
	border: none;
	position: absolute;
	top: .35em;
	left: .35em;
	text-align: center;
	display: block;
	border-radius: 50%;
	width: 4.3em;
	height: 4.3em;
	background-color: #fff;
	content: " "
}

.progress-circle span {
	position: absolute;
	line-height: 5em;
	width: 5em;
	text-align: center;
	display: block;
	color: #198754;
	z-index: 2
}

.left-half-clipper {
	border-radius: 50%;
	width: 5em;
	height: 5em;
	position: absolute;
	clip: rect(0, 5em, 5em, 2.5em)
}

.progress-circle.over50 .left-half-clipper {
	clip: rect(auto, auto, auto, auto)
}

.value-bar {
	position: absolute;
	clip: rect(0, 2.5em, 5em, 0);
	width: 5em;
	height: 5em;
	border-radius: 50%;
	border: .45em solid #198754;
	box-sizing: border-box
}

.progress-circle.over50 .first50-bar {
	position: absolute;
	clip: rect(0, 5em, 5em, 2.5em);
	background-color: #198754;
	border-radius: 50%;
	width: 5em;
	height: 5em
}

.progress-circle:not(.over50) .first50-bar {
	display: none
}

.progress-circle.p0 .value-bar {
	display: none
}

.progress-circle.p1 .value-bar {
	transform: rotate(4deg)
}

.progress-circle.p2 .value-bar {
	transform: rotate(7deg)
}

.progress-circle.p3 .value-bar {
	transform: rotate(11deg)
}

.progress-circle.p4 .value-bar {
	transform: rotate(14deg)
}

.progress-circle.p5 .value-bar {
	transform: rotate(18deg)
}

.progress-circle.p6 .value-bar {
	transform: rotate(22deg)
}

.progress-circle.p7 .value-bar {
	transform: rotate(25deg)
}

.progress-circle.p8 .value-bar {
	transform: rotate(29deg)
}

.progress-circle.p9 .value-bar {
	transform: rotate(32deg)
}

.progress-circle.p10 .value-bar {
	transform: rotate(36deg)
}

.progress-circle.p11 .value-bar {
	transform: rotate(40deg)
}

.progress-circle.p12 .value-bar {
	transform: rotate(43deg)
}

.progress-circle.p13 .value-bar {
	transform: rotate(47deg)
}

.progress-circle.p14 .value-bar {
	transform: rotate(50deg)
}

.progress-circle.p15 .value-bar {
	transform: rotate(54deg)
}

.progress-circle.p16 .value-bar {
	transform: rotate(58deg)
}

.progress-circle.p17 .value-bar {
	transform: rotate(61deg)
}

.progress-circle.p18 .value-bar {
	transform: rotate(65deg)
}

.progress-circle.p19 .value-bar {
	transform: rotate(68deg)
}

.progress-circle.p20 .value-bar {
	transform: rotate(72deg)
}

.progress-circle.p21 .value-bar {
	transform: rotate(76deg)
}

.progress-circle.p22 .value-bar {
	transform: rotate(79deg)
}

.progress-circle.p23 .value-bar {
	transform: rotate(83deg)
}

.progress-circle.p24 .value-bar {
	transform: rotate(86deg)
}

.progress-circle.p25 .value-bar {
	transform: rotate(90deg)
}

.progress-circle.p26 .value-bar {
	transform: rotate(94deg)
}

.progress-circle.p27 .value-bar {
	transform: rotate(97deg)
}

.progress-circle.p28 .value-bar {
	transform: rotate(101deg)
}

.progress-circle.p29 .value-bar {
	transform: rotate(104deg)
}

.progress-circle.p30 .value-bar {
	transform: rotate(108deg)
}

.progress-circle.p31 .value-bar {
	transform: rotate(112deg)
}

.progress-circle.p32 .value-bar {
	transform: rotate(115deg)
}

.progress-circle.p33 .value-bar {
	transform: rotate(119deg)
}

.progress-circle.p34 .value-bar {
	transform: rotate(122deg)
}

.progress-circle.p35 .value-bar {
	transform: rotate(126deg)
}

.progress-circle.p36 .value-bar {
	transform: rotate(130deg)
}

.progress-circle.p37 .value-bar {
	transform: rotate(133deg)
}

.progress-circle.p38 .value-bar {
	transform: rotate(137deg)
}

.progress-circle.p39 .value-bar {
	transform: rotate(140deg)
}

.progress-circle.p40 .value-bar {
	transform: rotate(144deg)
}

.progress-circle.p41 .value-bar {
	transform: rotate(148deg)
}

.progress-circle.p42 .value-bar {
	transform: rotate(151deg)
}

.progress-circle.p43 .value-bar {
	transform: rotate(155deg)
}

.progress-circle.p44 .value-bar {
	transform: rotate(158deg)
}

.progress-circle.p45 .value-bar {
	transform: rotate(162deg)
}

.progress-circle.p46 .value-bar {
	transform: rotate(166deg)
}

.progress-circle.p47 .value-bar {
	transform: rotate(169deg)
}

.progress-circle.p48 .value-bar {
	transform: rotate(173deg)
}

.progress-circle.p49 .value-bar {
	transform: rotate(176deg)
}

.progress-circle.p50 .value-bar {
	transform: rotate(180deg)
}

.progress-circle.p51 .value-bar {
	transform: rotate(184deg)
}

.progress-circle.p52 .value-bar {
	transform: rotate(187deg)
}

.progress-circle.p53 .value-bar {
	transform: rotate(191deg)
}

.progress-circle.p54 .value-bar {
	transform: rotate(194deg)
}

.progress-circle.p55 .value-bar {
	transform: rotate(198deg)
}

.progress-circle.p56 .value-bar {
	transform: rotate(202deg)
}

.progress-circle.p57 .value-bar {
	transform: rotate(205deg)
}

.progress-circle.p58 .value-bar {
	transform: rotate(209deg)
}

.progress-circle.p59 .value-bar {
	transform: rotate(212deg)
}

.progress-circle.p60 .value-bar {
	transform: rotate(216deg)
}

.progress-circle.p61 .value-bar {
	transform: rotate(220deg)
}

.progress-circle.p62 .value-bar {
	transform: rotate(223deg)
}

.progress-circle.p63 .value-bar {
	transform: rotate(227deg)
}

.progress-circle.p64 .value-bar {
	transform: rotate(230deg)
}

.progress-circle.p65 .value-bar {
	transform: rotate(234deg)
}

.progress-circle.p66 .value-bar {
	transform: rotate(238deg)
}

.progress-circle.p67 .value-bar {
	transform: rotate(241deg)
}

.progress-circle.p68 .value-bar {
	transform: rotate(245deg)
}

.progress-circle.p69 .value-bar {
	transform: rotate(248deg)
}

.progress-circle.p70 .value-bar {
	transform: rotate(252deg)
}

.progress-circle.p71 .value-bar {
	transform: rotate(256deg)
}

.progress-circle.p72 .value-bar {
	transform: rotate(259deg)
}

.progress-circle.p73 .value-bar {
	transform: rotate(263deg)
}

.progress-circle.p74 .value-bar {
	transform: rotate(266deg)
}

.progress-circle.p75 .value-bar {
	transform: rotate(270deg)
}

.progress-circle.p76 .value-bar {
	transform: rotate(274deg)
}

.progress-circle.p77 .value-bar {
	transform: rotate(277deg)
}

.progress-circle.p78 .value-bar {
	transform: rotate(281deg)
}

.progress-circle.p79 .value-bar {
	transform: rotate(284deg)
}

.progress-circle.p80 .value-bar {
	transform: rotate(288deg)
}

.progress-circle.p81 .value-bar {
	transform: rotate(292deg)
}

.progress-circle.p82 .value-bar {
	transform: rotate(295deg)
}

.progress-circle.p83 .value-bar {
	transform: rotate(299deg)
}

.progress-circle.p84 .value-bar {
	transform: rotate(302deg)
}

.progress-circle.p85 .value-bar {
	transform: rotate(306deg)
}

.progress-circle.p86 .value-bar {
	transform: rotate(310deg)
}

.progress-circle.p87 .value-bar {
	transform: rotate(313deg)
}

.progress-circle.p88 .value-bar {
	transform: rotate(317deg)
}

.progress-circle.p89 .value-bar {
	transform: rotate(320deg)
}

.progress-circle.p90 .value-bar {
	transform: rotate(324deg)
}

.progress-circle.p91 .value-bar {
	transform: rotate(328deg)
}

.progress-circle.p92 .value-bar {
	transform: rotate(331deg)
}

.progress-circle.p93 .value-bar {
	transform: rotate(335deg)
}

.progress-circle.p94 .value-bar {
	transform: rotate(338deg)
}

.progress-circle.p95 .value-bar {
	transform: rotate(342deg)
}

.progress-circle.p96 .value-bar {
	transform: rotate(346deg)
}

.progress-circle.p97 .value-bar {
	transform: rotate(349deg)
}

.progress-circle.p98 .value-bar {
	transform: rotate(353deg)
}

.progress-circle.p99 .value-bar {
	transform: rotate(356deg)
}

.progress-circle.p100 .value-bar {
	transform: rotate(360deg)
}
/* progress bar  */
.status_bar{
    display: flex;
    /* flex-wrap: wrap; */
    margin-top: 2px;
    gap: 2px;
    
}
.status_item{
    background: #fff;
    width: 16.66%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 15px;
    gap: 15px;
    position: relative;
}
.status_item i{
    font-size: 22px;
    color: #a2a2a2;
}
.status_item i.fa-circle-check{
    color: #35b060;
}
.status_item p{
    margin: 0;
    line-height: 0.5;
    font-size: 14px;
    font-weight: 600;
}
.status_item small{
    font-size: 12px;
    color: #949494;
}
.status_item::before{
    content: '';
    position: absolute;
    top: 23px;
    left: -6px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    transform: rotate(45deg);
    border: 2px solid #eef0f4;
    border-left: 0;
    border-bottom: 0;
}
.status_item:first-child::before{
    display: none;
}

.custom_row{
    display: flex;
    margin-top: 10px;
}
.tab_col{
    width: 280px;
}
.view_con{
    width: calc(100% - 280px);
}
.nav .nav-link{
    background: #fff;
    text-align: left;
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 500;
    color: #5c5c5c;
    display: flex;
    justify-content: space-between;
}
.nav .nav-link.active{
    background: var(--clr_blue);
}
.btn:focus{
    box-shadow: unset;
}
.btn:active:focus{
    box-shadow: unset;
}
.btn:active{
    box-shadow: unset;
}
.cmt_profile{
    display: flex;
    align-items: center;
    gap: 10px;
}
.cmt_profile h6{
    margin: 0;
}
.cmt_profile p{
    margin: 0;
    font-size: 12px;
    color: #969696;
}
.cmt_box{
    margin-top: 10px;
}
.cmt_box p{
    font-size: 14px;
}
.cmt_item{
    border-bottom: 2px solid #eef0f4;
    margin-bottom: 10px;
}
.cmt_list{
    max-height: 300px;
    overflow-y: scroll;
}
.list_table tr td:first-child{
    font-weight: 500;
}
.color_title i{
    color: var(--clr_pureblue);
}
.list_table td{
    width: 50%;
}
.card_title h5 {
    line-height: 1.5;
}
.tbl_img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}
.communication_box{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}
.communication_item{
    display: flex;
    align-items: center;
    background: #EEF0F4;
    border-radius: 5px;
    gap: 10px;
    padding: 6px 12px;

}
.communication_item i{
    font-size: 25px;
    color: #fff;
}
.communication_item p{
    margin: 0;
    font-size: 13px;
    color: #ffffffc7;
}
.communication_item h5{
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
}
.mail_box{
    background: #ff4c4c;
}
.sms_box{
    background: #058ecd;
}
.whatsapp_box{
    background: #5CAE68;
    color: #fff;
}
.select2-container{
    z-index: 99999;
    width: 100% !important;
}
/* lead view  */
table a{
    text-decoration: none;
    color: #03284d;
}
table a i{
    margin-right: 10px;
}

/* user view css  */

.user_one{
    background: #fff;
    border-radius: 5px;
    margin-bottom: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.user_one img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}
.user_one_details{
    padding: 15px;
}
.user_od_item{
    margin-bottom: 15px;
}
.user_od_item p{
    margin: 0;
    font-size: 14px;
    color: #717171;
}
.user_od_item h6{
    margin: 0;
}
