@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400&display=swap');


*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Ubuntu', sans-serif;
}

html,body
{
  width: 100%;
}

body
{
  background-color: #f7f7f7;
  color: #11143c;
}

/* 0 Result */
.zero_result_found_msg
{
  padding: 15px 30px;
  border: 2px solid rgb(230, 70, 36);
  color: rgb(230, 70, 36);
  background-color: #fff;
  border-radius: 5px;
  margin: 0 auto;
  margin-top: 50px;
}

.data_not_found_container
{
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 25px;
  padding: 35px;
  padding-bottom: 100px;
  position: relative;
  border: 1px dashed #d8d8d8;
  box-shadow: 2px 2px 2px #d5d5d5;
  position: relative;
}

.data_not_found_heading
{
  font-size: 24px;
  font-weight: 700;
}

.data_not_found_description
{
  padding: 10px 0;
  font-size: 16px;
  padding-right: 25%;
  color: #6a6a6a;
  font-weight: 400;
}

.data_not_found_banner
{
  width: 100%;
  max-width: 250px;
  border-radius: 25px;
  mix-blend-mode: multiply;
  position: absolute;
  bottom: 0;
  right: 0;
}

.data_not_found_btn
{
  width: 150px;
  margin-top: 10px;
  padding: 15px 0;
  font-size: 16px;
  border-radius: 100px;
  border: 2px solid #007bff;
  color: #007bff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.1s linear;
  cursor: pointer;
}

.data_not_found_btn:hover
{
  background: #007BFF;
  color: #fff;
}

@media (max-width: 480px) {
  .data_not_found_container
  {
    padding: 25px;
    padding-bottom: 150px;
  }
  .data_not_found_description
  {
    padding-right: 0;
  }
  .data_not_found_banner
  {
    max-width: 210px;
  }
}

a
{
  color: inherit;
  text-decoration: none;
}

li
{
  list-style: none;
}

.main_body_container
{
  width: 100%;
  position: relative;
  overflow: hidden;
}
/* Preloader */
.preloader {
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  }
.ring {
  width: 200px;
  height: 200px;
  border: 12px solid transparent;
  border-radius: 50%;
  position: absolute;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.ring:nth-child(1) {
  border-bottom-color: #28ec32;
  animation-name: rotate1;
}
  
.ring:nth-child(2) {
  border-right-color: #47bdb3;
  animation-name: rotate2;
}
.ring:nth-child(3) {
  border-top-color: #f7fa3c;
  animation-name: rotate3;
}

.ring:nth-child(4) {
  border-left-color: #e474cc;
  animation-name: rotate4;
}

.loading {
  color: #11143C;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 20px;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation-name: fadeInOut;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  opacity: 0;
}
@keyframes rotate1 {
  0% {
    transform: rotateZ(0);
  }
  25% {
    transform: rotateZ(360deg);
  }
  50% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(0);
  }
}
@keyframes rotate2 {
  0% {
    transform: rotateZ(0);
  }
  25% {
    transform: rotateZ(-360deg);
  }
  50% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(0);
  }
}

@keyframes rotate3 {
  0% {
    transform: rotateZ(0);
  }
  25% {
    transform: rotateZ(360deg);
  }
  50% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(0);
  }
}
@keyframes rotate4 {
  0% {
    transform: rotateZ(0);
  }
  25% {
    transform: rotateZ(-360deg);
  }
  50% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(0);
  }
}


@keyframes fadeInOut {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes ringScale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
}

  
/* Main Style */

.container
{
  margin: 0 auto;
  /* padding: 0 10px; */
  /*max-width: 1600px;*/
}


/* header Style */

header
{
  width: 100%;
  padding: 0 15px;
  background-color: #fff;
  box-shadow: 0px 0px 2px #ccc;
  position: fixed;
  top: 0;
  z-index: 999;
}
.header_box
{
  width: 100%;
  padding: 10px 0;
  display: flex;
  justify-content: space-between; 
  align-items: center;
}

.header_box .logo
{
  width: 175px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_box .logo img
{
  width: 100%;
}

.nav_items ul
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  position: relative;
}

.nav_items ul a
{
  width: 100%;
  font-size:16px;
}

.nav_items ul li
{
  width: 100%;
  cursor: pointer;
  white-space: nowrap;
}

.nav_submenu
{
  background-color: #fff;
  padding: 25px;
  border-radius: 25px;
  box-shadow: 0px 0px 2px #ccc;
  position: absolute;
  top: 101%;
  z-index: 99;
}

