* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Lato font  */
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

/* inter font  */

@font-face {
  font-family: "inter";
  src: url("../fonts/Inter.ttf") format("truetype");
}

:root {
  /* colors  */
  --primary-color: #065ca9;
  --light-primary-shade: rgba(187, 218, 232, 0.5);
  --dark-theme: #0f172a;
  --hover-btn: #c3dcf0;
  --neutral-primay: #005399;
  --whiteFC: #fcfcfc;
  --white-F7: #f7f7f7;
  --whiteEB: #ebebeb;
  --white: #ffffff;
  --text-5C: #5c5c5c;
  --text-85: #858585;
  --Icon-color: #848484;
  --text-dark: #121212;
  --text-dark2: #141414;
  --login-border: #e5e5e5;
  --login-bg: #c2c2c21a;
  --login-shadow: 0px 16px 30px 18px #ffffff4d;
  --red: #ff0000;
  --light-red-shade: rgba(219, 172, 171, 0.5);
  --Neutral-background: #f2f6fa;
  --deal-color: #afd6e8;
  /* --deal-color: #4FC3F7; */
  --progress-color: #fee3bb;
  /* --progress-color: #FFA726; */
  --hold-color: #cecece;
  /* --hold-color: #BDBDBD; */
  --complete-color: #ccf0ce;
  /* --complete-color: #66BB6A; */
  --cancelled-color: #f2d2d1;
  /* --cancelled-color: #EF5350; */
  --Neutral-Separator: #ebebeb;
  --Menu-Separator: #c2c2c2;
  --Button-secondary: #d16f15;
  --Button-soft-color: #ccddeb;
  --Neutral-Success: #00cc29;
  --whiteFA: #fafafa;
  --active-bg: #f0f5fa;
  --Button-soft-color: #ccddeb;
  --light-grey-bg: #f7f9fb;

  --green-donutchart: #3ac977;
  --lightgreen-donutchart: #baedbd;
  --black-donutchart: #000;
  --blue-donutchart: #0d99ff;
  --bluedark-donutchart: #95a4fc;

  --black-100: #1c1c1c;
  --Neutral-Gray-100: #edf2f7;
  --common-pupbg: rgba(0, 0, 0, 0.3);
  --button-focused: #00427a;
  --chart-border: #e2e8f0;
  --charcoal-blue: #314158;
  --storm-blue: #1d293d;

  --lato: "Lato", sans-serif;
  --inter: "inter", sans-serif;
  --transtion: all 0.5s ease-in-out;
}

body {
  color: var(--text-dark2);
  font-family: var(--lato);
  font-weight: 400;
  font-size: 1rem;
  /* background-color: #FAFAFA; */
  background-color: var(--white);
}

/* Works in Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) #e9e7e7;
  scroll-behavior: smooth;
}

/* The whole scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

/* The track (background) */
::-webkit-scrollbar-track {
  background: #e9e7e7;
}

/* The handle (thumb) */
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 6px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
}

.pl_pr {
  padding: 0 clamp(16px, 2.5vw, 32px);
}

.outer_padding {
  padding: 16px clamp(16px, 2.5vw, 32px);
}

.del:hover path {
  stroke: var(--red) !important;
}

/* ++++++++ table status color ++++++++ */
.cursor-pointer {
  cursor: pointer;
}

.deal_state {
  background-color: var(--deal-color);
  /* color: var(--text-dark); */
  color: #009bba;
  font-weight: 600;
  text-align: center;
  padding: 5px 12px;
  font-size: 14px;
  width: max-content;
  border-radius: 12px;
}

.progress_state {
  background-color: var(--progress-color);
  /* color: var(--text-dark); */
  color: #c57500;
  font-weight: 600;
  text-align: center;
  padding: 5px 12px;
  font-size: 14px;
  width: max-content;
  border-radius: 12px;
}

.hold_state {
  background-color: var(--hold-color);
  /* color: var(--text-dark); */
  color: var(--text-5C);
  font-weight: 600;
  text-align: center;
  padding: 5px 12px;
  font-size: 14px;
  width: max-content;
  border-radius: 12px;
}

.complete_state {
  background-color: var(--complete-color);
  /* color: var(--text-dark); */
  color: #007c19b2;
  font-weight: 600;
  text-align: center;
  padding: 5px 12px;
  font-size: 14px;
  width: max-content;
  border-radius: 12px;
}

.cancelled_state {
  background-color: var(--cancelled-color);
  /* color: var(--text-dark); */
  color: #e87f7f;
  font-weight: 600;
  text-align: center;
  padding: 5px 12px;
  font-size: 14px;
  width: max-content;
  border-radius: 12px;
}

.half_day {
  background-color: #fee3bb;
  color: var(--text-dark);
  font-weight: 600;
  text-align: center;
  padding: 5px 12px;
  font-size: 14px;
  width: max-content;
  border-radius: 12px;
  color: #c57500;
}

.red {
  color: var(--red);
}

.present {
  background-color: #04e39180;
}

.half-day {
  background-color: #dae51480;
}

.absent {
  background-color: #ff0a0a80;
}

.off_bg {
  background-color: #f6f6f6;
}

.user_active {
  display: flex;
  width: 80px;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 124, 25, 0.7);
  background: #ccf0ce;
  color: rgba(0, 124, 25, 0.7);
  font-weight: 700;
}

.user_inactive {
  display: flex;
  width: 80px;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  border-radius: 12px;
  border: 1px solid rgba(92, 92, 92, 0.7);
  background: #cecece;
  color: rgba(0, 124, 25, 0.7);
  font-weight: 700;
  color: var(--text-5C);
  text-transform: capitalize;
}

.success_status {
  font-size: 14px;
  color: var(--whiteFC);
  font-weight: 700;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 12px;
  background: var(--Neutral-Success, #00cc29);
}

.not-available {
  display: flex;
  width: 94px;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background: #8b969f;
  font-size: 14px;
  color: #f5f5f5;
  font-weight: 700;
}

.table_bold_Text {
  font-size: 14px;
  color: var(--text-dark2);
  font-weight: 800;
  font-family: var(--lato);
}

/* custom container  */
.l_container {
  width: 99%;
  margin: 0 auto;
  padding: 0 15px;
}

@media screen and (min-width: 1900px) {
  .l_container {
    max-width: 1840px;
  }
}

@media screen and (max-width: 1800px) {
  .l_container {
    max-width: 1740px;
  }
}

@media screen and (max-width: 1700px) {
  .l_container {
    max-width: 1640px;
  }
}

@media screen and (max-width: 1600px) {
  .l_container {
    max-width: 1540px;
  }
}

@media screen and (max-width: 1500px) {
  .l_container {
    max-width: 1440px;
  }
}

@media (max-width: 768px) {
  .l_container {
    width: 98%;
    padding: 0 8px;
  }
}

.ck.ck-editor__main>.ck-editor__editable:not(.ck-focused),
.ck.ck-toolbar.ck-toolbar_grouping>.ck-toolbar__items {
  background: var(--whiteFA);
}

/* ======================
login css starts
====================== */
.login_section {
  padding: 24px 0;
}

.login_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 50px;
}

.login_slider_img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 920px;
  width: 100%;
}

.login_slider_img .img_text {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 20px;
}

.login_slider_img .img_text h3 {
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 800;
  /* color: var(--white); */
  color: var(--text-dark);
}

.login_slider_img .img_text p {
  /* color: var(--white); */
  color: var(--text-dark);
  font-weight: 500;
  font-size: clamp(16px, 1vw, 18px);
}

.login_slider_img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  border-radius: 20px;
}

.login_right {
  /* background-color: var(--login-bg); */
  padding: clamp(24px, 2.5vw, 44px);
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 25px;
  height: 82%;
  gap: 24px;
}

.login_right .c-logo {
  width: 180px;
  object-fit: contain;
}