.nav_submenu ul
{
  flex-direction: column;
}

.nav_submenu ul li
{
  padding: 10px 0;
  color: #11143C;
}

.right_login_status
{
  width: 250px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 10px;
  flex-wrap: wrap;
}

.right_login_status .user_id
{
  font-size: 16px;
}

.right_login_status .logo
{
  width: 40px;
  height: 40px; 
  border: 2px solid #eee;
  border-radius: 100px;
  background-color: #f18d16;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  overflow: hidden;
}

.right_login_status .logo img
{
  width: 100%;
  margin-bottom: -4px;
}

#logout_button
{
  background-color: transparent;
  border: none;
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
}

.menu_icon
{
  width: 40px;
  height: 40px;
  font-size: 20px;
  border-radius: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}


/* Filter Data */
.leads_data_filter
{
  width: 100%;
  padding: 20px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  flex-wrap: wrap;
  background: #f5f5f5;
}


.heading
{
  width: 50%;
  border-radius: 0 0 5px 5px;
}

.date_filter_details_box
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.leadStatusExport
{
  width: 100%;
  font-size: 16px;
  display: block;
  background-color: #ffffff;
}

.dateoptionexport label
{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 5px 0;
    cursor: pointer;
}
.dateoptionexport input
{
    border-radius: 25px;
}
.dateoptionexport input[type='radio']
{
    width: 15px;
    height: 15px;
}

.leadStatusExport .exportleadsstatusbox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    padding: 10px !important;
    margin: 10px 0;
    border: 1px dashed #d8d8d8;
    /* box-shadow: 2px 2px 2px #d5d5d5; */
    border-radius: 25px;
    padding: 5px 10px;
    cursor: pointer;
}

.leadStatusExport .exportleadsstatusbox:hover {
    background-color: #f0f0f0;
}
.leadStatusExport .exportleadsstatusbox input[type='radio']
{
    width: 15px;
    height: 15px;
}


.leads_data_filter .filter_input,.leads_data_filter .filter_select
{
  width: 230px;
  border-radius: 35px;
  background-color: #fff;
}

.leads_data_filter .filter_input form
{
  width: 100%;
  position: relative;
}

.leads_data_filter .filter_select select
{
  outline: none;
  width: 100%;
  border-radius: 35px;
  padding: 15px;
}

.leads_data_filter .filter_input form input
{
  outline: none;
  border-radius: 35px;
}

.leads_data_filter .filter_input form button
{
  position: absolute;
  right: 0;
  background-color: #58585800;
  padding: 0 15px;
  height: 100%;
  border: 0;
  border-radius: 35px;
}

.leads_data_filter .filter_input #dateLabel,
.leads_data_filter .filter_input #eDateLabel
{
  display: block;
  border-radius: 25px;
  text-align: center;
  padding: 15px;
  background-color: transparent;
  border: 1px solid #ccc;
  color: #333;
}

.filter_leads_counter_box
{
    width: auto;
    font-size: 10px;
    max-width: 400px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 4px;
}


.filter_leads_counter_box span
{
  display: inline-block;
  padding: 5px 15px;
  margin: 0 3px;
  background-color: #11143C;
  color: #f5f5f5;
  border-radius: 25px;
}


/* Login form Style */
.login_form_main_container
{
  width: 100%;
  height: 100vh;
  padding: 5% 0 0;
}

.client_forms_container
{
    padding: 0 15px;
  padding-top: 50px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.card {
  width: 100%;
  max-width: 400px;
  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;
}

.card h2
{
  padding: 15px 0;
  font-size: 28px;
}

.card p
{
  /* text-align: center; */
  padding: 0 5px;
}

.login_form_main_container .card .logo
{
  width: 60%;
  margin: 0 auto;
  padding: 20px 0;
}

.login_form_main_container .card .logo img
{
  width: 100%;
}
form
{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, select, textarea {
  padding: 15px;
  border: none;
  background-color: transparent;
  border: 1px solid #ccc;
  color: #333;
}

.client_forms_container input, select, textarea
{
  border-radius: 50px;
  border: 2px solid #ccc !important;
  font-size: 18px;
}

.user_creadits
{
  border: 2px solid #007bff;
  border-radius: 25px;
  padding: 5px 15px;
  color: #007bff;
}

.buttons {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.login-button,.login_reg_btn {
  flex-grow: 1;
  padding: 15px 25px;
  font-size: 21px;
  border-radius: 100px;
  background: #007BFF;
  color: #fff;
  border: 2px solid #007bff;
  /*color: #007bff;*/
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.1s linear;
  cursor: pointer;
}

/*.login-button:hover,.login_reg_btn:hover*/
/*{*/
/*    background: #007BFF;*/
/*    color: #fff;*/
/*}*/



.header_btns
{
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_btns a
{
  font-size: 18px;
  padding: 10px 15px;
  border-radius: 50px;
  text-wrap: nowrap;
}

.header_btns a.header__btn
{
  color: #fff;
  background: #f18d16;
}
.icons_nav_items
{
    display: none;
}
.mobile_logo
{
    display: none;
}
.nav_close
{
  display: none;
}

.active_nac_tab
{
    color: #e64624 !important;
}

.active_menu_list
{
  left: 0 !important;
}

@media screen and (max-width: 767px) {
  .client_name_box
  {
    display: none;
  }
}

@media (max-width: 480px) {
  header
  {
    padding: 0;
  }
  .mobile_logo
  {
    display: block;
  }
  .menu_icon
  {
    display: block;
  }
    .icons_nav_items
    {
        display: block;
    }
  .card {
    width: 100%;
    max-width: 400px;
  }
  .nav_close
  {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 999;
    border: 0;
    color: #dcdcdc;
    font-size: 24px;
    background-color: transparent;
  }
  .mobile_logo
  {
    display: block;
    width: 100%;
    max-width: 175px;
    margin-left: 25px;
    margin-top: 10px;
  }
  .mobile_logo img
  {
    width: 100%;
  }
  .nav_items
  {
    width: 300px;
    height: 100vh;
    position: absolute;
    top: 0;
    left: -100%;
    background-color: #fff;
    border-radius: 0 25px 25px 0;
    border: 3px solid rgba(0, 0, 0, 0.20);
    transition: all 0.3s cubic-bezier(0, 0, 0, 0.99);
    box-shadow: 10px 0px 20px 0px rgba(0, 0, 0, 0.10);
  }
  .profile_images_header
  {
    width: 100%;
    margin-top: 50px;
    padding: 10px 25px;
    display: flex !important; 
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  .client_name_details_box span
  {
    display: block;
    padding: 5px 0;
  }
  .profile_images_header .client_logo
  {
    width: 60px;
    height: 60px;
    border: 2px solid #eee;
    border-radius: 100px;
    background-color: #f18d16;
    color: #fff;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    overflow: hidden;
  }
  .profile_images_header .client_logo img
  {
    width: 100%;
  }
  .nav_items ul
  {
    flex-direction: column;
    justify-content: flex-start;
    padding: 50px 25px;
  }

  .nav_items .lineBarStyle
  {
    width: 10px;
    height: 50%;
    background: #E74624;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
  }

  .nav_items ul li
  {
    width: 100%;
    padding: 15px 0;
    border: 3px solid #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }
  .nav_submenu
  {
    left: 50%;
  }

  .nav_submenu ul
  {
    padding: 0;
  }
}


/*  */
.main_home_page_main_container
{
  width: 100%;
}

.main_home_page_main_box
{
  width: 100%;
  padding: 100px 125px;
}

.main_home_page_main_heading
{
  font-weight: 400;
}

.homepagecards_main_box
{
  width: 100%;
  padding: 25px 0;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 18px;
}

.homepagecard_box
{
  flex: 0 0 calc(33% - 10px) !important;
  min-height: 200px;
  position: relative;
}


.homepagecard_box>h3
{
  width: 85%;
  font-size: 28px;
}
.homepagecard_box>p
{
  width: 85%;
  font-size: 18px;
  padding-top: 10px;
}

.homepagecard_cta_btn
{
  padding: 15px;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 1px solid #007BFF;
  background: #fff;
  color: #007BFF;
  border-radius: 25px 0 25px 0;
  transition: all 0.1s ease-in;
}


.homepagecard_cta_btn:hover
{
  background: #007BFF;
  color: #fff;
}

@media screen and (max-width: 1024px)
{
  .main_home_page_main_box
  {
    padding: 100px 50px;
  }  
  .homepagecard_box 
  {
    flex: 0 0 calc(50% - 10px) !important;
  }
}


@media screen and (max-width: 767px)
{
  .main_home_page_main_box
  {
    padding: 100px 25px;
  }  
  .homepagecard_box 
  {
    flex: 0 0 calc(100% - 10px) !important;
  }
}



/* Fixed Icon */
.fixed_support_cta_btn
{
  width: 50px;
  height: 50px;
  border-radius: 100%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  background: #f18d16;
  color: #fff;
  position: fixed;
  bottom: 25px;
  right: 25px;
}



/* Content Box */
.main_data_box_container
{
  display: none;
  width: 100%;
}

.main_data_box
{
  width: 100%;
  height: 100vh;
  padding: 60px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #f7f7f7;
  overflow: hidden;
}

.main_data_box .status_list_box
{
  min-width: 250px;
  height: 100%;
  padding: 10px;
  background: #f5f5f5;
  transition: all 0.3s linear;
  overflow-y: auto;
}

.main_data_box .status_list_box ul
{
  list-style: none;
}

.main_data_box .option_status_box
{
  margin: 30px 0;
  background: #dcdcdc;
  border-radius: 25px;
  padding: 10px 10px;
  padding-bottom: 18px;
}


.main_data_box .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;
}

.main_data_box .status_list_box ul li:hover{
  background-color:#ffffff;
}

.main_data_box .status_list_box ul li span
{
  font-size:16px;
  font-weight:300;
}

.newleads_list
{
  padding: 15px 30px!important;
}

.active_tab
{
  background-color: rgb(230, 70, 36) !important;
  color: #fff;
}

/* Right Main data Style */
.data_main_box
{
  flex-grow: 1;
  height: 100%;
}


.show_all_data_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;
  background: #f5f5f5;
}

.footer
{
  padding: 20px;
  text-align: center;
}
::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
  background-color: #F5F5F5;
  border-radius: 10px;
}

::-webkit-scrollbar
{
  width: 5px;
  background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb
{
  border-radius: 10px;
  background-color: #11143C;
}

/* Card Loader */
.card_loading
{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  background: #f5f5f5;
}
.cardloader {
  padding: 20px;
  width: 100%;
  /* min-width: 300px; */
  max-width: 310px;
  margin: 10px auto;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);

}

.cardloader img {
  max-width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}


.cardloader .image,
.cardloader h2,
.cardloader p {
  margin-top: 10px;
  background: #eee;
  background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
  border-radius: 5px;
  background-size: 200% 100%;
  animation: 1.5s shine linear infinite;
}

.cardloader .image {
  height: 200px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.cardloader h2 {
  height: 30px;
}

.cardloader p {
  height: 70px;
}

@keyframes shine {
  to {
    background-position-x: -200%;
  }
}


.blur-text
{
  filter: blur(3px);
}

.new_view_more
{
  padding: 10px 15px;
  background-color: #ffffff45;
  border: none;
  color: #007bff;
  font-weight: 400;
  border-radius: 25px;
  border: 2px solid #007bff;
  cursor: pointer;
}

.renew_plan_box button
{
  border-radius: 50px;
  background-color: #ffffff45;
  font-size: 16px;
  padding: 10px 20px;
  border: 2px solid #11143C;
  color: #11143C;
  cursor: pointer;
  transition: all 0.1s linear;
}

.renew_plan_box button:hover
{
  color: #FFF;
  background: #11143C !important;
}


.renew_plan_box button:hover
{
  background-color: #fff;
}
.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;
}

.card_top_icons_box
{
  width: auto !important;
  position: absolute;
  top: 5px;
  right: 10px;
}
.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;
}

.card_box .card_date_time
{
  font-size: 12px;
  margin-right: 35px;
  text-transform: uppercase;
  color: #757575;
}

.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;
}

.card_box .client_name span
{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.2em;
  max-height: 2.4em;
}

.card_box .client_service
{
    font-size: 14px;
    line-height: 18px;
    /* margin-bottom: -5px; */
    padding-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card_box .client_btns
{
  padding-top: 10px;
}

.card_box .client_btns button
{
  border-radius: 50px;
  font-size: 16px;
  padding: 10px 20px;
  transition: all 0.1s linear;
}

.card_box:hover .client_btns button
{
  background: #007bff;
  color: #FFF;
  border-color: #007bff;
}

.card_box .client_name b
{
  display: block;
  width: 2px;
  height: 30px;
  background-color: lime;
  padding: 0px 2px;
  margin-right: 25px;
  border-radius: 0px;
}

.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;
}

.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;
  text-transform: capitalize;
}