.login_right .flag {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  background-color: var(--Neutral-background);
  border: 1px solid var(--login-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  flex-shrink: 0;
}

.login_right .flag img {
  width: 34px;
  object-fit: contain;
}

.login_right form input {
  padding: 9px 16px;
  width: 100%;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  background-color: transparent;
  outline-color: #85858580;
}

.login_right form input::placeholder {
  color: var(--text-85);
}

.login_right form {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.login_right form label {
  color: var(--text-dark);
  padding-bottom: 8px;
}

.login_right form label span {
  color: var(--red);
}

.login_right form a.login,
.login_right form button {
  width: 100%;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--neutral-primay);
  color: var(--white);
  font-weight: 500;
  border-radius: 50px;
  border: 1px solid var(--neutral-primay);
  transition: all 0.5s ease-in-out;
}

.login_right form a.login:hover,
.login_right form button:hover {
  color: var(--primary-color);
  background-color: transparent;
}

.login_right h2 {
  font-size: clamp(22px, 2vw, 36px);
  font-weight: 800;
}

.login_right p {
  color: var(--text-5C);
  font-size: clamp(16px, 1vw, 17px);
  font-weight: 500;
}

.forgotpassword {
  text-align: center;
  position: relative;
  color: var(--primary-color);
  font-weight: 600;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.forgotpassword::before {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0%;
  height: 1px;
  border-radius: 2px;
  background-color: var(--neutral-primay);
  transition: all 0.5s ease-in-out;
}

.forgotpassword:hover:before {
  width: 100%;
}

.mySwiperLogin .swiper-pagination-bullet {
  background-color: #5c5c5c80;
  /* background-color: #FFFFFF80; */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  width: 54px;
  height: 8px;
  opacity: 1;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.mySwiperLogin .swiper-pagination-bullet-active {
  /* background-color: var(--white); */
  background-color: var(--text-5C);
}

.mySwiperLogin .swiper-pagination {
  bottom: 20px;
  left: 20px;
  width: max-content;
}

.input_password {
  position: relative;
}

.input_password i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: var(--text-85);
  font-size: 20px;
  cursor: pointer;
}

.back_login_btn,
.formmax {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.back_login_btn a {
  background-color: var(--Neutral-background);
  border: 1px solid var(--login-border);
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  border-radius: 20px;
  width: max-content;
  transition: all 0.5s ease-in-out;
}

.back_login_btn a:hover {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.send_mail {
  max-width: 250px;
  width: 100%;
}

/* ======================
login css ends
====================== */

/* ######################################
SIDE BAR CSS STARTS 
###################################### */
.sidebar_overlay_bg {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

.sidebar_close {
  font-size: 26px;
  cursor: pointer;
  display: none;
}

.side_bar_menu_btn {
  font-size: 28px;
  color: var(--text-dark2);
  cursor: pointer;
  display: none;
}

.app_side_bar {
  width: 280px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: var(--dark-theme);
  height: 100vh;
  height: 100dvh;
  color: var(--whiteFC);
  font-weight: 500;
  transition: all 0.5s ease-in-out;
}

.side_bar_logo {
  padding: 16px clamp(16px, 2vw, 24px);
  border-bottom: 1px solid var(--whiteEB);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 280px;
  background-color: var(--dark-theme);
}

.side_bar_logo img {
  width: 100px;
  height: 60px;
  object-fit: contain;
}

.admin_content {
  padding: clamp(16px, 2vw, 21px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 280px;
  height: calc(100% - 100px);
  position: fixed;
  /* border: 2px solid red; */
  top: 90px;
  padding-bottom: 55px;
  overflow-y: auto;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.admin_content::-webkit-scrollbar {
  display: none;
}

.admin_dash_cat h6 {
  color: var(--text-85);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  margin: 0;
  margin-bottom: 5px;
}

/* +++++++++ reset accordion css ++++++++++ */
.accordion-button {
  box-shadow: none;
  border: none;
  background-color: transparent;
  color: var(--whiteFC);
  border-radius: 0;
}

.accordion-button:focus {
  box-shadow: none;
  border-radius: 0;
}

.accordion,
.accordion-item {
  background-color: transparent;
  border: none;
  border-radius: 0;
}

.admin_content .accordion-button::after {
  content: "\ea4e";
  background-image: none !important;
  font-family: "remixicon";
  font-size: 20px;
}

.admin_content .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-button:not(.collapsed) {
  background: var(--hover-btn);
  color: var(--primary-color) !important;
  box-shadow: none;
  font-weight: 600;
}

.admin_dash_btns .accordion-button:not(.collapsed) svg path {
  stroke: var(--primary-color);
}

/* .admin_dash_btns .accordion-button:not(.collapsed) svg path {
    fill: var(--primary-color);
} */

/* ---------- reset accordion css end ----------- */

.admin_dash_btns .menu-item {
  display: flex;
  padding: 12px;
  align-items: center;
  gap: 8px;
  transition: var(--transtion);
  border-radius: 8px !important;
  font-size: 14px;
}

.admin_dash_btns .menu-item:hover {
  background: var(--hover-btn);
  color: var(--primary-color);
}

.admin_dash_btns .menu-item svg path {
  stroke: var(--whiteFC);
  transition: all 0.5s ease-in-out;
}

#account path {
  stroke: var(--whiteFC);
  transition: all 0.5s ease-in-out;
}

#rep path {
  stroke: var(--whiteFC);
  transition: all 0.5s ease-in-out;
}

.admin_dash_btns .menu-item:hover svg path {
  stroke: var(--primary-color);
}

/* .admin_dash_btns .menu-item:hover svg path {
    fill: var(--primary-color);
} */

.admin_dash_btns .menu-item.active {
  /* background: var(--hover-btn); */
  background: var(--active-bg);
  font-weight: 700;
  color: var(--primary-color);
}

.admin_dash_btns .menu-item.active svg path {
  stroke: var(--primary-color);
}

/* .admin_dash_btns .menu-item.active svg path {
    fill: var(--primary-color);
} */

.admin_dash_btns .accordion .accordion-body {
  padding: 0;
  padding-left: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin_dash_btns .accordion .accordion-body .menu-item {
  color: var(--whiteFC);
}

.admin_dash_btns .accordion .accordion-body .menu-item:hover {
  color: var(--primary-color);
  background-color: var(--white);
}

.admin_dash_btns .accordion .accordion-body .menu-item.active {
  background-color: var(--white);
  color: var(--primary-color);
}

/* side bar bootom css  */
.app_side_bar_content {
  height: 100%;
  width: 100%;
  position: relative;
}

.admin_botom_drop_down_container {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 16px clamp(16px, 2vw, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background-color: var(--dark-theme);
  z-index: 20;
}

.admin_botom_drop_down_container .common_div {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.admin_botom_drop_down_container .common_popup_bg {
  padding: 16px 8px;
  border-radius: 12px;
  background-color: var(--white);
  width: 230px;
}

.user_dropdown_wrapper {
  position: absolute;
  bottom: 60px;
  left: 62px;
  z-index: 100;
  transform: translateY(-16px);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.user_dropdown_wrapper .shape {
  position: absolute;
  bottom: -15px;
  left: 22px;
}

.activity_dropdown_wrapper {
  position: absolute;
  bottom: 60px;
  left: 50px;
  z-index: 100;
  transform: translateY(-16px);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.activity_dropdown_wrapper.active,
.user_dropdown_wrapper.active {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.activity_dropdown_wrapper .shape {
  position: absolute;
  bottom: -15px;
  left: 105px;
}

.admin_botom_drop_down_container .common_popup_bg .links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--neutral-primay);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--lato);
}

.admin_botom_drop_down_container .common_popup_bg .links a:hover {
  background-color: var(--active-bg);
  border-radius: 5px;
}

/* .admin_dash_btns .accordion.inner_accordion .accordion-body {
    padding-bottom: 0;
    padding-left: 0;
} */

.left_arrow_container {
  position: relative;
  cursor: pointer;
}

.left_arrow_container i {
  font-size: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 13px;
}

/* ******* side bar  inner dropdown css ********  */
.common_inner_dropdown_container {
  background-color: var(--whiteFA);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 8px;
  color: var(--neutral-primay);
  width: 100%;
}

.account_group {
  position: absolute;
  right: -200px;
  top: 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  top: 0;
  z-index: 50;
}

.left_arrow_container.active i {
  transform: translateY(-50%) rotate(90deg);
}

/* .account_group {
    position: fixed;
    top: 0;
    left: 280px;
    z-index: 9999;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    display: none;
    width: max-content;
} */

/* ******* side bar  inner dropdown css ends********  */

/* ######################################
SIDE BAR CSS ENDS
###################################### */

/**** admin top header css starts  */
.admin_right_content {
  width: calc(100% - 280px);
}

.chart_bread_crump .bread_crump_content a {
  color: var(--text-5C);
  font-weight: 500;
}

.chart_bread_crump .bread_crump_content a:hover {
  color: var(--primary-color);
}

.chart_bread_crump .bread_crump_content {
  font-size: 14px;
}

.chart_bread_crump .bread_crump_content p,
.chart_bread_crump .bread_crump_content span {
  margin: 0;
  color: var(--text-dark);
  font-weight: 600;
}

.chart_bread_crump .icon {
  display: flex;
  padding: 4px;
  align-items: center;
  gap: 10px;
  border-radius: 24px;
  background: var(--Neutral-background, #f2f6fa);
}

.admin_top_header {
  padding: 10px clamp(16px, 2.5vw, 32px) 10px clamp(16px, 2.5vw, 32px);
  /* border-bottom: 1px solid var(--Icon-color, #848484); */
  border-bottom: 1px solid var(--Menu-Separator);
  position: sticky;
  top: 0;
  background-color: var(--white);
  z-index: 10;
}

.admin_profile_container .name_tag {
  display: flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 600;
  justify-content: center;
  align-items: center;
  background: var(--Neutral-background, #f2f6fa);
}

.admin_profile_container .bell {
  display: flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 600;
  justify-content: center;
  align-items: center;
  background: var(--Neutral-background, #f2f6fa);
  cursor: pointer;
}

.message_bx {
  display: flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 600;
  justify-content: center;
  align-items: center;
  background: var(--Neutral-background, #f2f6fa);
  cursor: pointer;
}

.admin_profile_container .name_tag:hover,
.admin_profile_container .bell:hover {
  background-color: var(--hover-btn);
}

/*** admin top header css ends */

/* +++++++++ admin list heading css starts ++++++++++ */

.admin_list_heading .left_heading h3 {
  color: var(--text-dark, #141414);
  font-family: var(--lato);
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.admin_list_heading .left_heading p {
  color: var(--text-dark2, #141414);
  font-family: var(--inter);
  /* font-size: clamp(14px, 1vw, 16px); */
  font-size: 14px;
  margin: 0;
}

.right_fil_div .search,
.search_component .search {
  max-width: 245px;
  position: relative;
}

.right_fil_div .search svg,
.search_component .search svg {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}

.right_fil_div .search input,
.search_component form .search input {
  width: 100%;
  outline: none;
  padding: 8px 12px 8px 42px;
  border-radius: 50px;
  border: 1px solid var(--whiteEB);
  background: var(--whiteFA);
  font-size: 14px;
}

.right_fil_div .search input::placeholder,
.search_component form .search input::placeholder {
  color: var(--text-dark);
}

.right_fil_div .filter {
  padding: 8px 12px 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border-radius: 50px;
  border: 1px solid var(--whiteEB);
  font-size: 14px;
  width: max-content;
}

.right_fil_div a,
.add_expenses,
.add_project_inner_form a,
.add_purchase_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  gap: 8px;
  width: max-content;
  font-size: 14px;
  background-color: var(--primary-color);
  border-radius: 50px;
  color: var(--white);
  border: 1px solid var(--primary-color);
}

.right_fil_div a:hover,
.add_expenses:hover,
.add_project_inner_form a:hover,
.add_purchase_btn:hover {
  color: var(--primary-color);
  background-color: transparent;
}

.right_fil_div a:hover svg path,
.add_expenses:hover svg path,
.add_project_inner_form a:hover svg path,
.add_purchase_btn:hover svg path {
  stroke: var(--primary-color);
}

.activity_list_dropdown a {
  background-color: transparent;
  color: var(--primary-color);
  width: 100%;
  border: none;
  border-radius: 0;
}

/* ================
 COMMON TABLE CSS 
 =================== */
.common_table .table thead tr th,
.purchase_data_table .table thead tr th {
  /* background-color: var(--white-F7); */
  background: var(--Button-soft-color, #ccddeb);
  /* padding: 16px; */
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--text-dark);
  /* border-right: 1px solid var(--login-border); */
  /* border: none; */
  height: 42px;
}

.common_table .table tr {
  border-top: 1px solid var(--Neutral-Separator, #e9eaeb);
  border-bottom: 1px solid var(--Neutral-Separator, #e9eaeb);
}

.common_table .table tbody tr:nth-child(even) {
  background-color: var(--white-F7);
}

.common_table .table tbody tr td,
.common_table .table tbody tr th {
  color: var(--text-dark2, #141414);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 16px;
  height: 52px;
  background-color: transparent;
  vertical-align: middle;
  white-space: nowrap;
}

.row_per_page span {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 400;
}

.row_per_page select {
  border: 1px solid var(--Neutral-Separator, #ebebeb);
  border-radius: 5px;
  padding: 2px;
  outline: none;
}

.pagination_number {
  height: 30px;
  width: 30px;
  border: 1px solid var(--Neutral-Separator, #ebebeb);
  background-color: transparent;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
}

.pagination_number.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.pagination_number:hover {
  color: var(--white);
  background-color: var(--primary-color);
}

.rest_nunm_list {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 400;
}

.rest_nunm_list span {
  font-weight: 600;
}

/* ++++++++ table status color ends ++++++++ */

.table_actions a:first-child:hover svg path {
  stroke: var(--primary-color);
}

.table_actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.table_actions a:nth-child(3):hover svg path {
  stroke: var(--red);
}

.table_actions a:nth-child(2):hover svg path {
  stroke: var(--primary-color);
}

/* =================
 COMMON TABLE CSS ENDS
 =================== */

/***** admin list heading css ends  ++++++++++ */

/* ========== ADD PROJECT PAGE CSS STARTS =========== */

.form_input input,
.form-select {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--whiteEB, #ebebeb);
  padding: 8px 16px;
  height: 42px;
  outline-color: var(--login-border) !important;
  box-shadow: none;
  background: var(--whiteFA);
}

.form-select:focus {
  box-shadow: none;
  outline: 1px solid var(--login-border) !important;
  border-color: var(--login-border);
}

.form_input input::placeholder {
  color: var(--text-85);
}

.form_input label {
  color: var(--text-dark2);
  font-weight: 500;
  font-size: 14px;
}

.form_input label span {
  margin-left: 5px;
  color: var(--red);
}

.form_input .flatpickr-time {
  max-height: 60px;
}

/* Previous button */
.ui-datepicker .ui-datepicker-prev span {
  background: url("../images/icons/arrow-left.svg") no-repeat center center !important;
  width: 16px;
  height: 16px;
  display: inline-block;
  border: none;
}

/* Next button */
.ui-datepicker .ui-datepicker-next span {
  background: url("../images/icons/arrow-left.svg") no-repeat center center !important;
  width: 16px;
  height: 16px;
  display: inline-block;
  border: none;
  transform: rotate(180deg);
}

.form_input .calender {
  position: absolute;
  top: 42px;
  right: 10px;
  cursor: pointer;
}

.ck-editor__editable {
  min-height: 160px;
}

.common_form .upload-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.common_form .file-upload {
  border: 2px dashed var(--Neutral-Separator);
  border-radius: 10px;
  max-width: 320px;
  width: 100%;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s;
  text-align: center;
  padding: 16px;
  background: var(--whiteFA);
  position: relative;
}

.file-upload.dragover {
  border-color: #007bff;
  background-color: #f0f8ff;
}

.preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  height: 100%;
  width: 100%;
}

.preview .file-item {
  /* padding: 6px 10px; */
  /* border: 1px solid #ddd; */
  border-radius: 6px;
  background: #fafafa;
  font-size: 14px;
  height: 100%;
  width: 100%;
}

.preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.remove-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  border: none;
  background-color: var(--red);
  color: var(--white);
  height: 20px;
  border-radius: 5px;
  width: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.common_form .file-upload:hover {
  border-color: var(--hold-color);
}

.common_form .file-upload input[type="file"] {
  display: none;
}

.common_form .file-upload p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
  margin-top: 5px;
}

.common_form .file-upload span {
  font-size: 14px;
  color: var(--text-5C);
  font-weight: 500;
}

.up_label {
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 500;
}

.up_label span {
  color: var(--red);
}

.form_discard_save .discard {
  border-radius: 12px;
  padding: 8px 20px;
  font-weight: 500;
  border: 1px solid var(--Menu-Separator, #c2c2c2);
  background: #f5f5f5;
  font-size: 14px;
}

.form_discard_save .discard:hover {
  background-color: var(--hold-color);
}

.form_discard_save .skip_btn {
  border-radius: 12px;
  padding: 8px 20px;
  font-weight: 500;
  background: #f5dfdf;
  color: #d30e0e;
  font-size: 14px;
  border: 1px solid #f5dfdf;
}

.form_discard_save .skip_btn:hover {
  background: #eac9c9;
}

.form_discard_save .submit {
  border-radius: 12px;
  background: var(--neutral-primay, #005399);
  border: 1px solid var(--neutral-primay, #005399);
  color: var(--white);
  padding: 8px 36px;
  font-weight: 500;
  font-size: 14px;
}

.form_discard_save .submit:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.slect-status {
  position: relative;
}

.slect-status svg {
  position: absolute;
  top: 42px;
  right: 16px;
}

/* ========== ADD PROJECT PAGE CSS ENDS  =========== */

/* ############# PROJECT DETAILS PAGE CSS STARTS ########### */
.left_line_heading .inner_heading {
  position: relative;
  padding-left: 16px;
}

.left_line_heading .inner_heading::before {
  content: "";
  width: 6px;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 10px;
  position: absolute;
  background: var(--Button-secondary, #d16f15);
}

.left_line_heading .inner_heading h3 {
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 800;
}

.left_line_heading .inner_heading p {
  color: var(--text-dark);
  font-weight: 500;
  font-size: clamp(16px, 1.1vw, 18px);
}

.left_line_heading .project_tag .less_p {
  padding: 6px 12px;
  font-weight: 700;
  border-radius: 12px;
  background: var(--light-primary-shade, rgba(187, 218, 232, 0.5));
  color: #4fc3f7;
  font-size: 14px;
  width: max-content;
}

.left_line_heading .project_tag .more_p {
  padding: 6px 12px;
  font-weight: 700;
  border-radius: 12px;
  background: var(--light-red-shade, rgba(219, 172, 171, 0.5));
  color: #ef5350;
  width: max-content;
  font-size: 14px;
}

.project_deail_post_time .dead_line {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-85);
  font-weight: 500;
  font-size: 14px;
}

.project_deail_post_time .start_Date {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-85);
  font-size: 14px;
  font-weight: 500;
}

.commm_grey_bg meter {
  width: 100%;
  height: 12px;
}

.project__Details .admin_list_heading .left_heading h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pb36 {
  padding-bottom: 36px;
}

/* WebKit browsers (Chrome, Safari, Edge) */
.commm_grey_bg meter::-webkit-meter-bar {
  background: lightgray;
  border-radius: 5px;
  border: none;
}

.commm_grey_bg meter::-webkit-meter-optimum-value {
  background: var(--dark-theme);
  /* fill color */
}

/* Firefox */
.commm_grey_bg meter::-moz-meter-bar {
  background: var(--dark-theme);
}

.project_details_showcase .commm_grey_bg {
  border-radius: 20px;
  padding: 24px;
  /* border: 1px solid rgba(132, 132, 132, 0.10); */
  /* background: rgba(235, 235, 235, 0.40); */
  height: 100%;
}

.e5bg {
  background: #e3f5ff;
}

.e5bg2 {
  background: #e5ecf6;
}

.project_details_showcase .commm_grey_bg h3 {
  color: var(--text-85);
  font-size: 20px;
  font-weight: 500;
}

.project_details_showcase .commm_grey_bg h4 {
  color: var(--text-dark);
  font-size: clamp(22px, 1.5vw, 24px);
  font-weight: 700;
}

.commm_grey_bg.fist_bg h4 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.project_details_showcase .commm_grey_bg span {
  color: var(--text-85);
  font-size: 16px;
}

.expense_heading h3 {
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 700;
  line-height: 28px;
  color: var(--text-dark2);
}

.p-detail h3,
.att_heading h3 {
  font-size: 22px !important;
  font-weight: 700;
  color: var(--text-dark2);
  line-height: 28px;
  margin-bottom: 10px;
}

.project_expense_container_new p,
.project_expense_container p {
  color: var(--text-5C);
  font-size: clamp(16px, 1vw, 18px);
  margin-bottom: 20px;
  font-weight: 500;
  font-family: var(--lato);
}

.p-detail p {
  color: var(--text-dark2);
  font-size: clamp(16px, 1.2vw, 18px);
}

.p-detail ul li p {
  color: var(--text-dark);
  font-weight: 500;
  font-size: clamp(16px, 1.2vw, 18px);
  margin: 0;
}

.project_expense_container {
  padding: clamp(16px, 2vw, 24px);
  border-radius: 29px;
  border: 1px solid var(--Button-soft-color, #ccddeb);
}

.project_expense_container_new {
  border-radius: 29px;
  border: 1px solid var(--Button-soft-color, #ccddeb);
  overflow: hidden;
}

.project_expense_container_new .inner_content {
  padding: clamp(16px, 2vw, 24px);
  padding-top: 5px;
}

.project_expense_container_new>h3 {
  padding: 16px;
  margin: 0;
  background-color: var(--Button-soft-color);
}

.expense_table .table thead tr th,
.expense_table .table tbody tr td,
.expense_table .table tbody tr th {
  padding: 12px 16px;
}

.project_expense_container_new ul,
.project_expense_container ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project_expense_container_new ul li,
.project_expense_container ul li {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.attach_file_info .outer_bg1 {
  border-radius: 12px;
  border: 1px solid var(--login-border, #e5e5e5);
  background: #f5f5f5;
  padding: 12px 16px;
}

.attach_file_info .outer_bg1 .file_info h6 {
  font-weight: 600;
  margin: 0;
  font-size: 14px;
}

.attach_file_info .outer_bg1 .file_info p {
  margin: 0;
  color: var(--text-85);
  font-size: 12px;
}

.attach_file_info .outer_bg1 .file_info .dot {
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background-color: var(--text-85);
}

.attach_file_info>h4 {
  font-size: 14px;
  color: var(--text-dark2);
  font-family: var(--lato);
  font-weight: 500;
  margin: 0;
  margin-bottom: 5px;
}

.mt26 {
  margin-top: 20px;
}

.attach_file_info>h4 span {
  color: var(--red);
}

.attach_file_info .file_download a:hover svg path {
  stroke: var(--primary-color);
}

.purchase_request_container {
  padding: clamp(20px, 3vw, 34px) clamp(20px, 3vw, 44px);
  border: 1px solid var(--Button-soft-color, #ccddeb);
  border-radius: 29px;
  margin-top: clamp(44px, 5vw, 64px);
}

.purchase_request_container .purchase_heading h4 {
  color: var(--text-dark2, #141414);
  font-size: 26px;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
  margin-bottom: 12px;
}

.purchase_request_container .purchase_heading p {
  color: var(--text-5C, #5c5c5c);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin: 0;
}

.purchase_data_table,
.vehicle_maintainance_Table {
  margin-top: 18px;
}

/* ############# PROJECT DETAILS PAGE CSS ENDS  ########### */

/* ++++++++++++++++ LABOUR DETAILS PAGE CSS STATS +++++++++++++ */
.outer_border {
  border-radius: 29px;
  border: 1px solid var(--Button-soft-color, #ccddeb);
}

.labour_personal_Details_container,
.lb_monthly_update {
  padding: clamp(20px, 2vw, 34px);
  height: 100%;
}

.lb_monthly_update>p {
  font-size: clamp(16px, 1.2vw, 18px);
}

.labour_personal_Details_container .labour_personal_Detail {
  margin-top: 24px;
}

.labour_personal_Details_container .labour_personal_Detail ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.labour_personal_Details_container .labour_personal_Detail ul li,
.lb_monthly_update ul li {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.labour_personal_Details_container .labour_personal_Detail ul li p,
.lb_monthly_update ul li p {
  margin: 0;
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
}

.labour_personal_Details_container .labour_personal_Detail ul li p {
  font-size: clamp(16px, 1.2vw, 18px);
}

.lb_monthly_update ul li p {
  text-align: end;
}

.lb_monthly_update h3 {
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 700;
}

.lb_monthly_update ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lb_monthly_update ul li a {
  color: var(--primary-color);
}

.lb_monthly_update button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  border: none;
  background-color: transparent;
  text-decoration: underline;
  color: var(--primary-color);
  margin-left: auto;
  margin-top: 24px;
}

.lb_monthly_update button:hover {
  color: var(--Button-secondary);
}

.monthly_heading {
  color: var(--text-dark);
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid var(--Neutral-Gray-100, #edf2f7);
  padding-bottom: 16px;
  font-weight: 600;
  position: relative;
}

#CloseMonthlyPopup {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-80%);
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

#closeCallUser,
#CloseAttendancePopup,
#closeChangeLedger,
#closeAddLedger {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-80%);
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.monthly_detail_popup_container .admin_right_content .search input,
.monthly_detail_popup_container .admin_right_content .filter {
  background-color: var(--whiteFA);
}

.monthly_detail_popup_container {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--common-pupbg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.monthly_detail_popup_container .outer_bg {
  max-width: 1200px;
  width: 95%;
  max-height: 90%;
  padding: 6px;
  background-color: var(--white);
  border-radius: 12px;
  transform: scale(0.8);
  transition: transform 0.3s ease-in-out;

  overflow-y: auto;
  /* Hide scrollbar for Chrome, Safari and Opera */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

.monthly_detail_popup_container .outer_bg::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

.labour-details .left_line_heading .inner_heading h3 {
  font-weight: 700;
}

.monthly_update_details {
  background: var(--white);
  padding: 20px;
  width: 100%;
  height: 100%;
  overflow: auto;
  clip-path: inset(0 round 12px);
  border-radius: 12px;
  border: 1px solid var(--Neutral-Separator, #ebebeb);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.monthly_update_details .admin_right_content {
  width: 100%;
}

.monthly_detail_popup_container .admin_list_heading {
  padding-top: 12px;
  padding-bottom: 24px;
}

/* Show state */
.monthly_detail_popup_container.show {
  visibility: visible;
  opacity: 1;
}

.monthly_detail_popup_container.show .outer_bg {
  transform: scale(1);
}

.labour_monlthly_attendance_container {
  padding: clamp(16px, 2vw, 24px);
  border-radius: 15px;
  border: 1px solid var(--Menu-Separator);
  background: var(--white);
  /* max-width: 1200px; */
  width: 100%;
  margin: auto;

  overflow-x: auto;
  scrollbar-width: none;
}

.labour_monlthly_attendance_container::-webkit-scrollbar {
  display: none;
}

/* Show scrollbar on hover */
.labour_monlthly_attendance_container:hover {
  scrollbar-width: thin;
}

.labour_monlthly_attendance_container:hover::-webkit-scrollbar {
  display: block;
  /* Chrome, Safari, Edge */
  height: 8px;
}

.week_names>div {
  width: 140px;
}

.labour_monlthly_attendance_container .heading h3 {
  color: var(--text-dark);
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 700;
}

.labour_monlthly_attendance_container .heading h3 span {
  color: var(--text-5C);
}

.labour_monlthly_attendance_container .week_names {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
}

.labour_monlthly_attendance_container .month_DaysContainer {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(7, 1fr);
}

.labour_monlthly_attendance_container .month_DaysContainer .month_Date {
  display: flex;
  width: 160px;
  height: 150px;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
  align-items: center;
  position: relative;
  border-radius: 10px;
  border: 1px solid var(--Menu-Separator);
  cursor: pointer;
  overflow: hidden;
}

.labour_monlthly_attendance_container .month_DaysContainer .month_Date:hover .plus_icon {
  right: 10px;
  transition: all 0.5s ease-in-out;
}

.labour_monlthly_attendance_container .month_DaysContainer .month_Date .plus_icon {
  position: absolute;
  top: 10px;
  transition: all 0.3s ease-in-out;
  right: -40px;
}

.labour_monlthly_attendance_container .month_DaysContainer .month_Date h4 {
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  top: 10px;
  left: 10px;
}

.labour_monlthly_attendance_container .month_DaysContainer .month_Date h6 {
  font-size: 14px;
  font-weight: 500;
}

.labour_monlthly_attendance_container .month_DaysContainer .month_Date p {
  position: absolute;
  bottom: 0px;
  text-align: center;
  width: 90%;
  left: 10px;
  font-size: 14px;
}

.labour_monlthly_attendance_container .month_DaysContainer .attnotic {
  grid-column: 5 / -1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.labour_monlthly_attendance_container .month_DaysContainer .attnotic h3 {
  text-align: center;
  margin-bottom: 24px;
  font-weight: 400;
  color: var(--text-dark2, #141414);
}

.labour-details .left_heading h3 {
  font-size: 20px;
  font-weight: 700;
}

.labour_monlthly_attendance_container .month_DaysContainer .attnotic div {
  font-size: clamp(16px, 1.2vw, 18px);
}

.change_ledger_group_popup,
.AttendancePopup,
.add_account_group_popup {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--common-pupbg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.crm_edit_call_popup {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--common-pupbg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.crm_edit_call_popup_content,
.attendance_popup_content,
.change_ledger_group_popup_content,
.add_account_group_popup_content {
  padding: 20px 24px 24px 24px;
  max-width: 900px;
  width: 95%;
  max-height: 90%;
  border-radius: 12px;
  border: 1px solid var(--Neutral-Separator, #ebebeb);
  background: var(--white);

  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
  transform: scale(0.8);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;

  scrollbar-width: none;
  -ms-overflow-style: none;
}


.inner_salary_heading {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.inner_salary_heading h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark2);
}

.inner_salary_heading .add_earning {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--neutral-primay);
  font-weight: 500;
  cursor: pointer;
}

.add_account_group_popup_content::-webkit-scrollbar,
.change_ledger_group_popup_content::-webkit-scrollbar,
.crm_edit_call_popup_content::-webkit-scrollbar,
.attendance_popup_content::-webkit-scrollbar {
  display: none;
}

/* Show state */
.AttendancePopup.show,
.change_ledger_group_popup.show,
.crm_edit_call_popup.show,
.add_account_group_popup.show {
  visibility: visible;
  opacity: 1;
}

.AttendancePopup.show .attendance_popup_content,
.add_account_group_popup.show .add_account_group_popup_content,
.change_ledger_group_popup.show .change_ledger_group_popup_content,
.crm_edit_call_popup.show .crm_edit_call_popup_content,
.change_ledger_group_popup.show .outer_layout,
.crm_edit_call_popup.show .outer_layout,
.add_account_group_popup.show .outer_layout {
  transform: scale(1);
}

.add_account_group_popup_content {
  width: 100%;
}

.crm_edit_call_popup_content,
.change_ledger_group_popup_content {
  width: 620px;
}

.crm_edit_call_popup,
.change_ledger_group_popup,
.add_account_group_popup {
  background: rgba(0, 0, 0, 0.6);
}

.attendance_form>h4 {
  color: var(--text-dark2, #141414);
  font-size: 18px;
  font-weight: 700;
}

.attendance_form>p {
  color: var(--text-5C, #5c5c5c);
  font-size: 14px;
}

.attendance_form .common_form textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--whiteEB, #ebebeb);
  padding: 4px 16px;
  outline-color: var(--login-border) !important;
  box-shadow: none;
  background: var(--whiteFA);
}

.attendance_form .common_form textarea,
.attendance_form .common_form select,
.attendance_form .common_form input {
  height: 50px;
}

.height50 {
  height: 50px;
  display: flex;
  align-items: center;
}

.attendance_form .common_form .slect-status svg {
  top: 46px;
}

.track_btns_container a {
  background-color: transparent;
  color: var(--primary-color);
}

.track_btns_container a:hover {
  background-color: var(--active-bg);
}

.track_list_container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.track_list_container>div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
  border-radius: 16px;
  background: #e5ecf6;
  width: 200px;
  min-width: 150px;
}

.track_list_container h4 {
  color: var(--black-100, #1c1c1c);
  font-family: var(--lato);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 18px;
}

.track_list_container h5 {
  color: var(--black-100, #1c1c1c);
  margin: 0;
  font-family: var(--inter);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
}

.primary_off_bg {
  background: #e3f5ff !important;
}

.labour_details_calender {
  max-width: 1600px;
  width: 95%;
  background-color: var(--white);
  margin: auto;
}

/* ++++++++++++++++ LABOUR DETAILS PAGE CSS ENDS +++++++++++++ */

/* ============ USER MANAGEMENT SECTION STARTS =========== */
.user_list .right_fil_div .search input,
.user_list .right_fil_div .filter {
  background-color: var(--whiteFA);
}

.registration_popup .outer_bg {
  max-width: 900px;
  overflow: auto;
  clip-path: inset(0 round 12px);
  /* For Firefox */
  scrollbar-width: thin;
  scrollbar-color: #999 #f1f1f1;
}

/* For Chrome, Edge, Safari */
.registration_popup .outer_bg::-webkit-scrollbar {
  width: 6px;
}

.registration_popup .outer_bg::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.registration_popup .outer_bg::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 10px;
}

.registration_popup .outer_bg::-webkit-scrollbar-thumb:hover {
  background-color: #666;
}

/* ============ USER MANAGEMENT SECTION ENDS =========== */

/* ############## ACCOUNTING PAGE CSS STARTS ############### */
.hover {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}

.hover:hover {
  color: var(--primary-color);
}

.w_max {
  width: 100px;
}

.w_max .inner_input input {
  width: 100%;
}

.accounting_details_container {
  border-top: 1px solid var(--Menu-Separator, #c2c2c2);
  padding: 24px 36px;
}

.acc_common_style {
  border-radius: 17px;
  border: 1px solid rgba(194, 194, 194, 0.3);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
  width: 344px;
  overflow: hidden;
  height: max-content;
}

.acc_common_heading {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark2, #141414);
  background: var(--white-F7);
  border-bottom: 1px solid rgba(194, 194, 194, 0.3);
}

.acc_common_details {
  padding: 10px 21px 21px 21px;
}

.acc_common_details ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-primay);
}

.acc_common_details ul li a:hover {
  color: var(--dark-theme);
}

.accounting_container .admin_top_header {
  border-bottom: 1px solid var(--Neutral-Separator, #ebebeb);
}

.acc_common_details ul {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.account_list_heading .left_heading h4 {
  font-size: clamp(22px, 2vw, 24px);
  font-weight: 800;
  color: var(--text-dark2, #141414);
}

.account_list_heading .left_heading p {
  font-size: 14px;
  color: var(--text-dark2, #141414);
  font-weight: 400;
  margin: 0;
}

.account_buttons button,
.print,
.account_buttons .add_purchase,
.ledger_common_btn {
  color: var(--primary-color);
  border-radius: 50px;
  padding: 6px 16px;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: transparent;
  font-size: 14px;
  font-weight: 400;
}

.account_buttons button.print,
.print {
  background-color: var(--primary-color);
  color: var(--white);
}

.account_buttons button:hover,
.account_buttons .add_purchase:hover,
.ledger_common_btn:hover {
  background-color: var(--Button-soft-color);
}

.account_buttons button.print:hover,
.print:hover {
  background-color: var(--button-focused);
}

.voucher_print_container table,
.payment_vouchar_table table {
  width: 100%;
  border-collapse: collapse;
}

.voucher_print_container thead {
  width: 100%;
  text-align: center;
}

.voucher_print_container td {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark2);
  padding: 16px;
}

.voucher_print_container thead th,
.payment_vouchar_table thead th {
  background-color: var(--primary-color);
  padding: 8px 16px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.voucher_print_container table tbody tr:first-child {
  background-color: var(--whiteFA);
}

.voucher_print_container table tbody tr:first-child td p {
  text-align: end;
  margin: 0;
  font-weight: 400;
}

.voucher_print_container table tbody tr:first-child td:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.voucher_print_container table tbody tr:nth-child(2) {
  border-top: 1px solid #848484;
  border-bottom: 1px solid #848484;
  background-color: var(--whiteFA);
  font-weight: 800;
}

.voucher_print_container table tbody tr:nth-child(2) td {
  font-weight: 800;
}

.voucher_print_container table tbody tr p {
  margin: 0;
  font-weight: 700;
}

.voucher_print_container table tbody tr p>span {
  font-weight: 400;
}

.voucher_print_container table tbody tr:last-child td {
  border-top: 1px solid #848484;
  border-bottom: 1px solid #848484;
  background-color: var(--whiteFA);
}

.voucher_print_container table tbody tr:last-child td:first-child {
  border: 0px;
  background-color: transparent;
}

/* Print Styles */
@media print {
  body {
    margin: 0;
  }

  .common_print {
    border: none;
    width: 100%;
  }

  .account_buttons button {
    display: none;
  }
}

.payment_vouchar_table table td {
  width: 80%;
  padding: 16px;
}

.payment_vouchar_table table tbody tr:nth-child(2) {
  border-top: 1px solid #848484;
  border-bottom: 1px solid #848484;
  background-color: var(--whiteFA);
}

.payment_vouchar_table table tbody tr:last-child td:last-child {
  border-top: 1px solid #848484;
  border-bottom: 1px solid #848484;
  background-color: var(--whiteFA);
}

.payment_vouchar_table table tbody tr:nth-child(2) th {
  padding: 12px 16px;
}

.payment_vouchar_table table .account_num_input input {
  border-radius: 4px;
  border: 0.5px solid var(--Icon-color, #848484);
  height: 18px;
  margin-left: 5px;
}

.common_print {
  margin-bottom: 44px;
}

.accounting_container .right_fil_div .search input,
.accounting_container .right_fil_div .filter {
  background-color: var(--whiteFA);
}

.acc_group_active {
  color: #007c19;
  font-family: Lato;
  font-size: var(--Text-Size-subtitle-2, 14px);
  font-style: normal;
  font-weight: 700;
  display: flex;
  width: max-content;
  padding: 4px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  border-radius: 12px;
  border: 1px solid #007c19;
  background: rgba(0, 124, 25, 0.5);
}

.add_acc_group {
  padding: 8px 16px;
  border-radius: 50px;
  background-color: var(--primary-color);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 14px;
}

.add_acc_group:hover {
  background-color: var(--neutral-primay);
}

.outer_layout {
  border-radius: 16px;
  background: var(--gray-lightest, #f5f5f5);
  padding: 5px;
  transform: scale(0.8);
  transition: transform 0.3s ease-in-out;
  max-width: 95%;
  max-height: 90%;
  overflow: auto;
  clip-path: inset(0 round 12px);
  border-radius: 12px;

  /* For Firefox */
  scrollbar-width: thin;
  scrollbar-color: #999 #f1f1f1;
}

/* For Chrome, Edge, Safari */
.outer_layout::-webkit-scrollbar {
  width: 6px;
}

.outer_layout::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.outer_layout::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 10px;
}

.outer_layout::-webkit-scrollbar-thumb:hover {
  background-color: #666;
}

.outer_layout .attendance_popup_content {
  width: 100%;
}

/* Show state */
.AttendancePopup.show {
  visibility: visible;
  opacity: 1;
}

.AttendancePopup.show .outer_layout {
  transform: scale(1);
}

.acc_group_popup .outer_bg {
  overflow: auto;
  width: 70%;
  clip-path: inset(0 round 12px);
  border-radius: 12px;
  border: 1px solid var(--Neutral-Separator, #ebebeb);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  /* transform: scale(1); */

  /* For Firefox */
  scrollbar-width: thin;
  scrollbar-color: #999 #f1f1f1;
}

/* For Chrome, Edge, Safari */
.acc_group_popup .outer_bg::-webkit-scrollbar {
  width: 6px;
}

.acc_group_popup .outer_bg::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.acc_group_popup .outer_bg::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 10px;
}

.acc_group_popup .outer_bg::-webkit-scrollbar-thumb:hover {
  background-color: #666;
}

.delete:hover svg path {
  stroke: var(--red) !important;
}

.change_ledger_btn {
  background-color: transparent;
  color: var(--text-dark2);
  border: none;
}

.openLedgerPopup {
  cursor: pointer;
}

/* ############## ACCOUNTING PAGE CSS ENDS ############### */

/* profile image component css starts  */
.main_profile {
  font-family: var(--inter);
  cursor: pointer;
}

.main_profile_container {
  position: relative;
}

.profile_popup_content {
  background: var(--white);
  padding: 16px 8px;
  padding-bottom: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-radius: 16px;
  position: absolute;
  z-index: 30;
  font-family: var(--inter);
  right: 0;
  top: 150%;
}

.notifcationpopup_content {
  background: var(--white);
  padding: 16px 8px;
  padding-bottom: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-radius: 16px;
  position: absolute;
  z-index: 30;
  font-family: var(--inter);
  right: 0;
  top: 150%;
}

.profile_popup_content .profile__detail,
.notifcationpopup_content .profile__detail {
  display: flex;
  gap: 12px;
  padding: 0 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--Neutral-Separator);
}

.profile_popup_content .profile__detail>img,
.notifcationpopup_content .profile__detail>img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.profile_popup_content .profile__detail>div,
.notifcationpopup_content .profile__detail>div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile_popup_content .profile__detail>div a,
.notifcationpopup_content .profile__detail>div a {
  color: var(--text-5C, #5c5c5c);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}

.profile_popup_content .profile__detail>div h5,
.notifcationpopup_content .profile__detail>div h5 {
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  color: var(--text-dark2);
  margin: 0 !important;
  padding: 0;
}

.profile_popup_content .profile__detail>div p,
.notifcationpopup_content .profile__detail>div p {
  color: var(--neutral-primay);
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  margin: 0;
  padding-left: 10px;
  position: relative;
  flex-shrink: 0;
}

.profile_popup_content .profile__detail>div p::before,
.notifcationpopup_content .profile__detail>div p::before {
  height: 6px;
  width: 6px;
  border-radius: 13px;
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  background-color: var(--neutral-primay);
  flex-shrink: 0;
}

.profile_popup_content>a,
.notifcationpopup_content>a {
  padding: 16px 8px;
  border-bottom: 1px solid var(--Neutral-Separator);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--inter);
  color: var(--text-dark2);
}

.profile_popup_content>a:hover {
  background: var(--active-bg);
}

.profile_popup_content>a:last-child {
  border-bottom: 0;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.polygon_shape {
  height: 33px;
  width: 33px;
  object-fit: contain;
  position: absolute;
  top: -15px;
  right: 10px;
}

.main_profile>img {
  height: 30px;
  width: 30px;
  object-fit: cover;
  border-radius: 50%;
}

.main_profile .profile_Details h6 {
  font-size: 13px;
  margin-bottom: 0;
  font-weight: 600;
  color: #333;
  line-height: 13px;
}

.main_profile .profile_Details p {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-dark2);
  margin-bottom: 0;
}

.filter_popup_bg,
.profile_popup_bg,
.notification_popup_bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--common-pupbg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;

  transition: opacity 0.3s ease-in-out;
}

.profile_popup_content,
.filter_popup_content,
.filter_popup_bg,
.notifcationpopup_content,
.notification_popup_bg,
.profile_popup_bg {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.profile_popup_content.active,
.filter_popup_bg.active,
.filter_popup_content.active,
.notifcationpopup_content.active,
.profile_popup_bg.active,
.notification_popup_bg.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  /* slide into place */
}

/* profile image component css ends */

/* ----- Notification popup css starts ------  */
.notification_heading h4,
.notification_heading .noti_num {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  font-family: var(--inter);
  color: var(--text-5C, #5c5c5c);
}

.notificatioin_detail .profile img {
  height: 55px;
  width: 55px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.notifcationpopup_content {
  width: 300px;
}

.not_desc p {
  color: var(--black-100);
  font-size: 14px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notification_list_container .notificatioin_detail {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--Neutral-Separator);
  margin-bottom: 16px;
}

.notification_list_container .notificatioin_detail:last-child {
  border-bottom: 0;
  padding: 0;
}

.not_desc .time,
.not_desc .title {
  font-weight: 500;
  color: var(--text-5C);
  font-size: 15px;
}

/* ----- Notification popup css ends------  */

/* ++++++++ filter popup css starts ++++++ */
.filter_popup_content {
  background: var(--white);
  border-radius: 12px;
  width: 370px;
  position: fixed;
  /* position: absolute; */
  z-index: 30;
  font-family: var(--inter);
  right: clamp(16px, 2.5vw, 32px);
  top: 140px;
  box-shadow: 0 4px 60px 0 rgba(20, 21, 26, 0.14);
  overflow: hidden;
  cursor: default;
}

.filter_popup_content .filter_heading {
  padding: 14px 16px;
  background-color: var(--whiteFA);
  border-bottom: 1px solid var(--whiteEB);
}

.filter_popup_content .filter_heading h4 {
  color: var(--text-dark2, #141414);
  font-family: var(--inter);
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  margin: 0;
  width: max-content;
}

.filter_popup_content .filter_heading svg {
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.filter_popup_content .filter_heading svg:hover {
  transform: rotate(90deg);
}

.filter_popup_content .filter_form {
  padding: 24px 16px 12px 16px;
}

.filter_save_btns {
  border-top: 1px solid var(--whiteEB);
  padding-top: 20px;
}

.filter_form .g-20 {
  gap: 20px;
}

.filter_save_btns button {
  padding: 8px 16px !important;
}

.filter_form .common_form .wrapper .inside {
  position: relative;
}

.filter_form .common_form .wrapper .inside svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
}

.filter_form .clear p,
.selct_date_filter_label p {
  color: var(--neutral-primay, #005399);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 0px;
}

.filter_form .clear label {
  color: var(--text-dark2, #141414);
  font-size: 14px;
  font-weight: 500;
}

.filter_form .clear label span {
  color: var(--red);
}

.filter_form .common_form .form_input input,
.filter_form .common_form .wrapper select {
  background-color: transparent;
  height: 48px;
}

.selct_date_filter_label label {
  color: var(--text-85, #858585);
  font-size: 14px;
  font-weight: 500;
}

/* ++++++++ filter popup css ends ++++++ */

/* 
============================
DASHBORD PAGE CSS STATS 
============================ */
.dashboard_page_container,
.inventory_page_container {
  padding-top: 24px;
}

.dash_heading h3 {
  font-size: clamp(22px, 2vw, 24px);
  font-weight: 800;
  color: var(--text-dark2);
  margin: 0;
}

.dash_heading p {
  color: var(--text-dark2);
  font-size: 14px;
  font-family: var(--inter);
  font-weight: 400;
  padding-top: 4px;
}

/* top chart css  */
.top_chart_container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  font-family: var(--inter);
}

.top_chart_container .card {
  padding: 24px;
  border-radius: 16px;
  transition: transform 0.2s ease;
  border: none;
}

.top_chart_container .card-title {
  color: var(--black-100, #1c1c1c);
  font-size: 16px;
  font-family: var(--inter);
  font-weight: 600;
  line-height: 18px;
  margin: 0;
}

.top_chart_container .legend {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #828690;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  margin-top: 16px;
}

.top_chart_container .legend div {
  display: flex;
  align-items: center;
}

.top_chart_container .legend span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 5px;
  border-radius: 3px;
}

#pieChart {
  width: 95px !important;
  height: 95px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.piechard_relative {
  height: 95px;
  width: 95px;
}

.canvus_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* z-index: 2; */
  text-align: center;
  width: 80%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
}

.p-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--Icon-color);
}

.canvus_content h6 {
  font-size: 18px;
  font-weight: 400;
  color: #828690;
  margin: 0;
}

.canvus_content p {
  color: #828690;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
}

.top_chart_container .first_card .card_div span {
  color: var(--black-100, #1c1c1c);
  font-family: var(--inter);
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
}

.top_chart_container p {
  margin: 0;
}

.donut_chart .card-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--Icon-color);
}

/* first progress card  */

.first_card {
  background: #e3f5ff !important;
}

.first_card .progress-bar {
  height: 6px;
  margin-top: 13px;
  overflow: hidden;
  border-radius: 12px;
  background: #e6eaee;
}

.first_card .progress {
  height: 100%;
  border-radius: 4px;
  background: #888;
  transition: width 0.5s ease;
}

.first_card .card-value {
  color: var(--black-100, #1c1c1c);
  font-size: 20px;
  font-weight: 600;
  line-height: 18px;
  /* 90% */
}

.donut_chart {
  background: #e5ecf6;
  border-radius: 16px;
  padding: 12px 24px;
}

.payment_card .card-value {
  color: #1c1c1c;
  margin-top: 9px;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 12px;
}

.payment_card {
  background-color: #e3f5ff;
}

.payment_card .payment_small_title .card-subtitle {
  color: #828690;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.2px;
  margin: 0;
}

.payment_card .payment_small_title>div {
  color: #828690;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.2px;
  /* 180% */
}

.payment_card .progress-bar {
  height: 6px;
  overflow: hidden;
  border-radius: 12px;
  background: #e6eaee;
}

.payment_card .progress {
  height: 100%;
  border-radius: 4px;
  background: var(--blue-donutchart);
  transition: width 0.5s ease;
}

.payment_card .calender_icon {
  display: flex;
  width: 40px;
  height: 40px;
  padding: 10.156px 10px 9.844px 10px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: rgba(13, 153, 255, 0.1);
}

.second_payment .calender_icon {
  display: flex;
  width: 40px;
  height: 38px;
  padding: 9.156px 14px 8.844px 14px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: rgba(54, 210, 33, 0.05);
}

.top_chart_container .second_payment {
  border-radius: 16px;
  background: #e5ecf6;
}

.second_payment h2 {
  color: #1c1c1c;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 12px;
  margin-top: 9px;
}

.second_chart_container .apexcharts-legend-marker {
  border-radius: 50% !important;
  height: 10px !important;
  width: 10px !important;
  overflow: hidden !important;
  margin-right: 16px !important;
  margin-left: 5px !important;
}

.second_chart_container .apexcharts-legend-text {
  font-size: 14px !important;
  font-family: var(--inter);
}

.second_chart_container,
.third_chart_Table_container,
.fourth_chart_table_container {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.montly_cash_bar_chart {
  background: var(--light-grey-bg, #f7f9fb);
  padding: 24px 5px 16px 16px;
  border-radius: 16px;
}

.montly_cash_bar_chart .buttons button {
  border: none;
  background-color: transparent;
}

.off_light_chart_bg {
  background: #e5ecf6 !important;
}

.filter-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-right: 16px;
}

.filter-buttons button {
  display: flex;
  height: 25px;
  padding: 5px 15px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #444;
  border: none;
  color: var(--white);
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  line-height: 19.5px;
}

.mt33 {
  margin-top: 33px;
}

.mt46 {
  margin-top: 46px;
}

.filter-buttons button.active {
  background: #0d99ff;
}

.filter-buttons button:hover {
  opacity: 0.8;
}

.montly_cash_bar_chart h3 {
  color: var(--text-dark2, #141414);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}

.bank_width_draw_container {
  padding: clamp(16px, 2vw, 24px);
  background: var(--light-grey-bg, #f7f9fb);
  border-radius: 16px;
}

.bank_width_draw_container h3 {
  color: var(--black-100, #1c1c1c);
  font-family: var(--inter);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 20px;
}

.bank_width_draw_container .bank_progress_bar_container {
  height: 90%;
}

.bank_width_draw_container .bank_progress_bar_container .progress_container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bank_width_draw_container .bank_progress_bar_container .progress_container p {
  font-family: var(--inter);
  color: var(--black-100, #1c1c1c);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  margin: 0;
  white-space: nowrap;
}

.progress_container {
  width: 100%;
}

.custom_meter {
  width: 100%;
  height: 5px;
  background: #e6eaee;
  border-radius: 16px;
  overflow: hidden;
  margin: 8px 0;
}

.custom_meter .fill {
  height: 100%;
  width: 0%;
  background: var(--black-100);
  border-radius: 16px;
  transition: width 0.3s ease;
}

.bank_width_draw_container .menu-icon {
  cursor: pointer;
}

.c-table table th {
  background: #ccddeb;
  color: var(--text-dark2, #141414);
  font-family: var(--lato);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  border: 0;
  padding: 10px 16px;
  height: 40px;
}

.pdc-table table th {
  background: #ccddeb;
  color: var(--text-dark2, #141414);
  font-family: var(--lato);
  font-size: 13px;
  font-weight: 700;
  border: 0;
  padding: 10px 16px;
  text-wrap: nowrap;
}

.c-table table {
  background-color: transparent;
  border: none;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
  border: 0;
  margin-bottom: 0;
}

.c-table table tr td {
  border: 0;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--lato);
  color: var(--text-dark2);
  background-color: transparent;
}

.c-table table tbody tr {
  border-bottom: 1px solid var(--Neutral-Separator, #e9eaeb);
}

.c-table table tbody tr:last-child {
  border-bottom: 0;
}

.c-table table tbody tr:last-child td {
  padding-bottom: 0;
}

.bg-light-grey {
  border-radius: 16px;
  background: #f7f9fb;
  padding: 26px;
}

.monthly_purchase_heading h3 {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--inter);
  color: var(--black-100);
  margin: 0;
}

.c-table table tfoot tr th {
  margin-top: 16px;
  background: rgba(204, 204, 204, 0.5);
  height: 48px;
  color: var(--text-dark2, #141414);
  font-size: 14px;
  font-weight: 700;
}

.c-table table tfoot tr th:first-child {
  border-radius: 0 0 0 8px;
}

.c-table table tfoot tr th:last-child {
  border-radius: 0 0 8px 0;
}

.fourth_chart_table_container .c-table tbody tr:last-child td {
  padding-bottom: 16px;
}

/* ------------- JQUERY UI CUSTOM CSS ADDED  ------------- */
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  color: #333;
  font-weight: bold;
  width: max-content;
}

.ui-datepicker select.ui-datepicker-month::-ms-expand,
.ui-datepicker select.ui-datepicker-year::-ms-expand {
  display: none;
}

/* ------------- JQUERY UI CUSTOM CSS ADDED  ------------- */

.monthly_purchase_heading #dateRangePicker {
  border: 1px solid var(--Menu-Separator);
  border-radius: 4px;
  padding: 8px 12px;
  padding-right: 26px;
  height: 26px;
  font-size: 10px;
  font-weight: 500;
  color: #000;
  font-family: var(--inter);
  background-color: var(--white);
  width: auto;
  min-width: 205px;
}

.monthly_purchase_heading #dateRangePicker::placeholder,
.monthly_purchase_heading #monthPicker::placeholder {
  font-size: 10px;
  font-weight: 500;
  color: #000;
}

.monthly_purchase_heading #monthPicker {
  border: 1px solid var(--Menu-Separator);
  border-radius: 4px;
  padding: 2px 12px;
  height: 26px;
  font-size: 10px;
  font-weight: 500;
  color: #000;
  font-family: var(--inter);
  background-color: var(--white);
  max-width: 105px;
  padding-right: 26px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.monthly_purchase_heading .select_box svg {
  position: absolute;
  top: 10px;
  right: 16px;
}

.montly_purchase_tag h4 {
  color: #333;
  font-family: var(--inter);
  font-size: 12.8px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0;
}

.status_donut_Chart {
  background-color: var(--light-grey-bg);
  border-radius: 16px;
  padding: 24px;
}

.status_donut_Chart h3 {
  color: var(--black-100, #1c1c1c);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 20px;
  font-family: var(--inter);
}

.char_container .chart_data p {
  color: var(--black-100, #1c1c1c);
  font-weight: 600;
  line-height: 18px;
  margin: 0;
  position: relative;
  padding-left: 16px;
}

.char_container .chart_data p:first-child::before {
  content: "";
  position: absolute;
  background-color: var(--lightgreen-donutchart);
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
}

.char_container .chart_data p:nth-child(2)::before {
  content: "";
  position: absolute;
  background-color: var(--bluedark-donutchart);
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
}

.char_container .chart_data p:last-child::before {
  content: "";
  position: absolute;
  background-color: var(--black-donutchart);
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
}

.status_donut_Chart .canvus-container {
  position: relative;
}

.status_donut_Chart .canvus-container h3 {
  display: flex;
  width: 80.299px;
  height: 55.827px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: #141414;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--lato);
}

/* 
============================
DASHBORD PAGE CSS ENDS 
============================ */

/* ++++++++++++++++++++++++++++++++++++++++++
ASSET FILTER POPUP CSS STARTS 
++++++++++++++++++++++++++++++++++++++++++ */
.asset_filter_btn,
.asset_filter_btn_inv {
  display: flex;
  height: 40px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  border: 1px solid var(--whiteEB, #ebebeb);
  background: var(--white-F7, #f7f7f7);
  cursor: pointer;
}

.common_asset_filter_bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--common-pupbg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  /* z-index: 20; */
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.add_asset_filter_bg,
.addlisttask_bg,
.list_msg_pop_bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--common-pupbg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  /* z-index: 20; */
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.common_asset_filter_bg.active,
.addlisttask_bg.active,
.list_msg_pop_bg.active,
.add_asset_filter_bg.active {
  visibility: visible;
  opacity: 1;
}

.ass_filter_popcontent {
  background: var(--white);
  padding: 5px;
  max-width: 850px;
  width: 95%;
  max-height: 95%;
  border-radius: 12px;

  overflow-y: auto;
  clip-path: inset(0 round 12px);
}

.ass_filter_popcontent .bg_white {
  border: 1px solid var(--whiteEB, #ebebeb);
  background-color: var(--white);
  border-radius: 9px;
  width: 100%;
  height: 100%;
  padding: 0 24px 24px 24px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
}

.slect-status label {
  color: var(--text-dark2);
  font-weight: 500;
  font-size: 14px;
}

.ass_heading h5 {
  color: var(--text-dark2);
  font-size: 14px;
  margin: 0;
  font-weight: 600;
  font-family: var(--lato);
  padding: 16px 0;
  text-align: center;
}

.ass_heading {
  border-bottom: 1px solid var(--Neutral-Gray-100);
  position: relative;
}

.ass_heading svg {
  cursor: pointer;
}

.c_asset_sub_heading {
  padding-top: 24px;
  padding-bottom: 20px;
}

.c_asset_sub_heading h5 {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 700;
  color: var(--text-dark2);
  margin-bottom: 5px;
}

.ass_heading svg {
  position: absolute;
  top: 16px;
  right: 0px;
}

.c_asset_sub_heading p {
  font-weight: 400;
  color: var(--text-5C, #5c5c5c);
  font-size: 14px;
  margin: 0;
}

/* +++++++ add asset +++++ */
.loc_selct_box {
  display: flex;
  width: 50px;
  height: 28px;
  padding: 4px 26px 4px 4px;
  align-items: center;
  border-radius: 32px;
  border: 1px solid var(--button-focused, #00427a);
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}

.loc_selct_box.active {
  background-color: var(--neutral-primay);
}

.loc_selct_box .btn-box {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--neutral-primay);
  transition: all 0.5s ease-in-out;
}

.loc_selct_box .btn-box.active {
  background-color: var(--white);
  transform: translateX(20px);
}

.locationData {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  max-height: 0;
  overflow: hidden;
}

.locationData.active {
  visibility: visible;
  opacity: 1;
  max-height: 200px;
  overflow: visible;
}

/* ++++++++++++++++++++++++++++++++++++++++++
ASSET FILTER POPUP CSS ENDS
++++++++++++++++++++++++++++++++++++++++++ */

/* ************************ ASSETS SUMMARY PAGE CSS STARTS FORM HERE ************** */
.asset_summary_heading h3 {
  font-size: clamp(20px, 3vw, 24px) !important;
}

/* ************************ ASSETS SUMMARY PAGE CSS ENDS ************** */

/* ======================== Purchase requisation page css starts ========== */
.requistation_btns_container {
  margin: 24px 0;
}

.approved {
  border-radius: 20px;
  border: 1px solid rgba(0, 124, 25, 0.6);
  background: rgba(198, 237, 206, 0.6);
  display: flex;
  width: max-content;
  padding: 5px 12px;
  justify-content: center;
  align-items: center;
  color: rgba(0, 124, 25, 0.6);
  font-size: 14px;
  font-weight: 700;
}

.approved2 {
  border-radius: 12px;
  border: 1px solid rgba(0, 124, 25, 0.7);
  background: #ccf0ce;
  display: flex;
  width: max-content;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  color: rgba(0, 124, 25, 0.6);
  font-size: 14px;
  font-weight: 700;
}

.absent_state {
  border-radius: 12px;
  border: 1px solid rgba(255, 0, 0, 0.5);
  background: rgba(229, 157, 157, 0.6);
  display: flex;
  width: max-content;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  color: #fd2d2d;
  font-size: 14px;
  font-weight: 700;
}

.unapproved {
  border-radius: 20px;
  border: 1px solid rgba(255, 0, 0, 0.5);
  background: rgba(229, 157, 157, 0.6);
  display: flex;
  width: max-content;
  padding: 5px 12px;
  justify-content: center;
  align-items: center;
  color: #fd2d2d;
  font-size: 14px;
  font-weight: 700;
}

.bill {
  border-radius: 20px;
  border: 1px solid #009bba;
  background: rgba(11, 197, 234, 0.4);
  display: flex;
  width: max-content;
  padding: 5px 12px;
  justify-content: center;
  align-items: center;
  color: #009bba;
  font-size: 14px;
  font-weight: 700;
}

/* add purchase requisation css  */
.add_purchase_requisation_data_container {
  margin-top: 24px;
  margin-bottom: 44px;
}

.add_purchase_requisation_data_container .add_heading a {
  display: flex;
  height: 29px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  width: max-content;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  border-radius: 50px;
  border: 1px solid var(--primary-color, #005399);
  margin-bottom: 24px;
}

.add_purchase_requisation_data_container .add_heading {
  margin-bottom: 24px;
}

.add_purchase_requisation_data_container .add_heading a:hover {
  color: var(--white);
  background-color: var(--primary-color);
}

.add_purchase_requisation_data_container .add_heading p {
  color: var(--text-dark2, #141414);
  font-family: var(--inter);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
}

.add_purchase_requisation_data_container .add_heading h3 {
  color: var(--text-dark2, #141414);
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  margin: 0;
  margin-bottom: 8px;
}

.vehicle_maintainance_Table .inner_input textarea,
.purchase_data_table .inner_input textarea,
.vehicle_maintainance_Table .inner_input input,
.purchase_data_table .inner_input input {
  border-radius: 8px;
  background-color: var(--whiteFA);
  border: 1px solid var(--Menu-Separator);
  padding: 12px;
  outline-color: var(--hold-color);
}

.purchase_data_table .inner_input,
.vehicle_maintainance_Table .inner_input {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vehicle_maintainance_Table table tbody tr td,
.purchase_data_table table tbody tr td {
  padding-bottom: 24px !important;
  padding-top: 16px !important;
}

.vehicle_maintainance_Table table tfoot tr td,
.purchase_data_table table tfoot tr td {
  background: var(--whiteFA);
  height: 52px;
  font-size: 14px;
  color: var(--text-dark2);
  font-weight: 800;
}

.purchase_data_table table tfoot tr:nth-child(2) td:first-child,
.purchase_data_table table tfoot tr:last-child td:nth-child(2),
.purchase_data_table table tfoot tr:last-child td:last-child {
  background: transparent;
}

/* add purchase requisation css  ends */

.select-placeholder {
  color: gray !important;
}

select option:not(:first-child) {
  color: var(--text-dark2);
}

.list_msg_pop_bg .ass_filter_popcontent {
  max-width: 360px;
}

.list_msg_pop_bg form textarea {
  height: 150px;
  background-color: var(--whiteFA);
  border-radius: 12px;
  outline: var(--login-border);
  border: 1px solid var(--login-border);
  color: var(--black-100);
  width: 100%;
  padding: 12px 16px;
}

.list_msg_pop_bg form textarea::placeholder {
  color: var(--text-85);
}

.right_fil_div .filter:hover {
  background-color: var(--whiteFA);
}

.expense_common_table_container .common_table table th {
  border: 1px solid var(--Menu-Separator) !important;
}

.expense_common_table_container .common_table table tbody td,
.expense_common_table_container .common_table table tbody th {
  height: 52px;
  border: 1px solid var(--Menu-Separator);
}

.add_inventory_table table tfoot tr:nth-child(2) td,
.add_inventory_table table tfoot tr:last-child td:nth-child(2),
.add_inventory_table table tfoot tr:last-child td:last-child {
  background: transparent;
}

.add_inventory_table table tfoot tr:nth-child(2) td:nth-last-child(-n + 2),
.add_inventory_table table tfoot tr:nth-child(3) {
  background-color: var(--whiteFA);
}

.add_inventory_table table tfoot tr:nth-child(3) td:nth-last-child(-n + 2) {
  background-color: transparent;
}

.amount_text {
  font-weight: 800;
  font-size: 14px;
  color: var(--text-dark2);
}

.purchase_data_table.add_inventory_table table tfoot tr:nth-child(3) td {
  background: transparent !important;
}

/* ======================== Purchase requisation page css ends ========== */

/* Expense add dropdown css  */
.add_expenses {
  cursor: pointer;
}

.expIcon {
  transition: all 0.5s ease-in-out;
}

.expIcon.active {
  transform: rotate(180deg);
}

.add_exprense_dropdown_container {
  position: absolute;
  top: 120%;
  background: var(--white);
  border-radius: 9px;
  box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.2);
  width: 100%;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

.add_exprense_dropdown_container.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.add_exprense_dropdown_container button {
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark2);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: transparent;
}

.add_exprense_dropdown_container button:hover,
.add_exprense_dropdown_container a:hover {
  background-color: var(--active-bg);
}

/* Expens add dropdown css ends */

/* VOUCHAR POPPUP CSS STARTS  */
.vouchar_data_bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--common-pupbg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  /* z-index: 20; */
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.cur_bal p {
  color: var(--text-dark2);
  font-size: 15px;
  margin: 0;
  font-weight: 600;
}

.cur_bal span {
  font-size: 14px;
  color: var(--text-5C);
  font-weight: 400;
  margin: 0;
}

.cur_bal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vouchar_data_bg.active {
  visibility: visible;
  opacity: 1;
}

.Common_vouchar_data_container {
  max-width: 1320px;
  width: 95%;
  max-height: 90%;
  background: #f5f5f5;
  border-radius: 16px;
  padding: 5px;
  overflow: auto;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

#PaymentForm,
#journalForm {
  display: none;
}

#PaymentForm.active,
#journalForm.active {
  display: block;
}

.Common_vouchar_data_container::-webkit-scrollbar {
  display: none;
}

.Common_vouchar_data_container .inner_content {
  background-color: var(--white);
  padding: 0 24px 24px 24px;
  border-radius: 12px;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid var(--whiteEB);
}

.Common_vouchar_data_container .inner_content .heading {
  padding: 16px 0;
  position: relative;
  border-bottom: 1px solid var(--Neutral-Gray-100);
  margin-bottom: 18px;
}

.Common_vouchar_data_container .inner_content .heading h4 {
  color: var(--text-dark2);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--lato);
  text-align: center;
}

.Common_vouchar_data_container .inner_content .heading .closeVoucharBtn {
  position: absolute;
  top: 10px;
  cursor: pointer;
  right: 0;
}

.Common_vouchar_data_container .inner_content .heading .closeVoucharBtn:hover {
  transform: scale(1.05);
}

.Common_vouchar_data_container .inner_content .main_heading .left h3 {
  color: var(--text-dark2, #141414);
  font-family: Lato;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  margin: 0;
  margin-bottom: 8px;
}

.Common_vouchar_data_container .inner_content .main_heading .left p {
  margin: 0;
  color: var(--text-dark2, #141414);
  font-family: var(--inter);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.printing_vouchar_container {
  margin-top: 24px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 44px;
  border: 1px solid var(--whiteEB, #ebebeb);
}

.printing_vouchar_container table {
  background: var(--white);
  overflow: hidden;
  margin-bottom: 0;
}

.voucher-header h2 {
  background-color: var(--neutral-primay);
  border-top: 1px solid var(--Neutral-Separator, #e9eaeb);
  height: 42px;
  padding: 8px 16px;
  border-bottom: 1px solid var(--Neutral-Separator, #e9eaeb);
  text-align: center;
  color: #f2f6fa;
  font-family: var(--lato);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voucher-meta p,
.c-date {
  color: var(--text-dark2, #141414);
  margin: 0;
  font-size: 14px;
  font-family: var(--lato);
  font-style: normal;
  font-weight: 400;
  line-height: 16.8px;
}

.voucher-meta {
  padding: 8px 16px;
}

.voucher-meta input {
  border-radius: 4px;
  border: 0.5px solid var(--Icon-color, #848484);
  height: 15px;
  max-width: 100px;
}

.printing_vouchar_container table tbody tr td {
  height: 52px;
  padding: 8px 16px;
  vertical-align: middle;
  background-color: transparent;
  border-bottom: 0;
}

.printing_vouchar_container table thead tr th {
  height: 52px;
  background: var(--Button-soft-color, #ccddeb);
  vertical-align: middle;
  padding: 8px 16px;
}

.printing_vouchar_container table tbody tr:nth-child(even) {
  background: var(--white-F7);
}

.printing_vouchar_container table tbody tr {
  border-bottom: 1px solid var(--whiteEB);
}

.printing_vouchar_container table tbody tr:last-child {
  border-bottom: none;
}

.printing_vouchar_container table tfoot tr td {
  background: #f0f0f0;
  height: 60px;
  padding: 8px 16px;
  vertical-align: middle;
  font-weight: 800;
  color: var(--text-dark2);
  font-size: 14px;
}

.printing_vouchar_container form {
  padding-bottom: 24px;
}

.editable {
  outline-color: var(--Button-soft-color);
}

/* focus popup  */
.foucus_popup {
  position: fixed;
  background: var(--whiteFA);
  z-index: 200;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 8px;
  overflow: hidden;
  max-width: 270px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.focus_popup_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--common-pupbg);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
}

.focus_popup_overlay.active {
  opacity: 1;
  visibility: visible;
}

.foucus_popup.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.foucus_popup .list_heading {
  padding: 8px 16px;
  position: relative;
  background-color: var(--neutral-primay);
}

.foucus_popup .list_heading h4 {
  font-size: 13px;
  font-family: var(--lato);
  font-weight: 700;
  color: var(--Neutral-background);
  margin: 0;
  padding-right: 36px;
}

.foucus_popup .list_heading .close_focus {
  position: absolute;
  top: 3px;
  right: 16px;
  cursor: pointer;
}

.foucus_popup .selectable_data>div {
  padding: 8px 16px;
  font-size: 14px;
  color: var(--text-dark2);
  cursor: pointer;
}

.foucus_popup .selectable_data>div:hover {
  background-color: var(--active-bg);
}

.printing_vouchar_container .table tbody tr td:first-child,
.printing_vouchar_container .table thead th:first-child {
  width: auto;
}

.printing_vouchar_container .table tbody tr td:nth-child(2),
.printing_vouchar_container .table tbody tr td:nth-child(3),
.printing_vouchar_container .table thead th:nth-child(2),
.printing_vouchar_container .table thead th:nth-child(3) {
  width: 200px;
}

/* VOUCHAR POPPUP CSS ENDS  */

/* +++++++++++ Delete popup css starts ++++++++++++++ */
.delete_msg_bg {
  background-color: var(--common-pupbg);
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 1;
}

.delete_msg_bg.active {
  visibility: visible;
  opacity: 1;
}

.del_close_btn {
  display: flex;
  justify-content: end;
  border-bottom: 1px solid var(--Neutral-Gray-100, #edf2f7);
  padding-bottom: 16px;
}

.delete_input {
  width: 80%;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid var(--Neutral-Separator, #EBEBEB);
  outline: none;
  background-color: transparent;
  padding: 12px 16px;
}

.del_close_btn svg:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.delete_inner_bg {
  background-color: #f5f5f5;
  border-radius: 16px;
  padding: 4px;
  width: max-content;
}

.delete_inner_content_container {
  padding: 16px 24px 24px 24px;
  width: 380px;
  box-shadow: 0px 0px 2px var(--common-pupbg);
  border-radius: 16px;
  border: 1px solid var(--active-bg);
}

.del_image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px 20px 16px;
}

.del_image img {
  width: 96px;
  height: 106px;
  object-fit: contain;
}

.delete_inner_content_container p {
  color: var(--text-5C, #5c5c5c);
  text-align: center;
  font-family: var(--lato);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 20px;
}

.delete_inner_content_container h3 {
  color: var(--text-dark2, #141414);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
}

.del_comfirm_buttons .delBtn {
  border-radius: 12px;
  background: var(--neutral-primay, #005399);
  display: flex;
  height: 40px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  color: var(--white);
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: not-allowed;
  opacity: 0.6;
}

.del_comfirm_buttons .delBtn.enabled {
  cursor: pointer;
  opacity: 1;
}

.del_comfirm_buttons .delBtn:hover {
  background: var(--button-focused);
}

.del_comfirm_buttons .keepBtn {
  display: flex;
  height: 40px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background: var(--whiteEB, #f7f7f7);
  color: var(--Menu-Separator, #c2c2c2);
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  border: none;
}

.del_comfirm_buttons .keepBtn:hover {
  background: var(--Button-soft-color);
}

/* +++++++++++ Delete popup css ends ++++++++++++++ */

/* ========================= TRACK PROFILE COMPONENT CSS STARTS =================== */

.track_filter_container,
.tracking-data-wrapper .left_div {
  display: flex;
  flex-direction: column;
  gap: 34px;
  height: 100%;
}

.tracking-data-wrapper .right_div {
  width: 100%;
  height: 650px;
  border-radius: 12px;
  overflow: hidden;
  padding: clamp(8px, 1.5vw, 16px);
  border: 1px solid var(--Neutral-Separator, #ebebeb);
  background: var(--white);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.track_profile_container {
  background-color: var(--whiteFA);
  border-radius: 13px;
  padding: 10px 17px;
  box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  width: 300px;
}

.track_profile_container .fist_div .profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.track_profile_container .profile_id {
  color: var(--text-dark2, #141414);
  font-family: var(--lato);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 16.8px;
  margin: 5px 0;
}

.track_profile_container .fist_div .profile img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.track_profile_container .fist_div .profile h4 {
  color: var(--text-dark2, #141414);
  margin: 0;
  font-size: 14px;
  font-family: var(--lato);
  font-style: normal;
  font-weight: 400;
}

.track_profile_container .profile_status .border_bottom {
  border-bottom: 1px solid var(--Neutral-Separator);
  padding-bottom: 8px;
}

.track_profile_container .profile_status img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-right: 13px;
}

.track_profile_container .profile_status .active_staus {
  font-size: 14px;
  font-family: var(--lato);
  font-style: normal;
  font-weight: 400;
  line-height: 16.8px;
  color: var(--text-dark2);
}

.track_profile_container .profile_status .active_time {
  color: var(--text-5C, #5c5c5c);
  font-size: 14px;
  font-family: var(--lato);
  font-style: normal;
  font-weight: 400;
  line-height: 16.8px;
}

.track_profile_container .profile_status a {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14px;
  color: var(--neutral-primay);
  font-weight: 400;
  font-family: var(--lato);
  margin-top: 8px;
}

.tracking-data-wrapper .right_div iframe {
  height: 100%;
  width: 100%;
  border-radius: 12px;
}

.left_heading .profile h2 {
  color: var(--text-dark2, #141414);
  font-family: var(--lato);
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 16.8px;
  margin: 0;
}

.left_heading .profile img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.location_track_btns button {
  background: transparent;
  border: none;
  color: var(--text-dark2);
  font-family: var(--lato);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.location_track_btns button.active {
  color: var(--neutral-primay);
  border-bottom: 1px solid var(--neutral-primay);
}

.location_track_btns button.active svg path {
  fill: var(--neutral-primay);
}

.live_Data_container {
  /* width: 290px; */
  background: var(--white);
  box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.live_Data_container .heading {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  background-color: var(--neutral-primay);
  color: var(--white);
  padding: 10px 17px;
}

.live_Data_container .heading h3 {
  font-size: 14px;
  font-weight: 400;
  color: var(--white-F7);
  margin: 0;
}

.live_Data_container .inner_content {
  padding: 10px 17px;
}

.live_Data_container .inner_content .bg_light {
  font-size: 14px;
  color: var(--text-dark2);
  font-weight: 400;
  border-radius: 4px;
  background: #e2dddd;
  padding: 3px 6px;
}

.live_Data_container .inner_content .distance span {
  font-size: 10px;
  font-weight: 400;
  font-family: var(--lato);
}

.live_Data_container .inner_content .distance span:last-child {
  color: var(--neutral-primay);
}

.live_Data_container .inner_content .punchin_heading img {
  height: 18px;
  width: 18px;
  object-fit: contain;
}

.live_Data_container .inner_content .punchin_heading p {
  color: var(--text-5C);
  font-size: 14px;
  margin: 0;
  font-weight: 400;
}

.live_Data_container .inner_content .punchin_heading .time {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark2);
}

.live_Data_container .inner_content .date_div {
  margin-bottom: 32px;
}

.live_Data_container .location_mark {
  padding: 8px 12px;
}

.live_Data_container .location_mark svg {
  flex-shrink: 0;
}

.live_Data_container .location_mark p {
  color: var(--neutral-primay);
  font-size: 14px;
  margin: 0;
}

.live_Data_container .location_mark .inner-content {
  padding-left: 20px;
  position: relative;
  display: flex;
  gap: 11px;
}

.live_Data_container .location_mark .inner-content::before,
.live_Data_container .location_mark .travel-time::before {
  position: absolute;
  content: "";
  left: 0;
  height: 100%;
  width: 1px;
  background-color: var(--Menu-Separator);
}

.live_Data_container .location_mark .travel-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  padding-left: 20px;
}

.live_Data_container .location_mark .travel-time p {
  margin: 0;
  color: var(--text-85);
}

.live_Data_container .location_mark .travel-time p:last-child {
  color: var(--neutral-primay);
}

.playback_data_container {
  box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background-color: var(--white);
  overflow: hidden;
}

.playback_data_container .heading {
  font-size: 14px;
  margin: 0;
  font-weight: 400;
  color: var(--white-F7);
  padding: 10px 17px;
  background-color: var(--neutral-primay);
}

.playback_data_container .body {
  padding: 10px 17px;
}

.playback_data_container .body .title {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--gray-darker, #333);
  font-family: var(--lato);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.playback_data_container .body form button {
  padding: 10px 24px;
  background-color: var(--neutral-primay);
  color: var(--whiteFC, #fcfcfc);
  border-radius: 12px;
  border: none;
  margin-top: 32px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
}

.playback_data_container .body form button:hover {
  background-color: var(--primary-color);
}

.playback_data_container .body form .monthly_purchase_heading {
  margin-top: 8px;
}

.playback_data_container .body form .monthly_purchase_heading .select_box svg {
  top: 16px;
}

.playback_data_container .body form .monthly_purchase_heading #dateRangePicker {
  width: 100% !important;
  border-radius: 8px;
  border: 1px solid var(--Input-border, #ebebeb);
  background: #fafafa;
  padding: 12px !important;
  height: 40px;
}

.playback_data_container .body form .monthly_purchase_heading #dateRangePicker::placeholder {
  color: var(--text-85);
  font-size: 14px;
  font-weight: 400;
}

.left_div.track_filter_container {
  gap: 0;
}

.track_filter_container .track_item {
  display: none;
}

.track_filter_container .active {
  display: block;
}

/* ========================= TRACK PROFILE COMPONENT CSS ENDS=================== */

/* assigned labour popup css starts  */
.user_Details_bg,
.assigned_labour_bg,
.add_labour_component_bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--common-pupbg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 25;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.user_Details_bg.active,
.add_labour_component_bg.active,
.assigned_labour_bg.active {
  visibility: visible;
  opacity: 1;
}

.user_details_container,
.user_details_container_role,
.add_labour_component_bg .assigned_labour_content_bg,
.assigned_labour_bg .assigned_labour_content_bg {
  background: var(--white);
  border-radius: 12px;
  padding: 5px;
  max-width: 900px;
  width: 95%;
  max-height: 90%;
  overflow-y: auto;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.user_details_container::-webkit-scrollbar,
.user_details_container_role::-webkit-scrollbar,
.add_labour_component_bg .assigned_labour_content_bg::-webkit-scrollbar,
.assigned_labour_bg .assigned_labour_content_bg::-webkit-scrollbar {
  display: none;
}

.user_details_container_role {
  max-width: 1400px;
}

.user_details_content,
.add_labour_component_bg .assigned_labour_content_bg .content,
.assigned_labour_bg .assigned_labour_content_bg .content {
  background: var(--white);
  padding: 0 24px 24px 24px;
  border-radius: 12px;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid var(--whiteEB);
}

.close-assign-btn:hover,
.add-labour-btn:hover,
.ass_heading svg:hover {
  transform: scale(1.05);
}

.add-labour-btn.print:hover {
  transform: scale(1);
}

/* assigned labour popup css ends */

/* ================== USER DETAILS POPUP CSS STARTS =============== */
.user_Details_bg .top_heading h3 {
  font-weight: 600;
  color: var(--text-dark2);
  font-size: 14px;
  margin: 0;
  text-align: center;
}

.user_Details_bg .top_heading {
  padding: 16px 24px;
  border-bottom: 1px solid var(--Neutral-Gray-100, #edf2f7);
  position: relative;
}

.user_Details_bg .top_heading .close-user-btn {
  position: absolute;
  top: 10px;
  cursor: pointer;
  right: 0;
}

.user_details_container {
  max-width: 800px;
}

.user_details_content .title_text {
  padding: 24px 0 20px 0;
}

.user_details_content .title_text h4 {
  color: var(--text-dark2);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.user_details_content .title_text p {
  color: var(--text-dark2);
  font-size: 14px;
  font-weight: 400;
  font-family: var(--inter);
  margin: 0;
}

.user_details_container_role .user_details_content .title_text p {
  color: var(--text-5C);
  margin-top: 5px;
}

.user_details_content .details .detail_heading {
  color: var(--text-5C, #5c5c5c);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 3px;
}

.user_details_content .details .detail_text {
  color: var(--text-dark2);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.user_details_content .details .status {
  display: flex;
  width: 80px;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: var(--Neutral-Success, #00cc29);
  font-size: 14px;
  font-weight: 700;
  color: var(--whiteFC);
}

.user_details_content .details .status.inactive {
  background: var(--text-5C);
}

/* ================== USER DETAILS POPUP CSS ENDS =============== */

/* ******************* Role management css start ************** */
.role_management_content_container {
  margin-top: 20px;
}

.role_management_content_container .add_exprense_dropdown_container {
  width: 125px;
  overflow: hidden;
  left: 0;
}

.edit_role:hover svg path {
  stroke: var(--primary-color);
}

.role_management_content_container .add_exprense_dropdown_container a {
  padding: 10px 24px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.permission-container thead tr th,
.permission-container tbody tr td {
  padding: 12px 24px;
  border: 1px solid var(--Neutral-Separator);
}

.permission-container tbody tr td:first-child .form-check,
.permission-container thead tr th:first-child .form-check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-right: 0;
  gap: 10px;
  white-space: nowrap;
}

.permission-container thead tr th {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark2);
  background: var(--Button-soft-color, #ccddeb);
}

.permission-container tbody tr td .form-check {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.permission-container tbody tr td .form-check label {
  margin: 0;
  padding: 0;
  margin-top: 3px;
}

.form-check input[type="checkbox"] {
  background-color: transparent;
  height: 18px;
  width: 18px;
  box-shadow: none;
  border-color: var(--text-5C);
}

.form-check input[type="checkbox"]:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: none;
}

.permission-container label input:checked {
  background: var(--primary-color);
}

.role_permission_container .per_heading h3 {
  font-size: 14px;
  font-family: var(--inter);
  color: var(--text-dark2);
  font-weight: 700;
  margin-bottom: 16px;
}

.action-col.hide {
  display: none;
}

.top_heading svg,
.ass_heading svg {
  height: 22px;
  width: 22px;
}

.top_heading svg:hover {
  transform: scale(1.05);
}

.role_assign_form .common_form select,
.role_assign_form .common_form input {
  background-color: transparent;
}

.role_assign_form.active {
  display: none;
}

.role_management_content_container .add_expenses {
  margin-bottom: 20px;
}

.role_assign_form {
  margin-bottom: 24px;
}

/* ******************* Role management css ends  ************** */

/* ----------------- PROFILE PAGE CSS STARTS ------------------------ */
.profile_page_container .profile_heading h3 {
  color: var(--text-dark2k, #141414);
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  margin: 0;
  margin-bottom: 8px;
}

.profile_page_container .profile_heading p {
  color: var(--text-dark2, #141414);
  font-family: var(--inter);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.profile_picture_img_wrapper {
  margin-top: 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.profile_picture_img_wrapper .img img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.edit-button {
  cursor: pointer;
  color: var(--text-dark2, #141414);
  font-size: 14px;
  display: flex;
  padding: 5px 16px;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  background: #f5f5f5;
  font-weight: 500;
  border: none;
}

.profile_img_btn h5 {
  margin: 0;
  color: var(--text-dark2, #141414);
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 700;
}

.profile_img_btn p {
  margin: 0;
  color: var(--text-5C, #5c5c5c);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
}

.profile_page_form form .common_row {
  padding: 32px 0;
  border-top: 1px solid var(--Neutral-Separator);
}

.profile_page_form form .name_container h4 {
  margin: 0;
  color: var(--text-dark2, #141414);
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 800;
}

.profile_page_form form .name_container p {
  margin: 0;
  color: var(--text-5C, #5c5c5c);
  font-size: 14px;
  font-weight: 400;
}

.profile_page_form form .input_wrapper .input_field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile_page_form form .input_wrapper .input_field label {
  color: var(--text-dark2, #141414);
  font-size: 14px;
  font-weight: 500;
}

.profile_page_form form .input_wrapper .input_field input {
  width: 420px;
  border-radius: 8px;
  border: 1px solid var(--Neutral-Separator, #ebebeb);
  padding: 12px 12px;
}

.profile_page_form form .input_wrapper .input_field input:focus {
  outline: 0.5px solid #2e81c7;
}

.change_Tag {
  width: 420px;
}

.change_Tag .input_fieldtwo {
  color: var(--neutral-primay, #005399);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  height: 44px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: var(--Neutral-background, #f2f6fa);
  width: max-content;
}

.gender-selector {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gender-option {
  display: flex;
  height: 48px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid var(--Neutral-Separator, #ebebeb);
  width: 270px;
}

.gender-option.selected {
  border: 1px solid var(--Neutral-Primary, #005399);
  background: #f1f9ff;
  color: var(--neutral-primay);
}

.gender-option:hover {
  border: 1px solid var(--Neutral-Primary, #005399);
  background: #f1f9ff;
  color: var(--neutral-primay);
}

.profile_page_form button {
  color: var(--whiteFC, #fcfcfc);
  font-family: var(--inter);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  height: 44px;
  padding: 8px 20px;
  border: 1px solid var(--neutral-primay);
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background: var(--neutral-primay, #005399);
}

.profile_page_form .border_top {
  border-top: 1px solid var(--Neutral-Separator);
  padding-top: 24px;
  margin-top: 28px;
}

.profile_page_form button:hover {
  color: var(--neutral-primay);
  background-color: transparent;
  border-color: var(--neutral-primay);
}

/* ----------------- PROFILE PAGE CSS ENDS ------------------------ */

/* +++++++++++++++ COMPANY SETTING CSS STARTS +++++++++++++++++++ */
.company_setting_heading {
  padding: 24px 0;
}

.company_setting_heading h3 {
  color: var(--text-dark2, #141414);
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  margin-bottom: 8px;
}

.company_setting_heading p {
  color: var(--text-dark2, #141414);
  font-family: var(--inter);
  font-size: 14px;
  font-weight: 400;
}

/* +++++++++++++++ COMPANY SETTING CSS ENDS +++++++++++++++++++ */

/* ============= INVENTORY CSS STARTS ============ */
.form_discard_save .submit.view {
  padding: 8px 16px;
}

.inventory_transfer_btn {
  background-color: transparent !important;
  color: var(--primary-color) !important;
}

.inventory_transfer_btn:hover {
  background-color: var(--Button-soft-color) !important;
}

.inventory_table {
  margin-top: 24px;
}

.calender_icon.bg {
  border-radius: 10px;
  background: rgba(13, 153, 255, 0.1);
  padding: 10px;
}

/* ============= INVENTORY CSS END============ */

/* *********************** backup and resotre page css starts *************** */
.backup_filter_button_container {
  border-bottom: 1px solid var(--Neutral-Separator, #ebebeb);
}

.backup_filter_button_container button {
  border: none;
  background-color: transparent;
  color: var(--text-dark2, #141414);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  padding-bottom: 12px;
  position: relative;
}

.backup_filter_button_container button.active {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
}

.backup_filter_button_container button.active::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: var(--primary-color);
  height: 1px;
  left: 0;
}

.backupfilterable_data {
  padding: 24px 0;
}

.backupfilterable_data .data {
  display: none;
  align-items: center;
  justify-content: end;
}

.backupfilterable_data .active {
  display: flex;
}

.event_filter .data {
  all: unset;
  display: none;
}

.event_filter .active {
  display: block;
}

.table_Date_container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.table_Date_container p {
  margin: 0;
}

.refresh,
.download {
  cursor: pointer;
}

/* *********************** backup and resotre page css ends *************** */

/* ====================== trail balance page css starts ============= */
.trail_container {
  max-width: 1550px;
  margin: auto;
  padding-top: 24px;
  padding-bottom: 44px;
}

.center_div_pagination .pagination_num {
  font-size: 18px;
  font-weight: 500;
  color: var(--neutral-primay);
  display: flex;
  align-items: center;
  gap: 5px;
}

.center_div_pagination .pagination_num .box,
.center_div_pagination .pagination_num .box2 {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center_div_pagination .pagination_num .box.active {
  border: 1px solid var(--Menu-Separator, #c2c2c2);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trail_print_table_container {
  border: 0.5px solid var(--Menu-Separator, #c2c2c2);
  margin-top: 44px;
  background: var(--whiteFC, #fcfcfc);
  box-shadow: 4px 6px 12px 0 rgba(0, 0, 0, 0.15);
  padding-bottom: 22px;
}

.trial_print_table_header {
  padding: 22px clamp(16px, 4vw, 53px);
}

.trail_print_table_container .print-body {
  padding: 24px clamp(16px, 4vw, 53px) 24px clamp(16px, 4vw, 53px);
  border-top: 1px solid var(--Menu-Separator, #c2c2c2);
  border-bottom: 1px solid var(--Menu-Separator, #c2c2c2);
}

.trail_logo img {
  width: 82px;
  height: 45px;
  object-fit: contain;
}

.trail_print_table_container .common_table .table tbody tr:nth-child(even) {
  background-color: var(--whiteFA);
}

.trail_print_table_container .common_table .table th,
.trail_print_table_container .common_table .table td {
  border: 1px solid var(--Menu-Separator, #c2c2c2);
}

.trail_print_table_container .open_trail_table tfoot tr td {
  font-size: 14px;
  background-color: var(--whiteFA);
  font-weight: 800;
}

.trail_print_footer {
  padding: 24px clamp(20px, 4vw, 53px) 0 clamp(20px, 4vw, 53px);
}

.stock-checkbox {
  display: none;
}

.trail_print_footer p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark2);
}

.center_print_div p {
  color: var(--text-dark2, #141414);
  margin: 0;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.center_print_div h4 {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.last_trail_print_header_div p {
  color: var(--text-dark2, #141414);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.last_trail_print_header_div {
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: end;
}

.trail_balancedate .form_input input,
.trail_balancedate .form-select {
  background-color: transparent;
}

.trail_table_heading,
.c_total,
.c1_total {
  color: var(--text-dark2);
  font-weight: 800;
  font-size: 14px;
}

.c_total {
  text-align: end;
}

/* ====================== trail balance page ends ============= */

/* ****************** EMPLOYEE PAGE CSS STARTS ******************* */
.table_profile_image {
  display: flex;
  align-items: center;
  gap: 8px;
}

.table_profile_image img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 30px;
}

.common_employee_bg {
  background-color: var(--white);
  border-radius: 18px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.15);
}

.common_employee_bg .content {
  padding: 20px;
}

.common_employee_bg .heading {
  border-bottom: 1px solid var(--Neutral-Separator, #ebebeb);
  padding: 12px 20px;
  position: relative;
}

.common_employee_bg .heading::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 22px;
  background-color: var(--primary-color);
  width: 3px;
  border-radius: 3px;
}

.common_employee_bg .heading h3 {
  color: var(--text-dark2, #141414);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.sub_tag {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 400;
  color: var(--text-dark2);
  margin-top: 5px;
}

.sub_tag p {
  margin: 0;
}

.sub_tag a {
  color: var(--neutral-primay);
}

.document_upload {
  max-width: 2000px !important;
  width: 100% !important;
}

.document_upload>div {
  width: 100%;
}

.document_upload .file-upload {
  max-width: 2000px;
  width: 100% !important;
  border-radius: 8px;
  border: 1px solid var(--whiteEB, #ebebeb);
  padding: 8px 16px !important;
  outline-color: var(--login-border) !important;
  box-shadow: none;
  background: var(--whiteFA);
  align-items: start;
  height: auto;
}

.document_upload .file-upload p {
  margin: 0;
  color: var(--text-85);
  text-align: left;
  margin-right: auto;
}

.document_upload .preview img {
  max-height: 100px !important;
  object-position: top;
}

.document_upload .remove-btn {
  top: 8px;
}

/* ****************** EMPLOYEE PAGE CSS ENDS******************* */

/* ======================= LEAVE PAGE CSS STARTS ====================== */
.leave_list_common_box {
  background: #e3f5ff;
  border-radius: 16px;
  padding: 24px;
  height: 112px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  max-width: 400px;
}

.leave_list_common_box.bg_next {
  background: #e5ecf6;
}

.leave_list_common_box .list_heading {
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: 100%;
}

.employee_leave_list_common_box .list_heading {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.leave_list_common_box .list_heading p,
.employee_leave_list_common_box .list_heading p {
  color: #6b7280;
  text-align: right;
  font-family: var(--inter);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  margin: 0;
  padding-bottom: 12px;
}

.leave_list_common_box .list_heading h4,
.employee_leave_list_common_box .list_heading h4 {
  margin: 0;
  color: #202c4b;
  text-align: right;
  font-family: var(--inter);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 21.6px;
}

.leave_list_common_box .shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
}

.leave_list_common_box .shape img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.leave_list_common_box .shape .inner_icon {
  display: flex;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background-color: var(--white);
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  top: 35px;
  left: 40px;
}

.employee_leave_list_common_box {
  background: #e3f5ff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  max-width: 400px;
  border-top-right-radius: 0;
}

.employee_leave_list_common_box .list_heading p,
.employee_leave_list_common_box .list_heading h4 {
  text-align: start;
}

.employee_leave_list_common_box .list_heading p {
  font-size: 14px;
  padding-bottom: 6px;
}

.employee_leave_list_common_box .list_heading h4 {
  font-size: 18px;
}

.employee_leave_list_common_box .shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
}

.employee_leave_list_common_box .shape img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.employee_leave_list_common_box .shape .inner_icon {
  display: flex;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  top: 25px;
  right: 20px;
}

.remainaing_leave_tag {
  color: #3b7080;
  font-family: var(--inter);
  font-size: 10.5px;
  font-style: normal;
  font-weight: 600;
  width: max-content;
  border-radius: 4px;
  background: #edf2f4;
  display: flex;
  height: 18.5px;
  padding: 2px 6.809px 3.5px 7.19px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  margin-top: 6px;
}

.remainaing_leave_tag.blue {
  color: #1b84ff;
  background-color: #d6e9ff;
}

.employee_leave_list_common_box.bgGroup2 {
  background-color: #e5ecf6;
}

.remainaing_leave_tag.pink {
  color: #fd3995;
  background: #ffedf6;
}

.remainaing_leave_tag.purple {
  color: #ab47bc;
  background: #f7eef9;
}

.row_Del_Btn {
  display: flex;
  width: 25px;
  height: 29px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: #de2e2e;
  cursor: pointer;
}

.row_Del_Btn:hover {
  background: #bc2121;
}

/* ======================= LEAVE PAGE CSS ENDS ====================== */

/* setting icon css  */
.settting_page {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: -2px;
  width: 40px;
  height: 40px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  z-index: 100;
  cursor: pointer;
  background-color: var(--neutral-primay);
  border: 1px solid var(--neutral-primay);
}

.settting_page:hover {
  background-color: transparent;
}

.settting_page:hover svg path {
  stroke: var(--neutral-primay);
}

.rotate-icon {
  animation: rotate 2s linear infinite;
  transform-origin: center;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* setting icon css  */
/* ******************************** CHAT PAGE CSS STARTS ****************** */
.chat_box_container {
  height: calc(100vh - 200px);
  overflow: hidden;
  display: flex;
  gap: 16px;
}

.chat_profile_search_container {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 3;
  background: var(--white);
}

.chat_profile_search_container input {
  border: 1px solid #e5e7eb;
  height: 46px;
  border-radius: 5px;
  color: var(--text-dark2);
  font-size: 14px;
  width: 100%;
  padding: 15px 10px;
  outline-color: var(--Button-soft-color);
}

.chat_box_container .chat_box_left {
  width: 400px;
  flex-shrink: 0;
  padding: clamp(16px, 3vw, 24px);
  padding-top: 0;
  height: 100%;
  overflow-y: auto;

  /* Smooth scrollbar behavior */
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

/* Hide scrollbar by default */
.chat_box_container .chat_box_left::-webkit-scrollbar {
  width: 5px;
  background: transparent;
}

/* Make scrollbar thumb invisible initially */
.chat_box_container .chat_box_left::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 10px;
}

/* Show scrollbar only when hovering over the chat box */
.chat_box_container .chat_box_left:hover::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  /* light grey on hover */
}

.chat_box_container .chat_box_left:hover::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

.chat_box_container .chat_box_left:hover {
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

.chat_profile_search_container input::placeholder {
  color: #9ca3af;
  font-size: 14px;
}

.chat_box_container .chat_box_left>h2 {
  font-size: 18px;
  color: #202c4b;
  font-weight: 600;
  margin-bottom: 16px;
}

.chat_box_container .c_heaidng {
  color: #202c4b;
  font-size: 16px;
  font-weight: 600;
  margin: 16px 0;
}

.chat_profile {
  border-radius: 8px;
  background: var(--white);
  padding: 20px 16px;
  box-shadow: 0 1px 5px 1px #f3f3f3;
  cursor: pointer;
}

.chat_profile .img,
.right_chat .img,
.left_chat .img {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.right_chat .img img,
.chat_profile .img img,
.left_chat .img img {
  object-fit: cover;
  height: 45px;
  width: 45px;
  border-radius: 50%;
}

.chat_profile .img.active .active_dot {
  background-color: #03c95a;
  border: 3px solid var(--white);
  height: 13px;
  width: 13px;
  border-radius: 50%;
  position: absolute;
  bottom: 0px;
  right: 0;
}

.chat_profile .name {
  font-size: 14px;
  font-weight: 600;
  color: #202c4b;
}

.chat_profile .time,
.chat_profile .msg {
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
}

.call_missed,
.incomming_call {
  font-size: 14px;
  font-weight: 400;
  color: #e70d0d;
  margin-left: 10px;
}

.incomming_call {
  color: #03c95a;
}

.chat_profile .msg_num {
  background-color: #e70d0d;
  width: 30px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
}

.chat_profile.active_chat {
  background-color: #e8f5e9;
  border-left: 4px solid #25d366;
}

.chat_box_right {
  width: calc(100% - 400px);
  display: none;
}

.chat_box_right .top_profile_bar {
  position: relative;
}

.chat_box_right .top_profile_bar .chat_profile {
  padding: 8px 16px;
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
}

.right_chat_content_wrapper {
  height: calc(100% - 65px);
  overflow-y: auto;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.right_chat_content_wrapper::-webkit-scrollbar {
  display: none;
}

.messager_name {
  margin-top: 5px;
}

.messager_name h5 {
  color: #202c4b;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.messager_name p {
  color: #6b7280;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.right_chat_content_wrapper .content {
  padding: 10px 16px;
}

.right_chat_content_wrapper .chat_content>p {
  margin: 0;
  color: #6b7280;
  border-radius: 16px 16px 16px 0;
  background: #f8f9fa;
  padding: 18px;
  max-width: 80%;
  width: fit-content;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.right_chat_content_wrapper .right_chat .chat_content>p {
  margin-left: auto;
  border-radius: 16px 16px 0 16px;
}

.right_chat_content_wrapper .right_chat .chat_content .messager_name {
  margin-left: auto;
  justify-content: end;
  max-width: 80%;
}

/* geo fence image  */
.geo_fence_map {
  border-radius: 12px;
  border: 1px solid var(--Neutral-Separator, #ebebeb);
  background: var(--white);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
  padding: 24px;
  min-height: 750px;
  height: 100%;
  overflow: hidden;
}

.model_tag {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark2);
  font-size: 14px;
  font-weight: 400;
}

.model_tag .tag {
  width: 36px;
  height: 36px;
  background-color: var(--whiteEB);
  border-radius: 50%;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* chart search box css  */

.chat_box_msg_type_container {
  width: 100%;
  position: fixed;
  right: 16px;
  bottom: 0px;
  z-index: 10;
  padding: 10px 0;
  width: calc(100% - 705px);
  border-top: 1px solid #e5e7eb;
}

.chat_box_msg_type_container .input_box {
  position: relative;
}

.mic_Svg {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  cursor: pointer;
}

.chat_box_msg_type_container .input_box input {
  border-radius: 8px;
  background: #f8f9fa;
  width: 100%;
  border: none;
  outline: none;
  height: 50px;
  padding-left: 45px;
  padding-right: 185px;
  width: 100%;
}

.chat_box_msg_type_container .input_box input::placeholder {
  color: #6b7280;
  font-weight: 400;
  font-size: 14px;
  font-family: var(--inter);
}

.input_Extra_Feilds {
  display: flex;
  align-items: center;
  gap: 24px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.input_Extra_Feilds .emoj,
.input_Extra_Feilds .file_add,
.input_Extra_Feilds .dot,
.input_Extra_Feilds button {
  cursor: pointer;
}

.chat_box_msg_type_container button {
  border-radius: 8px;
  background-color: var(--neutral-primay);
  color: var(--white);
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--neutral-primay);
}

.chat_profile_verlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: var(--common-pupbg);
  display: none;
}

.closeChatProfileBtn {
  position: absolute;
  top: 20px;
  right: 16px;
  cursor: pointer;
  display: none;
}

/* chart search box css  */

/* ******************************** CHAT PAGE CSS ENDS ****************** */

.driver_list_form .file-upload {
  max-width: 1000px;
  min-height: 145px;
  height: auto;
}

.driver_list_form .license_pc .file-upload {
  max-width: 360px;
}

/* ck editor css  */
#toggleToolbar {
  position: absolute;
  top: 5px;
  right: 10px;
  background-color: transparent;
  border: none;
  width: max-content;
}

.ck-rounded-corners .ck.ck-editor__main>.ck-editor__editable,
.ck.ck-editor__main>.ck-editor__editable.ck-rounded-corners {
  border-bottom-left-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
  border: 1px solid var(--whiteEB, #ebebeb) !important;
}

.ck-toolbar {
  border-top-left-radius: 8px !important;
  border-top-right-radius: 8px !important;
  border: 1px solid var(--whiteEB, #ebebeb) !important;
}

/* ck editor css ends */

/* ***************** driver list page css **************  */
.driver_document_details {
  padding-top: 24px;
  border-top: 1px solid var(--Neutral-Separator);
  margin-top: 24px;
}

.driver_document_details h3 {
  font-size: 16px;
  margin: 0;
  color: var(--text-dark2);
  font-weight: 700;
  padding-bottom: 20px;
}

.document_image p {
  font-weight: 500;
  color: var(--text-5C);
  font-size: 14px;
  margin-bottom: 8px;
}

.document_image .img {
  min-height: 165px;
  background-color: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
}

.document_image .img img {
  width: 100%;
}

.hide_arrow .file-item .remove-btn {
  display: none !important;
}

/* ***************** driver list page css ends **************  */

/* ==================== VEHICLE LIST PAGE CSS STARTS =============== */
.vehicle_list_popup_outer_bg {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 150;
  background-color: var(--common-pupbg);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.vehicle_list_popup_outer_bg.show {
  display: flex;
}

.vehicle_list_popup_content {
  background-color: var(--white);
  height: 85%;
  max-width: 1050px;
  width: 90%;
  border-radius: 24px;
  padding: clamp(16px, 3vw, 44px);
  overflow-y: auto;

  scrollbar-color: var(--neutral-primay) #f5f5f5;
  clip-path: inset(0 round 24px);
  visibility: hidden;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease-in-out;
}

.vehicle_list_popup_content.show {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

/* Chrome, Edge, Safari custom scrollbar */
.vehicle_list_popup_content::-webkit-scrollbar {
  width: 6px;
}

.vehicle_list_popup_content::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}

.vehicle_list_popup_content::-webkit-scrollbar-thumb {
  background-color: var(--neutral-primay);
  border-radius: 10px;
  border: 2px solid #f5f5f5;
}

.heading_container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.heading_container .heading h3 {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 800;
  font-family: var(--lato);
  color: var(--text-dark2);
  margin-bottom: 2px;
}

.heading_container .heading p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark2);
  margin: 0;
}

.vehicle_pop_close_btn {
  cursor: pointer;
}

.vehicle_registration_steps .steps {
  height: 62px;
  width: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  position: relative;
  z-index: 2;
  border: 10px solid var(--white);
}

.vehicle_registration_steps .steps.active {
  background-color: #ebf6ff;
}

.vehicle_registration_steps .steps.light_green {
  background-color: #e2f5e6;
}

.vehicle_registration_steps .steps_container p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark2);
}

.kg {
  color: var(--text-85) !important;
}

.vehicle_registration_steps .steps_container p.light_green {
  color: #008f1d;
}

.vehicle_registration_steps .steps_container p.active {
  color: var(--neutral-primay);
}

.vehicle_registration_steps .steps_container {
  position: relative;
}

.vehicle_registration_steps .steps_container::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  border-top: 3px dashed #ebebeb;
  z-index: 1;
  border-image: repeating-linear-gradient(to right,
      #ebebeb 0,
      #ebebeb 10px,
      transparent 10px,
      transparent 20px) 1;
}

.registration_title {
  padding: 24px 0px 4px 0;
}

.registration_title p {
  font-size: 14px;
  color: var(--text-5C);
  font-weight: 400;
}

.registration_title h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark2);
  margin-bottom: 4px;
}

.vehicle_image_select_container {
  border-radius: 24px;
  border: 1px solid var(--Neutral-Separator, #ebebeb);
  background: var(--white);
  padding: 24px;
  max-width: 470px;
  width: 100%;
}

.vehicle_image_select_container .heading h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark2);
  margin-bottom: 4px;
}

.vehicle_image_select_container .heading .file_num {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-85);
}

.vehicle_image_select_container .heading p {
  color: var(--text-5C);
  font-size: 14px;
  font-weight: 400;
}

.image_photo {
  width: 200px;
  height: 130px;
  border: 1px solid var(--whiteEB);
  background-color: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.image_photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.image_add_btn {
  background-color: var(--Menu-Separator);
  height: 24px;
  width: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  cursor: pointer;
}

.image_photo input[type="file"] {
  display: none;
  height: 100%;
  width: 100%;
}

/* multi select dropddown  */
.multi_select_tag {
  margin-top: 16px;
  font-family: var(--lato);
}

.multi_select_tag .multi-select {
  position: relative;
  width: 100%;
}

.multi_select_tag .select-box {
  border: 1px solid var(--Neutral-Separator);
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  min-height: 48px;
  align-items: center;
}

.multi_select_tag .select-box:after {
  content: "\ea4e";
  font-family: "remixicon";
  font-size: 16px;
  color: #848484;
  pointer-events: none;
  position: absolute;
  font-size: 24px;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.multi_select_tag .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.multi_select_tag .tag {
  font-size: 14px;
  color: var(--text-dark2);
  font-weight: 400;
  padding: 8px;
  border: 1px solid var(--Neutral-Separator);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.multi_select_tag .options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid var(--whiteEB);
  border-top: none;
  background: var(--white);
  z-index: 100;
  display: none;
  max-height: 150px;
  overflow-y: auto;
}

.multi_select_tag .option {
  padding: 8px;
  cursor: pointer;
}

.multi_select_tag .option:hover {
  background: #f0f0f0;
}

.multi_select_tag .option.selected {
  color: var(--text-dark2);
  font-size: 14px;
  font-weight: 400;
}

/* multi select dropddown ends */
.vehicle_details_Form {
  padding-top: 40px;
  border-top: 1px solid var(--whiteEB);
  margin-top: 60px;
  margin-bottom: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--whiteEB);
}

.vehicle_details_Form .common_form input,
.vehicle_details_Form .common_form select {
  background: transparent;
}

.vehicle_list_popup_outer_bg .ck.ck-editor__main>.ck-editor__editable:not(.ck-focused),
.ck.ck-toolbar.ck-toolbar_grouping>.ck-toolbar__items {
  background: transparent;
}

.vehicle_details_Form .registration_title {
  padding: 0;
  padding-bottom: 10px;
}

.next_Swap_buttons_container .previous_btn {
  padding: 8px 16px;
  background-color: var(--whiteEB);
  border-radius: 12px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  font-size: 14px;
  color: var(--text-dark2);
  font-weight: 500;
  cursor: pointer;
}

.next_Swap_buttons_container .previous_btn.disabled {
  color: var(--Menu-Separator);
}

.editor_tag {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--inter);
  color: var(--text-dark2);
}

/* list of task masg popup history css  */

.Msg_history_btn {
  font-size: 12px;
  background-color: transparent;
  border: none;
  text-decoration: underline;
  color: var(--text-dark2);
  font-weight: 700;
}

.msg_history_container {
  margin-bottom: 20px;
  max-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  scrollbar-width: thin;
  /* for Firefox */
  scrollbar-color: var(--neutral-primay) #f5f5f5;
  /* for Firefox */
}

/* Chrome, Edge, Safari custom scrollbar */
.msg_history_container::-webkit-scrollbar {
  width: 6px;
}

.msg_history_container::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}

.msg_history_container::-webkit-scrollbar-thumb {
  background-color: var(--neutral-primay);
  border-radius: 10px;
  border: 2px solid #f5f5f5;
}

.msg_history_container::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-color);
}

.msger_profile {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.msger_profile img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.msg_history_container .description_message {
  gap: 16px;
  display: none;
}

.msg_history_container .description_message:first-child {
  display: flex;
}

.msg_history_container.showAll .description_message {
  display: flex;
}

.description_message .msg_box {
  background-color: var(--whiteFA);
  border-radius: 5px;
  max-width: 250px;
  width: 100%;
  padding: 12px;
  position: relative;
}

.description_message .msg_box svg {
  position: absolute;
  top: 0;
  left: -5px;
}

.description_message .msg_box .name {
  font-size: 12px;
  font-weight: 600;
  color: #2c2c2e;
}

.description_message .msg_box .tag {
  font-size: 12px;
  font-weight: 400;
  color: #666668;
}

.description_message .msg_box p {
  font-size: 12px;
  color: #2c2c2e;
  margin: 0;
  padding: 1px 0;
}

.description_message .msg_box .time {
  color: #666668;
  font-size: 12px;
  text-align: end;
}

/* list of task masg popup history css ends */

/* vehicle addtional details checkbox  */
.vehicle_additional_details_chekbox {
  padding-top: 16px;
  padding-bottom: 40px;
}

.checkbox_wrappper label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark2);
  font-size: 14px;
  cursor: pointer;
}

.checkbox_wrappper .form-check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  padding: 20px 16px;
  border-radius: 12px;
  border: 1px solid var(--Neutral-Separator);
}

/* vehicle addtional details checkbox  */

/* vehicle list form detials fill up details page css starts  */
.vehicle_form_details_wrapper {
  padding: 0 clamp(16px, 2vw, 32px);
  margin-bottom: clamp(44px, 5vw, 84px);
}

.vehicle_form_details_wrapper .header {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vehicle_form_details_wrapper .header .back_btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--text-dark2);
  font-weight: 500;
}

.vehicle_form_details_wrapper .header .approve_btn {
  border-radius: 12px;
  border: 1px solid var(--Neutral-Primary, #005399);
  background: #f2f6fa;
  display: flex;
  height: 40px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: max-content;
  font-size: 14px;
  color: var(--neutral-primay);
  font-weight: 600;
}

.vehicle_form_details_wrapper .header .approve_btn:hover {
  background: #e9f4ff;
}

.vehicle_form_details_wrapper .inner_frame {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--Neutral-Separator, #ebebeb);
  background: var(--whiteFA);
  margin: 24px 0 0px 0;
}

.vehicle_form_details_wrapper .top_frame {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
}

.vehicle_form_details_wrapper p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark2);
}

.vehicle_form_details_wrapper h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark2);
  margin-bottom: 20px;
}

.car_slider_wrappper {
  height: 165px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.car_slider_wrappper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content_h_wrapper p {
  font-size: 14px;
  color: var(--text-5C);
  font-weight: 400;
  padding-bottom: 8px;
}

.content_h_wrapper h4 {
  color: var(--text-dark2);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.car_color_box .box {
  background-color: #10078e;
  height: 18px;
  width: 18px;
  border-radius: 4px;
}

.ser_type>div {
  font-size: 14px;
  color: var(--whiteFC);
  font-weight: 600;
  padding: 8px 16px;
  width: max-content;
  border-radius: 12px;
  background-color: var(--text-dark2);
}

.vehicle_form_details_wrapper .top_frame {
  background-color: var(--white);
  padding-bottom: 32px;
}

.common_padding_top_down {
  padding: 40px 0;
  margin: 40px 0;
  border-top: 1px solid var(--Neutral-Separator);
  border-bottom: 1px solid var(--Neutral-Separator);
}

.common_padding_top_down .external_setup,
.cpadding_bottom .external_setup {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  justify-content: space-between;
  gap: 24px;
}

.cpadding_bottom {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--Neutral-Separator);
}

.gap20 {
  gap: 20px;
}

.vehicle_final_details_showCase_wrapper .back_btn_wrapper {
  border-bottom: 1px solid var(--Neutral-Separator);
  padding: 18px clamp(16px, 2vw, 32px);
  height: 65px;
}

.vehicle_final_details_showCase_wrapper .back_btn_wrapper button {
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.data_success_wrapper {
  height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.data_success_wrapper .tick_img {
  height: 120px;
  width: 120px;
}

.data_success_wrapper .tick_img .img.active {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.data_success_wrapper .content h3 {
  font-size: clamp(20px, 2vw, 24px);
  color: var(--text-dark2);
  font-weight: 800;
  margin-top: 14px;
  margin-bottom: 8px;
}

.data_success_wrapper .content p {
  margin: 0;
  font-size: 14px;
  color: var(--text-dark2);
  font-weight: 400;
  font-family: var(--inter);
}

.data_success_wrapper .content a {
  background-color: var(--neutral-primay);
  color: var(--white);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 420px;
  width: 100%;
  margin-top: 24px;
  border-radius: 12px;
  border: 1px solid var(--neutral-primay);
}

.data_success_wrapper .content a:hover {
  color: var(--primary-color);
  background-color: transparent;
}

.data_success_wrapper .company_logo {
  width: 130px;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.hidden {
  display: none;
}

.vehicleSlider .swiper-pagination-bullet {
  background-color: #c2c2c2;
}

.vehicleSlider .swiper-pagination-bullet-active {
  background-color: var(--white);
}

/* vehicle list form detials fill up details page css ends */
/* ==================== VEHICLE LIST PAGE CSS ENDS =============== */

/* *************** LIVE LOCATION PAGE CSS STARTS *************** */
.engine_status {
  font-size: 12px;
  color: var(--text-dark2);
  font-weight: 400;
}

.dot_color_div {
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background-color: #007c19;
}

.dot_color_div.red {
  background-color: #f00;
}

/* *************** LIVE LOCATION PAGE CSS ENDS *************** */

/* =============== Supervisor Dashboard CSS STARTS =============== */

.supervisor_top_chart_container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(16px, 3vw, 38px);
  font-family: var(--inter);
}

.supervisor_top_chart_container .light_blue {
  background: #e3f5ff;
}

.supervisor_top_chart_container .light_grey {
  background: #e5ecf6;
}

.supervisor_top_chart_container .c_div {
  padding: clamp(16px, 3vw, 24px);
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.supervisor_top_chart_container .left_content_div h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark2);
  margin: 0;
}

.supervisor_top_chart_container .left_content_div h5 {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 800;
  color: var(--text-dark2);
  margin: 0;
  font-family: var(--lato);
  padding-top: 8px;
}

.supervisor_top_chart_container .left_content_div p {
  font-size: 16px;
  font-weight: 400;
  color: #45556c;
  margin: 0;
  padding-top: 10px;
}

.supervisor_top_chart_container .right_content_div {
  height: 36px;
  width: 36px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 5px;
}

.supervisor_top_chart_container .right_content_div.light_orange {
  background: #fff7ed;
}

.supervisor_top_chart_container .right_content_div.light_green {
  background: #f0fdf4;
}

.supervisor_chart_container .weekly_chart,
.supervisor_chart_container .bujet_chart {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
  padding: clamp(16px, 2vw, 25px) clamp(24px, 3vw, 45px) clamp(16px, 2vw, 25px) clamp(16px, 2vw, 25px);
}

.supervisor_chart_container .weekly_chart h3,
.supervisor_chart_container .bujet_chart h3 {
  margin: 0 0 20px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark2);
}

.supervisor_chart_container .weekly_chart canvas {
  width: 100%;
  height: 320px !important;
}

.supervisor_chart_container .bujet_chart canvas {
  height: 280px !important;
}

.labour_chart_container canvas {
  height: 180px !important;
  margin-top: 20px;
}

.labour_chart_container h4 {
  color: #45556c;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.labour_chart_container button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  background-color: var(--neutral-primay);
  color: var(--white);
  padding: 8px 16px;
  border: none;
  margin-top: 20px;
  border-radius: 12px;
  font-size: 16px;
}

.custom-legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 12px;
  font-size: 13px;
  color: #333;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}

.legend-item svg {
  width: 16px;
  height: 16px;
}

.active_project_Container {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
}

.active_project_Container h4 {
  font-size: 14px;
  margin-bottom: 24px;
  color: var(--text-dark2);
  font-weight: 400;
}

.active_project_table table thead tr th {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark2);
  padding: 12px 16px;
  border: 0;
  border-bottom: 1px solid var(--Neutral-Separator, #e9eaeb);
  background: var(--Button-soft-color, #ccddeb);
}

.active_project_table table thead tr th:first-child {
  border-top-left-radius: 16px !important;
}

.active_project_table table thead tr th:last-child {
  border-top-right-radius: 16px !important;
}

.task_progress meter {
  width: 80px;
  height: 12px;
  border-radius: 10px;
}

/* WebKit browsers (Chrome, Safari, Edge) */
.task_progress meter::-webkit-meter-bar {
  background: rgba(3, 2, 19, 0.2);
  border-radius: 10px;
}

.task_progress meter::-webkit-meter-optimum-value {
  background: #030213;
  border-radius: 10px;
}

.task_progress meter::-webkit-meter-suboptimum-value {
  background: #030213;
}

.task_progress meter::-webkit-meter-even-less-good-value {
  background: #030213;
}

/* Firefox */
.task_progress meter::-moz-meter-bar {
  background: #030213;
  border-radius: 10px;
}

.task_progress,
.table_txt {
  color: #45556c;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.active_project_table table tr td button.green {
  display: flex;
  height: 22px;
  padding: 2px 8px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  border: 1px solid #b9f8cf;
  background: #dcfce7;
  color: #016630;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.active_project_table table tr td button.red {
  display: flex;
  height: 22px;
  padding: 2px 8px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  border: 1px solid #ffc9c9;
  background: #ffe2e2;
  color: #9f0712;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.active_project_table table tr td button.orange {
  display: flex;
  height: 22px;
  padding: 2px 8px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  border: 1px solid #ffd6a7;
  background: #ffedd4;
  color: #9f2d00;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.active_project_table table tbody tr td {
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 8px;
}

.right_labour_management {
  border-radius: 14px;
  border: 1px solid var(--chart-border);
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  padding: clamp(16px, 3vw, 24px);
}

.right_labour_management h4 {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  color: var(--storm-blue);
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
}

.right_labour_management .total_labour_tag {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 10px;
  background: var(--Button-soft-color, #ccddeb);
  margin-top: 30px;
}

.right_labour_management .total_labour_tag p {
  color: #45556c;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  padding-bottom: 5px;
}

.right_labour_management .total_labour_tag h4 {
  font-size: 14px;
  color: var(--text-dark2);
  font-weight: 400;
}

.labour_track_container .labour_present {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #b9f8cf;
  background: #f0fdf4;
}

.labour_track_container .labour_absent {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ffc9c9;
  background: #fef2f2;
}

.labour_track_container .labour_present h4 {
  color: #016630;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.labour_track_container .labour_absent h4 {
  color: #9f0712;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.labour_track_container .labour_present p {
  color: #00a63e;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  padding-top: 8px;
}

.labour_track_container .labour_absent p {
  color: #e7000b;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  padding-top: 8px;
}

.att_work_time_container {
  padding: clamp(16px, 3vw, 24px);
  border-radius: 14px;
  border: 1px solid var(--chart-border);
  background: var(--white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.att_work_time_container h4 {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--storm-blue);
  font-size: 16px;
  margin-bottom: 24px;
}

.att_work_time_container .box {
  border-radius: 10px;
  border: 1px solid #b9f8cf;
  background: #f0fdf4;
  padding: 14px;
}

.att_work_time_container .box h4 {
  color: #016630;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 10px;
}

.att_work_time_container .box p {
  color: #00a63e;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.att_work_time_container .box2 {
  border-radius: 10px;
  border: 1px solid #ffd6a7;
  background: #fff7ed;
  padding: 14px;
}

.att_work_time_container .box2 h4 {
  color: #9f2d00;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 20px;
}

.att_work_time_container .box2 p {
  color: #f54900;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.att_work_time_container .box3 {
  border-radius: 10px;
  border: 1px solid #bedbff;
  background: #eff6ff;
  padding: 14px;
}

.att_work_time_container .box3 h4 {
  color: #193cb8;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 20px;
}

.att_work_time_container .box3 p {
  color: #155dfc;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.att_work_time_container .box4 {
  border-radius: 10px;
  border: 1px solid #e9d4ff;
  background: #faf5ff;
  padding: 14px;
}

.att_work_time_container .box4 h4 {
  color: #6e11b0;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 20px;
}

.att_work_time_container .box4 p {
  color: #9810fa;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.att_work_time_container h5 {
  color: #45556c;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.activity_list_container .activities h5 {
  color: var(--charcoal-blue);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  margin: 0;
  margin-bottom: 2px;
}

.activity_list_container .activities p {
  color: #62748e;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  margin: 0;
}

.activity_list_container .activities .right_div p {
  color: #90a1b9;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  margin: 0;
}

.activity_list_container .activities {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-radius: 10px;
  border: 1px solid var(--chart-border);
  background: var(--white);
  padding: 10px 8px;
}

.activity_list_container .activities .left_div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site_image_upload_container {
  padding: clamp(16px, 3vw, 24px);
  border-radius: 14px;
  border-radius: 14px;
  border: 1px solid var(--chart-border);
  background: var(--white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.site_image_upload_container h4 {
  color: var(--storm-blue);
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.site_image_upload_container button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: #1f6feb;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
  position: relative;
}

.site_image_upload_container button:hover {
  background: #263448;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.photo-card {
  border-radius: 10px;
  border: 1px solid var(--chart-border);
  padding: 2px;
  font-size: 12px;
  background: var(--white);
  position: relative;
}

.photo-card img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.photo-card .info {
  margin-top: 4px;
  padding: 5px;
}

.photo-card .title {
  color: var(--charcoal-blue);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.photo-card .time {
  color: #90a1b9;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.site_image_upload_container button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: var(--charcoal-blue);
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
  position: relative;
}

.site_image_upload_container button:hover {
  background: #28384e;
}

.site_image_upload_container button input[type="file"] {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.photo-card .removeBtn {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: rgba(0, 0, 0, 0.8);
  border: none;
  color: white;
  font-size: 18px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-card .removeBtn:hover {
  background-color: rgba(255, 0, 0, 0.8);
}

#uploadButton.dragover {
  background: #0056b3;
  border: 2px dashed white;
}

/*=============== Supervisor Dashboard CSS ENDS ===============  */

/* ******************** VOUCHAR INNER POPUP CSS (JOURNAL, PAYMENT, RECEIPT) ****************** */
.vouchar_inner_popup_wrapper {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 105;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.9);
}

.vouchar_inner_popup_wrapper2,
.vouchar_inner_popup_wrapper3 {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 106;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.9);
}

.vouchar_inner_popup_wrapper.active,
.vouchar_inner_popup_wrapper3.active,
.vouchar_inner_popup_wrapper2.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  transition: all 0.1s ease-in-out;
}

.vouchar_inner_popup_wrapper .inner_bg,
.vouchar_inner_popup_wrapper3 .inner_bg,
.vouchar_inner_popup_wrapper2 .inner_bg {
  background-color: var(--white);
  padding: 6px;
  border-radius: 12px;
  min-width: 320px;
  max-width: 860px;
  width: 95%;
}

.vouchar_inner_popup_wrapper .inner_bg .inner_content,
.vouchar_inner_popup_wrapper3 .inner_bg .inner_content,
.vouchar_inner_popup_wrapper2 .inner_bg .inner_content {
  background-color: var(--white);
  padding: 0 24px 24px 24px;
  border-radius: 12px;
  border: 1px solid var(--Neutral-Separator, #ebebeb);
  background: #fff;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
}

.vouchar_inner_popup_wrapper .inner_bg .top_header,
.vouchar_inner_popup_wrapper3 .inner_bg .top_header,
.vouchar_inner_popup_wrapper2 .inner_bg .top_header {
  font-size: 14px;
  color: var(--text-dark2);
  font-weight: 600;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--Neutral-Separator);
  margin-bottom: 16px;
  padding-top: 10px;
}

.vouchar_inner_popup_wrapper .inner_bg .heading h4,
.vouchar_inner_popup_wrapper3 .inner_bg .heading h4,
.vouchar_inner_popup_wrapper2 .inner_bg .heading h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark2);
  margin-bottom: 5px;
}

.vouchar_inner_popup_wrapper .inner_bg .heading p,
.vouchar_inner_popup_wrapper3 .inner_bg .heading p,
.vouchar_inner_popup_wrapper2 .inner_bg .heading p {
  color: var(--text-5C);
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  margin-bottom: 24px;
}

.vouchar_inner_popup_wrapper .inner_bg .top_header .close-btn,
.vouchar_inner_popup_wrapper3 .inner_bg .top_header .close-btn,
.vouchar_inner_popup_wrapper2 .inner_bg .top_header .close-btn {
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 18px;
  cursor: pointer;
}

/* custom select box  */
.vouchar_inner_popup_wrapper .custom-select {
  width: 100%;
  position: relative;
}

.vouchar_inner_popup_wrapper .custom-select label {
  display: block;
  margin-bottom: 6px;
  color: var(--text-dark2);
  font-weight: 500;
  font-size: 14px;
}

.vouchar_inner_popup_wrapper .required {
  color: red;
}

.vouchar_inner_popup_wrapper .select-box {
  position: relative;
}

.vouchar_inner_popup_wrapper .selected {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--whiteEB, #ebebeb);
  padding: 8px 16px;
  outline-color: var(--login-border) !important;
  box-shadow: none;
  background: var(--whiteFA);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vouchar_inner_popup_wrapper .selected .placeholder {
  color: grey;
  background-color: transparent;
}

.vouchar_inner_popup_wrapper .options-container {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--whiteFA);
  border: 1px solid #ddd;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 100;
}

.vouchar_inner_popup_wrapper .options-container.active {
  display: flex;
}

.vouchar_inner_popup_wrapper .search-box {
  border: none;
  border-bottom: 1px solid var(--Neutral-background);
  padding: 10px;
  font-size: 14px;
  outline: none;
  width: 100%;
  background: transparent;
}

.vouchar_inner_popup_wrapper .search-box::placeholder {
  color: var(--text-5C);
}

.vouchar_inner_popup_wrapper .options-list {
  max-height: 150px;
  overflow-y: auto;
  list-style: none;
  padding: 0;
  margin: 0;
}

.vouchar_inner_popup_wrapper .options-list li {
  padding: 10px;
  cursor: pointer;
}

.vouchar_inner_popup_wrapper .options-list li:hover {
  background: #f5f5f5;
}

.vouchar_inner_popup_wrapper .add-option {
  border-top: 1px solid #eee;
  text-align: center;
  padding: 10px;
}

.vouchar_inner_popup_wrapper .add-option button {
  border: none;
  background: none;
  color: var(--primary-color);
  width: 100%;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

/* ******************** VOUCHAR INNER POPUP CSS (JOURNAL, PAYMENT, RECEIPT) ****************** */

/* ======================= SUB CONTRACT DASHOBORD PAGE CSS STRATS ======================= */
.subcontract_work_progress_wrapper {
  padding: clamp(16px, 2vw, 24px);
  border-radius: 14px;
  border: 1px solid var(--chart-border);
  background: var(--white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.subcontract_work_progress_wrapper .heading h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--storm-blue);
  font-size: 16px;
  font-weight: 400;
}

.subcontract_work_progress_wrapper .heading .date {
  color: #45556c;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.subcontract_work_progress_wrapper .active_progress_bar_wrapper h4 {
  color: var(--charcoal-blue);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.subcontract_work_progress_wrapper .progress_bars_section .progress_card {
  padding: 16px;
  border-radius: 10px;
  border: 1px solid var(--chart-border);
  background: #f8fafc;
  margin-bottom: 12px;
}

.primaryColor {
  color: #155dfc;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.successColor {
  color: #00a63e;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.dangerColor {
  color: #f54900;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.subcontract_work_progress_wrapper .progress_bars_section .progress_card .cardbody h5 {
  color: var(--storm-blue);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  margin-bottom: 5px;
}

.subcontract_work_progress_wrapper .progress_bars_section .progress_card .cardbody .progressBar {
  background: #030213;
}

.subcontract_work_progress_wrapper .progress_bars_section .progress_card .cardbody .progress {
  border-radius: 20px;
  background: var(--chart-border);
}

.subcontract_work_progress_wrapper .progress_bars_section .progress_card .cardbody small {
  color: var(--charcoal-blue);
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.subcontract_work_progress_wrapper .chart_Section .chart_first_card,
.subcontract_effencicy_wrapper .chart_first_card {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #bedbff;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  height: 280px;
}

.subcontract_work_progress_wrapper .chart_Section .chart_first_card .bottom_text div {
  color: #45556c;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.subcontract_work_progress_wrapper .chart_Section .chart_first_card .bottom_text .green {
  color: #00a63e;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.subcontract_work_progress_wrapper .chart_Section .chart_first_card h6 {
  color: var(--storm-blue);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 10px;
}

.button_soft_bg {
  background: var(--Button-soft-color) !important;
  border: 0 !important;
}

#weeklyCompletionChart {
  height: 220px !important;
  width: 100% !important;
}

#dailyProgressChart {
  height: 180px !important;
  width: 100% !important;
}

.subcontract_work_progress_wrapper .summar_card {
  border-radius: 10px;
  border: 1px solid var(--chart-border);
  background: var(--white);
  padding: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.subcontract_work_progress_wrapper .summar_card h4 {
  margin: 0;
  font-size: 16px;
}

.subcontract_work_progress_wrapper .summar_card p {
  margin: 0;
  color: #62748e;
  text-align: center;
  font-size: 12px;
}

.subcontract_effencicy_wrapper .chart_first_card {
  height: 320px;
}

.subcontract_effencicy_wrapper .chart_first_card #productivityChart {
  height: 260px !important;
  width: 100% !important;
}

/* ======================= SUB CONTRACT DASHOBORD PAGE CSS STRATS ======================= */

/* *************** PURCHASE DASHBOARD CSS STARTS ************** */
.clock_sign {
  display: flex;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffedd4 0%, #ffd6a7 100%);
}

.purchase_dashboard_common_card_wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(16px, 3vw, 38px);
  font-family: var(--inter);
}

.purchase_dashboard_common_card_wrapper .light_blue {
  background: #e3f5ff;
}

.purchase_dashboard_common_card_wrapper .light_grey {
  background: #e5ecf6;
}

.purchase_dashboard_common_card_wrapper .c_div {
  padding: clamp(16px, 3vw, 24px);
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.purchase_dashboard_common_card_wrapper .common_card .heading .numbering {
  color: #1c1c1c;
  font-size: 18px;
  font-weight: 800;
  line-height: 12px;
}

.purchase_dashboard_common_card_wrapper .common_card .heading h4 {
  color: var(--black-100, #1c1c1c);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.purchase_dashboard_common_card_wrapper .common_card .heading {
  margin-bottom: 13px;
}

.purchase_dashboard_common_card_wrapper .common_card .progress {
  border-radius: 12px;
  background: #e6eaee;
}

.purchase_dashboard_common_card_wrapper .common_card .progressBar {
  border-radius: 4px;
  background: #888;
}

.purchase_dashboard_common_card_wrapper .common_card small {
  color: var(--storm-blue);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-wrap: nowrap;
}

.purchase_dashboard_common_card_wrapper .common_card .clock_sign.green {
  border-radius: 14px;
  background: linear-gradient(135deg, #dcfce7 0%, #b9f8cf 100%);
}

.purchase_dashboard_common_card_wrapper .common_card .clock_sign.purple {
  border-radius: 14px;
  background: linear-gradient(135deg, #f3e8ff 0%, #e9d4ff 100%);
}

.purchase_dashboard_common_card_wrapper .common_card .clock_sign.blue {
  border-radius: 14px;
  background: linear-gradient(135deg, #dbeafe 0%, #bedbff 100%);
}

.inctext {
  color: #155dfc;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.purchase_dashboard_common_card_wrapper #lineChart {
  width: 100% !important;
  height: 30px !important;
}

.purhcase_dashboard_chart_wrappper .material_stock_chart,
.purhcase_dashboard_chart_wrappper .chart_remaining_data_list,
.purhcase_dashboard_chart_wrappper .monthly_spends_div_wrappper {
  padding: clamp(16px, 2.5vw, 24px);
  border-radius: 14px;
  border: 1px solid var(--chart-border);
  background: var(--white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.purhcase_dashboard_chart_wrappper .material_stock_chart h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--storm-blue);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

.stocj_pie_chart {
  border-radius: 14px;
  border: 1px solid var(--chart-border);
  background: #f8fafc;
  padding: 17px;
  height: 400px;
  overflow: hidden;
}

.material_inventory_chart_wrppper {
  border-radius: 14px;
  border-radius: 14px;
  border: 1px solid #bedbff;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  padding: 17px;
  height: 400px;
  overflow: hidden;
}

.stocj_pie_chart h4,
.material_inventory_chart_wrppper h4 {
  color: var(--charcoal-blue);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

#inventoryBar {
  height: 300px !important;
  width: 100% !important;
  margin-top: 16px;
}

.purhcase_dashboard_chart_wrappper .monthly_spends_div_wrappper .heading h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--storm-blue);
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.purhcase_dashboard_chart_wrappper .monthly_spends_div_wrappper .heading p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e7000b;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.purhcase_dashboard_chart_wrappper .monthly_spends_div_wrappper .tag_boxs .cdiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.purhcase_dashboard_chart_wrappper .monthly_spends_div_wrappper .tag_boxs .cdiv p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
}

.purhcase_dashboard_chart_wrappper .monthly_spends_div_wrappper .tag_boxs .cdiv h4 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.purhcase_dashboard_chart_wrappper .monthly_spends_div_wrappper .tag_boxs .cdiv.blue {
  border-radius: 10px;
  border: 1px solid #bedbff;
  background: #eff6ff;
  padding: 12px;
}

.purhcase_dashboard_chart_wrappper .monthly_spends_div_wrappper .tag_boxs .cdiv.blue p {
  color: #193cb8;
}

.purhcase_dashboard_chart_wrappper .monthly_spends_div_wrappper .tag_boxs .cdiv.blue h4 {
  color: #155dfc;
}

.purhcase_dashboard_chart_wrappper .monthly_spends_div_wrappper .tag_boxs .cdiv.green {
  border-radius: 10px;
  border: 1px solid #b9f8cf;
  background: #f0fdf4;
  padding: 12px;
}

.purhcase_dashboard_chart_wrappper .monthly_spends_div_wrappper .tag_boxs .cdiv.green p {
  color: #00a63e;
}

.purhcase_dashboard_chart_wrappper .monthly_spends_div_wrappper .tag_boxs .cdiv.green h4 {
  color: #016630;
}

.purhcase_dashboard_chart_wrappper .monthly_spends_div_wrappper .tag_boxs .cdiv.purple {
  border-radius: 10px;
  border: 1px solid #e9d4ff;
  background: #faf5ff;
  padding: 12px;
}

.purhcase_dashboard_chart_wrappper .monthly_spends_div_wrappper .tag_boxs .cdiv.purple p {
  color: #9810fa;
}

.purhcase_dashboard_chart_wrappper .monthly_spends_div_wrappper .tag_boxs .cdiv.purple h4 {
  color: #6e11b0;
}

.purhcase_dashboard_chart_wrappper .monthly_spends_div_wrappper .tag_boxs .cdiv.red {
  border-radius: 10px;
  border: 1px solid #ffd6a7;
  background: #fff7ed;
  padding: 12px;
}

.purhcase_dashboard_chart_wrappper .monthly_spends_div_wrappper .tag_boxs .cdiv.red p {
  color: #f54900;
}

.purhcase_dashboard_chart_wrappper .monthly_spends_div_wrappper .tag_boxs .cdiv.red {
  color: #9f2d00;
}

.spending_vs_bujet_Chart .chart,
.purchase_odr_per_month_chart_wrapper .chart {
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
  padding: 16px 16px 16px 20px;
}

.spending_vs_bujet_Chart h4,
.purchase_odr_per_month_chart_wrapper h4 {
  color: var(--charcoal-blue);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}

#spendChart {
  height: 320px !important;
  width: 100% !important;
}

#purhcaseOrdrChart {
  height: 220px !important;
  width: 100% !important;
}

.price-chart-container {
  width: 100%;
  padding: 17px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
}

#priceChart {
  height: 320px !important;
}

.chart_remaining_data_list .box_list_container .bx {
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: var(--white);
  padding: 14px;
}

.chart_remaining_data_list .box_list_container .bx h3 {
  color: #1d293d;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.chart_remaining_data_list .box_list_container .bx h4 {
  color: var(--charcoal-blue);
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

.chart_remaining_data_list .box_list_container .bx .icon {
  color: #e7000b;
  font-size: 12px;
  font-weight: 400;
}

.chart_remaining_data_list .box_list_container .bx p {
  margin: 0;
  color: #62748e;
  font-size: 12px;
  font-weight: 400;
}

.chart_remaining_data_list .bottom_row {
  padding-top: 18px;
  border-top: 1px solid var(--whiteEB);
  margin-top: 24px;
}

.chart_remaining_data_list .bottom_row .box {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ffc9c9;
  background: #fef2f2;
}

.chart_remaining_data_list .bottom_row .box h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9f0712;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
}

.chart_remaining_data_list .bottom_row .box p {
  color: #e7000b;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.chart_remaining_data_list .bottom_row .box2 {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #b9f8cf;
  background: #f0fdf4;
}

.chart_remaining_data_list .bottom_row .box2 h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #016630;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
}

.chart_remaining_data_list .bottom_row .box2 p {
  color: #00a63e;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .payment_status_box_wrapper {
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: var(--white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  padding: clamp(16px, 2vw, 24px);
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .payment_status_box_wrapper .heading h4 {
  display: flex;
  align-items: center;
  color: #1d293d;
  font-size: 16px;
  font-weight: 400;
  gap: 8px;
  margin: 0;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .payment_status_box_wrapper .heading .tag {
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0);
  background: var(--neutral-primay, #005399);
  padding: 2px 8px;
  width: max-content;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .pending_payment_wrapper .box {
  border-radius: 8px;
  background: #cdd7ed;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .pending_payment_wrapper .box p {
  color: var(--text-5C);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .pending_payment_wrapper .box h5 {
  color: var(--text-dark2);
  font-size: 12px;
  font-weight: 400;
  margin: 0;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .pending_payment_wrapper .box.red h5,
.purhcase_dashboard_chart_wrappper .right_section_wrapper .pending_payment_wrapper .box.red p {
  color: #a70a0a;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .pending_payment_wrapper .box.green h5,
.purhcase_dashboard_chart_wrappper .right_section_wrapper .pending_payment_wrapper .box.green p {
  color: #0e8826;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .pending_payment_wrapper {
  border-radius: 10px;
  background: linear-gradient(94deg,
      #005399 1.25%,
      #005399 1.38%,
      #bcd7ee 86.07%);
  padding: 17px;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .pending_payment_wrapper>h5 {
  color: #f2f6fa;
  font-size: 12px;
  font-weight: 400;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .pending_payment_wrapper>h4 {
  font-size: 24px;
  color: #f2f6fa;
  font-weight: 400;
  margin-bottom: 10px;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .pending_list_data .tag {
  border-radius: 12px;
  background: #cecece;
  font-size: 14px;
  color: var(--text-5C);
  padding: 4px 8px;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .pending_list_data .tag.red {
  background: #fb2c36;
  color: var(--white);
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .pending_list_data .tag.green {
  background: #00c950;
  color: var(--white);
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .pending_list_data .c_heading h4 {
  color: #1d293d;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .pending_list_data .c_heading p {
  color: #45556c;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .pending_list_data .box {
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: var(--white);
  padding: 16px;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .pending_list_data .box>h3 {
  color: #1d293d;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  padding: 8px 0;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .pending_list_data .box .last_div p:first-child {
  margin: 0;
  color: #62748e;
  font-size: 12px;
  font-weight: 400;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .pending_list_data .box .last_div p {
  color: #45556c;
  font-size: 12px;
  margin: 0;
  font-weight: 400;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .pending_list_data .box .last_div p.red {
  color: #e7000b;
  font-size: 12px;
  margin: 0;
  font-weight: 400;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .pending_list_data {
  max-height: 450px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: pointer;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .pending_list_data::-webkit-scrollbar {
  display: none;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .action_box {
  border-radius: 10px;
  border: 1px solid #ffc9c9;
  background: #fef2f2;
  padding: 14px;
  margin-top: 32px;
  position: relative;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .action_box::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--whiteEB);
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .action_box h4 {
  color: #9f0712;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .action_box p {
  margin: 0;
  color: #e7000b;
  font-size: 12px;
  font-weight: 400;
  font-family: var(--inter);
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .recent_supplier_box_wrapper {
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: var(--white);
  padding: clamp(16px, 2vw, 24px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .recent_supplier_box_wrapper .heading h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1d293d;
  font-size: 16px;
  font-weight: 400;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .recent_supplier_box_wrapper .heading .top_tag {
  border-radius: 8px;
  border: 1px solid #8ec5ff;
  color: #155dfc;
  font-size: 12px;
  font-weight: 400;
  padding: 4px 8px;
  width: max-content;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .call_active_box_wrapper .call_box {
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .call_active_box_wrapper .call_box .left_div .name_bx {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #2b7fff 0%, #155dfc 100%);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  color: var(--white);
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .call_active_box_wrapper .call_box .left_div .name_bx.grey {
  background: linear-gradient(135deg, #62748e 0%, #45556c 100%);
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .call_active_box_wrapper .call_box .left_div .name_bx.orange {
  background: linear-gradient(135deg, #ff6900 0%, #f54900 100%);
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .call_active_box_wrapper .call_box .left_div .name_bx.purple {
  background: linear-gradient(135deg, #ad46ff 0%, #9810fa 100%);
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .call_active_box_wrapper .call_box .left_div .name_bx.green {
  background: linear-gradient(135deg, #00c950 0%, #00a63e 100%);
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .call_active_box_wrapper .call_box .rating_order_bx {
  color: #45556c;
  font-size: 12px;
  font-weight: 400;
  position: relative;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .call_active_box_wrapper .call_box .rating_order_bx .dot {
  height: 4px;
  width: 4px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: #45556c;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .call_active_box_wrapper .call_box .rating_order_bx .order {
  color: #45556c;
  font-size: 12px;
  font-weight: 400;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .call_active_box_wrapper .call_box .fist_div .details h3 {
  color: #1d293d;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  margin-bottom: 2px;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .call_active_box_wrapper .call_box .fist_div .details h6 {
  color: #62748e;
  font-size: 12px;
  font-weight: 400;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .call_active_box_wrapper .call_box .fist_div .active_tag {
  font-size: 12px;
  font-weight: 400;
  color: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0);
  background: #00c950;
  padding: 4px 8px;
  width: max-content;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .call_active_box_wrapper .call_box .button_div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .call_active_box_wrapper .call_box .button_div button {
  border-radius: 8px;
  border: 1px solid #cad5e2;
  background: var(--white);
  width: 100%;
  padding: 5px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dark);
  font-weight: 400;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .call_active_box_wrapper .call_box .button_div button:hover {
  background-color: var(--Button-soft-color);
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .call_active_box_wrapper {
  max-height: 520px;
  padding-bottom: 20px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: pointer;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .call_active_box_wrapper::-webkit-scrollbar {
  display: none;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .recent_supplier_box_wrapper .active_div_wrappper {
  position: relative;
  margin-top: 32px;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .recent_supplier_box_wrapper .active_div_wrappper::before {
  content: "";
  position: absolute;
  left: 0;
  top: -16px;
  height: 1px;
  width: 100%;
  background-color: var(--whiteEB);
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .recent_supplier_box_wrapper .active_div_wrappper .box {
  color: #193cb8;
  font-size: 12px;
  font-weight: 400;
  border-radius: 10px;
  border: 1px solid #bedbff;
  background: #eff6ff;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .recent_supplier_box_wrapper .active_div_wrappper .box p,
.purhcase_dashboard_chart_wrappper .right_section_wrapper .recent_supplier_box_wrapper .active_div_wrappper .box h4 {
  margin: 0;
}

.purhcase_dashboard_chart_wrappper .right_section_wrapper .recent_supplier_box_wrapper .active_div_wrappper .box.green {
  color: #016630;
  border: 1px solid #b9f8cf;
  background: #f0fdf4;
}

/* *************** PURCHASE DASHBOARD CSS ENDS ************** */

/* ================ RECEPTIONIST DASHBOARD STARTS =================== */

.purchase_dashboard_common_card_wrapper .common_card .clock_sign.white_bg {
  border-radius: 10px;
  background: #eff6ff;
}

.purchase_dashboard_common_card_wrapper .common_card .clock_sign.light_green {
  background: #ecfdf5;
}

.purchase_dashboard_common_card_wrapper .common_card .clock_sign.light_green2 {
  background: #f5f3ff;
}

.purchase_dashboard_common_card_wrapper .common_card .clock_sign.light_orange {
  background: #fffbeb;
}

.receiptionist_dashboard_data_container .left_div_wrapper .new_purchase_wrapper,
.receiptionist_dashboard_data_container .left_div_wrapper .pending_approvals_wrapper {
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  padding: clamp(16px, 2vw, 24px);
}

.receiptionist_dashboard_data_container .left_div_wrapper .new_purchase_wrapper h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #314158;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.receiptionist_dashboard_data_container .left_div_wrapper .new_purchase_wrapper button {
  color: var(--white);
  font-size: 14px;
  border-radius: 8px;
  background: #2b7fff;
  border: none;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.receiptionist_dashboard_data_container .left_div_wrapper .new_purchase_wrapper button:hover {
  background: var(--primary-color);
}

.receiptionist_dashboard_data_container .left_div_wrapper .new_purchase_wrapper .sec_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
}

.receiptionist_dashboard_data_container .left_div_wrapper .new_purchase_wrapper .sec_heading h4 {
  margin: 0;
  color: #45556c;
  font-size: 16px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .left_div_wrapper .new_purchase_wrapper .sec_heading p {
  color: #155dfc;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.receiptionist_dashboard_data_container .left_div_wrapper .new_purchase_wrapper .data_show_grid h4 {
  color: #096;
  font-size: 14px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .left_div_wrapper .new_purchase_wrapper .data_show_grid .bx {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 12px;
}

.receiptionist_dashboard_data_container .left_div_wrapper .new_purchase_wrapper .data_show_grid .box {
  background: #eff6ff;
}

.receiptionist_dashboard_data_container .left_div_wrapper .new_purchase_wrapper .data_show_grid .box2 {
  background: #f8fafc;
}

.receiptionist_dashboard_data_container .left_div_wrapper .new_purchase_wrapper .data_show_grid .bx h5 {
  margin: 0;
  color: #62748e;
  font-size: 14px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .left_div_wrapper .new_purchase_wrapper .data_show_grid .bx p {
  margin: 0;
  color: #155dfc;
  font-size: 16px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .left_div_wrapper .new_purchase_wrapper .data_show_grid .box2 p {
  color: #314158;
}

.receiptionist_dashboard_data_container .left_div_wrapper .pending_approvals_wrapper .heading {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #314158;
  font-size: 16px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .left_div_wrapper .pending_approvals_wrapper .pending_text_wrapper .p_heading h4 {
  margin: 0;
  color: #45556c;
  font-size: 16px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .left_div_wrapper .pending_approvals_wrapper .pending_text_wrapper .p_heading p {
  margin: 0;
  color: #f54900;
  font-size: 16px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .left_div_wrapper .pending_approvals_wrapper .pending_text_wrapper .bx {
  height: 22px;
  width: 22px;
  padding: 2px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}

.receiptionist_dashboard_data_container .left_div_wrapper .pending_approvals_wrapper .pending_text_wrapper .urgent h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #45556c;
  font-size: 14px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .left_div_wrapper .pending_approvals_wrapper .pending_text_wrapper .bx.light_red_bg {
  border: 1px solid rgba(0, 0, 0, 0);
  background: #ffe2e2;
  color: #c10007;
}

.receiptionist_dashboard_data_container .left_div_wrapper .pending_approvals_wrapper .pending_text_wrapper .bx.light_orange_bg {
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0);
  background: #ffedd4;
  color: #ca3500;
}

.receiptionist_dashboard_data_container .left_div_wrapper .pending_approvals_wrapper .pending_text_wrapper .bx.light_blue_bg {
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0);
  background: #dbeafe;
  color: #1447e6;
}

.receiptionist_dashboard_data_container .left_div_wrapper .recent_purchase_wrapper {
  padding: clamp(16px, 2vw, 24px);
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: var(--white);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.receiptionist_dashboard_data_container .left_div_wrapper .recent_purchase_wrapper .heading {
  color: #314158;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
}

.receiptionist_dashboard_data_container .left_div_wrapper .recent_purchase_wrapper .record_box_wrapper .record_box {
  border-radius: 10px;
  background: #f8fafc;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.receiptionist_dashboard_data_container .left_div_wrapper .recent_purchase_wrapper .record_box_wrapper .record_box .left h4 {
  color: #1d293d;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 8px;
}

.receiptionist_dashboard_data_container .left_div_wrapper .recent_purchase_wrapper .record_box_wrapper .record_box .left .date,
.receiptionist_dashboard_data_container .left_div_wrapper .recent_purchase_wrapper .record_box_wrapper .record_box .left .builder {
  color: #62748e;
  font-size: 12px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .left_div_wrapper .recent_purchase_wrapper .record_box_wrapper .record_box .right_price {
  color: #096;
  font-size: 16px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .left_div_wrapper .recent_purchase_wrapper .record_box_wrapper {
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: pointer;
}

.receiptionist_dashboard_data_container .left_div_wrapper .recent_purchase_wrapper .record_box_wrapper::-webkit-scrollbar {
  display: none;
}

.shifts_and_sites_wrapper {
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: var(--white);
  padding: clamp(16px, 2vw, 24px);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.shifts_and_sites_wrapper .heading {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #314158;
  font-size: 16px;
  font-weight: 400;
}

.shifts_and_sites_wrapper .inner_div_container .box_wrapper .left h3 {
  color: #1d293d;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 6px;
}

.shifts_and_sites_wrapper .inner_div_container .box_wrapper .left .time {
  color: #62748e;
  font-size: 12px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
}

.shifts_and_sites_wrapper .inner_div_container .box_wrapper .left .workers {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #45556c;
  font-size: 14px;
  font-weight: 400;
  padding: 2px 0;
}

.shifts_and_sites_wrapper .inner_div_container .box_wrapper .left .status {
  color: #45556c;
  font-size: 14px;
  font-weight: 400;
}

.shifts_and_sites_wrapper .inner_div_container .box_wrapper .right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 400;
}

.shifts_and_sites_wrapper .inner_div_container .box_wrapper .right.morning {
  color: #1447e6;
  background: #dbeafe;
  border-radius: 12px;
}

.shifts_and_sites_wrapper .inner_div_container .box_wrapper .right.afternoon {
  color: #1447e6;
  background: #ede9fe;
  color: #7008e7;
  border-radius: 12px;
}

.shifts_and_sites_wrapper .inner_div_container .box_wrapper {
  border-radius: 10px;
  background: #f8fafc;
  padding: 14px;
}

.shifts_and_sites_wrapper .inner_div_container .box_wrapper:hover {
  background: #f8fafc;
}

.shifts_and_sites_wrapper .inner_div_container {
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: pointer;
}

.shifts_and_sites_wrapper .inner_div_container::-webkit-scrollbar {
  display: none;
}

.receiptionist_dashboard_data_container .right_div_wrapper .active_labour_details {
  padding: clamp(16px, 2vw, 24px);
  color: #dbeafe;
  background-color: var(--neutral-primay);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border-radius: 14px;
}

.receiptionist_dashboard_data_container .right_div_wrapper .active_labour_details .active_heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--white);
}

.receiptionist_dashboard_data_container .right_div_wrapper .active_labour_details .center_div h4 {
  margin: 0;
  font-size: 16px;
  color: var(--white);
}

.receiptionist_dashboard_data_container .right_div_wrapper .active_labour_details .center_div p {
  margin: 0;
  font-size: 14px;
  margin: 0;
}

.receiptionist_dashboard_data_container .right_div_wrapper .active_labour_details .border_div {
  border-top: 1px solid #51a2ff;
  border-bottom: 1px solid #51a2ff;
  margin-bottom: 16px;
  padding: 14px 0;
}

.receiptionist_dashboard_data_container .right_div_wrapper .active_labour_details .border_div h4 {
  color: #dbeafe;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .right_div_wrapper .active_labour_details .border_div p {
  margin: 0;
  color: var(--white);
  font-weight: 400;
  font-size: 16px;
}

.receiptionist_dashboard_data_container .right_div_wrapper .active_labour_details .bottom_text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #dbeafe;
  font-size: 14px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .right_div_wrapper .wages_Summary_wrapper {
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  background: var(--white);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
  padding: clamp(16px, 2vw, 24px);
}

.receiptionist_dashboard_data_container .right_div_wrapper .wages_Summary_wrapper .heading {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #314158;
  font-size: 16px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .right_div_wrapper .wages_Summary_wrapper .total_paid .date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #45556C;
  font-size: 14px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .right_div_wrapper .wages_Summary_wrapper .total_paid h4 {
  color: #1D293D;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  padding: 5px 0;
}

.receiptionist_dashboard_data_container .right_div_wrapper .wages_Summary_wrapper .total_paid p {
  margin: 0;
  color: #62748E;
  font-size: 14px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .right_div_wrapper .wages_Summary_wrapper .previous_transaction {
  border-top: 1px solid #F1F5F9;
  border-bottom: 1px solid #F1F5F9;
  padding: 14px 0;
  margin-bottom: 16px;
}

.receiptionist_dashboard_data_container .right_div_wrapper .wages_Summary_wrapper .previous_transaction h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #F54900;
  font-size: 14px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .right_div_wrapper .wages_Summary_wrapper .previous_transaction p {
  color: #62748E;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
}

.receiptionist_dashboard_data_container .right_div_wrapper .wages_Summary_wrapper .work_data_show .left_row {
  border-radius: 10px;
  background: #F8FAFC;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.receiptionist_dashboard_data_container .right_div_wrapper .wages_Summary_wrapper .work_data_show .left_row h4 {
  margin: 0;
  color: #62748E;
  font-size: 12px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .right_div_wrapper .wages_Summary_wrapper .work_data_show .left_row p {
  margin: 0;
  color: #314158;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .right_div_wrapper .wages_Summary_wrapper .work_data_show .right_row {
  border-radius: 10px;
  background: #ECFDF5;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.receiptionist_dashboard_data_container .right_div_wrapper .wages_Summary_wrapper .work_data_show .right_row h4 {
  margin: 0;
  color: #62748E;
  font-size: 12px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .right_div_wrapper .wages_Summary_wrapper .work_data_show .right_row p {
  margin: 0;
  color: #096;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .right_div_wrapper .daily_task_wrapper {
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  background: var(--white);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
  padding: clamp(16px, 2vw, 24px);
}

.receiptionist_dashboard_data_container .right_div_wrapper .daily_task_wrapper .heading h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #314158;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.receiptionist_dashboard_data_container .right_div_wrapper .daily_task_wrapper .heading p {
  color: #45556C;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.receiptionist_dashboard_data_container .right_div_wrapper .daily_task_wrapper .daily_lists .list {
  cursor: pointer;
}

.receiptionist_dashboard_data_container .right_div_wrapper .daily_task_wrapper .daily_lists .list .dot {
  width: 8px;
  height: 8px;
  background-color: #90A1B9;
  border-radius: 50%;
}

.receiptionist_dashboard_data_container .right_div_wrapper .daily_task_wrapper .daily_lists .list .dot.active {
  background-color: #FB2C36;
}

.receiptionist_dashboard_data_container .right_div_wrapper .daily_task_wrapper .daily_lists .list .icon svg:last-child {
  display: none;
}

.receiptionist_dashboard_data_container .right_div_wrapper .daily_task_wrapper .daily_lists .list .icon.active svg:last-child {
  display: inline-flex;
}

.receiptionist_dashboard_data_container .right_div_wrapper .daily_task_wrapper .daily_lists .list .icon.active svg:first-child {
  display: none;
}

.receiptionist_dashboard_data_container .right_div_wrapper .daily_task_wrapper .daily_lists .list .left {
  color: #314158;
  font-size: 14px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .right_div_wrapper .daily_task_wrapper .daily_lists .list .left span.active {
  text-decoration: line-through;
  color: #62748E;
}

.receiptionist_dashboard_data_container .right_div_wrapper .notification_wrapper .heading {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #314158;
  font-size: 16px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .right_div_wrapper .notification_wrapper {
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  background: var(--white);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
  padding: clamp(16px, 2vw, 24px);
}

.receiptionist_dashboard_data_container .right_div_wrapper .notification_wrapper .count {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.00);
  background: #DBEAFE;
  height: 25px;
  width: 25px;
  padding: 4px;
  color: #1447E6;
  font-size: 12px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .right_div_wrapper .notification_wrapper .inner_wrapper .delayed {
  padding: 12px;
  border-radius: 10px;
  background: #FFF7ED;
}

.receiptionist_dashboard_data_container .right_div_wrapper .notification_wrapper .inner_wrapper .payment {
  padding: 12px;
  border-radius: 10px;
  background: #EFF6FF;
}

.receiptionist_dashboard_data_container .right_div_wrapper .notification_wrapper .inner_wrapper .purchase {
  padding: 12px;
  border-radius: 10px;
  background: #ECFDF5;
}

.receiptionist_dashboard_data_container .right_div_wrapper .notification_wrapper .inner_wrapper .urgent {
  padding: 12px;
  border-radius: 10px;
  background: #FEF2F2;
}

.receiptionist_dashboard_data_container .right_div_wrapper .notification_wrapper .inner_wrapper .delayed h4 {
  color: #CA3500;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  margin-bottom: 2px;
}

.receiptionist_dashboard_data_container .right_div_wrapper .notification_wrapper .inner_wrapper .delayed p {
  margin: 0;
  color: #62748E;
  font-size: 12px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .right_div_wrapper .notification_wrapper .inner_wrapper .payment h4 {
  color: #1447E6;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  margin-bottom: 2px;
}

.receiptionist_dashboard_data_container .right_div_wrapper .notification_wrapper .inner_wrapper .payment p {
  margin: 0;
  color: #62748E;
  font-size: 12px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .right_div_wrapper .notification_wrapper .inner_wrapper .purchase h4 {
  color: #007A55;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  margin-bottom: 2px;
}

.receiptionist_dashboard_data_container .right_div_wrapper .notification_wrapper .inner_wrapper .purchase p {
  margin: 0;
  color: #62748E;
  font-size: 12px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .right_div_wrapper .notification_wrapper .inner_wrapper .urgent h4 {
  color: #C10007;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  margin-bottom: 2px;
}

.receiptionist_dashboard_data_container .right_div_wrapper .notification_wrapper .inner_wrapper .urgent p {
  margin: 0;
  color: #62748E;
  font-size: 12px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .right_div_wrapper .leave_request_wrapper {
  padding: clamp(16px, 2vw, 24px);
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  background: var(--white);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
}

.receiptionist_dashboard_data_container .right_div_wrapper .leave_request_wrapper .heading {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #314158;
  font-size: 16px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .right_div_wrapper .leave_request_wrapper .requests_list .bx {
  padding: 12px;
  border-radius: 10px;
  background: #F8FAFC;
}

.receiptionist_dashboard_data_container .right_div_wrapper .leave_request_wrapper .requests_list .bx h4 {
  margin: 0;
  color: #1D293D;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 3px;
}

.receiptionist_dashboard_data_container .right_div_wrapper .leave_request_wrapper .requests_list .bx .date,
.receiptionist_dashboard_data_container .right_div_wrapper .leave_request_wrapper .requests_list .bx .text {
  color: #62748E;
  font-size: 12px;
  font-weight: 400;
}

.receiptionist_dashboard_data_container .right_div_wrapper .leave_request_wrapper .requests_list .bx .dot {
  height: 4px;
  width: 4px;
  background-color: #62748E;
  border-radius: 50%;
}

.receiptionist_dashboard_data_container .right_div_wrapper .leave_request_wrapper .requests_list .bx .right_status .pending {
  color: #CA3500;
  font-size: 12px;
  font-weight: 400;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.00);
  background: #FFEDD4;
  padding: 2px 8px;
}

.receiptionist_dashboard_data_container .right_div_wrapper .leave_request_wrapper .requests_list .bx .right_status .approved {
  color: #007A55;
  font-size: 12px;
  font-weight: 400;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.00);
  background: #D0FAE5;
  padding: 2px 8px;
}

.receiptionist_dashboard_data_container .right_div_wrapper .leave_request_wrapper .requests_list .bx .right_status .rejected {
  color: #C10007;
  font-size: 12px;
  font-weight: 400;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.00);
  background: #FFE2E2;
  padding: 2px 8px;
}

.map_summary_tag {
  padding: clamp(8px, 1vw, 16px) 8px;
  border-radius: 16px;
  background: var(--white);
  position: absolute;
  top: 140px;
  left: 26px;
  z-index: 5;
  width: 250px;
}

.map_summary_tag .heading {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark2);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 600;
  border-bottom: 1px solid var(--whiteEB);
  padding: 8px 0;
  padding-bottom: clamp(8px, 1vw, 14px);
}

.map_summary_tag .content_div .label {
  display: flex;
  width: 34px;
  height: 34px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 6px;
}

.map_summary_tag .content_div h5 {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 500;
  color: var(--text-dark2);
  margin: 0;
}

.map_summary_tag .content_div .value {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  color: var(--neutral-primay);
}

.map_summary_tag .content_div .value.orange {
  color: #D16F15;
}

.map_summary_tag .content_div .label.blue_bg {
  background: var(--neutral-primay, #005399);
}

.map_summary_tag .content_div .label.orange_bg {
  border-radius: 6px;
  background: linear-gradient(0deg, #E58F39 0%, #E58F39 100%), #005399;
}

.play_progress_bar_wrapper {
  background-color: var(--white);
  height: 40px;
  padding: 16px 8px;
  border-radius: 10px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  width: 85%;
}

.play_progress_bar_wrapper .play_icon {
  cursor: pointer;
}

.play_progress_bar_wrapper .progress_bar .progress_bg {
  height: 10px;
  background: #D9D9D9;
  width: 100%;
  border-radius: 5px;
}

.play_progress_bar_wrapper .progress_bar .progress_bg .progress_fill {
  background-color: var(--neutral-primay);
  height: 100%;
  border-radius: 5px;
}

.play_progress_bar_wrapper .progress_bar .progress_bg .bar_btn {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-color: #BAD4E6;
  border: 1px solid var(--neutral-primay);
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 64%;
  transform: translateY(-50%);
}

/* receptionist chart section  */
.recep_das_chart_wrapper .exp_chart,
.recep_das_chart_wrapper .att_chart {
  padding: clamp(16px, 2vw, 24px);
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  background: var(--white);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
  height: 420px;
}

.recep_das_chart_wrapper .exp_chart .heading,
.recep_das_chart_wrapper .att_chart .heading {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #314158;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 40px;
}

.recep_das_chart_wrapper .att_chart .heading {
  margin: 0;
}

#expBarChart {
  height: 300px !important;
  width: 100% !important;
}

#attendanceChart {
  width: 320px !important;
  height: 320px !important;
}

.rel_data {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.rel_data h5 {
  font-size: 14px;
  color: #45556C;
  font-weight: 400;
}

.rel_data p {
  margin: 0;
  color: #096;
  font-size: 14px;
  font-weight: 400;
}

/* receptionist chart section  */
/* ================ RECEPTIONIST DASHBOARD ENDS  =================== */


/* ************** SUPERVISOR DASHOBOARD CSS STARTS ********************* */
.hover-primary:hover svg path {
  stroke: var(--primary-color) !important;
}

.summary-cls {
  height: 150px;
  width: 100%;
  padding: 12px 16px;
  background: var(--whiteFA);
  border: 1px solid var(--Neutral-Separator);
  border-radius: 10px;
  color: var(--text-dark2);
  outline: none;
}

.summary-cls::placeholder {
  color: var(--text-85);
}

.moregap ul {
  gap: clamp(20px, 3vw, 32px);
}

.image_upload_div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.image_upload_div .image img {
  height: 24px;
  width: 24px;
  object-fit: contain;
}

.supervisor_list_box_wrapper h4 {
  color: var(--text-85);
  font-size: 20px;
  font-weight: 500;
  font-family: var(--lato);
}

.supervisor_list_box_wrapper .number {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark2);
}

.supervisor_list_box_wrapper p {
  margin: 0;
  font-size: 16px;
  color: var(--text-85);
  font-weight: 400;
}

.supervisor_list_box_wrapper .progress-bar {
  height: 6px;
  margin-top: 4px;
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: 12px;
  background: #848484;
}

.supervisor_list_box_wrapper .progress {
  height: 100%;
  border-radius: 4px;
  background: #141414;
  transition: width 0.5s ease;
}

.supervisor_list_box_wrapper small {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark2);
}

/* ************** SUPERVISOR DASHOBOARD CSS STARTS ********************* */



/* +++++++++++++++++ CRM SECTION CSS STARTS ++++++++++++++++++++++ */

/* accout page css  */
.green_status {
  border-radius: 12px;
  background: #CCF0CE;
  padding: 4px 16px;
  color: rgba(0, 124, 25, 0.70);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
}

.red_staus {
  border-radius: 12px;
  background: #F2D2D1;
  padding: 4px 16px;
  color: #E87F7F;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
}

.blue_status {
  border-radius: 12px;
  background: #CCDDEB;
  padding: 4px 16px;
  color: #4B99D9;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
}

/* accout page css  */

.approved_green {
  color: rgba(0, 124, 25, 0.70);
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  background: #CCF0CE;
  padding: 4px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
}

.pending_orange {
  color: #C57500;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  background: #FEE3BB;
  padding: 4px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
}

.hold_grey {
  color: #5C5C5C;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  background: #CECECE;
  padding: 4px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
}

.rejected_red {
  color: #E87F7F;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  background: #F2D2D1;
  padding: 4px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
}

.open_green {
  display: flex;
  width: 80px;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: #CCF0CE;
  color: rgba(0, 124, 25, 0.70);
  font-weight: 700;
  font-size: 14px;
}

.lost_red {
  display: flex;
  width: 83px;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: #F2D2D1;
  color: #E87F7F;
  font-weight: 700;
  font-size: 14px;
}

.pending_green {
  display: flex;
  width: 80px;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: rgba(13, 153, 255, 0.40);
  color: #4081B8;
  font-weight: 700;
  font-size: 14px;
}

/* deal page css starts  */
.deal_profile_wrapper .profile_bg {
  height: 120px;
  border-radius: 11px;
  overflow: hidden;
}

.deal_profile_wrapper .profile_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deal_profile_wrapper .profile_img {
  height: 75px;
  width: 75px;
  border-radius: 50%;
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

.profile_div h3 {
  text-align: center;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  color: var(--text-dark2);
  margin: 0;
}

.profile_div .location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--lato);
}

.profile_div .tags_wrapper .private {
  border-radius: 5px;
  background: #CECECE;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  gap: 8px;
}

.profile_div .tags_wrapper .like {
  border-radius: 5px;
  background: #4BAE50;
  color: var(--whiteEB);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 12px;
  width: max-content;
}

.deal_profile_wrapper {
  border-radius: 8px;
  border-right: 1px solid var(--whiteEB, #EBEBEB);
  border-left: 1px solid var(--whiteEB, #EBEBEB);
  background: var(--white);
  box-shadow: 0 6px 10.8px 0 rgba(0, 0, 0, 0.15);
  padding-bottom: 24px;
}

.deal_profile_wrapper .deal_info_container,
.deal_profile_wrapper .company_details_wrapper {
  padding: 24px clamp(16px, 2vw, 34px);
  border-top: 1px solid var(--whiteEB);
  border-bottom: 1px solid var(--whiteEB);
  margin: 24px 0;
}

.deal_profile_wrapper .deal_info_container h3,
.deal_profile_wrapper .other_more_info_container h3,
.deal_profile_wrapper .company_details_wrapper h3,
.deal_profile_wrapper .deal_owner_Deail_wrapper h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.deal_profile_wrapper .deal_info_container ul li {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 10px;
}

.deal_profile_wrapper .deal_info_container ul li:last-child {
  margin-bottom: 0;
}

.deal_profile_wrapper .deal_info_container ul li span {
  color: var(--text-5C);
  font-size: 14px;
  font-weight: 600;
}

.deal_profile_wrapper .deal_info_container ul li span:last-child {
  text-align: right;
}

.deal_profile_wrapper .table_profile_image h5 {
  font-weight: 600;
  margin: 0;
  font-size: 14px;
}

.deal_profile_wrapper .deal_owner_Deail_wrapper,
.deal_profile_wrapper .other_more_info_container {
  padding: 0 clamp(16px, 2vw, 34px);
}

.deal_profile_wrapper .company_details_wrapper .company_profile_image img {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
}

.deal_profile_wrapper .company_details_wrapper .company_profile_image {
  display: flex;
  gap: 16px;
}

.deal_profile_wrapper .company_details_wrapper .company_profile_image h5 {
  font-size: 14px;
  margin: 0;
  font-weight: 600;
}

.deal_profile_wrapper .company_details_wrapper .company_profile_image a {
  font-size: 12px;
  font-weight: 400;
}

.deal_profile_wrapper .other_more_info_container .detail {
  color: var(--text-5C);
  font-weight: 600;
  font-size: 14px;
}

.deal_profile_wrapper .other_more_info_container .detail .profile_img_smal {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  overflow: hidden;
}

.deal_right_view_wrapper .top_bar_btns_container {
  border-radius: 8px;
  border: 1px solid var(--whiteEB, #EBEBEB);
  padding: 4px clamp(16px, 3vw, 40px) 0px clamp(16px, 3vw, 40px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(15px, 1.5vw, 20px);
  background-color: var(--white);
}

.deal_right_view_wrapper .top_bar_btns_container button {
  border: none;
  color: var(--text-5C);
  font-size: 18px;
  font-weight: 600;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  gap: 4px;
  padding: 4px;
}

.deal_right_view_wrapper .top_bar_btns_container button:hover,
.deal_right_view_wrapper .top_bar_btns_container button.active {
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}

.deal_right_view_wrapper .top_bar_btns_container button.active svg path,
.deal_right_view_wrapper .top_bar_btns_container button:hover svg path {
  stroke: var(--primary-color);
}

.deal_right_view_wrapper .top_bar_btns_container button:last-child:hover svg path,
.deal_right_view_wrapper .top_bar_btns_container button:last-child.active svg path {
  stroke: none;
  fill: var(--primary-color);
}

.deal_right_view_wrapper .content_div_wrapper .data {
  display: none;
}

.deal_right_view_wrapper .content_div_wrapper .data.active {
  display: block;
}

.deal_right_view_wrapper .content_div_wrapper .data .common_wrapper {
  border-radius: 8px;
  border: 1px solid var(--whiteEB, #EBEBEB);
}

.deal_right_view_wrapper .content_div_wrapper .data .common_wrapper h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark2);
  margin: 0;
  padding: 10px clamp(16px, 2vw, 24px);
  border-bottom: 1px solid var(--whiteEB);

}

.deal_right_view_wrapper .content_div_wrapper .data .common_wrapper .inside_content_container {
  padding: 16px clamp(16px, 2vw, 24px);
}

.deal_right_view_wrapper .content_div_wrapper .data .common_wrapper .inside_content_container .date_bx {
  color: #0074D7;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  background: rgba(159, 202, 233, 0.40);
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  margin-bottom: 24px;
}

.activity_box .c_box {
  border-radius: 8px;
  border: 1px solid var(--whiteEB, #EBEBEB);
  padding: 16px;
}

.activity_box .c_box .color_box {
  display: 40px;
  width: 40px;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.activity_box .c_box .color_box.primay_bg {
  background-color: var(--neutral-primay);
}

.activity_box .c_box .color_box.green {
  background: rgba(14, 147, 132, 0.93);
}

.activity_box .c_box .color_box.red {
  background: #EF1E1EED;
}

.activity_box .c_box .color_box.yellow {
  background: rgba(249, 184, 1, 0.93);
}

.activity_box .c_box h4 {
  font-size: 14px;
  color: var(--text-dark2);
  font-weight: 600;
  margin: 0;
}

.activity_box .c_box p {
  color: var(--text-85);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.comment_box_wrapper {
  border: 1px solid var(--whiteEB);
  padding: 16px 10px;
  border-radius: 8px;
}

.comment_box_wrapper .profile_wrapper .img {
  height: 50px;
  width: 50px;
  border-radius: 8px;
  overflow: hidden;
}

.comment_box_wrapper .profile_wrapper h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.comment_box_wrapper .profile_wrapper p {
  margin: 0;
  font-size: 14px;
  color: var(--text-85);
  font-weight: 600;
}

.three_dot_container .three_dot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  height: 30px;
  width: 30px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #E0E7ED;
  border: none;
  position: relative;
}

.three_dot_container .three_dot:hover {
  background: #b9bdc1;
}

@media (min-width: 992px) {
  .three_dot_container:hover .dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}

.three_dot_container.active .dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.three_dot_container .dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: #E0E7ED;
  color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all .3s ease-in-out;
}

.three_dot_container .dropdown div {
  width: max-content;
  padding: 6px 12px;
  width: 100%;
  color: var(--text-5C);
  font-weight: 600;
  cursor: pointer;
}

.three_dot_container .dropdown div:hover {
  background: #b9bdc1;
}

.comment_box_wrapper .tag {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark2);
  padding: 8px 0;
}

.comment_box_wrapper>p {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-85);
}

.comment_add_container .download_box .icon_box {
  height: 40px;
  width: 40px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 7px;
  background: rgba(14, 147, 132, 0.93);
}

.comment_add_container .download_box p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-85);
  margin: 0;
}

.comment_add_container .download_box h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.comment_add_container .download_box {
  max-width: 320px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--whiteEB, #EBEBEB);
  padding: 12px 10px;
}

.comment_add_container .download_box .download_icon {
  border-radius: 19.5px;
  background: #E0E7ED;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  flex-shrink: 0;
  cursor: pointer;
}

.comment_add_container .download_box .download_icon:hover {
  background: #cbd0d3;
}

.add_comment_button {
  color: var(--neutral-primay);
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.comment_box {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.comment_box.active {
  max-height: 500px;
}

.call_box_details_wrapper .call_box_data {
  border-radius: 8px;
  border: 1px solid var(--whiteEB, #EBEBEB);
  padding: 16px;
}

.call_box_details_wrapper .call_box_data .p {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 10px;
  overflow: hidden;
}

.call_box_details_wrapper .call_box_data .top_div .inner h4 {
  color: var(--text-dark2);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.call_box_details_wrapper .call_box_data .top_div .inner span {
  color: var(--text-85);
  font-size: 12px;
  display: block;
  font-weight: 500;
}

.call_status_select .slect-status svg {
  top: 6px;
  right: 10px;
}

.call_status_select .slect-status .form-select {
  width: fit-content !important;
  min-width: 80px;
  border-radius: 9px;
  border: 1px solid var(--neutral-primay, #005399);
  background-color: transparent;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-primay);
  height: 30px;
  padding: 4px 12px;
  padding-right: 35px;
}

.call_box_details_wrapper .call_box_data p {
  margin: 0;
  font-size: 14px;
  color: var(--text-85);
  font-weight: 600;
}

.files_Data_wrapper .files_Details {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--whiteEB, #EBEBEB);
}

.files_Data_wrapper .files_Details .top-div h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--text-dark2);
}

.files_Data_wrapper .files_Details .top-div p {
  margin: 0;
  font-size: 14px;
  color: var(--text-85);
  font-weight: 500;
}

.files_Data_wrapper .files_Details .top-div .button_Status button {
  border: none;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
}

.files_Data_wrapper .files_Details .top-div .button_Status button.sent {
  border-radius: 8px;
  background: linear-gradient(0deg, rgba(96, 224, 121, 0.20) 0%, rgba(96, 224, 121, 0.20) 100%), var(--Button-soft-color, #CCDDEB);
  color: #03861D;
}

.files_Data_wrapper .files_Details .top-div .button_Status button.proposal {
  border-radius: 8px;
  background: #F2D2D1;
  color: #E87F7F;
}

.files_Data_wrapper .files_Details .top-div .button_Status button.draft {
  border-radius: 8px;
  background: var(--Button-soft-color, #CCDDEB);
  color: var(--neutral-primay);
}

.files_Data_wrapper .files_Details .ower_tag {
  padding: 6px 12px;
  border-radius: 8px;
  background: #CECECE;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-5C);
}

/* deal page css ends */

/* +++++++++++++++++ CRM SECTION CSS ENDS ++++++++++++++++++++++ */





/* *********************** PRINT MEDIA CODE ******************** */
/* vocuhar print css  */
.prit_logo {
  width: 55px;
  object-fit: contain;
}

.print-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--Icon-color);
  margin: 0;
  padding-bottom: 9px;
}

.print-header h3 {
  font-size: 14px;
  font-weight: 800;
  color: #000;
  font-family: var(--lato);
}

.print-header .last_div {
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: end;
}

.print-header p {
  color: #000;
  font-size: 10px;
  font-family: var(--lato);
  font-weight: 700;
  margin: 0;
}

.sec_heading {
  margin-top: 33px;
  margin-bottom: 49px;
}

.journal .sec_heading {
  margin-bottom: 16px !important;
  margin-top: 16px !important;
}

.sec_heading .gap {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.sec_heading .gap p {
  color: #000;
  font-size: 10px;
  font-family: var(--lato);
  font-weight: 500;
  margin: 0;
}

.payment_print_footer {
  border-top: 1px solid var(--Icon-color);
}

.payment_print_footer>p,
.payment_print_footer p {
  color: #000;
  font-size: 10px;
  font-family: var(--lato);
  font-weight: 500;
  margin-bottom: 8px;
}

.payment_print_footer p {
  max-width: 320px;
}

.payment_print_footer>p:first-child {
  margin-top: 10px;
}

.payment_print_footer .signature_box h4 {
  color: var(--text-dark2, #141414);
  font-family: var(--lato);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  height: 30px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: max-content;
  background-color: var(--Button-soft-color);
}

.payment_print_footer .signature_box {
  margin-top: 10px;
}

.payment_print_footer .signature_box .box {
  border-right: 1px solid var(--Neutral-Separator, #e9eaeb);
  border-bottom: 1px solid var(--Neutral-Separator, #e9eaeb);
  width: 100%;
  height: 60px;
}

.payment_print_footer .signature_box div:first-child .box {
  border-left: 1px solid var(--Neutral-Separator);
}

#printSection {
  display: none;
}

.issue_sig {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  margin-top: 34px;
}

.issue_sig p {
  color: #000;
  font-family: var(--lato);
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 5px 24px 0 24px;
  width: max-content;
  border-top: 1px solid var(--Neutral-Separator, #e9eaeb);
}

.open_trail_table .common_print_header,
.inventory_table .common_print_header,
.inventory_table .payment_print_footer,
.open_trail_table .payment_print_footer {
  display: none;
}

.open_trail_table tfoot tr td {
  border-bottom: 1px solid var(--Neutral-Separator, #e9eaeb);
  background: #f5f5f5;
  color: var(--text-dark2, #141414);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  height: 52px;
  padding: 0 16px;
}

.open_trail_table tfoot tr td:first-child {
  text-align: end;
}

/* vocuhar print css   ends*/
@media print {

  /* Hide everything on the page */
  body * {
    visibility: hidden;
  }

  /* Only show the printable table */
  #printableTable,
  .open_trail_table,
  .inventory_table,
  #printSection,
  #printSection *,
  .inventory_table *,
  .open_trail_table *,
  #printableTable * {
    visibility: visible;
  }

  .open_trail_table,
  .inventory_table,
  #printSection,
  #printableTable {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }

  .inventory_table .common_print_header,
  .open_trail_table .common_print_header,
  .open_trail_table .payment_print_footer,
  .inventory_table .payment_print_footer {
    display: block;
  }

  #printSection,
  .inventory_table,
  .open_trail_table {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    justify-content: space-between;
  }

  .payment_print_footer,
  .trail_print_footer {
    margin-top: auto !important;
    /* prevent footer from splitting across pages */
    page-break-inside: avoid !important;
  }

  .inventory_table,
  .open_trail_table {
    margin: 0 !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .common_table table,
  #printableTable table,
  #printSection table {
    width: 100% !important;
    border-collapse: collapse;
    font-size: 12px;
  }

  .open_trail_table tfoot tr td {
    font-size: 12px;
    padding: 6px;
    border: 1px solid #2b2b2b;
  }

  .cur_bal p {
    font-size: 12px;
  }

  .cur_bal span {
    font-size: 12px;
  }

  /* reduced the font-size  */
  .inventory_table table tbody th,
  .inventory_table table td {
    font-size: 11px !important;
  }

  .common_table th,
  #printSection th,
  .common_table td,
  #printSection td,
  #printableTable td {
    border: 1px solid #e9eaeb;
    padding: 6px;
    color: var(--text-dark2) !important;
  }

  .payment_print_footer .signature_box h4,
  .open_trail_table .print-body th,
  #printSection .print-body th,
  .inventory_table .table thead th,
  #printableTable .table thead th {
    background: var(--Button-soft-color) !important;
    color: var(--text-dark2) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  #printableTable th,
  .common_table th {
    background: var(--Button-soft-color) !important;
    color: var(--text-dark2) !important;
  }

  .inventory_table .pagination_class,
  #printableTable .print_pagination {
    display: none !important;
  }

  #printableTable .approved,
  #printableTable .unapproved,
  #printableTable .bill {
    background: transparent;
    border: none;
    color: black;
  }

  #printableTable .PURCHASE_REQ_TABLE th:last-child,
  #printableTable .common_table th.action,
  #printableTable .common_table td.action_icons,
  #printableTable .PURCHASE_REQ_TABLE td:last-child {
    display: none !important;
    visibility: hidden !important;
  }

  #printableTable .common_table td {
    color: #000 !important;
  }

  .payment .table tbody tr td:last-child {
    width: 140px !important;
  }

  .printing_vouchar_container .table tbody tr td:nth-child(2),
  .printing_vouchar_container .table tbody tr td:nth-child(3),
  .printing_vouchar_container .table thead th:nth-child(2),
  .printing_vouchar_container .table thead th:nth-child(3) {
    width: 150px;
  }

  .inventory_table .common_print_header,
  .open_trail_table .common_print_header {
    margin-bottom: 18px;
  }

  .wrap_Text {
    white-space: normal !important;
    word-wrap: break-word;
  }

  #printSection table tfoot tr td {
    font-weight: 800;
    color: var(--text-dark2);
    font-size: 12px;
  }

  .open_trail_table table tfoot tr td,
  .trail_print_table_container .common_table .table th,
  .trail_print_table_container .common_table .table td {
    border: 1px solid #e9eaeb;
  }

  #printableTable .activity_table .table th,
  #printableTable .backup_table .table th,
  #printableTable .backup_table .table td,
  #printableTable .activity_table .table td {
    font-size: 12px;
  }

  #printableTable .activity_table .table td .success_status,
  #printableTable .backup_table .table td .success_status {
    padding: 0;
    width: auto;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-dark);
  }

  .open_trail_table .trail_table_heading {
    font-size: 12px;
  }

  .backup_table .action {
    display: none;
    visibility: none;
  }

  .trial_print_table_header {
    padding: 22px 0px;
  }

  .trail_print_table_container .print-body,
  .trail_print_footer {
    padding: 24px 0;
  }

  .trail_print_table_container .common_table .table th,
  .trail_print_table_container .common_table .table td {
    font-size: 12px;
  }

  .trail_print_table_container {
    zoom: 85%;
  }

  .activity_table,
  .backup_table {
    zoom: 80%;
  }

  .trail_print_table_container .print-body {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .trial_print_table_header {
    display: flex;
    flex-direction: row !important;
  }

  .last_trail_print_header_div {
    text-align: end !important;
  }

  .acc_rep_gen_table tfoot tr td,
  .acc_rep_gen_table .table th,
  .acc_rep_gen_table .table th,
  .acc_rep_gen_table .table tr td {
    font-size: 10px !important;
  }

  .order_num_print .table tr td,
  .order_num_print .table tr th {
    font-size: 10px !important;
    height: auto !important;
  }

  .order_num_print .inner_input input {
    font-size: 10px;
    padding: 4px !important;
  }

  .w_max .inner_input input {
    width: 40px;
  }

  .order_num_print {
    zoom: 75%;
  }

  .hideCol {
    display: none !important;
  }

  .table_bold_Text {
    font-size: 12px;
  }

  .font14Table table tr td {
    font-size: 12px !important;
  }
}

/* *********************** PRINT MEDIA CODE ******************** */

/* Toast msg css  */
#toast-container {
  position: fixed;
  top: 56px;
  right: 32px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toastinner {
  background: linear-gradient(135deg, #28a745, #218838);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 250px;
  animation: slideIn 0.5s ease forwards;
}

.toastinner .close-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* Toast msg css ends  */

/* media queries*/
@media (max-width: 1800px) {
  .labour_monlthly_attendance_container .month_DaysContainer .month_Date {
    height: 130px;
    width: 140px;
  }
}

@media (max-width: 1400px) {
  .login_slider_img {
    max-height: 800px;
  }

  .login_right {
    height: 90%;
  }

  .login_right .c-logo {
    width: 140px;
  }

  .profile_page_form form .input_wrapper .input_field input,
  .change_Tag {
    max-width: 420px;
    width: 100%;
  }

  .leave_list_common_box,
  .employee_leave_list_common_box {
    max-width: 600px;
  }
}

@media (max-width: 1200px) {
  .login_grid {
    gap: 24px;
  }

  .login_slider_img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 720px;
    width: 100%;
  }

  .track_profile_container {
    width: 260px;
  }

  .chat_box_container .chat_box_left {
    width: auto;
  }

  .chat_box_msg_type_container {
    width: calc(100% - 320px);
  }
}

@media (max-width: 992px) {
  .login_grid {
    grid-template-columns: 1fr;
  }

  .login_right {
    height: auto;
    padding: 44px;
  }

  .app_side_bar {
    transform: translateX(-100%);
    z-index: 9999;
  }

  .app_side_bar.active {
    transform: translateX(0);
  }

  .admin_right_content {
    width: 100%;
  }

  .monthly_detail_popup_container,
  .AttendancePopup,
  .add_account_group_popup {
    width: 100%;
  }

  .sidebar_overlay_bg.active {
    opacity: 1;
    visibility: visible;
  }

  .main_notification_container {
    display: none;
  }

  .sidebar_close,
  .side_bar_menu_btn {
    display: flex;
  }

  .vehicle_form_details_wrapper .top_frame {
    position: static;
  }

  .vehicle_form_details_wrapper .top_frame .header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 5;
  }

  .chat_box_msg_type_container {
    width: 95%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .login_right {
    height: auto;
    padding: 24px;
  }

  .login_right .flag img {
    width: 28px;
  }

  .monthly_update_details {
    width: 100%;
  }

  .attendance_popup_content,
  .acc_group_popup .outer_bg {
    width: 95%;
  }

  .outer_layout .attendance_popup_content {
    width: 98%;
    margin: auto;
  }

  .registration_popup .outer_bg .monthly_update_details {
    width: 100%;
  }

  .monthly_detail_popup_container .outer_padding {
    padding: 16px 0;
  }

  .labour_personal_Details_container .labour_personal_Detail ul {
    grid-template-columns: 1fr;
  }

  .accounting_details_container {
    padding: 24px 0;
  }

  .filter_popup_content {
    width: 350px;
  }

  /* .tracking-data-wrapper {
    flex-direction: column;
    gap: 24px;
    height: auto;
  } */

  .track_profile_container {
    width: 100%;
  }

  .tracking-data-wrapper .right_div {
    height: 420px;
  }

  .map_summary_tag {
    top: 80px;
    left: 16px;
    width: auto;
  }

  .map_summary_tag .content_div .label {
    height: 20px;
    width: 20px;
  }

  .map_summary_tag .content_div .label svg {
    height: 10px;
    width: 10px;
  }

  .labour_monlthly_attendance_container .month_DaysContainer .month_Date .plus_icon {
    right: 10px;
  }

  .labour_monlthly_attendance_container .month_DaysContainer .month_Date {
    height: 130px;
    width: 130px;
  }

  .change_ledger_group_popup_content {
    width: 100%;
  }

  .trial_print_table_header {
    flex-direction: column;
  }

  .last_trail_print_header_div {
    text-align: center;
  }

  .side_bar_logo img {
    width: 80px;
  }

  .admin_list_heading .left_heading h3,
  .Common_vouchar_data_container .inner_content .main_heading .left h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .chart_bread_crump .bread_crump_content p {
    font-size: 16px;
  }

  .pb36 {
    padding-bottom: 16px;
  }

  .chat_box_container .chat_box_left {
    width: unset;
    width: 100%;
    padding: 0;
  }

  .chat_box_right {
    position: absolute;
    z-index: 100;
    background-color: var(--white);
    width: 95%;
    left: 50%;
    transform: translateX(-50%);
    top: 10%;
    height: 80vh;
    border-radius: 10px;
  }

  .input_Extra_Feilds {
    gap: 10px;
  }

  .right_chat_content_wrapper .chat_content>p {
    max-width: 95%;
  }

  .chat_box_msg_type_container .input_box input {
    padding-right: 140px;
  }

  .chat_profile_verlay.active {
    display: block;
  }

  .closeChatProfileBtn {
    display: flex;
  }
}

@media (max-width: 576px) {
  .acc_common_style {
    width: 100%;
  }

  .filter_popup_content {
    width: 320px;
  }

  .common_form .file-upload {
    max-width: 600px;
    width: 100%;
    display: inline-block;
  }

  .track_list_container {
    justify-content: center;
  }

  .live_Data_container {
    width: 100%;
  }

  /* .chart_bread_crump .icon, */
  .chart_bread_crump .bread_crump_content p,
  .chart_bread_crump .bread_crump_content span {
    display: none;
  }

  .Common_vouchar_data_container .inner_content {
    padding: 0 16px 16px 16px;
  }

  .right_fil_div {
    gap: 12px !important;
  }

  .geo_fence_map {
    height: 320px;
  }

  .track_list_container>div {
    width: auto;
    max-width: 420px;
    /* width: 100%; */
  }

  #expBarChart {
    height: 220px !important;
  }

  .recep_das_chart_wrapper .exp_chart .heading,
  .recep_das_chart_wrapper .att_chart .heading {
    margin-bottom: 24px;
  }

  #attendanceChart {
    width: 300px !important;
    height: 300px !important;
  }

  .recep_das_chart_wrapper .exp_chart,
  .recep_das_chart_wrapper .att_chart {
    height: auto;
  }

  .right_fil_div .search,
  .search_component .search {
    max-width: 420px;
    width: 100%;
  }
}


@media (max-width: 420px) {
  .delete_inner_content_container {
    width: 320px;
  }

  #attendanceChart {
    width: 280px !important;
    height: 280px !important;
  }
}