.card_box ul
{
  list-style: none;
}

.New_leads_loader{
  display: inline-block;
  animation: rotate 2s linear infinite;
}

.this_leads_cradit_score
{
  
  position: absolute;
  bottom: 10px;
  right: 18px;
}

.totalNewLeadsAccess
{
  display: none;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 0;
  border-radius: 5px;
  position: absolute;
  top: 12px;
  right: 40px;
}

.accessbox
{
  width: 5px;
  height: 10px;
  margin: 0 1px;
  border: 1px solid #11143C;
  border-radius: 10px;
}

.activeAccess
{
  background: #11143C;
}

@keyframes rotate {
 0%{
    transform: rotate(0deg);
   }
100%{
    transform: rotate(360deg);
   }
}


.card_box div
{
  padding: 5px 0;
  font-size: 14px;
}

.icons_box
{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
}

.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;
}

.icons_box .icons:hover
{
  background-color: #007bff;
  color: white;
}
.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;
}

.pagination
{
  width: 100%;
  padding: 25px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination_link,
.pagination_link_status,
.pagination_link_search,
.pagination_link_client,
.pagination_link_city_filter,
.pagination_link_client_need,
.pagination_link_credithistory,
.pagination_link_activitysearch,
.pagination_link_leadsearch,
.pagination_link_active_plan_link,
.pagination_link_noactive_plan_link
{
  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);
}


.active_select_option
{
  display: block;
}

@media screen and (max-width:2560px)
{
  .card_box
  {
    flex: 0 0 calc(15.5% - 10px);
  }
}

@media screen and (max-width:1540px)
{
  .card_box
  {
    flex: 0 0 calc(24.5% - 10px);
  }
}

@media screen and (max-width:1024px)
{
  .card_box
  {
    flex: 0 0 calc(31.5% - 10px);
  }
}

@media screen and (max-width:768px)
{
  .card_box
  {
    flex: 0 0 calc(49.5% - 10px);
  }
}

@media screen and (max-width:425px)
{
  .card_box
  {
    flex: 0 0 calc(99.5% - 10px);
    margin: 0 auto;
  }
}

@media screen and (max-width:767px)
{
  .header_box
  {
    padding: 10px 10px;
  }
  .heading
  {
    width: auto;
  }
  .menu_icon
  {
    display: flex;
  }
  .main_data_box
  {
    height: 100vh;
    flex-wrap: wrap;
    background-color: unset;
  }

  .nav_items ul li.user_id
  {
    display: unset !important;
  }

  .right_login_status .user_id
  {
    display: none;
  }

  .filter_icon
  {
    padding: 5px 15px;
    background-color: rgb(230, 70, 36);
    color: #fff;
    display: block !important;
    border-radius: 25px 0 0 25px;
    position: absolute;
    top: 200px;
    right: 0;
    font-size: 22px;
    z-index: 998;
  }
  
  .leads_data_filter
  {
    background: #fff;
    padding: 15px 10px;
    position: absolute;
    top: 230px;
    right: -150%;
    z-index: 999;
    flex-direction: column;
    row-gap: 10px;
    width: 250px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-radius: 25px 0 0 25px;
    transition: all 0.1s linear;
  }
  .active_Filter
  {
    right: 0;
  }
  .leads_data_filter .filter_input,.date_filter_details_box
  {
    width: 100%;
  }
  .main_data_box .status_list_box
  {
    width: 100%;
    padding: 5px 10px;
    height: auto;
    flex-basis: unset;
    overflow-x: auto;
    background-color: unset;
  }
  .main_data_box .status_list_box ul
  {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .main_data_box .newleads_list
  {
    margin-bottom: 0px;
    padding: 7px 10px!important;
  }

  .main_data_box .status_list_box ul li
  {
        font-size: 11px;
        text-align: center;
        margin-top: 0;
        white-space: nowrap !important;
        padding: 7px 13px;
        border-radius: 35px;
  }
  .main_data_box .status_list_box ul li span
  {
      font-size: 11px;
  }
  .show_all_data_box
  {
    max-height: 90%;
    padding: 20px;
  }
  
  .main_data_box .option_status_box
  {
    margin: 0;
    background: unset;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
    padding: 7px 0;
  }
  .client_forms_container input, select, textarea
  {
      font-size: 21px;
  }
  .user_creadits
  {
    border: 1px solid #007bff;
    font-size: 11px;
  }
}


/* Forgot Password */
/* ==================================== */

.login_registration_system_main_box
{
  width: 100%;
  padding: 50px 0;
}

.main_form_container
{
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  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;
}

.main_form_container .logo
{
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

.main_form_container form 
{
  width: 100%;
}

.main_form_container form .form_heading
{
  width: 100%;
  padding: 5px 0;
  text-align: center;
}

.main_form_container form .input_main_box
{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  padding: 5px 0;
}

.main_form_container form .input_main_box .input_main_divider
{
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.main_form_container form .input_main_box .input_main_divider label
{
  width: 100%;
  padding: 5px 0;
}

.main_form_container form .input_main_box .input_main_divider input,select,textarea
{
  width: 100%;
  padding: 15px;
  border-radius: 25px;
  border: 1px solid #999;
  outline: none;
}

.main_form_container form .input_main_box .input_main_divider .password_input_container
{
  position: relative;
  width: 100%;
}

.main_form_container form .input_main_box .input_main_divider .showpassword
{
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}


.main_form_container form .forgotpassword_btn
{
  padding: 5px 0;
}

.main_form_container form .form_button
{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main_form_container form .form_button 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;
  /* margin-top: 20px; */
  cursor: pointer;
}

.main_form_container form .reg_form_open_btn,.main_form_container form .login_form_open_btn
{
  width: 100%;
  padding: 5px 0;
  text-align: center;
}

.main_form_container form .reg_form_open_btn span,.main_form_container form .login_form_open_btn span
{
  color: #007BFF;
  cursor: pointer;
}



/* Model Main Style */
.model
{
  width: 100%;
  position: absolute;
  z-index: 999;
  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;
    animation: slideInRight 0.3s ease-in-out forwards;
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(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;
}



.questions_answer_data_container
{
  width: 100%;
  margin-top: 25px;
}
.questions_answer_data_container h2
{
  font-size: 18px;
}

.questions_answer_data_box
{
  width: 100%;
}

.questions_answer_box_card
{
  width: 100%;
  padding: 15px 0;
}

.questions_answer_box_card .question_box
{
  width: 100%;
  font-size: 16px;
  color: #007BFF;
}

.questions_answer_box_card .answer_box
{
  width: 100%;
  padding: 5px 0;
}


.notification_new_leads_container
{
  position: fixed;
  right: 20px;
  bottom: 20px;
}

.notification_box
{
  max-width: 300px;
  padding: 15px 30px;
  margin: 10px 0;
  font-size: 18px;
  background-color: rgb(247, 187, 6);
  border-radius: 15px;
}


/* Admin Leads_page */
.quetions_answer_leads_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;
}

.quetions_answer_card_leads
{
  padding: 15px 0;
  font-size: 18px;
}

.quetions_answer_card_leads .question_leads
{
  padding: 5px 0;
}

.quetions_answer_card_leads .answer_leads
{
  font-size: 14px;
  color: #007bff;
}


@media screen and (max-width: 767px)
{
  .quetions_answer_leads_box
  {
    flex: 0 0 calc(100% - 10px);
    margin: 0 auto;
  }

  .model_main_container .client_details div,
  .model_main_container .custom_radio span,
  .model_main_container form,
  .model_main_container form input,
  .model_main_container form textarea,
  .model_input_box
  {
    font-size: 13px;
  }

  .login-button, .login_reg_btn
  {
    font-size: 18px;
  }
}

/* ball_icon_main */
.ball_icon_main
{
  font-size: 20px;
  cursor: pointer;
}

/* missing_followup_date_popup */

.missing_followup_date_popup
{
  width: 100%;
  height: 100lvh;
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999;
}
.popup_bg_missing_followup_date
{
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.missing_followup_date_popup_box
{
  width: 98%;
  max-width: 750px;
  max-height: 500px;
  overflow-y: auto;
  background-color: #fff;
  border-radius: 25px;
  padding: 35px 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cross_icons_missing_followup_date
{
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}


.missing_followup_date_popup_content
{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}

.missing_follow_data_card
{
  width: 100%;
  max-width: 228px;
  border: 1px dashed #e64624;
  border-radius: 25px;
  padding: 15px;
}

.misisng_leads_name,
.misisng_leads_data,
.misisng_leads_status
{
  display: block;
  width: 100%;
  padding: 5px 0;
}

@media screen and (max-width: 767px)
{
  .missing_follow_data_card 
  {
    max-width: 170px;
  }
  .model_main_container
  {
      width: 75%;
  }
}